efdcfe16135fa739dd1edd0455a2b445dae63759
[odoo/odoo.git] / addons / base_setup / __init__.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 import installer
23 import todo
24 import gtk_contact_form
25 import wizard
26 import os
27 import base64
28 import random
29 import tools
30 from osv import fields, osv
31 import netsvc
32 from tools.translate import _
33
34 class base_setup_config_choice(osv.osv_memory):
35     """
36     """
37     _name = 'base.setup.config'
38     logger = netsvc.Logger()
39
40     def _get_image(self, cr, uid, context=None):
41         file_no = str(random.randint(1,3))
42         path = os.path.join('base','res','config_pixmaps/%s.png'%file_no)
43         file_data = tools.file_open(path,'rb').read()
44         return base64.encodestring(file_data)
45
46     def get_users(self, cr, uid, context={}):
47         user_obj = self.pool.get('res.users')
48         user_ids = user_obj.search(cr, uid, [])
49         users = user_obj.browse(cr, uid, user_ids)
50         user_str = '\n'.join(map(lambda x: '    - %s: %s / %s' % (x.name, x.login, x.password), users))
51         return _('The following users have been installed : \n')+ user_str
52
53     _columns = {
54         'installed_users':fields.text('Installed Users', readonly=True),
55         'config_logo' : fields.binary('Image', readonly=True),
56         }
57
58     _defaults = {
59         'installed_users':get_users,
60          'config_logo' : _get_image
61         }
62
63     def set_default_menu(self, cr, uid, menu, context=None):
64         user = self.pool.get('res.users')\
65                         .browse(cr, uid, uid, context=context)
66
67         user.write({'action_id': menu.id,
68                     'menu_id': menu.id})
69
70     def get_default_menu(self, cr, uid, context=None):
71         actions = self.pool.get('ir.actions.act_window')
72
73         current_menu_id = actions.search(cr, uid, [('name','=','Menu')],
74                                          context=context)
75         assert len(current_menu_id) == 1,\
76                'A given user should only have one menu item'
77         return actions.browse(cr, uid, current_menu_id[0], context=context)
78
79     def menu(self, cr, uid, ids, context=None):
80         menu = self.get_default_menu(cr, uid, context=context)
81         self.set_default_menu(cr, uid, menu, context=context)
82
83         if menu.view_id.id:
84             view_id = (menu.view_id.id, menu.view_id.name)
85         else:
86             view_id = False
87
88         return {
89             'name': menu.name,
90             'type': menu.type,
91             'view_id': view_id,
92             'domain': menu.domain,
93             'res_model': menu.res_model,
94             'src_model': menu.src_model,
95             'view_type': menu.view_type,
96             'view_mode': menu.view_mode,
97             'views': menu.views,
98         }
99
100     def config(self, cr, uid, ids, context=None):
101         menu = self.get_default_menu(cr, uid, context=context)
102         self.set_default_menu(cr, uid, menu, context=context)
103
104         return self.pool.get('res.config').next(cr, uid, [], context=context)
105
106 base_setup_config_choice()
107
108
109 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
110