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.

294 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 odoo import models, api, fields, tools
  10. import odoo.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_tracking_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. def email_score(self):
  117. """Default email score algorimth. Ready to be inherited
  118. Must return a value beetwen 0.0 and 100.0
  119. - Bad reputation: Value between 0 and 50.0
  120. - Unknown reputation: Value 50.0
  121. - Good reputation: Value between 50.0 and 100.0
  122. """
  123. weights = self._email_score_weights()
  124. score = 50.0
  125. for tracking in self:
  126. score += weights.get(tracking.state, 0.0)
  127. if score > 100.0:
  128. score = 100.0
  129. elif score < 0.0:
  130. score = 0.0
  131. return score
  132. @api.depends('recipient')
  133. def _compute_recipient_address(self):
  134. for email in self:
  135. matches = re.search(r'<(.*@.*)>', email.recipient)
  136. if matches:
  137. email.recipient_address = matches.group(1)
  138. else:
  139. email.recipient_address = email.recipient
  140. @api.depends('name', 'recipient')
  141. def _compute_tracking_display_name(self):
  142. for email in self:
  143. parts = [email.name or '']
  144. if email.recipient:
  145. parts.append(email.recipient)
  146. email.display_name = ' - '.join(parts)
  147. @api.depends('time')
  148. def _compute_date(self):
  149. for email in self:
  150. email.date = fields.Date.to_string(
  151. fields.Date.from_string(email.time))
  152. def _get_mail_tracking_img(self):
  153. m_config = self.env['ir.config_parameter']
  154. base_url = (m_config.get_param('mail_tracking.base.url') or
  155. m_config.get_param('web.base.url'))
  156. path_url = (
  157. 'mail/tracking/open/%(db)s/%(tracking_email_id)s/blank.gif' % {
  158. 'db': self.env.cr.dbname,
  159. 'tracking_email_id': self.id,
  160. })
  161. track_url = urlparse.urljoin(base_url, path_url)
  162. return (
  163. '<img src="%(url)s" alt="" '
  164. 'data-odoo-tracking-email="%(tracking_email_id)s"/>' % {
  165. 'url': track_url,
  166. 'tracking_email_id': self.id,
  167. })
  168. def _partners_email_bounced_set(self, reason):
  169. for tracking_email in self:
  170. self.env['res.partner'].search([
  171. ('email', '=ilike', tracking_email.recipient_address)
  172. ]).email_bounced_set(tracking_email, reason)
  173. def smtp_error(self, mail_server, smtp_server, exception):
  174. self.sudo().write({
  175. 'error_smtp_server': tools.ustr(smtp_server),
  176. 'error_type': exception.__class__.__name__,
  177. 'error_description': tools.ustr(exception),
  178. 'state': 'error',
  179. })
  180. self.sudo()._partners_email_bounced_set('error')
  181. return True
  182. def tracking_img_add(self, email):
  183. self.ensure_one()
  184. tracking_url = self._get_mail_tracking_img()
  185. if tracking_url:
  186. body = tools.append_content_to_html(
  187. email.get('body', ''), tracking_url, plaintext=False,
  188. container_tag='div')
  189. email['body'] = body
  190. return email
  191. def _message_partners_check(self, message, message_id):
  192. mail_message = self.mail_message_id
  193. partners = (
  194. mail_message.needaction_partner_ids | mail_message.partner_ids)
  195. if (self.partner_id and self.partner_id not in partners):
  196. # If mail_message haven't tracking partner, then
  197. # add it in order to see his tracking status in chatter
  198. if mail_message.subtype_id:
  199. mail_message.sudo().write({
  200. 'needaction_partner_ids': [(4, self.partner_id.id)],
  201. })
  202. else:
  203. mail_message.sudo().write({
  204. 'partner_ids': [(4, self.partner_id.id)],
  205. })
  206. return True
  207. def _tracking_sent_prepare(self, mail_server, smtp_server, message,
  208. message_id):
  209. self.ensure_one()
  210. ts = time.time()
  211. dt = datetime.utcfromtimestamp(ts)
  212. self._message_partners_check(message, message_id)
  213. self.sudo().write({'state': 'sent'})
  214. return {
  215. 'recipient': message['To'],
  216. 'timestamp': '%.6f' % ts,
  217. 'time': fields.Datetime.to_string(dt),
  218. 'tracking_email_id': self.id,
  219. 'event_type': 'sent',
  220. 'smtp_server': smtp_server,
  221. }
  222. def _event_prepare(self, event_type, metadata):
  223. self.ensure_one()
  224. m_event = self.env['mail.tracking.event']
  225. method = getattr(m_event, 'process_' + event_type, None)
  226. if method and hasattr(method, '__call__'):
  227. return method(self, metadata)
  228. else: # pragma: no cover
  229. _logger.info('Unknown event type: %s' % event_type)
  230. return False
  231. def _concurrent_events(self, event_type, metadata):
  232. m_event = self.env['mail.tracking.event']
  233. self.ensure_one()
  234. concurrent_event_ids = False
  235. if event_type in {'open', 'click'}:
  236. ts = metadata.get('timestamp', time.time())
  237. delta = EVENT_OPEN_DELTA if event_type == 'open' \
  238. else EVENT_CLICK_DELTA
  239. domain = [
  240. ('timestamp', '>=', ts - delta),
  241. ('timestamp', '<=', ts + delta),
  242. ('tracking_email_id', '=', self.id),
  243. ('event_type', '=', event_type),
  244. ]
  245. if event_type == 'click':
  246. domain.append(('url', '=', metadata.get('url', False)))
  247. concurrent_event_ids = m_event.search(domain)
  248. return concurrent_event_ids
  249. def event_create(self, event_type, metadata):
  250. event_ids = self.env['mail.tracking.event']
  251. for tracking_email in self:
  252. other_ids = tracking_email._concurrent_events(event_type, metadata)
  253. if not other_ids:
  254. vals = tracking_email._event_prepare(event_type, metadata)
  255. if vals:
  256. event_ids += event_ids.sudo().create(vals)
  257. else:
  258. _logger.debug("Concurrent event '%s' discarded", event_type)
  259. if event_type in {'hard_bounce', 'spam', 'reject'}:
  260. self.sudo()._partners_email_bounced_set(event_type)
  261. return event_ids
  262. @api.model
  263. def event_process(self, request, post, metadata, event_type=None):
  264. # Generic event process hook, inherit it and
  265. # - return 'OK' if processed
  266. # - return 'NONE' if this request is not for you
  267. # - return 'ERROR' if any error
  268. return 'NONE' # pragma: no cover