[MERGE] merge with dev-addons3 branch
[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 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 not context:
40             context = {}
41         ids = map(lambda x: base_calendar.base_calendar_id2real_id(x), ids)
42         event_data = self.read(cr, uid, ids, context=context)
43         event_obj = self.pool.get('basic.calendar.event')
44         context.update({'model': self._name})
45         ical = event_obj.export_cal(cr, uid, event_data, context=context)
46         return ical.serialize()
47
48     def import_cal(self, cr, uid, data, data_id=None, context=None):
49         """
50             @param self: The object pointer
51             @param cr: the current row, from the database cursor,
52             @param uid: the current user’s ID for security checks,
53             @param data: Get Data of CRM Meetings
54             @param data_id: calendar's Id
55             @param context: A standard dictionary for contextual values
56         """
57         if not context:
58             context = {}
59         event_obj = self.pool.get('basic.calendar.event')
60         vals = event_obj.import_cal(cr, uid, data, context=context)
61         return self.check_import(cr, uid, vals, context=context)
62
63     def check_import(self, cr, uid, vals, context=None):
64         """
65             @param self: The object pointer
66             @param cr: the current row, from the database cursor,
67             @param uid: the current user’s ID for security checks,
68             @param vals: Get Values
69             @param context: A standard dictionary for contextual values
70         """
71         if not context:
72             context = {}
73         ids = []
74         model_obj = self.pool.get(context.get('model'))
75         recur_pool = {}
76         try:
77             for val in vals:
78                 # Compute value of duration
79                 if val.get('date_deadline', False) and 'duration' not in val:
80                     start = datetime.strptime(val['date'], '%Y-%m-%d %H:%M:%S')
81                     end = datetime.strptime(val['date_deadline'], '%Y-%m-%d %H:%M:%S')
82                     diff = end - start
83                     val['duration'] = (diff.seconds/float(86400) + diff.days) * 24
84                 exists, r_id = calendar.uid2openobjectid(cr, val['id'], context.get('model'), \
85                                                                  val.get('recurrent_id'))
86                 if val.has_key('create_date'):
87                     val.pop('create_date')
88                 u_id = val.get('id', None)
89                 val.pop('id')
90                 if exists and r_id:
91                     val.update({'recurrent_uid': exists})
92                     model_obj.write(cr, uid, [r_id], val)
93                     ids.append(r_id)
94                 elif exists:
95                     model_obj.write(cr, uid, [exists], val)
96                     ids.append(exists)
97                 else:
98                     if u_id in recur_pool and val.get('recurrent_id'):
99                         val.update({'recurrent_uid': recur_pool[u_id]})
100                         revent_id = model_obj.create(cr, uid, val)
101                         ids.append(revent_id)
102                     else:
103                         __rege = re.compile(r'OpenObject-([\w|\.]+)_([0-9]+)@(\w+)$')
104                         wematch = __rege.match(u_id.encode('utf8'))
105                         if wematch:
106                             model, recur_id, dbname = wematch.groups()
107                             val.update({'recurrent_uid': recur_id})
108                         event_id = model_obj.create(cr, uid, val)
109                         recur_pool[u_id] = event_id
110                         ids.append(event_id)
111         except Exception:
112             raise
113         return ids
114     
115 crm_meeting()
116
117 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
118