-
Notifications
You must be signed in to change notification settings - Fork 13
/
MailgunRoute.php
224 lines (202 loc) · 5.32 KB
/
MailgunRoute.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
<?php
/** @author Andrei Baibaratsky */
class MailgunRoute implements MailgunObject
{
private $_id;
private $_priority = 0;
private $_expression = 'catch_all()';
private $_actions = array();
private $_description;
private $_createDt;
/**
* @param array $data
* @return MailgunRoute
*/
public static function load($data)
{
$route = new self;
$route->_id = $data['id'];
$route->_priority = $data['priority'];
$route->_expression = $data['expression'];
$route->_actions = $data['actions'];
$route->_description = $data['description'];
$route->_createDt = new DateTime($data['created_at']);
return $route;
}
/**
* @return array POST-data for Mailgun API request
*/
public function getPostData()
{
$data = array(
'priority' => $this->_priority,
'expression' => $this->_expression,
);
foreach ($this->_actions as $number => $action) {
$data['action[' . ($number + 1) . ']'] = $action;
}
if (!empty($this->_description)) {
$data['description'] = $this->_description;
}
return $data;
}
/**
* @param int $priority
*/
public function setPriority($priority)
{
$this->_priority = $priority;
}
/**
* @return int
*/
public function getPriority()
{
return $this->_priority;
}
/**
* @param string $expression Route filter {@link http://documentation.mailgun.com/user_manual.html#route-filters}
*/
public function setExpression($expression)
{
$this->_expression = $expression;
}
/**
* Set route filter to match the recipient against the pattern
* @param string $pattern Regular expression
*
* Mailgun supports regexp captures in filters. This allows you to use captured values inside of your actions.
* Example:
* <code>
* $route->matchRecipient('(.*)@bar.com');
* $route->addForwardAction('http://myhost.com/post/?mailbox=\1');
* </code>
* or
* <code>
* $route->matchRecipient('(?P<user>.*?)@(?P<domain>.*?)');
* $route->addForwardAction('http://mycallback.com/domains/\g<domain>/users/\g<user>');
* </code>
*/
public function matchRecipient($pattern)
{
$this->_expression = 'match_recipient("' . $pattern . '")';
}
/**
* Set route filter to match a message header against the pattern
* @param string $header MIME header of the message
* @param string $pattern Regular expression
*
* Mailgun supports regexp captures in filters. This allows you to use captured values inside of your actions.
* Example:
* <code>
* $route->matchHeader('subject', '(.*)');
* $route->addForwardAction('http://myhost.com/post/?subject=\1');
* </code>
* or
* <code>
* $route->matchHeader('subject', '\[(?P<id>.*?)\] (?P<name>.*?)');
* $route->addForwardAction('http://myhost.com/post/?id=\g<id>&name\g<name>');
* </code>
*/
public function matchHeader($header, $pattern)
{
$this->_expression = 'match_header("' . $header . '", "' . $pattern . '")';
}
/**
* Set route filter to catch all messages
*/
public function catchAll()
{
$this->_expression = 'catch_all()';
}
/**
* @return string
*/
public function getExpression()
{
return $this->_expression;
}
/**
* @param string $action Route action {@link http://documentation.mailgun.com/user_manual.html#route-actions}
*/
public function addAction($action)
{
$this->_actions[] = $action;
}
/**
* Append forward action
* @param string $destination E-mail address or URL
*/
public function addForwardAction($destination)
{
$this->addAction('forward("' . $destination . '")');
}
/**
* Append stop action
*/
public function addStopAction()
{
$this->addAction('stop()');
}
/**
* @param string $action
*/
public function removeAction($action)
{
foreach ($this->_actions as $key => $value) {
if ($value === $action) {
unset($this->_actions[$key]);
}
}
}
/**
* Remove forward action
* @param string $destination E-mail address or URL
*/
public function removeForwardAction($destination)
{
$this->removeAction('forward("' . $destination . '")');
}
/**
* Remove stop action
*/
public function removeStopAction()
{
$this->removeAction('stop()');
}
/**
* @param array $actions
*/
public function setActions($actions)
{
$this->_actions = $actions;
}
/**
* @return array
*/
public function getActions()
{
return $this->_actions;
}
/**
* @param string $description
*/
public function setDescription($description)
{
$this->_description = $description;
}
/**
* @return string
*/
public function getDescription()
{
return $this->_description;
}
/**
* @return DateTime
*/
public function getCreateDt()
{
return $this->_createDt;
}
}