You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

303 lines
12 KiB

  1. # -*- coding: utf-8 -*-
  2. # © 2016 Antonio Espinosa - <antonio.espinosa@tecnativa.com>
  3. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
  4. import logging
  5. import urlparse
  6. import time
  7. import re
  8. from datetime import datetime
  9. from openerp import models, api, fields, tools
  10. import openerp.addons.decimal_precision as dp
  11. _logger = logging.getLogger(__name__)
  12. EVENT_OPEN_DELTA = 10 # seconds
  13. EVENT_CLICK_DELTA = 5 # seconds
  14. class MailTrackingEmail(models.Model):
  15. _name = "mail.tracking.email"
  16. _order = 'time desc'
  17. _rec_name = 'display_name'
  18. _description = 'MailTracking email'
  19. # This table is going to grow fast and to infinite, so we index:
  20. # - name: Search in tree view
  21. # - time: default order fields
  22. # - recipient_address: Used for email_store calculation (non-store)
  23. # - state: Search and group_by in tree view
  24. name = fields.Char(string="Subject", readonly=True, index=True)
  25. display_name = fields.Char(
  26. string="Display name", readonly=True, store=True,
  27. compute="_compute_display_name")
  28. timestamp = fields.Float(
  29. string='UTC timestamp', readonly=True,
  30. digits=dp.get_precision('MailTracking Timestamp'))
  31. time = fields.Datetime(string="Time", readonly=True, index=True)
  32. date = fields.Date(
  33. string="Date", readonly=True, compute="_compute_date", store=True)
  34. mail_message_id = fields.Many2one(
  35. string="Message", comodel_name='mail.message', readonly=True)
  36. mail_id = fields.Many2one(
  37. string="Email", comodel_name='mail.mail', readonly=True)
  38. partner_id = fields.Many2one(
  39. string="Partner", comodel_name='res.partner', readonly=True)
  40. recipient = fields.Char(string='Recipient email', readonly=True)
  41. recipient_address = fields.Char(
  42. string='Recipient email address', readonly=True, store=True,
  43. compute='_compute_recipient_address', index=True)
  44. sender = fields.Char(string='Sender email', readonly=True)
  45. state = fields.Selection([
  46. ('error', 'Error'),
  47. ('deferred', 'Deferred'),
  48. ('sent', 'Sent'),
  49. ('delivered', 'Delivered'),
  50. ('opened', 'Opened'),
  51. ('rejected', 'Rejected'),
  52. ('spam', 'Spam'),
  53. ('unsub', 'Unsubscribed'),
  54. ('bounced', 'Bounced'),
  55. ('soft-bounced', 'Soft bounced'),
  56. ], string='State', index=True, readonly=True, default=False,
  57. help=" * The 'Error' status indicates that there was an error "
  58. "when trying to sent the email, for example, "
  59. "'No valid recipient'\n"
  60. " * The 'Sent' status indicates that message was succesfully "
  61. "sent via outgoing email server (SMTP).\n"
  62. " * The 'Delivered' status indicates that message was "
  63. "succesfully delivered to recipient Mail Exchange (MX) server.\n"
  64. " * The 'Opened' status indicates that message was opened or "
  65. "clicked by recipient.\n"
  66. " * The 'Rejected' status indicates that recipient email "
  67. "address is blacklisted by outgoing email server (SMTP). "
  68. "It is recomended to delete this email address.\n"
  69. " * The 'Spam' status indicates that outgoing email "
  70. "server (SMTP) consider this message as spam.\n"
  71. " * The 'Unsubscribed' status indicates that recipient has "
  72. "requested to be unsubscribed from this message.\n"
  73. " * The 'Bounced' status indicates that message was bounced "
  74. "by recipient Mail Exchange (MX) server.\n"
  75. " * The 'Soft bounced' status indicates that message was soft "
  76. "bounced by recipient Mail Exchange (MX) server.\n")
  77. error_smtp_server = fields.Char(string='Error SMTP server', readonly=True)
  78. error_type = fields.Char(string='Error type', readonly=True)
  79. error_description = fields.Char(
  80. string='Error description', readonly=True)
  81. bounce_type = fields.Char(string='Bounce type', readonly=True)
  82. bounce_description = fields.Char(
  83. string='Bounce description', readonly=True)
  84. tracking_event_ids = fields.One2many(
  85. string="Tracking events", comodel_name='mail.tracking.event',
  86. inverse_name='tracking_email_id', readonly=True)
  87. @api.model
  88. def _email_score_tracking_filter(self, domain, order='time desc',
  89. limit=10):
  90. """Default tracking search. Ready to be inherited."""
  91. return self.search(domain, limit=limit, order=order)
  92. @api.model
  93. def email_is_bounced(self, email):
  94. return len(self._email_score_tracking_filter([
  95. ('recipient_address', '=ilike', email),
  96. ('state', 'in', ('error', 'rejected', 'spam', 'bounced')),
  97. ])) > 0
  98. @api.model
  99. def email_score_from_email(self, email):
  100. return self._email_score_tracking_filter([
  101. ('recipient_address', '=ilike', email)
  102. ]).email_score()
  103. @api.model
  104. def _email_score_weights(self):
  105. """Default email score weights. Ready to be inherited"""
  106. return {
  107. 'error': -50.0,
  108. 'rejected': -25.0,
  109. 'spam': -25.0,
  110. 'bounced': -25.0,
  111. 'soft-bounced': -10.0,
  112. 'unsub': -10.0,
  113. 'delivered': 1.0,
  114. 'opened': 5.0,
  115. }
  116. @api.multi
  117. def email_score(self):
  118. """Default email score algorimth. Ready to be inherited
  119. Must return a value beetwen 0.0 and 100.0
  120. - Bad reputation: Value between 0 and 50.0
  121. - Unknown reputation: Value 50.0
  122. - Good reputation: Value between 50.0 and 100.0
  123. """
  124. weights = self._email_score_weights()
  125. score = 50.0
  126. for tracking in self:
  127. score += weights.get(tracking.state, 0.0)
  128. if score > 100.0:
  129. score = 100.0
  130. elif score < 0.0:
  131. score = 0.0
  132. return score
  133. @api.multi
  134. @api.depends('recipient')
  135. def _compute_recipient_address(self):
  136. for email in self:
  137. matches = re.search(r'<(.*@.*)>', email.recipient)
  138. if matches:
  139. email.recipient_address = matches.group(1)
  140. else:
  141. email.recipient_address = email.recipient
  142. @api.multi
  143. @api.depends('name', 'recipient')
  144. def _compute_display_name(self):
  145. for email in self:
  146. parts = [email.name or '']
  147. if email.recipient:
  148. parts.append(email.recipient)
  149. email.display_name = ' - '.join(parts)
  150. @api.multi
  151. @api.depends('time')
  152. def _compute_date(self):
  153. for email in self:
  154. email.date = fields.Date.to_string(
  155. fields.Date.from_string(email.time))
  156. def _get_mail_tracking_img(self):
  157. m_config = self.env['ir.config_parameter']
  158. base_url = (m_config.get_param('mail_tracking.base.url') or
  159. m_config.get_param('web.base.url'))
  160. path_url = (
  161. 'mail/tracking/open/%(db)s/%(tracking_email_id)s/blank.gif' % {
  162. 'db': self.env.cr.dbname,
  163. 'tracking_email_id': self.id,
  164. })
  165. track_url = urlparse.urljoin(base_url, path_url)
  166. return (
  167. '<img src="%(url)s" alt="" '
  168. 'data-odoo-tracking-email="%(tracking_email_id)s"/>' % {
  169. 'url': track_url,
  170. 'tracking_email_id': self.id,
  171. })
  172. @api.multi
  173. def _partners_email_bounced_set(self, reason):
  174. for tracking_email in self:
  175. self.env['res.partner'].search([
  176. ('email', '=ilike', tracking_email.recipient_address)
  177. ]).email_bounced_set(tracking_email, reason)
  178. @api.multi
  179. def smtp_error(self, mail_server, smtp_server, exception):
  180. self.sudo().write({
  181. 'error_smtp_server': tools.ustr(smtp_server),
  182. 'error_type': exception.__class__.__name__,
  183. 'error_description': tools.ustr(exception),
  184. 'state': 'error',
  185. })
  186. self.sudo()._partners_email_bounced_set('error')
  187. return True
  188. @api.multi
  189. def tracking_img_add(self, email):
  190. self.ensure_one()
  191. tracking_url = self._get_mail_tracking_img()
  192. if tracking_url:
  193. body = tools.append_content_to_html(
  194. email.get('body', ''), tracking_url, plaintext=False,
  195. container_tag='div')
  196. email['body'] = body
  197. return email
  198. def _message_partners_check(self, message, message_id):
  199. mail_message = self.mail_message_id
  200. partners = (
  201. mail_message.needaction_partner_ids | mail_message.partner_ids)
  202. if (self.partner_id and self.partner_id not in partners):
  203. # If mail_message haven't tracking partner, then
  204. # add it in order to see his tracking status in chatter
  205. if mail_message.subtype_id:
  206. mail_message.sudo().write({
  207. 'needaction_partner_ids': [(4, self.partner_id.id)],
  208. })
  209. else:
  210. mail_message.sudo().write({
  211. 'partner_ids': [(4, self.partner_id.id)],
  212. })
  213. return True
  214. @api.multi
  215. def _tracking_sent_prepare(self, mail_server, smtp_server, message,
  216. message_id):
  217. self.ensure_one()
  218. ts = time.time()
  219. dt = datetime.utcfromtimestamp(ts)
  220. self._message_partners_check(message, message_id)
  221. self.sudo().write({'state': 'sent'})
  222. return {
  223. 'recipient': message['To'],
  224. 'timestamp': '%.6f' % ts,
  225. 'time': fields.Datetime.to_string(dt),
  226. 'tracking_email_id': self.id,
  227. 'event_type': 'sent',
  228. 'smtp_server': smtp_server,
  229. }
  230. def _event_prepare(self, event_type, metadata):
  231. self.ensure_one()
  232. m_event = self.env['mail.tracking.event']
  233. method = getattr(m_event, 'process_' + event_type, None)
  234. if method and hasattr(method, '__call__'):
  235. return method(self, metadata)
  236. else: # pragma: no cover
  237. _logger.info('Unknown event type: %s' % event_type)
  238. return False
  239. def _concurrent_events(self, event_type, metadata):
  240. m_event = self.env['mail.tracking.event']
  241. self.ensure_one()
  242. concurrent_event_ids = False
  243. if event_type in {'open', 'click'}:
  244. ts = metadata.get('timestamp', time.time())
  245. delta = EVENT_OPEN_DELTA if event_type == 'open' \
  246. else EVENT_CLICK_DELTA
  247. domain = [
  248. ('timestamp', '>=', ts - delta),
  249. ('timestamp', '<=', ts + delta),
  250. ('tracking_email_id', '=', self.id),
  251. ('event_type', '=', event_type),
  252. ]
  253. if event_type == 'click':
  254. domain.append(('url', '=', metadata.get('url', False)))
  255. concurrent_event_ids = m_event.search(domain)
  256. return concurrent_event_ids
  257. @api.multi
  258. def event_create(self, event_type, metadata):
  259. event_ids = self.env['mail.tracking.event']
  260. for tracking_email in self:
  261. other_ids = tracking_email._concurrent_events(event_type, metadata)
  262. if not other_ids:
  263. vals = tracking_email._event_prepare(event_type, metadata)
  264. if vals:
  265. event_ids += event_ids.sudo().create(vals)
  266. else:
  267. _logger.debug("Concurrent event '%s' discarded", event_type)
  268. if event_type in {'hard_bounce', 'spam', 'reject'}:
  269. self.sudo()._partners_email_bounced_set(event_type)
  270. return event_ids
  271. @api.model
  272. def event_process(self, request, post, metadata, event_type=None):
  273. # Generic event process hook, inherit it and
  274. # - return 'OK' if processed
  275. # - return 'NONE' if this request is not for you
  276. # - return 'ERROR' if any error
  277. return 'NONE' # pragma: no cover