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
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
|
<?php
/* * Author: Neuman Vong neuman@twilio.com * License: http://creativecommons.org/licenses/MIT/ MIT * Link: https://twilio-php.readthedocs.org/en/latest/ */
function Services_Twilio_autoload($className) { if (substr($className, 0, 15) != 'Services_Twilio' && substr($className, 0, 26) != 'TaskRouter_Services_Twilio' && substr($className, 0, 23) != 'Lookups_Services_Twilio' && substr($className, 0, 23) != 'Monitor_Services_Twilio' && substr($className, 0, 23) != 'Pricing_Services_Twilio') { return false; } $file = str_replace('_', '/', $className); $file = str_replace('Services/', '', $file); return include dirname(__FILE__) . "/$file.php"; }
spl_autoload_register('Services_Twilio_autoload');
/** * Base client class */ abstract class Base_Services_Twilio extends Services_Twilio_Resource { const USER_AGENT = 'twilio-php/4.12.0';
protected $http; protected $last_response; protected $retryAttempts; protected $version; protected $versions = array('2010-04-01');
public function __construct( $sid, $token, $version = null, Services_Twilio_TinyHttp $_http = null, $retryAttempts = 1 ) { $this->version = in_array($version, $this->versions) ? $version : end($this->versions);
if (null === $_http) { if (!in_array('openssl', get_loaded_extensions())) { throw new Services_Twilio_HttpException("The OpenSSL extension is required but not currently enabled. For more information, see http://php.net/manual/en/book.openssl.php"); } if (in_array('curl', get_loaded_extensions())) { $_http = new Services_Twilio_TinyHttp( $this->_getBaseUri(), array( "curlopts" => array( CURLOPT_USERAGENT => self::qualifiedUserAgent(phpversion()), CURLOPT_HTTPHEADER => array('Accept-Charset: utf-8'), ), ) ); } else { $_http = new Services_Twilio_HttpStream( $this->_getBaseUri(), array( "http_options" => array( "http" => array( "user_agent" => self::qualifiedUserAgent(phpversion()), "header" => "Accept-Charset: utf-8\r\n", ), "ssl" => array( 'verify_peer' => true, 'verify_depth' => 5, ), ), ) ); } } $_http->authenticate($sid, $token); $this->http = $_http; $this->retryAttempts = $retryAttempts; }
/** * Build a query string from query data * * :param array $queryData: An associative array of keys and values. The * values can be a simple type or a list, in which case the list is * converted to multiple query parameters with the same key. * :param string $numericPrefix: optional prefix to prepend to numeric keys * :return: The encoded query string * :rtype: string */ public static function buildQuery($queryData, $numericPrefix = '') { $query = ''; // Loop through all of the $query_data foreach ($queryData as $key => $value) { // If the key is an int, add the numeric_prefix to the beginning if (is_int($key)) { $key = $numericPrefix . $key; }
// If the value is an array, we will end up recursing if (is_array($value)) { // Loop through the values foreach ($value as $value2) { // Add an arg_separator if needed if ($query !== '') { $query .= '&'; } // Recurse $query .= self::buildQuery(array($key => $value2), $numericPrefix); } } else { // Add an arg_separator if needed if ($query !== '') { $query .= '&'; } // Add the key and the urlencoded value (as a string) $query .= $key . '=' . urlencode((string)$value); } } return $query; }
/** * Construct a URI based on initial path, query params, and paging * information * * We want to use the query params, unless we have a next_page_uri from the * API. * * :param string $path: The request path (may contain query params if it's * a next_page_uri) * :param array $params: Query parameters to use with the request * :param boolean $full_uri: Whether the $path contains the full uri * * :return: the URI that should be requested by the library * :returntype: string */ public function getRequestUri($path, $params, $full_uri = false) { $json_path = $full_uri ? $path : "$path.json"; if (!$full_uri && !empty($params)) { $query_path = $json_path . '?' . http_build_query($params, '', '&'); } else { $query_path = $json_path; } return $query_path; }
/** * Fully qualified user agent with the current PHP Version. * * :return: the user agent * :rtype: string */ public static function qualifiedUserAgent($php_version) { return self::USER_AGENT . " (php $php_version)"; }
/** * POST to the resource at the specified path. * * :param string $path: Path to the resource * :param array $params: Query string parameters * * :return: The object representation of the resource * :rtype: object */ public function createData($path, $params = array(), $full_uri = false) { if (!$full_uri) { $path = "$path.json"; } $headers = array('Content-Type' => 'application/x-www-form-urlencoded'); $response = $this->http->post( $path, $headers, self::buildQuery($params, '') ); return $this->_processResponse($response); }
/** * DELETE the resource at the specified path. * * :param string $path: Path to the resource * :param array $params: Query string parameters * * :return: The object representation of the resource * :rtype: object */ public function deleteData($path, $params = array()) { $uri = $this->getRequestUri($path, $params); return $this->_makeIdempotentRequest(array($this->http, 'delete'), $uri, $this->retryAttempts); }
/** * Get the retry attempt limit used by the rest client * * :return: the number of retry attempts * :rtype: int */ public function getRetryAttempts() { return $this->retryAttempts; }
/** * Get the api version used by the rest client * * :return: the API version in use * :returntype: string */ public function getVersion() { return $this->version; }
/** * GET the resource at the specified path. * * :param string $path: Path to the resource * :param array $params: Query string parameters * :param boolean $full_uri: Whether the full URI has been passed as an * argument * * :return: The object representation of the resource * :rtype: object */ public function retrieveData($path, $params = array(), $full_uri = false ) { $uri = $this->getRequestUri($path, $params, $full_uri); return $this->_makeIdempotentRequest(array($this->http, 'get'), $uri, $this->retryAttempts); }
/** * Get the base URI for this client. * * :return: base URI * :rtype: string */ protected function _getBaseUri() { return 'https://api.twilio.com'; }
/** * Helper method for implementing request retry logic * * :param array $callable: The function that makes an HTTP request * :param string $uri: The URI to request * :param int $retriesLeft: Number of times to retry * * :return: The object representation of the resource * :rtype: object */ protected function _makeIdempotentRequest($callable, $uri, $retriesLeft) { $response = call_user_func_array($callable, array($uri)); list($status, $headers, $body) = $response; if ($status >= 500 && $retriesLeft > 0) { return $this->_makeIdempotentRequest($callable, $uri, $retriesLeft - 1); } else { return $this->_processResponse($response); } }
/** * Convert the JSON encoded resource into a PHP object. * * :param array $response: 3-tuple containing status, headers, and body * * :return: PHP object decoded from JSON * :rtype: object * :throws: A :php:class:`Services_Twilio_RestException` if the Response is * in the 300-500 range of status codes. */ private function _processResponse($response) { list($status, $headers, $body) = $response; if ($status === 204) { return true; } $decoded = json_decode($body); if ($decoded === null) { throw new Services_Twilio_RestException( $status, 'Could not decode response body as JSON. ' . 'This likely indicates a 500 server error' ); } if (200 <= $status && $status < 300) { $this->last_response = $decoded; return $decoded; } throw new Services_Twilio_RestException( $status, isset($decoded->message) ? $decoded->message : '', isset($decoded->code) ? $decoded->code : null, isset($decoded->more_info) ? $decoded->more_info : null ); } }
/** * Create a client to talk to the Twilio Rest API. * * * :param string $sid: Your Account SID * :param string $token: Your Auth Token from `your dashboard * <https://www.twilio.com/user/account>`_ * :param string $version: API version to use * :param $_http: A HTTP client for making requests. * :type $_http: :php:class:`Services_Twilio_TinyHttp` * :param int $retryAttempts: * Number of times to retry failed requests. Currently only idempotent * requests (GET's and DELETE's) are retried. * * Here's an example: * * .. code-block:: php * * require('Services/Twilio.php'); * $client = new Services_Twilio('AC123', '456bef', null, null, 3); * // Take some action with the client, etc. */ class Services_Twilio extends Base_Services_Twilio { protected $versions = array('2008-08-01', '2010-04-01');
public function __construct( $sid, $token, $version = null, Services_Twilio_TinyHttp $_http = null, $retryAttempts = 1 ) { parent::__construct($sid, $token, $version, $_http, $retryAttempts);
$this->accounts = new Services_Twilio_Rest_Accounts($this, "/{$this->version}/Accounts"); $this->account = $this->accounts->get($sid); } }
/** * Create a client to talk to the Twilio TaskRouter API. * * * :param string $sid: Your Account SID * :param string $token: Your Auth Token from `your dashboard * <https://www.twilio.com/user/account>`_ * :param string $workspaceSid: * Workspace SID to work with * :param string $version: API version to use * :param $_http: A HTTP client for making requests. * :type $_http: :php:class:`Services_Twilio_TinyHttp` * :param int $retryAttempts: * Number of times to retry failed requests. Currently only idempotent * requests (GET's and DELETE's) are retried. * * Here's an example: * * .. code-block:: php * * require('Services/Twilio.php'); * $client = new TaskRouter_Services_Twilio('AC123', '456bef', null, null, 3); * // Take some action with the client, etc. */ class TaskRouter_Services_Twilio extends Base_Services_Twilio { protected $versions = array('v1'); private $accountSid;
public function __construct( $sid, $token, $workspaceSid, $version = null, Services_Twilio_TinyHttp $_http = null, $retryAttempts = 1 ) { parent::__construct($sid, $token, $version, $_http, $retryAttempts);
$this->workspaces = new Services_Twilio_Rest_TaskRouter_Workspaces($this, "/{$this->version}/Workspaces"); $this->workspace = $this->workspaces->get($workspaceSid); $this->accountSid = $sid; }
/** * Construct a URI based on initial path, query params, and paging * information * * We want to use the query params, unless we have a next_page_uri from the * API. * * :param string $path: The request path (may contain query params if it's * a next_page_uri) * :param array $params: Query parameters to use with the request * :param boolean $full_uri: Whether the $path contains the full uri * * :return: the URI that should be requested by the library * :returntype: string */ public function getRequestUri($path, $params, $full_uri = false) { if (!$full_uri && !empty($params)) { $query_path = $path . '?' . http_build_query($params, '', '&'); } else { $query_path = $path; } return $query_path; }
public static function createWorkspace($sid, $token, $friendlyName, array $params = array(), Services_Twilio_TinyHttp $_http = null) { $taskrouterClient = new TaskRouter_Services_Twilio($sid, $token, null, null, $_http); return $taskrouterClient->workspaces->create($friendlyName, $params); }
public function getTaskQueuesStatistics(array $params = array()) { return $this->retrieveData("/{$this->version}/Workspaces/{$this->workspace->sid}/TaskQueues/Statistics", $params); }
public function getTaskQueueStatistics($taskQueueSid, array $params = array()) { return $this->retrieveData("/{$this->version}/Workspaces/{$this->workspace->sid}/TaskQueues/{$taskQueueSid}/Statistics", $params); }
public function getWorkersStatistics(array $params = array()) { return $this->retrieveData("/{$this->version}/Workspaces/{$this->workspace->sid}/Workers/Statistics", $params); }
public function getWorkerStatistics($workerSid, array $params = array()) { return $this->retrieveData("/{$this->version}/Workspaces/{$this->workspace->sid}/Workers/{$workerSid}/Statistics", $params); }
public function getWorkflowStatistics($workflowSid, array $params = array()) { return $this->retrieveData("/{$this->version}/Workspaces/{$this->workspace->sid}/Workflows/{$workflowSid}/Statistics", $params); }
public function getWorkspaceStatistics(array $params = array()) { return $this->retrieveData("/{$this->version}/Workspaces/{$this->workspace->sid}/Statistics", $params); }
protected function _getBaseUri() { return 'https://taskrouter.twilio.com'; } }
/** * Create a client to talk to the Twilio Lookups API. * * * :param string $sid: Your Account SID * :param string $token: Your Auth Token from `your dashboard * <https://www.twilio.com/user/account>`_ * :param string $version: API version to use * :param $_http: A HTTP client for making requests. * :type $_http: :php:class:`Services_Twilio_TinyHttp` * :param int $retryAttempts: * Number of times to retry failed requests. Currently only idempotent * requests (GET's and DELETE's) are retried. * * Here's an example: * * .. code-block:: php * * require('Services/Twilio.php'); * $client = new Lookups_Services_Twilio('AC123', '456bef', null, null, 3); * // Take some action with the client, etc. */ class Lookups_Services_Twilio extends Base_Services_Twilio { protected $versions = array('v1'); private $accountSid;
public function __construct( $sid, $token, $version = null, Services_Twilio_TinyHttp $_http = null, $retryAttempts = 1 ) { parent::__construct($sid, $token, $version, $_http, $retryAttempts);
$this->accountSid = $sid; $this->phone_numbers = new Services_Twilio_Rest_Lookups_PhoneNumbers($this, "/{$this->version}/PhoneNumbers"); }
/** * Construct a URI based on initial path, query params, and paging * information * * We want to use the query params, unless we have a next_page_uri from the * API. * * :param string $path: The request path (may contain query params if it's * a next_page_uri) * :param array $params: Query parameters to use with the request * :param boolean $full_uri: Whether the $path contains the full uri * * :return: the URI that should be requested by the library * :returntype: string */ public function getRequestUri($path, $params, $full_uri = false) { if (!$full_uri && !empty($params)) { $query_path = $path . '?' . http_build_query($params, '', '&'); } else { $query_path = $path; } return $query_path; }
/** * Get the base URI for this client. * * :return: base URI * :rtype: string */ protected function _getBaseUri() { return 'https://lookups.twilio.com'; }
}
/** * Create a client to talk to the Twilio Pricing API. * * * :param string $sid: Your Account SID * :param string $token: Your Auth Token from `your dashboard * <https://www.twilio.com/user/account>`_ * :param string $version: API version to use * :param $_http: A HTTP client for making requests. * :type $_http: :php:class:`Services_Twilio_TinyHttp` * :param int $retryAttempts: * Number of times to retry failed requests. Currently only idempotent * requests (GET's and DELETE's) are retried. * * Here's an example: * * .. code-block:: php * * require('Services/Twilio.php'); * $client = new Pricing_Services_Twilio('AC123', '456bef', null, null, 3); * // Take some action with the client, etc. */ class Pricing_Services_Twilio extends Base_Services_Twilio { protected $versions = array('v1');
public function __construct( $sid, $token, $version = null, Services_Twilio_TinyHttp $_http = null, $retryAttempts = 1 ) { parent::__construct($sid, $token, $version, $_http, $retryAttempts);
$this->voiceCountries = new Services_Twilio_Rest_Pricing_VoiceCountries( $this, "/{$this->version}/Voice/Countries" ); $this->voiceNumbers = new Services_Twilio_Rest_Pricing_VoiceNumbers( $this, "/{$this->version}/Voice/Numbers" ); $this->phoneNumberCountries = new Services_Twilio_Rest_Pricing_PhoneNumberCountries( $this, "/{$this->version}/PhoneNumbers/Countries" ); $this->messagingCountries = new Services_Twilio_Rest_Pricing_MessagingCountries( $this, "/{$this->version}/Messaging/Countries" ); }
/** * Construct a URI based on initial path, query params, and paging * information * * We want to use the query params, unless we have a next_page_uri from the * API. * * :param string $path: The request path (may contain query params if it's * a next_page_uri) * :param array $params: Query parameters to use with the request * :param boolean $full_uri: Whether the $path contains the full uri * * :return: the URI that should be requested by the library * :returntype: string */ public function getRequestUri($path, $params, $full_uri = false) { if (!$full_uri && !empty($params)) { $query_path = $path . '?' . http_build_query($params, '', '&'); } else { $query_path = $path; } return $query_path; }
protected function _getBaseUri() { return 'https://pricing.twilio.com'; }
}
/** * Create a client to talk to the Twilio Monitor API. * * * :param string $sid: Your Account SID * :param string $token: Your Auth Token from `your dashboard * <https://www.twilio.com/user/account>`_ * :param string $version: API version to use * :param $_http: A HTTP client for making requests. * :type $_http: :php:class:`Services_Twilio_TinyHttp` * :param int $retryAttempts: * Number of times to retry failed requests. Currently only idempotent * requests (GET's and DELETE's) are retried. * * Here's an example: * * .. code-block:: php * * require('Services/Twilio.php'); * $client = new Monitor_Services_Twilio('AC123', '456bef', null, null, 3); * // Take some action with the client, etc. */ class Monitor_Services_Twilio extends Base_Services_Twilio { protected $versions = array('v1');
public function __construct( $sid, $token, $version = null, Services_Twilio_TinyHttp $_http = null, $retryAttempts = 1 ) { parent::__construct($sid, $token, $version, $_http, $retryAttempts);
$this->events = new Services_Twilio_Rest_Monitor_Events($this, "/{$this->version}/Events"); $this->alerts = new Services_Twilio_Rest_Monitor_Alerts($this, "/{$this->version}/Alerts"); }
/** * Construct a URI based on initial path, query params, and paging * information * * We want to use the query params, unless we have a next_page_uri from the * API. * * :param string $path: The request path (may contain query params if it's * a next_page_uri) * :param array $params: Query parameters to use with the request * :param boolean $full_uri: Whether the $path contains the full uri * * :return: the URI that should be requested by the library * :returntype: string */ public function getRequestUri($path, $params, $full_uri = false) { if (!$full_uri && !empty($params)) { $query_path = $path . '?' . http_build_query($params, '', '&'); } else { $query_path = $path; } return $query_path; }
protected function _getBaseUri() { return 'https://monitor.twilio.com'; }
}
/** * Create a client to talk to the Twilio SIP Trunking API. * * * :param string $sid: Your Account SID * :param string $token: Your Auth Token from `your dashboard * <https://www.twilio.com/user/account>`_ * :param string $version: API version to use * :param $_http: A HTTP client for making requests. * :type $_http: :php:class:`Services_Twilio_TinyHttp` * :param int $retryAttempts: * Number of times to retry failed requests. Currently only idempotent * requests (GET's and DELETE's) are retried. * * Here's an example: * * .. code-block:: php * * require('Services/Twilio.php'); * $client = new Trunking_Services_Twilio('AC123', '456bef', null, null, 3); * // Take some action with the client, etc. */ class Trunking_Services_Twilio extends Base_Services_Twilio { protected $versions = array('v1');
public function __construct( $sid, $token, $version = null, Services_Twilio_TinyHttp $_http = null, $retryAttempts = 1 ) { parent::__construct($sid, $token, $version, $_http, $retryAttempts);
$this->trunks = new Services_Twilio_Rest_Trunking_Trunks($this, "/{$this->version}/Trunks"); }
/** * Construct a URI based on initial path, query params, and paging * information * * We want to use the query params, unless we have a next_page_uri from the * API. * * :param string $path: The request path (may contain query params if it's * a next_page_uri) * :param array $params: Query parameters to use with the request * :param boolean $full_uri: Whether the $path contains the full uri * * :return: the URI that should be requested by the library * :returntype: string */ public function getRequestUri($path, $params, $full_uri = false) { if (!$full_uri && !empty($params)) { $query_path = $path . '?' . http_build_query($params, '', '&'); } else { $query_path = $path; } return $query_path; }
protected function _getBaseUri() { return 'https://trunking.twilio.com'; }
}
/** * Create a client to talk to the Twilio IP Messaging API. * * * :param string $sid: Your Account SID * :param string $token: Your Auth Token from `your dashboard * <https://www.twilio.com/user/account>`_ * :param string $version: API version to use * :param $_http: A HTTP client for making requests. * :type $_http: :php:class:`Services_Twilio_TinyHttp` * :param int $retryAttempts: * Number of times to retry failed requests. Currently only idempotent * requests (GET's and DELETE's) are retried. * * Here's an example: * * .. code-block:: php * * require('Services/Twilio.php'); * $client = new Messaging_Services_Twilio('AC123', '456bef', null, null, 3); * // Take some action with the client, etc. */ class IPMessaging_Services_Twilio extends Base_Services_Twilio { protected $versions = array('v1'); public function __construct( $sid, $token, $version = null, Services_Twilio_TinyHttp $_http = null, $retryAttempts = 1 ) { parent::__construct($sid, $token, $version, $_http, $retryAttempts); $this->services = new Services_Twilio_Rest_IPMessaging_Services($this, "/{$this->version}/Services"); $this->credentials = new Services_Twilio_Rest_IPMessaging_Credentials($this, "/{$this->version}/Credentials"); } /** * Construct a URI based on initial path, query params, and paging * information * * We want to use the query params, unless we have a next_page_uri from the * API. * * :param string $path: The request path (may contain query params if it's * a next_page_uri) * :param array $params: Query parameters to use with the request * :param boolean $full_uri: Whether the $path contains the full uri * * :return: the URI that should be requested by the library * :returntype: string */ public function getRequestUri($path, $params, $full_uri = false) { if (!$full_uri && !empty($params)) { $query_path = $path . '?' . http_build_query($params, '', '&'); } else { $query_path = $path; } return $query_path; } protected function _getBaseUri() { return 'https://ip-messaging.twilio.com'; } }
|