etsy.php
1.84 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
<?php
class ControllerOpenbayEtsy extends Controller {
public function inbound() {
if ($this->config->get('etsy_status') != '1') {
$this->openbay->etsy->log('etsy/inbound - module inactive (503)');
http_response_code(503);
exit();
}
$body = $this->request->post;
if (!isset($body['action']) || !isset($body['auth'])) {
$this->openbay->etsy->log('etsy/inbound - action or auth data not set (401)');
http_response_code(401);
exit();
}
$incoming_token = isset($body['auth']['token']) ? $body['auth']['token'] : '';
$incoming_secret = isset($body['auth']['secret']) ? $body['auth']['secret'] : '';
if (!hash_equals($this->config->get('etsy_token'), $incoming_token) || !hash_equals($this->config->get('etsy_enc1'), $incoming_secret)) {
$this->openbay->etsy->log('etsy/inbound - Auth failed (401): ' . $incoming_token . '/' . $incoming_secret);
http_response_code(401);
exit();
}
$data = array();
if (isset($body['data']) && !empty($body['data'])) {
$decrypted = $this->openbay->etsy->decryptArgs($body['data'], true);
if (!$decrypted) {
$this->openbay->etsy->log('etsy/inbound Failed to decrypt data');
http_response_code(400);
exit();
}
$data = json_decode($decrypted);
}
switch ($body['action']) {
case 'orders':
$this->load->model('openbay/etsy_order');
$this->openbay->etsy->log('Orders action found');
$this->model_openbay_etsy_order->inbound($data);
break;
case 'products';
$this->load->model('openbay/etsy_product');
$this->model_openbay_etsy_product->inbound($data);
break;
}
}
public function eventAddOrderHistory($route, $order_id, $order_status_id, $comment = '', $notify = false, $override = false) {
if (!empty($order_id)) {
$this->load->model('openbay/etsy_order');
$this->model_openbay_etsy_order->addOrderHistory($order_id);
}
}
}