1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace ShippoClient; |
4
|
|
|
|
5
|
|
|
use ShippoClient\Http\Request\MockCollection; |
6
|
|
|
use ShippoClient\Http\RequestV2; |
7
|
|
|
|
8
|
|
View Code Duplication |
class ShippoClientV2 |
|
|
|
|
9
|
|
|
{ |
10
|
|
|
/** |
11
|
|
|
* @var RequestV2 |
12
|
|
|
*/ |
13
|
|
|
private $request; |
14
|
|
|
|
15
|
|
|
/** |
16
|
|
|
* @var string |
17
|
|
|
*/ |
18
|
|
|
private $accessToken; |
19
|
|
|
|
20
|
|
|
/** |
21
|
|
|
* @var static|null |
22
|
|
|
*/ |
23
|
|
|
private static $instance = null; |
24
|
|
|
|
25
|
|
|
private function __construct(RequestV2 $request) |
26
|
|
|
{ |
27
|
|
|
$this->request = $request; |
28
|
|
|
} |
29
|
|
|
|
30
|
|
|
public function addresses() |
31
|
|
|
{ |
32
|
|
|
return new Addresses($this->request); |
33
|
|
|
} |
34
|
|
|
|
35
|
|
|
public function parcels() |
36
|
|
|
{ |
37
|
|
|
return new Parcels($this->request); |
38
|
|
|
} |
39
|
|
|
|
40
|
|
|
public function shipments() |
41
|
|
|
{ |
42
|
|
|
return new Shipments($this->request); |
43
|
|
|
} |
44
|
|
|
|
45
|
|
|
public function rates() |
46
|
|
|
{ |
47
|
|
|
return new Rates($this->request); |
48
|
|
|
} |
49
|
|
|
|
50
|
|
|
public function transactions() |
51
|
|
|
{ |
52
|
|
|
return new Transactions($this->request); |
53
|
|
|
} |
54
|
|
|
|
55
|
|
|
public function refunds() |
56
|
|
|
{ |
57
|
|
|
return new Refunds($this->request); |
58
|
|
|
} |
59
|
|
|
|
60
|
|
|
public function tracks() |
61
|
|
|
{ |
62
|
|
|
return new Tracks($this->request); |
63
|
|
|
} |
64
|
|
|
|
65
|
|
|
public function getAccessToken() |
66
|
|
|
{ |
67
|
|
|
return $this->accessToken; |
68
|
|
|
} |
69
|
|
|
|
70
|
|
|
public function setRequestOption($keyOrPath, $value) |
71
|
|
|
{ |
72
|
|
|
$this->request->setDefaultOption($keyOrPath, $value); |
73
|
|
|
|
74
|
|
|
return $this; |
75
|
|
|
} |
76
|
|
|
|
77
|
|
|
/** |
78
|
|
|
* @param string $accessToken |
79
|
|
|
* @param null|string $apiVersion |
80
|
|
|
* @return static |
81
|
|
|
*/ |
82
|
|
|
public static function provider($accessToken, $apiVersion = null) |
83
|
|
|
{ |
84
|
|
|
if (static::$instance !== null && static::$instance->getAccessToken() === $accessToken) { |
|
|
|
|
85
|
|
|
return static::$instance; |
|
|
|
|
86
|
|
|
} |
87
|
|
|
|
88
|
|
|
static::$instance = new static(new RequestV2($accessToken, $apiVersion)); |
|
|
|
|
89
|
|
|
|
90
|
|
|
return static::$instance; |
|
|
|
|
91
|
|
|
} |
92
|
|
|
|
93
|
|
|
public static function mock() |
94
|
|
|
{ |
95
|
|
|
return MockCollection::getInstance(); |
96
|
|
|
} |
97
|
|
|
} |
98
|
|
|
|
Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.
You can also find more detailed suggestions in the “Code” section of your repository.