-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDelivery.php
232 lines (200 loc) · 4.6 KB
/
Delivery.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
225
226
227
228
229
230
231
232
<?php
namespace common\components\mailing;
use yii\base\BaseObject;
use yii\db\ActiveRecord;
use yii\db\Exception;
/**
* Trait DeliveryCountTrite
* @package common\components\mailing
*/
abstract class Delivery extends BaseObject
{
// Статусы состояния
const STATUS_STOP = 0; // и для целей
const STATUS_PLAY = 1; // и для целей
const STATUS_ERROR = 2; // и для целей
const STATUS_PAUSE = -1;
const LIMIT = 10;
/** @var Mailing */
public $mailing;
/** @var ActiveRecord */
public $model;
/**
* @param Mailing $mailing
* @return Delivery[]
*/
public static function getDeliveries($mailing)
{
return [];
}
/**
* @param Mailing $mailing
* @param array $id
* @return null|Delivery
*/
public static function getDelivery($mailing, $id)
{
return null;
}
/**
* @return string[]
*/
public static function getTags()
{
return [];
}
/**
* @param string $email
* @param int[] $tags
* @param string[] $exclude
* @param int $limit
* @return array
*/
public static function searchEmails($email, array $tags = [], array $exclude = [], $limit = Delivery::LIMIT)
{
return [];
}
/**
* @return bool
*/
public function start()
{
try {
/** @var ActiveRecord $class */
$class = get_class($this->model);
$transaction = $class::getDb()->beginTransaction();
if (
$this->updateDates() &&
$this->setStatus(self::STATUS_PLAY)
) {
$this->getCombinator()->execute($this->mailing->getQueue());
$transaction->commit();
return true;
}
$transaction->rollBack();
return false;
} catch (Exception $exception) {
return false;
}
}
/**
* @return bool
*/
public function stop()
{
try {
/** @var ActiveRecord $class */
$class = get_class($this->model);
$transaction = $class::getDb()->beginTransaction();
if (
$this->setStatus(self::STATUS_STOP)
) {
$this->setTargets([]);
$transaction->commit();
return true;
}
$transaction->rollBack();
return false;
} catch (Exception $exception) {
return false;
}
}
/**
* @return bool
*/
public function pause()
{
return $this->setStatus(self::STATUS_PAUSE);
}
/**
* @return bool
*/
public function resume()
{
return $this->setStatus(self::STATUS_PLAY);
}
/**
* @return array
*/
abstract public function getId();
/**
* @param Target[] $targets
* @return bool
*/
abstract public function setTargets($targets);
/**
* @param Target $target
* @return bool
*/
abstract public function updateTarget($target);
/**
* @return Target[]
*/
abstract public function getTargets();
/**
* @param string $email
* @return Target
*/
abstract public function getTarget($email);
/**
* @param Combinator $combinator
* @return Target[]
*/
abstract public function fetchTargets($combinator);
/**
* @param null|int|int[] $status
* @return int
*/
abstract public function countTotal($status = null);
/**
* @param Combinator $combinator
* @return bool
*/
abstract public function setCombinator($combinator);
/**
* @return Combinator
*/
abstract public function getCombinator();
/**
* @param int $status
* @return bool
*/
abstract public function setStatus($status);
/**
* @return int
*/
abstract public function getStatus();
/**
* @return bool
*/
abstract public function updateDates();
/**
* @return int
*/
abstract public function getLatestDate();
/**
* @return int
*/
abstract public function getNextDate();
/**
* @param string $name
* @return boolean
*/
abstract public function setName($name);
/**
* @return string
*/
abstract public function getName();
/**
* @return string
*/
abstract public function getSubject();
/**
* @return string
*/
abstract public function getBody();
/**
* @return bool
*/
abstract public function mayRestart();
}