Yenthe666

mail_mail.py mass_mailing module

Oct 31st, 2014
791
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.00 KB | None | 0 0
  1. # -*- coding: utf-8 -*-
  2. ##############################################################################
  3. #
  4. # OpenERP, Open Source Management Solution
  5. # Copyright (C) 2013-Today OpenERP SA (<http://www.openerp.com>)
  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 werkzeug
  23.  
  24. from openerp import tools
  25. from openerp import SUPERUSER_ID
  26. from openerp.osv import osv, fields
  27.  
  28.  
  29. class MailMail(osv.Model):
  30. """Add the mass mailing campaign data to mail"""
  31. _name = 'mail.mail'
  32. _inherit = ['mail.mail']
  33.  
  34. _columns = {
  35. 'mailing_id': fields.many2one('mail.mass_mailing', 'Mass Mailing'),
  36. 'statistics_ids': fields.one2many(
  37. 'mail.mail.statistics', 'mail_mail_id',
  38. string='Statistics',
  39. ),
  40. }
  41.  
  42. def create(self, cr, uid, values, context=None):
  43. """ Override mail_mail creation to create an entry in mail.mail.statistics """
  44. # TDE note: should be after 'all values computed', to have values (FIXME after merging other branch holding create refactoring)
  45. mail_id = super(MailMail, self).create(cr, uid, values, context=context)
  46. if values.get('statistics_ids'):
  47. mail = self.browse(cr, SUPERUSER_ID, mail_id, context=context)
  48. for stat in mail.statistics_ids:
  49. self.pool['mail.mail.statistics'].write(cr, uid, [stat.id], {'message_id': mail.message_id}, context=context)
  50. return mail_id
  51.  
  52. def _get_tracking_url(self, cr, uid, mail, partner=None, context=None):
  53. track_url = werkzeug.Href('/web/dbredirect')({
  54. 'db': cr.dbname,
  55. 'redirect': '/mail/track/%s/blank.gif' % mail.id,
  56. })
  57. return '<img src="%s" alt=""/>' % track_url
  58.  
  59. def _get_unsubscribe_url(self, cr, uid, mail, email_to, msg=None, context=None):
  60. url = werkzeug.Href('/web/dbredirect')({
  61. 'db': cr.dbname,
  62. 'redirect': '/mail/mailing/%(mailing_id)s/unsubscribe?%(params)s' % {
  63. 'mailing_id': mail.mailing_id.id,
  64. 'params': {'res_id': mail.res_id, 'email': email_to},
  65. },
  66. })
  67. return '<small><a href="%s">%s</a></small>' % (url, msg or 'Click to unsubscribe')
  68.  
  69. def send_get_mail_body(self, cr, uid, mail, partner=None, context=None):
  70. """ Override to add the tracking URL to the body. """
  71. body = super(MailMail, self).send_get_mail_body(cr, uid, mail, partner=partner, context=context)
  72.  
  73. # prepend <base> tag for images using absolute urls
  74. domain = self.pool.get("ir.config_parameter").get_param(cr, uid, "web.base.url", context=context)
  75. base = "<base href='%s'>" % domain
  76. body = tools.append_content_to_html(base, body, plaintext=False, container_tag='div')
  77. # generate tracking URL
  78. if mail.statistics_ids:
  79. tracking_url = self._get_tracking_url(cr, uid, mail, partner, context=context)
  80. if tracking_url:
  81. body = tools.append_content_to_html(body, tracking_url, plaintext=False, container_tag='div')
  82. return body
  83.  
  84. def send_get_email_dict(self, cr, uid, mail, partner=None, context=None):
  85. res = super(MailMail, self).send_get_email_dict(cr, uid, mail, partner, context=context)
  86. if mail.mailing_id and res.get('body') and res.get('email_to'):
  87. emails = tools.email_split(res.get('email_to')[0])
  88. email_to = emails and emails[0] or False
  89. unsubscribe_url = self._get_unsubscribe_url(cr, uid, mail, email_to, context=context)
  90. if unsubscribe_url:
  91. res['body'] = tools.append_content_to_html(res['body'], unsubscribe_url, plaintext=False, container_tag='p')
  92. return res
  93.  
  94. def _postprocess_sent_message(self, cr, uid, mail, context=None, mail_sent=True):
  95. if mail_sent is True and mail.statistics_ids:
  96. self.pool['mail.mail.statistics'].write(cr, uid, [s.id for s in mail.statistics_ids], {'sent': fields.datetime.now()}, context=context)
  97. elif mail_sent is False and mail.statistics_ids:
  98. self.pool['mail.mail.statistics'].write(cr, uid, [s.id for s in mail.statistics_ids], {'exception': fields.datetime.now()}, context=context)
  99. return super(MailMail, self)._postprocess_sent_message(cr, uid, mail, context=context, mail_sent=mail_sent)
Advertisement
Add Comment
Please, Sign In to add comment