Launchpad automatic translations update.
[odoo/odoo.git] / addons / crm_caldav / crm_caldav.py
1 # -*- coding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution
5 #    Copyright (C) 2004-2010 Tiny SPRL (<http://tiny.be>).
6 #
7 #    This program is free software: you can redistribute it and/or modify
8 #    it under the terms of the GNU Affero General Public License as
9 #    published by the Free Software Foundation, either version 3 of the
10 #    License, or (at your option) any later version.
11 #
12 #    This program is distributed in the hope that it will be useful,
13 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
14 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 #    GNU Affero General Public License for more details.
16 #
17 #    You should have received a copy of the GNU Affero General Public License
18 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 #
20 ##############################################################################
21
22 from osv import osv
23 from base_calendar import base_calendar
24 from openerp.addons.caldav import calendar
25 from datetime import datetime
26 import re
27
28 class crm_meeting(osv.osv):
29     _inherit = 'crm.meeting'
30
31     def export_cal(self, cr, uid, ids, context=None):
32         """
33             @param self: The object pointer
34             @param cr: the current row, from the database cursor,
35             @param uid: the current user’s ID for security checks,
36             @param ids: List of CRM Meeting’s IDs
37             @param context: A standard dictionary for contextual values
38         """
39         if context is None: context = {}
40         ids = map(lambda x: base_calendar.base_calendar_id2real_id(x), ids)
41         event_data = self.read(cr, uid, ids, context=context)
42         event_obj = self.pool.get('basic.calendar.event')
43         context.update({'model': self._name})
44         ical = event_obj.export_cal(cr, uid, event_data, context=context)
45         return ical.serialize()
46
47     def import_cal(self, cr, uid, data, data_id=None, context=None):
48         """
49             @param self: The object pointer
50             @param cr: the current row, from the database cursor,
51             @param uid: the current user’s ID for security checks,
52             @param data: Get Data of CRM Meetings
53             @param data_id: calendar's Id
54             @param context: A standard dictionary for contextual values
55         """
56         event_obj = self.pool.get('basic.calendar.event')
57         vals = event_obj.import_cal(cr, uid, data, context=context)
58         return self.check_import(cr, uid, vals, context=context)
59
60     def check_import(self, cr, uid, vals, context=None):
61         """
62             @param self: The object pointer
63             @param cr: the current row, from the database cursor,
64             @param uid: the current user’s ID for security checks,
65             @param vals: Get Values
66             @param context: A standard dictionary for contextual values
67         """
68         if context is None:
69             context = {}
70         ids = []
71         model_obj = self.pool.get(context.get('model'))
72         recur_pool = {}
73         try:
74             for val in vals:
75                 # Compute value of duration
76                 if val.get('date_deadline', False) and 'duration' not in val:
77                     start = datetime.strptime(val['date'], '%Y-%m-%d %H:%M:%S')
78                     end = datetime.strptime(val['date_deadline'], '%Y-%m-%d %H:%M:%S')
79                     diff = end - start
80                     val['duration'] = (diff.seconds/float(86400) + diff.days) * 24
81                 exists, r_id = calendar.uid2openobjectid(cr, val['id'], context.get('model'), \
82                                                                  val.get('recurrent_id'))
83                 if val.has_key('create_date'):
84                     val.pop('create_date')
85                 u_id = val.get('id', None)
86                 val.pop('id')
87                 if exists and r_id:
88                     val.update({'recurrent_uid': exists})
89                     model_obj.write(cr, uid, [r_id], val)
90                     ids.append(r_id)
91                 elif exists:
92                     model_obj.write(cr, uid, [exists], val)
93                     ids.append(exists)
94                 else:
95                     if u_id in recur_pool and val.get('recurrent_id'):
96                         val.update({'recurrent_uid': recur_pool[u_id]})
97                         revent_id = model_obj.create(cr, uid, val)
98                         ids.append(revent_id)
99                     else:
100                         __rege = re.compile(r'OpenObject-([\w|\.]+)_([0-9]+)@(\w+)$')
101                         wematch = __rege.match(u_id.encode('utf8'))
102                         if wematch:
103                             model, recur_id, dbname = wematch.groups()
104                             val.update({'recurrent_uid': recur_id})
105                         event_id = model_obj.create(cr, uid, val)
106                         recur_pool[u_id] = event_id
107                         ids.append(event_id)
108         except Exception:
109             raise
110         return ids
111     
112 crm_meeting()
113
114 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
115