merge
[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=None):
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=None):
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=None):
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         'act_email_to' : fields.char('Email To', size=64, required=False,
122                                      help="Use a python expression to specify the right field on which one than we will use for the 'To' field of the header"),
123         'last_run': fields.datetime('Last Run', readonly=1),
124     }
125
126     _defaults = {
127         'active': lambda *a: True,
128         'trg_date_type': lambda *a: 'none',
129         'trg_date_range_type': lambda *a: 'day',
130         'act_mail_to_user': lambda *a: 0,
131         'act_remind_partner': lambda *a: 0,
132         'act_remind_user': lambda *a: 0,
133         'act_mail_to_watchers': lambda *a: 0,
134     }
135
136     _order = 'sequence'
137
138     def onchange_model_id(self, cr, uid, ids, name):
139         #This is not a good solution as it will affect the domain only on onchange
140         res = {'domain':{'filter_id':[]}}
141         if name:
142             model_name = self.pool.get('ir.model').read(cr, uid, [name], ['model'])
143             if model_name:
144                 mod_name = model_name[0]['model']
145                 res['domain'] = {'filter_id': [('model_id','=',mod_name)]}
146         else:
147             res['value'] = {'filter_id':False}
148         return res
149
150     def pre_action(self, cr, uid, ids, model, context=None):
151         # Searching for action rules
152         cr.execute("SELECT model.model, rule.id  FROM base_action_rule rule \
153                         LEFT JOIN ir_model model on (model.id = rule.model_id) \
154                         WHERE active")
155         res = cr.fetchall()
156         # Check if any rule matching with current object
157         for obj_name, rule_id in res:
158             if not (model == obj_name):
159                 continue
160             else:
161                 obj = self.pool.get(obj_name)
162                 # If the rule doesn't involve a time condition, run it immediately
163                 # Otherwise we let the scheduler run the action
164                 if self.browse(cr, uid, rule_id, context=context).trg_date_type == 'none':
165                     self._action(cr, uid, [rule_id], obj.browse(cr, uid, ids, context=context), context=context)
166         return True
167
168     def _create(self, old_create, model, context=None):
169         if context is None:
170             context  = {}
171         def make_call_old(cr, uid, vals, context=context):
172             new_id = old_create(cr, uid, vals, context=context)
173             if not context.get('action'):
174                 self.pre_action(cr, uid, [new_id], model, context=context)
175             return new_id
176         return make_call_old
177
178     def _write(self, old_write, model, context=None):
179         if context is None:
180             context  = {}
181         def make_call_old(cr, uid, ids, vals, context=context):
182             if context is None:
183                context = {}
184             if isinstance(ids, (str, int, long)):
185                 ids = [ids]
186             if not context.get('action'):
187                 self.pre_action(cr, uid, ids, model, context=context)
188             return old_write(cr, uid, ids, vals, context=context)
189         return make_call_old
190
191     def _register_hook(self, cr, uid, ids, context=None):
192         if context is None:
193             context = {}
194         for action_rule in self.browse(cr, uid, ids, context=context):
195             model = action_rule.model_id.model
196             obj_pool = self.pool.get(model)
197             if not hasattr(obj_pool, 'base_action_ruled'):
198                 obj_pool.create = self._create(obj_pool.create, model, context=context)
199                 obj_pool.write = self._write(obj_pool.write, model, context=context)
200                 obj_pool.base_action_ruled = True
201
202         return True
203     def create(self, cr, uid, vals, context=None):
204         res_id = super(base_action_rule, self).create(cr, uid, vals, context=context)
205         self._register_hook(cr, uid, [res_id], context=context)
206         return res_id
207
208     def write(self, cr, uid, ids, vals, context=None):
209         res = super(base_action_rule, self).write(cr, uid, ids, vals, context=context)
210         self._register_hook(cr, uid, ids, context=context)
211         return res
212
213     def _check(self, cr, uid, automatic=False, use_new_cursor=False, \
214                        context=None):
215         """
216         This Function is call by scheduler.
217         """
218         rule_pool = self.pool.get('base.action.rule')
219         rule_ids = rule_pool.search(cr, uid, [], context=context)
220         self._register_hook(cr, uid, rule_ids, context=context)
221
222         rules = self.browse(cr, uid, rule_ids, context=context)
223         for rule in rules:
224             model = rule.model_id.model
225             model_pool = self.pool.get(model)
226             last_run = False
227             if rule.last_run:
228                 last_run = get_datetime(rule.last_run)
229             now = datetime.now()
230             for obj_id in model_pool.search(cr, uid, [], context=context):
231                 obj = model_pool.browse(cr, uid, obj_id, context=context)
232                 # Calculate when this action should next occur for this object
233                 base = False
234                 if rule.trg_date_type=='create' and hasattr(obj, 'create_date'):
235                     base = obj.create_date
236                 elif (rule.trg_date_type=='action_last'
237                         and hasattr(obj, 'create_date')):
238                     if hasattr(obj, 'date_action_last') and obj.date_action_last:
239                         base = obj.date_action_last
240                     else:
241                         base = obj.create_date
242                 elif (rule.trg_date_type=='deadline'
243                         and hasattr(obj, 'date_deadline')
244                         and obj.date_deadline):
245                     base = obj.date_deadline
246                 elif (rule.trg_date_type=='date'
247                         and hasattr(obj, 'date')
248                         and obj.date):
249                     base = obj.date
250                 if base:
251                     fnct = {
252                         'minutes': lambda interval: timedelta(minutes=interval),
253                         'day': lambda interval: timedelta(days=interval),
254                         'hour': lambda interval: timedelta(hours=interval),
255                         'month': lambda interval: timedelta(months=interval),
256                     }
257                     base = get_datetime(base)
258                     delay = fnct[rule.trg_date_range_type](rule.trg_date_range)
259                     action_date = base + delay
260                     if (not last_run or (last_run <= action_date < now)):
261                         self._action(cr, uid, [rule.id], [obj], context=context)
262             rule_pool.write(cr, uid, [rule.id], {'last_run': now},
263                             context=context)
264
265     def format_body(self, body):
266         """ Foramat Action rule's body
267             @param self: The object pointer """
268         return body and tools.ustr(body) or ''
269
270     def format_mail(self, obj, body):
271         data = {
272             'object_id': obj.id,
273             'object_subject': hasattr(obj, 'name') and obj.name or False,
274             'object_date': hasattr(obj, 'date') and obj.date or False,
275             'object_description': hasattr(obj, 'description') and obj.description or False,
276             'object_user': hasattr(obj, 'user_id') and (obj.user_id and obj.user_id.name) or '/',
277             'object_user_email': hasattr(obj, 'user_id') and (obj.user_id and \
278                                      obj.user_id.user_email) or '/',
279             'object_user_phone': hasattr(obj, 'partner_address_id') and (obj.partner_address_id and \
280                                      obj.partner_address_id.phone) or '/',
281             'partner': hasattr(obj, 'partner_id') and (obj.partner_id and obj.partner_id.name) or '/',
282             'partner_email': hasattr(obj, 'partner_address_id') and (obj.partner_address_id and\
283                                          obj.partner_address_id.email) or '/',
284         }
285         return self.format_body(body % data)
286
287     def email_send(self, cr, uid, obj, emails, body, emailfrom=None, context=None):
288         """ send email
289             @param self: The object pointer
290             @param cr: the current row, from the database cursor,
291             @param uid: the current user’s ID for security checks,
292             @param email: pass the emails
293             @param emailfrom: Pass name the email From else False
294             @param context: A standard dictionary for contextual values """
295
296         if not emailfrom:
297             emailfrom = tools.config.get('email_from', False)
298
299         if context is None:
300             context = {}
301
302         mail_message = self.pool.get('mail.message')
303         body = self.format_mail(obj, body)
304         if not emailfrom:
305             if hasattr(obj, 'user_id') and obj.user_id and obj.user_id.user_email:
306                 emailfrom = obj.user_id.user_email
307
308         name = '[%d] %s' % (obj.id, tools.ustr(obj.name))
309         emailfrom = tools.ustr(emailfrom)
310         reply_to = emailfrom
311         if not emailfrom:
312             raise osv.except_osv(_('Error!'),
313                     _("No E-Mail ID Found for your Company address!"))
314         return mail_message.schedule_with_attach(cr, uid, emailfrom, emails, name, body, model='base.action.rule', reply_to=reply_to, res_id=obj.id)
315
316
317     def do_check(self, cr, uid, action, obj, context=None):
318         """ check Action
319             @param self: The object pointer
320             @param cr: the current row, from the database cursor,
321             @param uid: the current user’s ID for security checks,
322             @param context: A standard dictionary for contextual values """
323         if context is None:
324             context = {}
325         ok = True
326         if action.filter_id:
327             if action.model_id.model == action.filter_id.model_id:
328                 context.update(eval(action.filter_id.context))
329                 obj_ids = obj._table.search(cr, uid, eval(action.filter_id.domain), context=context)
330                 if not obj.id in obj_ids:
331                     ok = False
332             else:
333                 ok = False
334         if getattr(obj, 'user_id', False):
335             ok = ok and (not action.trg_user_id.id or action.trg_user_id.id==obj.user_id.id)
336         if getattr(obj, 'partner_id', False):
337             ok = ok and (not action.trg_partner_id.id or action.trg_partner_id.id==obj.partner_id.id)
338             ok = ok and (
339                 not action.trg_partner_categ_id.id or
340                 (
341                     obj.partner_id.id and
342                     (action.trg_partner_categ_id.id in map(lambda x: x.id, obj.partner_id.category_id or []))
343                 )
344             )
345         state_to = context.get('state_to', False)
346         state = getattr(obj, 'state', False)
347         if state:
348             ok = ok and (not action.trg_state_from or action.trg_state_from==state)
349         if state_to:
350             ok = ok and (not action.trg_state_to or action.trg_state_to==state_to)
351         elif action.trg_state_to:
352             ok = False
353         reg_name = action.regex_name
354         result_name = True
355         if reg_name:
356             ptrn = re.compile(str(reg_name))
357             _result = ptrn.search(str(obj.name))
358             if not _result:
359                 result_name = False
360         regex_n = not reg_name or result_name
361         ok = ok and regex_n
362         return ok
363
364     def do_action(self, cr, uid, action, model_obj, obj, context=None):
365         """ Do Action
366             @param self: The object pointer
367             @param cr: the current row, from the database cursor,
368             @param uid: the current user’s ID for security checks,
369             @param action: pass action
370             @param model_obj: pass Model object
371             @param context: A standard dictionary for contextual values """
372         if context is None:
373             context = {}
374
375         if action.server_action_id:
376             context.update({'active_id':obj.id, 'active_ids':[obj.id]})
377             self.pool.get('ir.actions.server').run(cr, uid, [action.server_action_id.id], context)
378         write = {}
379
380         if hasattr(obj, 'user_id') and action.act_user_id:
381             obj.user_id = action.act_user_id
382             write['user_id'] = action.act_user_id.id
383         if hasattr(obj, 'date_action_last'):
384             write['date_action_last'] = time.strftime('%Y-%m-%d %H:%M:%S')
385         if hasattr(obj, 'state') and action.act_state:
386             obj.state = action.act_state
387             write['state'] = action.act_state
388
389         if hasattr(obj, 'categ_id') and action.act_categ_id:
390             obj.categ_id = action.act_categ_id
391             write['categ_id'] = action.act_categ_id.id
392
393         model_obj.write(cr, uid, [obj.id], write, context)
394
395         if hasattr(model_obj, 'remind_user') and action.act_remind_user:
396             model_obj.remind_user(cr, uid, [obj.id], context, attach=action.act_remind_attach)
397         if hasattr(model_obj, 'remind_partner') and action.act_remind_partner:
398             model_obj.remind_partner(cr, uid, [obj.id], context, attach=action.act_remind_attach)
399         if action.act_method:
400             getattr(model_obj, 'act_method')(cr, uid, [obj.id], action, context)
401
402         emails = []
403         if hasattr(obj, 'user_id') and action.act_mail_to_user:
404             if obj.user_id:
405                 emails.append(obj.user_id.user_email)
406
407         if action.act_mail_to_watchers:
408             emails += (action.act_email_cc or '').split(',')
409         if action.act_mail_to_email:
410             emails += (action.act_mail_to_email or '').split(',')
411
412         locals_for_emails = {
413             'user' : self.pool.get('res.users').browse(cr, uid, uid, context=context),
414             'obj' : obj,
415         }
416
417         if action.act_email_to:
418             emails.append(safe_eval(action.act_email_to, {}, locals_for_emails))
419
420         emails = filter(None, emails)
421         if len(emails) and action.act_mail_body:
422             emails = list(set(emails))
423             email_from = safe_eval(action.act_email_from, {}, locals_for_emails)
424
425             def to_email(text):
426                 return re.findall(r'([^ ,<@]+@[^> ,]+)', text or '')
427             emails = to_email(','.join(filter(None, emails)))
428             email_froms = to_email(email_from)
429             if email_froms:
430                 self.email_send(cr, uid, obj, emails, action.act_mail_body, emailfrom=email_froms[0])
431         return True
432
433     def _action(self, cr, uid, ids, objects, scrit=None, context=None):
434         """ Do Action
435             @param self: The object pointer
436             @param cr: the current row, from the database cursor,
437             @param uid: the current user’s ID for security checks,
438             @param ids: List of Basic Action Rule’s IDs,
439             @param objects: pass objects
440             @param context: A standard dictionary for contextual values """
441         if context is None:
442             context = {}
443
444         context.update({'action': True})
445         if not scrit:
446             scrit = []
447
448         for action in self.browse(cr, uid, ids, context=context):
449             model_obj = self.pool.get(action.model_id.model)
450             for obj in objects:
451                 ok = self.do_check(cr, uid, action, obj, context=context)
452                 if not ok:
453                     continue
454
455                 if ok:
456                     self.do_action(cr, uid, action, model_obj, obj, context)
457                     break
458         context.update({'action': False})
459         return True
460
461     def _check_mail(self, cr, uid, ids, context=None):
462         """ Check Mail
463             @param self: The object pointer
464             @param cr: the current row, from the database cursor,
465             @param uid: the current user’s ID for security checks,
466             @param ids: List of Action Rule’s IDs
467             @param context: A standard dictionary for contextual values """
468
469         empty = orm.browse_null()
470         rule_obj = self.pool.get('base.action.rule')
471         for rule in self.browse(cr, uid, ids, context=context):
472             if rule.act_mail_body:
473                 try:
474                     rule_obj.format_mail(empty, rule.act_mail_body)
475                 except (ValueError, KeyError, TypeError):
476                     return False
477         return True
478
479     _constraints = [
480         (_check_mail, 'Error: The mail is not well formated', ['act_mail_body']),
481     ]
482
483 base_action_rule()
484
485
486 class ir_cron(osv.osv):
487     _inherit = 'ir.cron'
488     _init_done = False
489
490     def _poolJobs(self, db_name, check=False):
491         if not self._init_done:
492             self._init_done = True
493             try:
494                 db = pooler.get_db(db_name)
495             except:
496                 return False
497             cr = db.cursor()
498             try:
499                 next = datetime.now().strftime('%Y-%m-%d %H:00:00')
500                 # Putting nextcall always less than current time in order to call it every time
501                 cr.execute('UPDATE ir_cron set nextcall = \'%s\' where numbercall<>0 and active and model=\'base.action.rule\' ' % (next))
502             finally:
503                 cr.commit()
504                 cr.close()
505
506         super(ir_cron, self)._poolJobs(db_name, check=check)
507
508 ir_cron()
509
510
511 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: