[IMP] hr_recruitment: improved search views.
[odoo/odoo.git] / addons / mail / res_users.py
1 # -*- coding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution
5 #    Copyright (C) 2009-Today OpenERP SA (<http://www.openerp.com>)
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, fields
23 from tools.translate import _
24
25 class res_users(osv.osv):
26     """ Update of res.users class
27         - add a preference about sending emails about notificatoins
28         - make a new user follow itself
29     """
30     _name = 'res.users'
31     _inherit = ['res.users', 'mail.thread']
32     
33     _columns = {
34         'notification_email_pref': fields.selection([
35                         ('all', 'All feeds'),
36                         ('comments', 'Only comments'),
37                         ('to_me', 'Only when sent directly to me'),
38                         ('none', 'Never')
39                         ], 'Receive Feeds by Email', required=True,
40                         help="Choose in which case you want to receive an email when you receive new feeds."),
41     }
42     
43     _defaults = {
44         'notification_email_pref': 'none',
45     }
46     
47     def __init__(self, pool, cr):
48         """ Override of __init__ to add access rights on notification_email_pref
49             field. Access rights are disabled by default, but allowed on
50             fields defined in self.SELF_WRITEABLE_FIELDS.
51         """
52         init_res = super(res_users, self).__init__(pool, cr)
53         # duplicate list to avoid modifying the original reference
54         self.SELF_WRITEABLE_FIELDS = list(self.SELF_WRITEABLE_FIELDS)
55         self.SELF_WRITEABLE_FIELDS.append('notification_email_pref')
56         return init_res
57     
58     def create(self, cr, uid, data, context=None):
59         user_id = super(res_users, self).create(cr, uid, data, context=context)
60         user = self.browse(cr, uid, [user_id], context=context)[0]
61         # make user follow itself
62         self.message_subscribe(cr, uid, [user_id], [user_id], context=context)
63         # create a welcome message to broadcast
64         company_name = user.company_id.name if user.company_id else 'the company'
65         message = _('%s has joined %s! You may leave him/her a message to celebrate a new arrival in the company ! You can help him/her doing its first steps on OpenERP.') % (user.name, company_name)
66         # TODO: clean the broadcast feature. As this is not cleany specified, temporarily remove the message broadcasting that is not buggy but not very nice.
67         #self.message_broadcast(cr, uid, [user.id], 'Welcome notification', message, context=context)
68         return user_id
69
70     def message_load_ids(self, cr, uid, ids, limit=100, offset=0, domain=[], ascent=False, root_ids=[False], context=None):
71         """ Override of message_load_ids
72             User discussion page :
73             - messages posted on res.users, res_id = user.id
74             - messages directly sent to user with @user_login
75         """
76         if context is None:
77             context = {}
78         msg_obj = self.pool.get('mail.message')
79         msg_ids = []
80         for user in self.browse(cr, uid, ids, context=context):
81             msg_ids += msg_obj.search(cr, uid, ['|', '|', ('body_text', 'like', '@%s' % (user.login)), ('body_html', 'like', '@%s' % (user.login)), '&', ('res_id', '=', user.id), ('model', '=', self._name)] + domain,
82             limit=limit, offset=offset, context=context)
83         if (ascent): msg_ids = self._message_add_ancestor_ids(cr, uid, ids, msg_ids, root_ids, context=context)
84         return msg_ids