This repository has been archived by the owner on Dec 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
wp-hubspot-api.php
324 lines (273 loc) · 8.14 KB
/
wp-hubspot-api.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
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
<?php
/**
* WP HubSpot API
*
* @package WP-API-Libraries\WP-HubSpot-API
*/
/*
* Plugin Name: WP Hubspot API
* Plugin URI: https://github.com/wp-api-libraries/wp-hubspot-api
* Description: Perform API requests to Hubspot in WordPress.
* Author: WP API Libraries
* Version: 1.0.0
* Author URI: https://wp-api-libraries.com
* GitHub Plugin URI: https://github.com/wp-api-libraries/wp-hubspot-api
* GitHub Branch: master
* Text Domain: wp-hubspot-api
*/
/* Exit if accessed directly. */
defined( 'ABSPATH' ) || exit;
use WP_Hubspot_API;
require_once trailingslashit( dirname( __FILE__ ) ) . 'autoloader.php';
if ( ! class_exists( 'HubSpotAPI' ) ) {
/**
* HubSpot API Class.
*/
class HubSpotAPI {
/**
* HTTP request arguments.
*
* (default value: array())
*
* @var array
* @access protected
*/
protected $args = array();
/**
* api_key
*
* @var mixed
* @access protected
* @static
*/
protected static $api_key;
/**
* oauth_token
*
* @var mixed
* @access protected
* @static
*/
protected static $oauth_token;
/**
* BaseAPI Endpoint
*
* @var string
* @access protected
*/
protected $base_uri = 'https://api.hubapi.com/';
/**
* Route being called.
*
* @var string
*/
protected $route = '';
/**
* __construct function.
*
* @access public
* @param mixed $api_key
* @return void
*/
function __construct( $api_key = null, $oauth_token = null ) {
static::$api_key = $api_key;
static::$oauth_token = $oauth_token;
}
/**
* Prepares API request.
*
* @param string $route API route to make the call to.
* @param array $args Arguments to pass into the API call.
* @param array $method HTTP Method to use for request.
* @return self Returns an instance of itself so it can be chained to the fetch method.
*/
protected function build_request( $route, $args = array(), $method = 'GET' ) {
// Start building query.
$this->set_headers();
// Merge args with body.
if ( isset( $this->args['body'] ) ) {
$args = array_merge( $args, $this->args['body'] );
$this->args['body'] = array(); // Just in case.
}
$this->args['method'] = $method;
$this->route = $route;
if ( ! empty( static::$api_key ) ) {
$this->route = add_query_arg( 'hapikey', static::$api_key, $this->route );
}
// Generate query string for GET requests.
if ( 'GET' === $method ) {
$this->route = add_query_arg( array_filter( $args ), $this->route );
} elseif ( 'application/json' === $this->args['headers']['Content-Type'] ) {
$this->args['body'] = wp_json_encode( $args );
} else {
$this->args['body'] = $args;
}
// Hubspot api is jank and doesnt use proper URL encode standards... So we must jank it up.
$this->route = preg_replace( '/\%5B\d+\%5D/', '', $this->route );
return $this;
}
/**
* Run function.
*
* @access private
* @param mixed $route
* @param array $args (default: array())
* @param string $method (default: 'GET')
* @return void
*/
protected function run( $route, $args = array(), $method = 'GET' ) {
return $this->build_request( $route, $args, $method )->fetch();
}
/**
* Fetch the request from the API.
*
* @access private
* @return array|WP_Error Request results or WP_Error on request failure.
*/
protected function fetch() {
// Make the request.
// pp( $this->base_uri . $this->route, $this->args );
$response = wp_remote_request( $this->base_uri . $this->route, $this->args );
// pp( $this->base_uri . $this->route, $response );
// Retrieve Status code & body.
$code = wp_remote_retrieve_response_code( $response );
$body = json_decode( wp_remote_retrieve_body( $response ) );
$this->clear();
// Return WP_Error if request is not successful.
if ( ! $this->is_status_ok( $code ) ) {
return new WP_Error( 'response-error', sprintf( __( 'Status: %d', 'wp-hubspot-api' ), $code ), $body );
}
return $body;
}
/**
* Set properties and pagination settings.
*
* Allows cleaner method creation/calls.
*
* For example, to get 20 contacts offset by cid, and get properties, you could
* $hubspotapi->sp( 20, null, array( 'hs_lead_status', 'firstname', 'lastname',
* 'hubspot_owner_id', 'lifecyclestage' ), array( 'vidOffset' => $cid ) )->get_all_contacts();
*
* @param integer $limit [description]
* @param [type] $offset [description]
* @param [type] $properties [description]
* @return HubspotAPI $this.
*/
public function set_props( $count = 20, $offset = null, $properties = null, $alt_args = array() ) {
$args = array(
'count' => intval( $count ),
'limit' => intval( $count ),
'offset' => $offset,
'property' => $properties,
);
$this->args['body'] = $this->filter_args( $alt_args, $args );
return $this;
}
/**
* sp function.
*
* @access public
* @param int $count (default: 20)
* @param mixed $offset (default: null)
* @param mixed $properties (default: null)
* @param array $alt_args (default: array())
* @return void
*/
public function sp( $count = 20, $offset = null, $properties = null, $alt_args = array() ) {
return $this->set_props( $count, $offset, $properties, $alt_args );
}
/**
* Set request headers.
*/
protected function set_headers() {
// Set request headers.
$this->args['headers'] = array(
'Content-Type' => 'application/json',
);
if ( ! empty( static::$oauth_token ) ) {
$this->args['headers'] = array(
'Authorization' => 'Bearer ' . static::$oauth_token,
);
}
}
/**
* Clear query data.
*/
protected function clear() {
$this->args = array();
}
/**
* Check if HTTP status code is a success.
*
* @param int $code HTTP status code.
* @return boolean True if status is within valid range.
*/
protected function is_status_ok( $code ) {
return ( 200 <= $code && 300 > $code );
}
/**
* Takes the elements of one or more arrays, merges them together and
* filters empty and null values out of the resulting array.
*
* @param array $args A variable amount of arrays to merge and filter through.
* @return array A single array of filtered args.
*/
private function filter_args( array ...$args ) {
// Merges arrays and removes empty and null values.
return array_filter( array_merge( ...$args ) );
}
/* Oauth. */
/**
* [get_oauth_access_token description]
*
* @param string $client_id [description]
* @param string $client_secret [description]
* @param string $redirect_uri [description]
* @param string $code [description]
* @return [type] [description]
*/
function get_oauth_access_token( string $client_id, string $client_secret, string $redirect_uri, string $code ) {
$this->build_request( 'oauth/v1/token', array(), 'POST' );
$args = array(
'grant_type' => 'authorization_code',
'client_id' => $client_id,
'client_secret' => $client_secret,
'redirect_uri' => $redirect_uri,
'code' => $code,
);
$this->args['headers']['Content-Type'] = 'application/x-www-form-urlencoded';
$this->args['body'] = $args;
return $this->fetch();
}
/**
* [get_oauth_token_info description]
*
* @param string $token [description]
* @return [type] [description]
*/
function get_oauth_token_info( string $token ) {
return $this->run( 'oauth/v1/access-tokens/' . $token );
}
/**
* [check_daily_usage description]
*
* @return [type] [description]
*/
function check_daily_usage() {
return $this->run( 'integrations/v1/limit/daily' );
}
/* Email Events. */
/**
* Event.
*
* @access public
* @param mixed $event_id Event ID.
* @param mixed $contact_email (default: null) Contact Email.
* @param mixed $contact_revenue (default: null) Contact Revenue.
* @param mixed $any_contact_property (default: null) Any Contact Property.
* @return void
*/
function event( $event_id, $contact_email = null, $contact_revenue = null, $any_contact_property = null ) {
}
}
}