forked from phpish/shopify
-
Notifications
You must be signed in to change notification settings - Fork 1
/
shopify.php
145 lines (113 loc) · 4.85 KB
/
shopify.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
<?php
namespace phpish\shopify;
use phpish\http;
function install_url($shop, $api_key)
{
return "http://$shop/admin/api/auth?api_key=$api_key";
}
// function is_valid_request($query_params, $shared_secret)
// {
// if (!isset($query_params['timestamp'])) {
// return false;
// }
// $seconds_in_a_day = 24 * 60 * 60;
// $older_than_a_day = $query_params['timestamp'] < (time() - $seconds_in_a_day);
// if ($older_than_a_day) {
// return false;
// }
// $hmac = $query_params['hmac'];
// unset($query_params['signature'], $query_params['hmac']);
// foreach ($query_params as $key => $val) {
// $params[] = "$key=$val";
// }
// sort($params);
// return (hash_hmac('sha256', implode('&', $params), $shared_secret) === $hmac);
// }
function is_valid_request($query_params, $shared_secret) {
if(!is_array($query_params)) return false;
if(array_key_exists('shop',$query_params) && array_key_exists('timestamp',$query_params) && array_key_exists('hmac',$query_params)) {
$hmac = $query_params['hmac'];
unset($query_params['signature']);
unset($query_params['hmac']);
ksort($query_params);
return $hmac == hash_hmac('sha256', http_build_query($query_params), $shared_secret);
}
return false;
}
function authorization_url($shop, $api_key, $scopes=array(), $redirect_uri='')
{
$scopes = empty($scopes) ? '' : '&scope='.implode(',', $scopes);
$redirect_uri = empty($redirect_uri) ? '' : '&redirect_uri='.urlencode($redirect_uri);
return "https://$shop/admin/oauth/authorize?client_id=$api_key$scopes$redirect_uri";
}
function access_token($shop, $api_key, $shared_secret, $code)
{
try
{
$response = http\request("POST https://$shop/admin/oauth/access_token", array(), array('client_id'=>$api_key, 'client_secret'=>$shared_secret, 'code'=>$code));
}
catch (http\CurlException $e) { throw new CurlException($e->getMessage(), $e->getCode(), $e->getRequest()); }
catch (http\ResponseException $e) { throw new ApiException($e->getMessage(), $e->getCode(), $e->getRequest(), $e->getResponse()); }
return $response['access_token'];
}
function client($shop, $api_key, $oauth_token, $private_app=false)
{
$base_uri = $private_app ? _private_app_base_url($shop, $api_key, $oauth_token) : "https://$shop/";
return function ($method_uri, $query='', $payload='', &$response_headers=array(), $request_headers=array(), $curl_opts=array()) use ($base_uri, $oauth_token, $private_app)
{
if (!$private_app) $request_headers['X-Shopify-Access-Token'] = $oauth_token;
$request_headers['content-type'] = 'application/json; charset=utf-8';
$http_client = http\client($base_uri, $request_headers);
try
{
$response = $http_client($method_uri, $query, $payload, $response_headers, $request_headers, $curl_opts);
}
catch (http\CurlException $e) { throw new CurlException($e->getMessage(), $e->getCode(), $e->getRequest()); }
catch (http\ResponseException $e) { throw new ApiException($e->getMessage(), $e->getCode(), $e->getRequest(), $e->getResponse()); }
if (isset($response['errors']))
{
list($method, $uri) = explode(' ', $method_uri, 2);
$uri = rtrim($base_uri).'/'.ltrim($uri, '/');
$headers = $request_headers;
$request = compact('method', 'uri', 'query', 'headers', 'payload');
$response = array('headers'=>$response_headers, 'body'=>$response);
throw new ApiException($response_headers['http_status_message'].": $uri", $response_headers['http_status_code'], $request, $response);
}
return (is_array($response) and !empty($response)) ? array_shift($response) : $response;
};
}
function _private_app_base_url($shop, $api_key, $password)
{
return "https://$api_key:$password@$shop/";
}
function calls_made($response_headers)
{
return _shop_api_call_limit_param(0, $response_headers);
}
function call_limit($response_headers)
{
return _shop_api_call_limit_param(1, $response_headers);
}
function calls_left($response_headers)
{
return call_limit($response_headers) - calls_made($response_headers);
}
function _shop_api_call_limit_param($index, $response_headers)
{
$params = explode('/', $response_headers['http_x_shopify_shop_api_call_limit']);
return (int) $params[$index];
}
class Exception extends http\Exception { }
class CurlException extends Exception { }
class ApiException extends Exception
{
function __construct($message, $code, $request, $response=array(), Exception $previous=null)
{
$response_body_json = isset($response['body']) ? $response['body'] : '';
$response = json_decode($response_body_json, true);
$response_error = isset($response['errors']) ? ' '.var_export($response['errors'], true) : '';
$this->message = $message.$response_error;
parent::__construct($this->message, $code, $request, $response, $previous);
}
}
?>