-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathEvent.php
266 lines (222 loc) · 5.58 KB
/
Event.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
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
<?php
namespace Crossmedia\Fourallportal\Domain\Model;
use Doctrine\DBAL\Exception;
use PDO;
use TYPO3\CMS\Core\Database\ConnectionPool;
use TYPO3\CMS\Core\Utility\GeneralUtility;
use TYPO3\CMS\Extbase\DomainObject\AbstractEntity;
/***
*
* This file is part of the "4AllPortal Connector" Extension for TYPO3 CMS.
*
* For the full copyright and license information, please read the
* LICENSE.txt file that was distributed with this source code.
*
* (c) 2017 Marc Neuhaus <[email protected]>, MIA3 GmbH & Co. KG
*
***/
/**
* Events
*/
class Event extends AbstractEntity
{
protected int $eventId = 0;
protected string $eventType = '';
protected string $status = 'pending';
protected int $skipUntil = 0;
protected int $nextRetry = 0;
protected int $retries = 0;
protected string $objectId = '';
protected ?Module $module = null;
protected string $headers = '';
protected string $response = '';
protected string $url;
protected string $payload = '';
protected string $message;
protected int $crdate;
protected int $tstamp;
protected bool $processing = false;
protected array $beanData = [];
public function getBeanData(): array
{
return $this->beanData;
}
public function setBeanData(array $beanData): void
{
$this->beanData = $beanData;
}
public function getEventId(): int
{
return $this->eventId;
}
public function setEventId(int $eventId): void
{
$this->eventId = $eventId;
}
public function getStatus(): string
{
return $this->status;
}
public function setStatus(string $status): void
{
$this->status = $status;
}
public function getSkipUntil(): int
{
return $this->skipUntil;
}
public function getRetries(): int
{
return $this->retries;
}
public function setRetries(int $retries): void
{
$this->retries = $retries;
}
public function getNextRetry(): int
{
return $this->nextRetry;
}
public function setNextRetry(int $nextRetry): void
{
$this->nextRetry = $nextRetry;
}
public function setSkipUntil(int $skipUntil): void
{
$this->skipUntil = $skipUntil;
}
public function getObjectId(): string
{
return $this->objectId;
}
public function setObjectId(string $objectId): void
{
$this->objectId = $objectId;
}
public function getModule(): ?Module
{
return $this->module;
}
public function setModule(Module $module): void
{
$this->module = $module;
}
public function getEventType(): string
{
return $this->eventType;
}
public function setEventType(string $eventType): void
{
$this->eventType = $eventType;
}
public function getHeaders(): string
{
return $this->headers;
}
public function setHeaders(string $headers): void
{
$this->headers = $headers;
}
public function getResponse(): string
{
return $this->response;
}
public function setResponse(string $response): void
{
$this->response = $response;
}
public function getUrl(): string
{
return $this->url;
}
public function setUrl(string $url): void
{
$this->url = $url;
}
public function getPayload(): string
{
return $this->payload;
}
public function setPayload(string $payload): void
{
$this->payload = $payload;
}
public function getMessage(): string
{
return $this->message;
}
public function setMessage(string $message): void
{
$this->message = $message;
}
public function getCrdate(): int
{
return $this->crdate;
}
public function setCrdate(int $crdate): void
{
$this->crdate = $crdate;
}
public function getTstamp(): int
{
return $this->tstamp;
}
public function setTstamp(int $tstamp): void
{
$this->tstamp = $tstamp;
}
/**
* @throws Exception
*/
public function isProcessing(): bool
{
$queryBuilder = GeneralUtility::makeInstance(ConnectionPool::class)->getQueryBuilderForTable('tx_fourallportal_domain_model_event');
$query = $queryBuilder->select('processing')
->from('tx_fourallportal_domain_model_event')
->where($queryBuilder->expr()->eq('uid', $this->uid))
->setMaxResults(1);
return $this->processing = (bool)$query->executeQuery()->fetchFirstColumn()[0];
}
public function setProcessing(bool $processing): void
{
$queryBuilder = GeneralUtility::makeInstance(ConnectionPool::class)->getQueryBuilderForTable('tx_fourallportal_domain_model_event');
$query = $queryBuilder->update('tx_fourallportal_domain_model_event')
->set('processing', $processing ? 1 : 0,PDO::PARAM_INT)
->where($queryBuilder->expr()->eq('uid', $this->uid));
$query->executeStatement();
$this->processing = $processing;
}
public static function resolveEventType(int $eventTypeId): string
{
$map = [
0 => 'delete',
1 => 'update',
2 => 'create'
];
return $map[$eventTypeId];
}
public function getMostRecentObjectLog(): string
{
return implode(PHP_EOL, array_reverse(explode(PHP_EOL, shell_exec('tail -n 1000 ' . $this->getObjectLogFilePath()))));
}
public function getMostRecentEventLog(): string
{
return implode(PHP_EOL, array_reverse(explode(PHP_EOL, shell_exec('tail -n 1000 ' . $this->getEventLogFilePath()))));
}
public function getObjectLogFilePath(): string
{
return sprintf(
'typo3temp/var/logs/fourallportal/objects/%s/%s.log',
$this->getModule()->getModuleName(),
$this->getObjectId()
);
}
public function getEventLogFilePath(): string
{
return sprintf(
'typo3temp/var/logs/fourallportal/events/%s/%s.log',
$this->getModule()->getModuleName(),
$this->getObjectId()
);
}
}