[IMP] report; minimal layout is now a qweb template, allowing users to customize...
[odoo/odoo.git] / addons / share / res_users.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 from openerp.osv import fields, osv
22 from openerp import SUPERUSER_ID
23
24 class res_users(osv.osv):
25     _name = 'res.users'
26     _inherit = 'res.users'
27
28     def _is_share(self, cr, uid, ids, name, args, context=None):
29         res = {}
30         for user in self.browse(cr, uid, ids, context=context):
31             res[user.id] = not self.has_group(cr, user.id, 'base.group_user')
32         return res
33
34     def _get_users_from_group(self, cr, uid, ids, context=None):
35         result = set()
36         for group in self.pool['res.groups'].browse(cr, uid, ids, context=context):
37             result.update(user.id for user in group.users)
38         return list(result)
39
40     _columns = {
41         'share': fields.function(_is_share, string='Share User', type='boolean',
42             store={
43                 'res.users': (lambda self, cr, uid, ids, c={}: ids, None, 50),
44                 'res.groups': (_get_users_from_group, None, 50),
45             }, help="External user with limited access, created only for the purpose of sharing data."),
46      }
47
48
49 class res_groups(osv.osv):
50     _name = "res.groups"
51     _inherit = 'res.groups'
52     _columns = {
53         'share': fields.boolean('Share Group', readonly=True,
54                     help="Group created to set access rights for sharing data with some users.")
55     }
56
57     def init(self, cr):
58         # force re-generation of the user groups view without the shared groups
59         self.update_user_groups_view(cr, SUPERUSER_ID)
60         parent_class = super(res_groups, self)
61         if hasattr(parent_class, 'init'):
62             parent_class.init(cr)
63
64     def get_application_groups(self, cr, uid, domain=None, context=None):
65         if domain is None:
66             domain = []
67         domain.append(('share', '=', False))
68         return super(res_groups, self).get_application_groups(cr, uid, domain=domain, context=context)
69
70
71
72 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: