forked from buckybox/buckybox-api-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbucky-box-api-wrapper.php
156 lines (116 loc) · 3.74 KB
/
bucky-box-api-wrapper.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
<?php
require_once 'bucky-box-api-wrapper-base.php';
/*
* Bucky Box API v1.0 PHP
* More information: api.buckybox.com/docs/v1
*
* Each method returns array(statusCode, response)
*/
class BuckyBoxApiWrapper {
static $api_base_url = 'https://api.buckybox.com/v1/';
function __construct($key, $secret) {
$this->api_key = $key;
$this->api_secret = $secret;
}
public function boxes() {
return new Boxes($this->api_key, $this->api_secret);
}
public function customers() {
return new Customers($this->api_key, $this->api_secret);
}
public function deliveries() {
return new Deliveries($this->api_key, $this->api_secret);
}
public function deliveryServices() {
return new DeliveryServices($this->api_key, $this->api_secret);
}
public function orders() {
return new Orders($this->api_key, $this->api_secret);
}
public function webstore() {
return new Webstore($this->api_key, $this->api_secret);
}
}
class Boxes extends BuckyBoxApiBase {
public function all() {
$url = $this->getFullUrl('boxes');
return $this->getHelper($url);
}
public function id($id) {
$url = $this->getFullUrl('boxes/'.$id);
return $this->getHelper($url);
}
}
class Customers extends BuckyBoxApiBase {
public function all() {
$url = $this->getFullUrl('customers');
return $this->getHelper($url);
}
public function id($id) {
$url = $this->getFullUrl('customers/'.$id);
return $this->getHelper($url);
}
public function create($params) {
// TODO: use array params instead of JSON
$url = $this->getFullUrl('customers');
$this->curl = new BuckyBoxCurl($this->api_key, $this->api_secret);
return $this->curl->post($params, $url);
}
public function update($params, $id) {
// TODO: use array params instead of JSON
$url = $this->getFullUrl('customers/'.$id);
$this->curl = new BuckyBoxCurl($this->api_key, $this->api_secret);
return $this->curl->post($params, $url);
}
public function signIn($params) {
// TODO: POST /v1/customers/sign_in
}
}
class Deliveries extends BuckyBoxApiBase {
public function packingCsv($date){
$url = $this->getFullUrl('deliveries?date='.$date.'&screen=packing');
return $this->getHelper($url);
}
public function deliveryServicesCsv($date){
$url = $this->getFullUrl('deliveries?date='.$date.'&screen=delivery');
return $this->getHelper($url);
}
public function pendingDates() {
$url = $this->getFullUrl('deliveries/pending');
return $this->getHelper($url);
}
}
class DeliveryServices extends BuckyBoxApiBase {
public function all() {
$url = $this->getFullUrl('delivery_services');
return $this->getHelper($url);
}
public function id($id) {
$url = $this->getFullUrl('delivery_services/'.$id);
return $this->getHelper($url);
}
}
class Orders extends BuckyBoxApiBase {
public function all() {
$url = $this->getFullUrl('orders');
return $this->getHelper($url);
}
public function id($id) {
$url = $this->getFullUrl('orders/'.$id);
return $this->getHelper($url);
}
public function create($params){
// TODO: use array params instead of JSON
// not fully documented, ask Ced
$url = $this->getFullUrl('orders');
$this->curl = new BuckyBoxCurl($this->api_key, $this->api_secret);
return $this->curl->post($params, $url);
}
}
class Webstore extends BuckyBoxApiBase {
public function all() {
$url = $this->getFullUrl('webstore');
return $this->getHelper($url);
}
}
?>