[FIX] workflow: pass active_model in context on run server action
[odoo/odoo.git] / openerp / workflow / wkf_expr.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 import sys
23 import openerp.netsvc as netsvc
24 import openerp.osv as base
25 import openerp.pooler as pooler
26 from openerp.tools.safe_eval import safe_eval as eval
27
28 class Env(dict):
29     def __init__(self, cr, uid, model, ids):
30         self.cr = cr
31         self.uid = uid
32         self.model = model
33         self.ids = ids
34         self.obj = pooler.get_pool(cr.dbname).get(model)
35         self.columns = self.obj._columns.keys() + self.obj._inherit_fields.keys()
36
37     def __getitem__(self, key):
38         if (key in self.columns) or (key in dir(self.obj)):
39             res = self.obj.browse(self.cr, self.uid, self.ids[0])
40             return res[key]
41         else:
42             return super(Env, self).__getitem__(key)
43
44 def _eval_expr(cr, ident, workitem, action):
45     ret=False
46     assert action, 'You used a NULL action in a workflow, use dummy node instead.'
47     for line in action.split('\n'):
48         line = line.strip()
49         uid=ident[0]
50         model=ident[1]
51         ids=[ident[2]]
52         if line =='True':
53             ret=True
54         elif line =='False':
55             ret=False
56         else:
57             env = Env(cr, uid, model, ids)
58             ret = eval(line, env, nocopy=True)
59     return ret
60
61 def execute_action(cr, ident, workitem, activity):
62     obj = pooler.get_pool(cr.dbname).get('ir.actions.server')
63     ctx = {'active_model':ident[1], 'active_id':ident[2], 'active_ids':[ident[2]]}
64     result = obj.run(cr, ident[0], [activity['action_id']], ctx)
65     return result
66
67 def execute(cr, ident, workitem, activity):
68     return _eval_expr(cr, ident, workitem, activity['action'])
69
70 def check(cr, workitem, ident, transition, signal):
71     if transition['signal'] and signal != transition['signal']:
72         return False
73
74     uid = ident[0]
75     if transition['group_id'] and uid != 1:
76         pool = pooler.get_pool(cr.dbname)
77         user_groups = pool.get('res.users').read(cr, uid, [uid], ['groups_id'])[0]['groups_id']
78         if not transition['group_id'] in user_groups:
79             return False
80
81     return _eval_expr(cr, ident, workitem, transition['condition'])
82
83
84 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
85