-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathTradeTrackerClient.php
More file actions
435 lines (395 loc) · 13.1 KB
/
TradeTrackerClient.php
File metadata and controls
435 lines (395 loc) · 13.1 KB
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
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
<?php
namespace Hypeit\TradeTracker\Client;
use Hypeit\TradeTracker\Exception\AuthenticationException;
use Hypeit\TradeTracker\Filter;
use Hypeit\TradeTracker\Mapper;
use Hypeit\TradeTracker\Model;
/**
* Class TradeTrackerClient
* @package Hypeit\TradeTracker\Client
*/
class TradeTrackerClient
{
/**
* @var \SoapClient
*/
private $client;
/**
* TradeTrackerClient constructor.
*
* @param string $wsdl The wsdl url of the service.
* @param Model\Authenticate $authenticate The model used to authenticate.
* @param array|null $options The options used for the client.
*
* @throws AuthenticationException
*/
public function __construct(string $wsdl, Model\Authenticate $authenticate, array $options = null)
{
if (null === $options) {
$options = array('compression' => SOAP_COMPRESSION_ACCEPT | SOAP_COMPRESSION_GZIP);
}
$this->client = new \SoapClient($wsdl, $options);
$this->connect($authenticate);
}
/**
* Returns the soap client used to make api calls.
*
* @return \SoapClient
*/
public function getClient()
{
return $this->client;
}
/**
* Connect and authenticate to initialize the client.
*
* @param Model\Authenticate $authenticate
*
* @throws AuthenticationException
*/
private function connect(Model\Authenticate $authenticate)
{
try {
$this->client->authenticate(
$authenticate->getCustomerId(),
$authenticate->getPassphrase(),
$authenticate->isSandbox(),
$authenticate->getLocale(),
$authenticate->isDemo()
);
} catch (\Exception $exception) {
throw new AuthenticationException(
sprintf('Failed to authenticate with message "%s".', $exception->getMessage())
);
}
}
/**
* Executes the api method call.
*
* @param string $method The api method to call.
* @param Mapper\MapperInterface $mapper The mapper required to map the values.
* @param array $arguments The arguments used with the method call.
*
* @return array
*/
private function execute($method, Mapper\MapperInterface $mapper, array $arguments = array())
{
$data = [];
$items = call_user_func_array(array($this->client, $method), $arguments);
if (!is_array($items)) {
$items = array($items);
}
foreach ($items as $value) {
$data[] = $mapper->hydrate($value);
}
return $data;
}
/**
* Returns a list of available affiliate sites linked to your account.
*
* @param Filter\AffiliateSiteFilter|null $filter To filter the results.
*
* @return Model\AffiliateSite[]
*/
public function getAffiliateSites(Filter\AffiliateSiteFilter $filter = null)
{
return $this->execute(__FUNCTION__, new Mapper\AffiliateSiteMapper(), [
$filter,
]);
}
/**
* Returns a list of affiliate site types.
*
* @return Model\AffiliateSiteType[]
*/
public function getAffiliateSiteTypes()
{
return $this->execute(__FUNCTION__, new Mapper\AffiliateSiteTypeMapper());
}
/**
* Returns a list of affiliate site categories.
*
* @return Model\AffiliateSiteCategory[]
*/
public function getAffiliateSiteCategories()
{
return $this->execute(__FUNCTION__, new Mapper\AffiliateSiteCategoryMapper());
}
/**
* Returns a list of available campaigns for the given affiliate site.
*
* @param int $affiliateSiteId The affiliate site.
* @param Filter\CampaignFilter|null $filter To filter the results.
*
* @return Model\Campaign[]
*/
public function getCampaigns(int $affiliateSiteId, Filter\CampaignFilter $filter = null)
{
return $this->execute(__FUNCTION__, new Mapper\CampaignMapper(), [
$affiliateSiteId,
$filter,
]);
}
/**
* Returns the available campaign categories.
*
* @return Model\CampaignCategory[]
*/
public function getCampaignCategories()
{
return $this->execute(__FUNCTION__, new Mapper\CampaignCategoryMapper());
}
/**
* Returns a extended commission information for the given campaign.
*
* @param int $affiliateSiteId The affiliate site.
* @param int $campaignId The campaign.
*
* @return Model\CampaignCommissionExtended
*/
public function getCampaignCommissionExtended(int $affiliateSiteId, int $campaignId)
{
$data = $this->execute(__FUNCTION__, new Mapper\CampaignCommissionExtendedMapper(), [
$affiliateSiteId,
$campaignId,
]);
return reset($data);
}
/**
* Change the campaign subscription.
*
* @param int $affiliateSiteId The affiliate site.
* @param int $campaignId The campaign.
* @param string $action The subscription action
*
* @see CampaignSubscriptionAction
*
* @return void
*/
public function changeCampaignSubscription(
int $affiliateSiteId,
int $campaignId,
string $action = Model\CampaignSubscriptionAction::SUBSCRIBE
) {
$this->client->changeCampaignSubscription(
$affiliateSiteId,
$campaignId,
new Model\CampaignSubscriptionAction($action)
);
}
/**
* Return the campaign news items.
*
* @param Filter\CampaignNewsItemFilter|null $filter To filter the results.
*
* @return Model\CampaignNewsItem[]
*/
public function getCampaignNewsItems(Filter\CampaignNewsItemFilter $filter = null)
{
return $this->execute(__FUNCTION__, new Mapper\CampaignNewsItemMapper(), [
$filter,
]);
}
/**
* Returns the click transactions for the affiliate site.
*
* @param int $affiliateSiteId The affiliate site.
* @param Filter\ClickTransactionFilter $filter To filter the results.
*
* @return Model\ClickTransaction[]
*/
public function getClickTransactions(int $affiliateSiteId, Filter\ClickTransactionFilter $filter = null)
{
return $this->execute(__FUNCTION__, new Mapper\ClickTransactionMapper(), [
$affiliateSiteId,
$filter,
]);
}
/**
* Returns the conversion transactions for the affiliate site.
*
* @param int $affiliateSiteId The affiliate site.
* @param Filter\ConversionTransactionFilter|null $filter To filter the results.
*
* @return Model\ConversionTransaction[]
*/
public function getConversionTransactions(int $affiliateSiteId, Filter\ConversionTransactionFilter $filter = null)
{
return $this->execute(__FUNCTION__, new Mapper\ConversionTransactionMapper(), [
$affiliateSiteId,
$filter,
]);
}
/**
* Creates a conversion transaction for the affiliate site.
* Permissions needed to execute this call.
*
* @param Model\TransactionType $transactionType The transaction type.
* @param int $affiliateSiteId The affiliate site.
* @param Model\CreateConversionTransactionOptions $options Transaction options.
*
* @return int
*/
public function createConversionTransaction(
Model\TransactionType $transactionType,
int $affiliateSiteId,
Model\CreateConversionTransactionOptions $options
) {
return $this->client->createConversionTransaction($transactionType->getType(), $affiliateSiteId, $options);
}
/**
* Returns a report for the given affiliate site.
*
* @param int $affiliateSiteId The affiliate site.
* @param Filter\ReportAffiliateSiteFilter|null $filter To filter the results.
*
* @return Model\ReportData
*/
public function getReportAffiliateSite(int $affiliateSiteId, Filter\ReportAffiliateSiteFilter $filter = null)
{
$data = $this->execute(__FUNCTION__, new Mapper\ReportDataMapper(), [
$affiliateSiteId,
$filter,
]);
return reset($data);
}
/**
* Returns a report for the given campaign.
*
* @param int $affiliateSiteId The affiliate site.
* @param Filter\ReportCampaignFilter $filter To filter the results.
*
* @return Model\ReportCampaign
*/
public function getReportCampaign(int $affiliateSiteId, Filter\ReportCampaignFilter $filter)
{
$data = $this->execute(__FUNCTION__, new Mapper\ReportCampaignMapper(), [
$affiliateSiteId,
$filter,
]);
return reset($data);
}
/**
* Returns a report reference.
*
* @param int $affiliateSiteId The affiliate site.
* @param Filter\ReportReferenceFilter $filter To filter the results.
*
* @return Model\ReportReference
*/
public function getReportReference(int $affiliateSiteId, Filter\ReportReferenceFilter $filter)
{
$data = $this->execute(__FUNCTION__, new Mapper\ReportReferenceMapper(), [
$affiliateSiteId,
$filter
]);
return reset($data);
}
/**
* Returns the available feeds.
*
* @param int $affiliateSiteId The affiliate site.
* @param Filter\FeedFilter|null $filter To filter the results.
*
* @return Model\Feed[]
*/
public function getFeeds(int $affiliateSiteId, Filter\FeedFilter $filter = null)
{
return $this->execute(__FUNCTION__, new Mapper\FeedMapper(), [
$affiliateSiteId,
$filter,
]);
}
/**
* Returns the available feed categories.
*
* @param int $affiliateSiteId The affiliate site.
* @param int $feedId The feed id.
*
* @return Model\FeedCategory[]
*/
public function getFeedProductCategories(int $affiliateSiteId, int $feedId)
{
return $this->execute(__FUNCTION__, new Mapper\FeedCategoryMapper(), [
$affiliateSiteId,
$feedId,
]);
}
/**
* Returns the available feed products.
*
* @param int $affiliateSiteId The affiliate site.
* @param Filter\FeedProductFilter|null $filter To filter the results.
*
* @return Model\FeedProduct[]
*/
public function getFeedProducts(int $affiliateSiteId, Filter\FeedProductFilter $filter = null)
{
return $this->execute(__FUNCTION__, new Mapper\FeedProductMapper(), [
$affiliateSiteId,
$filter,
]);
}
/**
* Returns a list of payments linked to your account.
*
* @param Filter\PaymentFilter|null $filter To filter the results.
*
* @return Model\Payment[]
*/
public function getPayments(Filter\PaymentFilter $filter = null)
{
return $this->execute(__FUNCTION__, new Mapper\PaymentMapper(), [
$filter,
]);
}
/**
* Returns a list of attributions per affiliate site.
*
* @param int $conversionTransactionId The conversion transaction id.
*
* @return Model\Attribution[]
*/
public function getAttributions(int $conversionTransactionId)
{
return $this->execute(__FUNCTION__, new Mapper\AttributionMapper(), [
$conversionTransactionId,
]);
}
/**
* Returns a list of touch points.
*
* @param int $conversionTransactionId The conversion transaction id.
*
* @return Model\Touchpoint[]
*/
public function getTouchpoints(int $conversionTransactionId)
{
return $this->execute(__FUNCTION__, new Mapper\TouchpointMapper(), [
$conversionTransactionId,
]);
}
/**
* Returns all transactions by account.
*
* @param \DateTime $startDate The start date of the transactions.
* @param \DateTime $endDate The end date of the transactions.
* @param Model\AffiliateSite[] $affiliateSites Affiliate site array. Can be obtained with getAffiliateSites() method
*
* @return array
*/
public function getTransactions(\DateTime $startDate, \DateTime $endDate, array $affiliateSites = [])
{
$data = [];
if (empty($affiliateSites)) {
$affiliateSites = $this->getAffiliateSites();
}
$filter = new Filter\ConversionTransactionFilter();
$filter->setRegistrationDateFrom($startDate->format('Y-m-d'));
$filter->setRegistrationDateTo($endDate->format('Y-m-d'));
foreach ($affiliateSites as $affiliateSite) {
$data[$affiliateSite->getId()][] = $this->getConversionTransactions($affiliateSite->getId(), $filter);
}
return $data;
}
}