Merge pull request #14356 from civicrm/5.14
[civicrm-core.git] / CRM / Mailing / BAO / BouncePattern.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
fee14197 4 | CiviCRM version 5 |
6a488035 5 +--------------------------------------------------------------------+
6b83d5bd 6 | Copyright CiviCRM LLC (c) 2004-2019 |
6a488035
TO
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13 | |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
d25dd0ee 26 */
6a488035
TO
27
28/**
29 *
30 * @package CRM
6b83d5bd 31 * @copyright CiviCRM LLC (c) 2004-2019
6a488035
TO
32 */
33class CRM_Mailing_BAO_BouncePattern extends CRM_Mailing_DAO_BouncePattern {
34
35 /**
25606795 36 * Pseudo-constant pattern array.
7e8c8317 37 * @var array
6a488035 38 */
7e8c8317 39 public static $_patterns = NULL;
6a488035
TO
40
41 /**
fe482240 42 * Class constructor.
6a488035 43 */
00be9182 44 public function __construct() {
6a488035
TO
45 parent::__construct();
46 }
47
48 /**
fe482240 49 * Build the static pattern array.
6a488035
TO
50 */
51 public static function buildPatterns() {
be2fb01f 52 self::$_patterns = [];
6a488035
TO
53 $bp = new CRM_Mailing_BAO_BouncePattern();
54 $bp->find();
55
56 while ($bp->fetch()) {
57 self::$_patterns[$bp->bounce_type_id][] = $bp->pattern;
58 }
59
60 foreach (self::$_patterns as $type => $patterns) {
61 if (count($patterns) == 1) {
62 self::$_patterns[$type] = '{(' . $patterns[0] . ')}im';
63 }
64 else {
65 self::$_patterns[$type] = '{(' . implode(')|(', $patterns) . ')}im';
66 }
67 }
68 }
69
70 /**
71 * Try to match the string to a bounce type.
72 *
90c8230e
TO
73 * @param string $message
74 * The message to be matched.
6a488035 75 *
a6c01b45
CW
76 * @return array
77 * Tuple (bounce_type, bounce_reason)
6a488035
TO
78 */
79 public static function &match(&$message) {
80 // clean up $message and replace all white space by a single space, CRM-4767
81 $message = preg_replace('/\s+/', ' ', $message);
82
83 if (self::$_patterns == NULL) {
84 self::buildPatterns();
85 }
86
87 foreach (self::$_patterns as $type => $re) {
88 if (preg_match($re, $message, $matches)) {
be2fb01f 89 $bounce = [
6a488035
TO
90 'bounce_type_id' => $type,
91 'bounce_reason' => $message,
be2fb01f 92 ];
6a488035
TO
93 return $bounce;
94 }
95 }
96
be2fb01f 97 $bounce = [
6a488035
TO
98 'bounce_type_id' => NULL,
99 'bounce_reason' => $message,
be2fb01f 100 ];
6a488035
TO
101
102 return $bounce;
103 }
96025800 104
6a488035 105}