[IMP] Added missing vim mode lines
[odoo/odoo.git] / openerp / addons / base / res / res_log.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
24 class res_log(osv.osv):
25     _name = 'res.log'
26     _columns = {
27         'name': fields.char('Message', size=250, help='The logging message.', required=True, select=1),
28         'user_id': fields.many2one('res.users','User'),
29         'res_model': fields.char('Object', size=128, select=1),
30         'context': fields.char('Context', size=250),
31         'res_id': fields.integer('Object ID'),
32         'secondary': fields.boolean('Secondary Log', help='Do not display this log if it belongs to the same object the user is working on'),
33         'create_date': fields.datetime('Creation Date', readonly=True, select=1),
34         'read': fields.boolean('Read', help="If this log item has been read, get() should not send it to the client"),
35     }
36     _defaults = {
37         'user_id': lambda self,cr,uid,ctx: uid,
38         'context': "{}",
39         'read': False,
40     }
41     _order='create_date desc'
42
43     _index_name = 'res_log_uid_read'
44     def _auto_init(self, cr, context=None):
45         super(res_log, self)._auto_init(cr, context)
46         cr.execute('SELECT 1 FROM pg_indexes WHERE indexname=%s',
47                    (self._index_name,))
48         if not cr.fetchone():
49             cr.execute('CREATE INDEX %s ON res_log (user_id, read)' %
50                        self._index_name)
51
52     def create(self, cr, uid, vals, context=None):
53         create_context = context and dict(context) or {}
54         if 'res_log_read' in create_context:
55             vals['read'] = create_context.pop('res_log_read')
56         if create_context and not vals.get('context'):
57             vals['context'] = create_context
58         return super(res_log, self).create(cr, uid, vals, context=context)
59
60     # TODO: do not return secondary log if same object than in the model (but unlink it)
61     def get(self, cr, uid, context=None):
62         unread_log_ids = self.search(cr, uid,
63             [('user_id','=',uid), ('read', '=', False)], context=context)
64         res = self.read(cr, uid, unread_log_ids,
65             ['name','res_model','res_id','context'],
66             context=context)
67         res.reverse()
68         result = []
69         res_dict = {}
70         for r in res:
71             t = (r['res_model'], r['res_id'])
72             if t not in res_dict:
73                 res_dict[t] = True
74                 result.insert(0,r)
75         self.write(cr, uid, unread_log_ids, {'read': True}, context=context)
76         return result
77
78 res_log()
79
80 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: