Wrap long lines and remove trailing whitespace.
[odoo/odoo.git] / addons / base_action_rule / base_action_rule.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
22 from osv import fields, osv, orm
23 from tools.translate import _
24 from datetime import datetime
25 from datetime import timedelta
26 from tools.safe_eval import safe_eval
27 import pooler 
28 import re
29 import time
30 import tools
31
32
33 def get_datetime(date_field):
34     return datetime.strptime(date_field[:19], '%Y-%m-%d %H:%M:%S')
35
36
37 class base_action_rule(osv.osv):
38     """ Base Action Rules """
39
40     _name = 'base.action.rule'
41     _description = 'Action Rules'
42     
43     def _state_get(self, cr, uid, context={}):
44         """ Get State
45             @param self: The object pointer
46             @param cr: the current row, from the database cursor,
47             @param uid: the current user’s ID for security checks,
48             @param context: A standard dictionary for contextual values """
49         return self.state_get(cr, uid, context=context)
50
51     def state_get(self, cr, uid, context={}):
52         """ Get State
53             @param self: The object pointer
54             @param cr: the current row, from the database cursor,
55             @param uid: the current user’s ID for security checks,
56             @param context: A standard dictionary for contextual values """
57         return [('', '')]
58   
59     def priority_get(self, cr, uid, context={}):
60         """ Get Priority
61             @param self: The object pointer
62             @param cr: the current row, from the database cursor,
63             @param uid: the current user’s ID for security checks,
64             @param context: A standard dictionary for contextual values """
65         return [('', '')]
66
67     _columns = {
68         'name':  fields.char('Rule Name', size=64, required=True), 
69         'model_id': fields.many2one('ir.model', 'Object', required=True), 
70         'create_date': fields.datetime('Create Date', readonly=1), 
71         'active': fields.boolean('Active', help="If the active field is set to False,\
72  it will allow you to hide the rule without removing it."), 
73         'sequence': fields.integer('Sequence', help="Gives the sequence order \
74 when displaying a list of rules."), 
75         'trg_date_type':  fields.selection([
76             ('none', 'None'), 
77             ('create', 'Creation Date'), 
78             ('action_last', 'Last Action Date'), 
79             ('date', 'Date'), 
80             ('deadline', 'Deadline'), 
81             ], 'Trigger Date', size=16), 
82         'trg_date_range': fields.integer('Delay after trigger date', \
83                                          help="Delay After Trigger Date,\
84 specifies you can put a negative number. If you need a delay before the \
85 trigger date, like sending a reminder 15 minutes before a meeting."), 
86         'trg_date_range_type': fields.selection([('minutes', 'Minutes'), ('hour', 'Hours'), \
87                                 ('day', 'Days'), ('month', 'Months')], 'Delay type'), 
88         'trg_user_id':  fields.many2one('res.users', 'Responsible'), 
89         'trg_partner_id': fields.many2one('res.partner', 'Partner'), 
90         'trg_partner_categ_id': fields.many2one('res.partner.category', 'Partner Category'), 
91         'trg_state_from': fields.selection(_state_get, 'State', size=16), 
92         'trg_state_to': fields.selection(_state_get, 'Button Pressed', size=16), 
93
94         'act_method': fields.char('Call Object Method', size=64), 
95         'act_user_id': fields.many2one('res.users', 'Set Responsible to'), 
96         'act_state': fields.selection(_state_get, 'Set State to', size=16), 
97         'act_email_cc': fields.char('Add Watchers (Cc)', size=250, help="\
98 These people will receive a copy of the future communication between partner \
99 and users by email"), 
100         'act_remind_partner': fields.boolean('Remind Partner', help="Check \
101 this if you want the rule to send a reminder by email to the partner."), 
102         'act_remind_user': fields.boolean('Remind Responsible', help="Check \
103 this if you want the rule to send a reminder by email to the user."), 
104         'act_reply_to': fields.char('Reply-To', size=64), 
105         'act_remind_attach': fields.boolean('Remind with Attachment', help="Check this if you want that all documents attached to the object be attached to the reminder email sent."), 
106         'act_mail_to_user': fields.boolean('Mail to Responsible', help="Check\
107  this if you want the rule to send an email to the responsible person."), 
108         'act_mail_to_watchers': fields.boolean('Mail to Watchers (CC)', 
109                                                 help="Check this if you want \
110 the rule to mark CC(mail to any other person defined in actions)."), 
111         'act_mail_to_email': fields.char('Mail to these Emails', size=128, \
112         help="Email-id of the persons whom mail is to be sent"), 
113         'act_mail_body': fields.text('Mail body', help="Content of mail"), 
114         'regex_name': fields.char('Regex on Resource Name', size=128, help="Regular expression for matching name of the resource\
115 \ne.g.: 'urgent.*' will search for records having name starting with the string 'urgent'\
116 \nNote: This is case sensitive search."), 
117         'server_action_id': fields.many2one('ir.actions.server', 'Server Action', help="Describes the action name.\neg:on which object which action to be taken on basis of which condition"), 
118         'filter_id':fields.many2one('ir.filters', 'Filter', required=False), 
119         'act_email_from' : fields.char('Email From', size=64, required=False,
120                 help="Use a python expression to specify the right field on which one than we will use for the 'From' field of the header"),
121         'last_run': fields.datetime('Last Run', readonly=1),
122     }
123
124     _defaults = {
125         'active': lambda *a: True, 
126         'trg_date_type': lambda *a: 'none', 
127         'trg_date_range_type': lambda *a: 'day', 
128         'act_mail_to_user': lambda *a: 0, 
129         'act_remind_partner': lambda *a: 0, 
130         'act_remind_user': lambda *a: 0, 
131         'act_mail_to_watchers': lambda *a: 0, 
132     }
133     
134     _order = 'sequence'
135     
136     def onchange_model_id(self, cr, uid, ids, name):
137         #This is not a good solution as it will affect the domain only on onchange
138         res = {'domain':{'filter_id':[]}}
139         if name:
140             model_name = self.pool.get('ir.model').read(cr, uid, [name], ['model'])
141             if model_name:
142                 mod_name = model_name[0]['model']
143                 res['domain'] = {'filter_id': [('model_id','=',mod_name)]}
144         else:
145             res['value'] = {'filter_id':False}
146         return res
147
148     def pre_action(self, cr, uid, ids, model, context=None):
149         # Searching for action rules
150         cr.execute("SELECT model.model, rule.id  FROM base_action_rule rule \
151                         LEFT JOIN ir_model model on (model.id = rule.model_id) \
152                         WHERE active")
153         res = cr.fetchall()
154         # Check if any rule matching with current object
155         for obj_name, rule_id in res:
156             if not (model == obj_name):
157                 continue
158             else:
159                 obj = self.pool.get(obj_name)
160                 # If the rule doesn't involve a time condition, run it immediately
161                 # Otherwise we let the scheduler run the action
162                 if self.browse(cr, uid, rule_id, context=context).trg_date_type == 'none':
163                     self._action(cr, uid, [rule_id], obj.browse(cr, uid, ids, context=context), context=context)
164         return True
165
166     def _create(self, old_create, model, context=None):
167         if not context:
168             context  = {}
169         def make_call_old(cr, uid, vals, context=context):
170             new_id = old_create(cr, uid, vals, context=context)
171             if not context.get('action'):
172                 self.pre_action(cr, uid, [new_id], model, context=context)
173             return new_id
174         return make_call_old
175     
176     def _write(self, old_write, model, context=None):
177         if not context:
178             context  = {}
179         def make_call_old(cr, uid, ids, vals, context=context):
180             if isinstance(ids, (str, int, long)):
181                 ids = [ids]
182             if not context.get('action'):
183                 self.pre_action(cr, uid, ids, model, context=context)
184             return old_write(cr, uid, ids, vals, context=context)
185         return make_call_old
186
187     def _register_hook(self, cr, uid, ids, context=None):
188         if not context:
189             context = {}
190         for action_rule in self.browse(cr, uid, ids, context=context):
191             model = action_rule.model_id.model
192             obj_pool = self.pool.get(model)
193             if not hasattr(obj_pool, 'base_action_ruled'):
194                 obj_pool.create = self._create(obj_pool.create, model, context=context)
195                 obj_pool.write = self._write(obj_pool.write, model, context=context)
196                 obj_pool.base_action_ruled = True
197
198         return True
199     def create(self, cr, uid, vals, context=None):
200         res_id = super(base_action_rule, self).create(cr, uid, vals, context)
201         self._register_hook(cr, uid, [res_id], context=context)        
202         return res_id
203     
204     def write(self, cr, uid, ids, vals, context=None):
205         res = super(base_action_rule, self).write(cr, uid, ids, vals, context)
206         self._register_hook(cr, uid, ids, context=context)
207         return res
208
209     def _check(self, cr, uid, automatic=False, use_new_cursor=False, \
210                        context=None):
211         """
212         This Function is call by scheduler.
213         """
214         rule_pool = self.pool.get('base.action.rule')
215         rule_ids = rule_pool.search(cr, uid, [], context=context)
216         self._register_hook(cr, uid, rule_ids, context=context)
217
218         rules = self.browse(cr, uid, rule_ids, context=context)
219         for rule in rules:
220             model = rule.model_id.model
221             model_pool = self.pool.get(model)
222             last_run = False
223             if rule.last_run:
224                 last_run = get_datetime(rule.last_run)
225             now = datetime.now()
226             for obj_id in model_pool.search(cr, uid, [], context=context):
227                 obj = model_pool.browse(cr, uid, obj_id, context=context)
228                 # Calculate when this action should next occur for this object
229                 base = False
230                 if rule.trg_date_type=='create' and hasattr(obj, 'create_date'):
231                     base = obj.create_date
232                 elif (rule.trg_date_type=='action_last'
233                         and hasattr(obj, 'create_date')):
234                     if hasattr(obj, 'date_action_last') and obj.date_action_last:
235                         base = obj.date_action_last
236                     else:
237                         base = obj.create_date
238                 elif (rule.trg_date_type=='deadline'
239                         and hasattr(obj, 'date_deadline')
240                         and obj.date_deadline):
241                     base = obj.date_deadline
242                 elif (rule.trg_date_type=='date'
243                         and hasattr(obj, 'date')
244                         and obj.date):
245                     base = obj.date
246                 if base:
247                     fnct = {
248                         'minutes': lambda interval: timedelta(minutes=interval),
249                         'day': lambda interval: timedelta(days=interval),
250                         'hour': lambda interval: timedelta(hours=interval),
251                         'month': lambda interval: timedelta(months=interval),
252                     }
253                     base = get_datetime(base)
254                     d = base + fnct[rule.trg_date_range_type](rule.trg_date_range)
255                 if (not last_run or (last_run <= d < now)):
256                     self._action(cr, uid, [rule.id], [obj], context=context)
257             rule_pool.write(cr, uid, [rule.id], {'last_run': now},
258                             context=context)
259
260     def format_body(self, body):
261         """ Foramat Action rule's body
262             @param self: The object pointer """
263         return body and tools.ustr(body) or ''
264
265     def format_mail(self, obj, body):
266         """ Foramat Mail
267             @param self: The object pointer """
268
269         data = {
270             'object_id': obj.id, 
271             'object_subject': hasattr(obj, 'name') and obj.name or False, 
272             'object_date': hasattr(obj, 'date') and obj.date or False, 
273             'object_description': hasattr(obj, 'description') and obj.description or False, 
274             'object_user': hasattr(obj, 'user_id') and (obj.user_id and obj.user_id.name) or '/', 
275             'object_user_email': hasattr(obj, 'user_id') and (obj.user_id and \
276                                     obj.user_id.address_id and obj.user_id.address_id.email) or '/', 
277             'object_user_phone': hasattr(obj, 'user_id') and (obj.user_id and\
278                                      obj.user_id.address_id and obj.user_id.address_id.phone) or '/', 
279             'partner': hasattr(obj, 'partner_id') and (obj.partner_id and obj.partner_id.name) or '/', 
280             'partner_email': hasattr(obj, 'partner_address_id') and (obj.partner_address_id and\
281                                          obj.partner_address_id.email) or '/', 
282         }
283         return self.format_body(body % data)
284
285     def email_send(self, cr, uid, obj, emails, body, emailfrom=None, context=None):
286         """ send email
287             @param self: The object pointer
288             @param cr: the current row, from the database cursor,
289             @param uid: the current user’s ID for security checks,
290             @param email: pass the emails
291             @param emailfrom: Pass name the email From else False
292             @param context: A standard dictionary for contextual values """
293
294         if not emailfrom:
295             emailfrom = tools.config.get('email_from', False)
296
297         if context is None:
298             context = {}
299
300         body = self.format_mail(obj, body)
301         if not emailfrom:
302             if hasattr(obj, 'user_id')  and obj.user_id and obj.user_id.address_id and\
303                         obj.user_id.address_id.email:
304                 emailfrom = obj.user_id.address_id.email
305
306         name = '[%d] %s' % (obj.id, tools.ustr(obj.name))
307         emailfrom = tools.ustr(emailfrom)
308         reply_to = emailfrom
309         if not emailfrom:
310             raise osv.except_osv(_('Error!'), 
311                     _("No E-Mail ID Found for your Company address!"))
312         return tools.email_send(emailfrom, emails, name, body, reply_to=reply_to, openobject_id=str(obj.id))
313
314
315     def do_check(self, cr, uid, action, obj, context=None):
316         """ check Action
317             @param self: The object pointer
318             @param cr: the current row, from the database cursor,
319             @param uid: the current user’s ID for security checks,
320             @param context: A standard dictionary for contextual values """
321         if context is None:
322             context = {}
323         ok = True 
324         if action.filter_id:
325             if action.model_id.model == action.filter_id.model_id:
326                 context.update(eval(action.filter_id.context))
327                 obj_ids = obj._table.search(cr, uid, eval(action.filter_id.domain), context=context)
328                 if not obj.id in obj_ids:
329                     ok = False
330             else:
331                 ok = False
332         if getattr(obj, 'user_id', False):
333             ok = ok and (not action.trg_user_id.id or action.trg_user_id.id==obj.user_id.id)
334         if getattr(obj, 'partner_id', False):
335             ok = ok and (not action.trg_partner_id.id or action.trg_partner_id.id==obj.partner_id.id)
336             ok = ok and (
337                 not action.trg_partner_categ_id.id or
338                 (
339                     obj.partner_id.id and
340                     (action.trg_partner_categ_id.id in map(lambda x: x.id, obj.partner_id.category_id or []))
341                 )
342             )
343         state_to = context.get('state_to', False)
344         state = getattr(obj, 'state', False)
345         if state:
346             ok = ok and (not action.trg_state_from or action.trg_state_from==state)
347         if state_to:
348             ok = ok and (not action.trg_state_to or action.trg_state_to==state_to)
349         elif action.trg_state_to:
350             ok = False
351         reg_name = action.regex_name
352         result_name = True
353         if reg_name:
354             ptrn = re.compile(str(reg_name))
355             _result = ptrn.search(str(obj.name))
356             if not _result:
357                 result_name = False
358         regex_n = not reg_name or result_name
359         ok = ok and regex_n
360         return ok
361
362     def do_action(self, cr, uid, action, model_obj, obj, context=None):
363         """ Do Action
364             @param self: The object pointer
365             @param cr: the current row, from the database cursor,
366             @param uid: the current user’s ID for security checks,
367             @param action: pass action
368             @param model_obj: pass Model object
369             @param context: A standard dictionary for contextual values """
370         if context is None:
371             context = {}
372
373         if action.server_action_id:
374             context.update({'active_id':obj.id, 'active_ids':[obj.id]})
375             self.pool.get('ir.actions.server').run(cr, uid, [action.server_action_id.id], context)
376         write = {}
377
378         if hasattr(obj, 'user_id') and action.act_user_id:
379             obj.user_id = action.act_user_id
380             write['user_id'] = action.act_user_id.id
381         if hasattr(obj, 'date_action_last'):
382             write['date_action_last'] = time.strftime('%Y-%m-%d %H:%M:%S')
383         if hasattr(obj, 'state') and action.act_state:
384             obj.state = action.act_state
385             write['state'] = action.act_state
386
387         if hasattr(obj, 'categ_id') and action.act_categ_id:
388             obj.categ_id = action.act_categ_id
389             write['categ_id'] = action.act_categ_id.id
390
391         model_obj.write(cr, uid, [obj.id], write, context)
392
393         if hasattr(model_obj, 'remind_user') and action.act_remind_user:
394             model_obj.remind_user(cr, uid, [obj.id], context, attach=action.act_remind_attach)
395         if hasattr(model_obj, 'remind_partner') and action.act_remind_partner:
396             model_obj.remind_partner(cr, uid, [obj.id], context, attach=action.act_remind_attach)
397         if action.act_method:
398             getattr(model_obj, 'act_method')(cr, uid, [obj.id], action, context)
399
400         emails = []
401         if hasattr(obj, 'user_id') and action.act_mail_to_user:
402             if obj.user_id and obj.user_id.address_id:
403                 emails.append(obj.user_id.address_id.email)
404
405         if action.act_mail_to_watchers:
406             emails += (action.act_email_cc or '').split(',')
407         if action.act_mail_to_email:
408             emails += (action.act_mail_to_email or '').split(',')
409         emails = filter(None, emails)
410         if len(emails) and action.act_mail_body:
411             emails = list(set(emails))
412             email_from = safe_eval(action.act_email_from, {}, {
413                 'user' : self.pool.get('res.users').browse(cr, uid, uid, context=context),
414                 'obj' : obj,
415             })
416             self.email_send(cr, uid, obj, emails, action.act_mail_body, emailfrom=email_from)
417         return True
418
419     def _action(self, cr, uid, ids, objects, scrit=None, context=None):
420         """ Do Action
421             @param self: The object pointer
422             @param cr: the current row, from the database cursor,
423             @param uid: the current user’s ID for security checks,
424             @param ids: List of Basic Action Rule’s IDs,
425             @param objects: pass objects
426             @param context: A standard dictionary for contextual values """
427         if context is None:
428             context = {}
429
430         context.update({'action': True})
431         if not scrit:
432             scrit = []
433
434         for action in self.browse(cr, uid, ids, context):
435             model_obj = self.pool.get(action.model_id.model)
436             for obj in objects:
437                 ok = self.do_check(cr, uid, action, obj, context=context)
438                 if not ok:
439                     continue
440
441                 if ok:
442                     self.do_action(cr, uid, action, model_obj, obj, context)
443                     break
444         context.update({'action': False})
445         return True
446
447     def _check_mail(self, cr, uid, ids, context=None):
448         """ Check Mail
449             @param self: The object pointer
450             @param cr: the current row, from the database cursor,
451             @param uid: the current user’s ID for security checks,
452             @param ids: List of Action Rule’s IDs
453             @param context: A standard dictionary for contextual values """
454
455         empty = orm.browse_null()
456         rule_obj = self.pool.get('base.action.rule')
457         for rule in self.browse(cr, uid, ids):
458             if rule.act_mail_body:
459                 try:
460                     rule_obj.format_mail(empty, rule.act_mail_body)
461                 except (ValueError, KeyError, TypeError):
462                     return False
463         return True
464
465     _constraints = [
466         (_check_mail, 'Error: The mail is not well formated', ['act_mail_body']), 
467     ]
468
469 base_action_rule()
470
471
472 class ir_cron(osv.osv):
473     _inherit = 'ir.cron' 
474     
475     def _poolJobs(self, db_name, check=False):
476         try:
477             db = pooler.get_db(db_name)
478         except:
479             return False
480         cr = db.cursor()
481         try:
482             next = datetime.now().strftime('%Y-%m-%d %H:00:00')
483             # Putting nextcall always less than current time in order to call it every time
484             cr.execute('UPDATE ir_cron set nextcall = \'%s\' where numbercall<>0 and active and model=\'base.action.rule\' ' % (next))
485         finally:
486             cr.commit()
487             cr.close()
488
489         super(ir_cron, self)._poolJobs(db_name, check=check)
490
491 ir_cron()
492
493
494 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: