[FIX] remove security rule of osv_memory object
[odoo/odoo.git] / addons / project_messages / project_messages.py
1 # -*- coding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution
5 #    Copyright (C) 2004-2009 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 import netsvc
24
25 class messages(osv.osv):
26     """
27     Message from one user to another within a project
28     """
29     _name = 'project.messages'
30     logger = netsvc.Logger()
31
32     _columns = {
33         'from_id': fields.many2one('res.users', 'From', ondelete="CASCADE"),
34         'to_id': fields.many2one('res.users', 'To', ondelete="CASCADE"),
35         'project_id': fields.many2one('project.project', 'Project',
36                                      required=True, ondelete="CASCADE"),
37         'message': fields.text('Message', required=True),
38     }
39     _defaults = {
40         'from_id': lambda self, cr, uid, context: uid,
41         'to_id': None,
42     }
43
44     def broadcast(self, cr, uid, project_id, message, context=None):
45         """ Send a message to all the users of a project.
46         The sender of the message is the current user.
47
48         The method returns the new message's id.
49
50         Arguments:
51         - `project_id`: the id of the project to broadcast to
52         - `message`: the message to broadcast
53         """
54         return self.create(cr, uid, {
55             'to_id':None,
56             'project_id':project_id,
57             'message':message
58         }, context=context)
59
60 messages()
61
62 class project_with_message(osv.osv):
63     _inherit = 'project.project'
64
65     _columns = {
66         'message_ids':fields.one2many(
67             'project.messages', 'project_id', 'Messages',
68             domain="[('to_id','in',[uid,False])]"),
69     }
70
71 project_with_message()
72
73 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: