-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathCustomer.php
447 lines (400 loc) · 11.4 KB
/
Customer.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
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
436
437
438
439
440
441
442
443
444
445
446
447
<?php
namespace ChartMogul;
use ChartMogul\Resource\AbstractResource;
use ChartMogul\Resource\Collection;
use ChartMogul\Resource\CollectionWithCursor;
use ChartMogul\Http\ClientInterface;
use ChartMogul\Service\UpdateTrait;
use ChartMogul\Service\CreateTrait;
use ChartMogul\Service\AllTrait;
use ChartMogul\Service\DestroyTrait;
use ChartMogul\Service\GetTrait;
/**
* @property-read string $id
* @property-read string $uuid
* @property-read string $external_id
* @property-read string $name
* @property-read string $email
* @property-read string $status
* @property-read string $customer_since
* @property-read array $attributes
* @property-read string $address
* @property-read string $mrr
* @property-read string $arr
* @property-read string $billing_system_url
* @property-read string $chartmogul_url
* @property-read string $billing_system_type
* @property-read string $currency
* @property-read string $currency_sign
*/
class Customer extends AbstractResource
{
use CreateTrait;
use AllTrait;
use GetTrait;
use DestroyTrait;
use UpdateTrait;
/**
* @ignore
*/
public const RESOURCE_NAME = 'Customer';
/**
* @ignore
*/
public const RESOURCE_PATH = '/v1/customers';
public const RESOURCE_ID = 'customer_uuid';
public const ROOT_KEY = 'entries';
protected $id;
protected $uuid;
protected $address;
protected $arr;
protected $attributes;
protected $billing_system_type;
protected $billing_system_url;
protected $chartmogul_url;
protected $company;
protected $currency;
protected $currency_sign;
protected $customer_since;
protected $email;
protected $external_id;
protected $mrr;
protected $name;
protected $owner;
protected $status;
// PATCH = Update a customer
protected $data_source_uuid;
protected $data_source_uuids;
protected $external_ids;
protected $free_trial_started_at;
protected $lead_created_at;
protected $website_url;
protected $city;
protected $country;
protected $state;
protected $zip;
private $invoices;
private $subscriptions;
/**
* Get Customer Tags
*
* @return array
*/
public function tags()
{
return $this->attributes['tags'];
}
/**
* Get Customer Custom Attributes
*
* @return array
*/
public function customAttributes()
{
return $this->attributes['custom'];
}
/**
* Find a Customer by External ID. Returns only first result!
*
* @param string|array $externalId
* @param ClientInterface|null $client
* @return Customer|null
*/
public static function findByExternalId($externalId, ClientInterface $client = null)
{
if (gettype($externalId) == 'string') {
$externalId = ['external_id' => $externalId];
}
$response = self::all($externalId, $client);
if ($response instanceof Collection
&& !$response->isEmpty()
) {
return $response->first();
}
return null;
}
/**
* Search for Customers
*
* @param string $email
* @param ClientInterface|null $client
* @return Collection|static
*/
public static function search($email, ClientInterface $client = null)
{
$response = (new static([], $client))
->getClient()
->setResourceKey(static::RESOURCE_NAME)
->send('/v1/customers/search', 'GET', ['email' => $email]);
return static::fromArray($response, $client);
}
/**
* Merge Customers
*
* @param array $from
* @param array $into
* @param ClientInterface|null $client
* @return bool
*/
public static function merge($from, $into, ClientInterface $client = null)
{
(new static([], $client))
->getClient()
->setResourcekey(static::class)
->send(
'/v1/customers/merges',
'POST',
[
'from' => $from,
'into' => $into
]
);
return true;
}
/**
* Unmerge Customers
*
* @param string $customer_uuid
* @param string $external_id
* @param string $data_source_uuid
* @param array $move_to_new_customer
* @param ClientInterface|null $client
* @return bool
*/
public static function unmerge($customer_uuid, $external_id, $data_source_uuid, array $move_to_new_customer = [], ClientInterface $client = null)
{
(new static([], $client))
->getClient()
->setResourcekey(static::class)
->send(
'/v1/customers/unmerges',
'POST',
[
'customer_uuid' => $customer_uuid,
'external_id' => $external_id,
'data_source_uuid' => $data_source_uuid,
'move_to_new_customer' => $move_to_new_customer
]
);
return true;
}
/**
* Connect Subscriptions
*
* @param string $customerUUID
* @param array $data
* @param ClientInterface|null $client
* @return bool
*/
public static function connectSubscriptions($customerUUID, array $data = [], ClientInterface $client = null)
{
(new static([], $client))
->getClient()
->setResourcekey(static::class)
->send('/v1/customers/'.$customerUUID.'/connect_subscriptions', 'POST', $data);
return true;
}
/**
* Add tags to a customer
*
* @param mixed $tags,...
* @return array
*/
public function addTags($tags)
{
$result = $this->getClient()
->send(
'/v1/customers/'.$this->uuid.'/attributes/tags',
'POST',
[
'tags' => func_get_args()
]
);
$this->attributes['tags'] = $result['tags'];
return $result['tags'];
}
/**
* Remove Tags from a Customer
*
* @param mixed $tags,...
* @return array
*/
public function removeTags($tags)
{
$result = $this->getClient()
->send(
'/v1/customers/'.$this->uuid.'/attributes/tags',
'DELETE',
[
'tags' => func_get_args()
]
);
$this->attributes['tags'] = $result['tags'];
return $result['tags'];
}
/**
* Add Custom Attributes to a Customer
*
* @param mixed $custom,...
* @return array
*/
public function addCustomAttributes($custom)
{
$result = $this->getClient()
->send(
'/v1/customers/'.$this->uuid.'/attributes/custom',
'POST',
[
'custom' => func_get_args()
]
);
$this->attributes['custom'] = $result['custom'];
return $result['custom'];
}
/**
* Remove Custom Attributes from a Customer
*
* @param mixed $custom,...
* @return array
*/
public function removeCustomAttributes($custom)
{
$result = $this->getClient()
->send(
'/v1/customers/'.$this->uuid.'/attributes/custom',
'DELETE',
[
'custom' => func_get_args()
]
);
$this->attributes['custom'] = $result['custom'];
return $result['custom'];
}
/**
* Update Custom Attributes of a Customer
*
* @param mixed $custom,...
* @return array
*/
public function updateCustomAttributes($custom)
{
$data = [];
foreach (func_get_args() as $value) {
$data = array_merge($data, $value);
}
$result = $this->getClient()
->send(
'/v1/customers/'.$this->uuid.'/attributes/custom',
'PUT',
[
'custom' => $data
]
);
$this->attributes['custom'] = $result['custom'];
return $result['custom'];
}
/**
* Find a Customer Subscriptions
*
* @param array $options
* @return Collection | Customer
* @deprecated Use Import\Subscription.
*/
public function subscriptions(array $options = [])
{
if (!isset($this->subscriptions)) {
$options['customer_uuid'] = $this->uuid;
$this->subscriptions = Subscription::all($options);
}
return $this->subscriptions;
}
/**
* Find customer's invoices
*
* @param array $options
* @return Collection | Customer
* @deprecated Use Import\CustomerInvoices.
*/
public function invoices(array $options = [])
{
if (!isset($this->invoices)) {
$options['customer_uuid'] = $this->uuid;
$this->invoices = CustomerInvoices::all($options)->invoices;
}
return $this->invoices;
}
/**
* Find all contacts in a customer
*
* @param array $options
* @return CollectionWithCursor
*/
public function contacts(array $options = [])
{
$client = $this->getClient();
$result = $client->send("/v1/customers/".$this->uuid."/contacts", "GET", $options);
return Contact::fromArray($result, $client);
}
/**
* Creates a contact from the customer.
*
* @param array $data
* @return Contact
*/
public function createContact(array $data = [])
{
$client = $this->getClient();
$result = $client->send("/v1/customers/".$this->uuid."/contacts", "POST", $data);
return new Contact($result, $client);
}
/**
* Find all customer notes in a customer
*
* @param array $options
* @return CollectionWithCursor
*/
public function notes(array $options = [])
{
$client = $this->getClient();
$result = $client->send("/v1/customer_notes", "GET", [$options, "customer_uuid" => $this->uuid]);
return CustomerNote::fromArray($result, $client);
}
/**
* Creates a customer note from the customer.
*
* @param array $data
* @return CustomerNote
*/
public function createNote(array $data = [])
{
$client = $this->getClient();
$data["customer_uuid"] = $this->uuid;
$result = $client->send("/v1/customer_notes", "POST", $data);
return new CustomerNote($result, $client);
}
/**
* Find all opportunities for a customer
*
* @param array $options
* @return CollectionWithCursor
*/
public function opportunities(array $options = [])
{
$client = $this->getClient();
$result = $client->send("/v1/opportunities", "GET", [$options, "customer_uuid" => $this->uuid]);
return Opportunity::fromArray($result, $client);
}
/**
* Creates an opportunity from the customer.
*
* @param array $data
* @return Opportunity
*/
public function createOpportunity(array $data = [])
{
$client = $this->getClient();
$data["customer_uuid"] = $this->uuid;
$result = $client->send("/v1/opportunities", "POST", $data);
return new Opportunity($result, $client);
}
}