[ADD]: Images: caldav, crm_caldav, document_webdav, project_caldav
[odoo/odoo.git] / addons / caldav / wizard / calendar_event_export.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 fields, osv
23 from tools.translate import _
24 import netsvc
25 import pooler
26 import time
27 import tools
28 import wizard
29 import base64
30
31 class calendar_event_export(osv.osv_memory):
32     """
33     Export Calendar Event.
34     """
35
36     def default_get(self, cr, uid, fields, context=None):
37         """
38         Get Default value for Name field.
39         """
40         if context is None:
41             context = {}
42         else:
43             context= context.copy()
44         context['uid'] = uid
45         model = context.get('model', 'basic.calendar')
46         model_obj = self.pool.get(model)
47         res = super(calendar_event_export, self).default_get( cr, uid, fields, context=context)
48         name = 'OpenERP %s.ics' % (model_obj._description)
49         if 'name' in fields:
50             res.update({'name': name})
51         if 'file_path' in fields:
52             calendar = model_obj.export_cal(cr, uid, context['active_ids'], context=context)
53             res.update({'file_path': base64.encodestring(calendar)})
54         return  res
55
56     _name = "calendar.event.export"
57     _description = "Event Export"
58
59     _columns = {
60               'file_path':fields.binary('Save ICS file', filters='*.ics', readonly=True),
61               'name':fields.char('File name', size=34, required=True, help='Save in .ics format')
62                }
63
64 calendar_event_export()
65
66
67 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: