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