-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #21 from MaxCDN/adding-server-variable
Adding API URL as parameter
- Loading branch information
Showing
1 changed file
with
121 additions
and
109 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,119 +1,131 @@ | ||
<?php | ||
/** | ||
/** | ||
* MaxCDN REST Client Library | ||
* | ||
* | ||
* @copyright 2012 | ||
* @author Karlo Espiritu | ||
* @version 1.0 2012-09-21 | ||
*/ | ||
class MaxCDN { | ||
public $alias; | ||
class MaxCDN | ||
{ | ||
public $alias; | ||
|
||
public $key; | ||
public $key; | ||
|
||
public $secret; | ||
|
||
public $apiUrl; | ||
|
||
public $secret; | ||
|
||
public $MaxCDNrws_url = 'https://rws.maxcdn.com'; | ||
|
||
private $consumer; | ||
|
||
public function __construct($alias, $key, $secret, $options=null) { | ||
$this->alias = $alias; | ||
$this->key = $key; | ||
$this->secret = $secret; | ||
$this->consumer = new \MaxCDN\OAuth\OAuthConsumer($key, $secret, NULL); | ||
|
||
} | ||
|
||
private function execute($selected_call, $method_type, $params) { | ||
// the endpoint for your request | ||
$endpoint = "$this->MaxCDNrws_url/$this->alias$selected_call"; | ||
|
||
//parse endpoint before creating OAuth request | ||
$parsed = parse_url($endpoint); | ||
if (array_key_exists("parsed", $parsed)) | ||
{ | ||
parse_str($parsed['query'], $params); | ||
} | ||
|
||
//generate a request from your consumer | ||
$req_req = \MaxCDN\OAuth\OAuthRequest::from_consumer_and_token($this->consumer, NULL, $method_type, $endpoint, $params); | ||
|
||
//sign your OAuth request using hmac_sha1 | ||
$sig_method = new \MaxCDN\OAuth\OAuthSignatureMethod_HMAC_SHA1(); | ||
$req_req->sign_request($sig_method, $this->consumer, NULL); | ||
|
||
// create curl resource | ||
$ch = curl_init(); | ||
|
||
// force curl http/1.1 | ||
curl_setopt($ch, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_1); | ||
|
||
// set url | ||
curl_setopt($ch, CURLOPT_URL, $req_req); | ||
|
||
//return the transfer as a string | ||
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); | ||
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER , TRUE); | ||
|
||
// set curl timeout | ||
curl_setopt($ch, CURLOPT_TIMEOUT, 60); | ||
|
||
// set curl custom request type if not standard | ||
if ($method_type != "GET" && $method_type != "POST") { | ||
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method_type); | ||
} | ||
|
||
|
||
if ($method_type == "POST" || $method_type == "PUT" || $method_type == "DELETE") { | ||
$query_str = \MaxCDN\OAuth\OAuthUtil::build_http_query($params); | ||
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Expect:', 'Content-Length: ' . strlen($query_str))); | ||
curl_setopt($ch, CURLOPT_POSTFIELDS, $query_str); | ||
} | ||
|
||
// retrieve headers | ||
curl_setopt($ch, CURLOPT_HEADER, 1); | ||
curl_setopt($ch, CURLINFO_HEADER_OUT, 1); | ||
|
||
//set user agent | ||
curl_setopt($ch, CURLOPT_USERAGENT, 'PHP MaxCDN API Client'); | ||
|
||
// make call | ||
$result = curl_exec($ch); | ||
$headers = curl_getinfo($ch); | ||
$curl_error = curl_error($ch); | ||
|
||
// close curl resource to free up system resources | ||
curl_close($ch); | ||
|
||
// $json_output contains the output string | ||
$json_output = substr($result, $headers['header_size']); | ||
|
||
// catch errors | ||
if(!empty($curl_error) || empty($json_output)) { | ||
throw new \MaxCDN\RWSException("CURL ERROR: $curl_error, Output: $json_output", $headers['http_code'], null, $headers); | ||
} | ||
|
||
return $json_output; | ||
} | ||
|
||
public function get($selected_call, $params = array()){ | ||
|
||
return $this->execute($selected_call, 'GET', $params); | ||
} | ||
|
||
public function post($selected_call, $params = array()){ | ||
return $this->execute($selected_call, 'POST', $params); | ||
} | ||
|
||
public function put($selected_call, $params = array()){ | ||
return $this->execute($selected_call, 'PUT', $params); | ||
} | ||
|
||
public function delete($selected_call, $params = array()){ | ||
return $this->execute($selected_call, 'DELETE', $params); | ||
} | ||
|
||
|
||
|
||
public function __construct($alias, $key, $secret, $server = 'https://rws.maxcdn.com') | ||
{ | ||
$this->alias = $alias; | ||
$this->key = $key; | ||
$this->secret = $secret; | ||
$this->consumer = new \MaxCDN\OAuth\OAuthConsumer($key, $secret, null); | ||
$this->apiUrl = $server; | ||
} | ||
|
||
private function execute($selected_call, $method_type, $params) | ||
{ | ||
// the endpoint for your request | ||
$endpoint = "$this->apiUrl/$this->alias$selected_call"; | ||
|
||
//parse endpoint before creating OAuth request | ||
$parsed = parse_url($endpoint); | ||
if (array_key_exists("parsed", $parsed)) { | ||
parse_str($parsed['query'], $params); | ||
} | ||
|
||
//generate a request from your consumer | ||
$req_req = \MaxCDN\OAuth\OAuthRequest::from_consumer_and_token( | ||
$this->consumer, | ||
null, | ||
$method_type, | ||
$endpoint, | ||
$params | ||
); | ||
|
||
//sign your OAuth request using hmac_sha1 | ||
$sig_method = new \MaxCDN\OAuth\OAuthSignatureMethod_HMAC_SHA1(); | ||
$req_req->sign_request($sig_method, $this->consumer, null); | ||
|
||
// create curl resource | ||
$ch = curl_init(); | ||
|
||
// force curl http/1.1 | ||
curl_setopt($ch, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_1); | ||
|
||
// set url | ||
curl_setopt($ch, CURLOPT_URL, $req_req); | ||
|
||
//return the transfer as a string | ||
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); | ||
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, true); | ||
|
||
// set curl timeout | ||
curl_setopt($ch, CURLOPT_TIMEOUT, 60); | ||
|
||
// set curl custom request type if not standard | ||
if ($method_type != "GET" && $method_type != "POST") { | ||
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method_type); | ||
} | ||
|
||
if ($method_type == "POST" || $method_type == "PUT" || $method_type == "DELETE") { | ||
$query_str = \MaxCDN\OAuth\OAuthUtil::build_http_query($params); | ||
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Expect:', 'Content-Length: ' . strlen($query_str))); | ||
curl_setopt($ch, CURLOPT_POSTFIELDS, $query_str); | ||
} | ||
|
||
// retrieve headers | ||
curl_setopt($ch, CURLOPT_HEADER, 1); | ||
curl_setopt($ch, CURLINFO_HEADER_OUT, 1); | ||
|
||
//set user agent | ||
curl_setopt($ch, CURLOPT_USERAGENT, 'PHP MaxCDN API Client'); | ||
|
||
// make call | ||
$result = curl_exec($ch); | ||
$headers = curl_getinfo($ch); | ||
$curl_error = curl_error($ch); | ||
|
||
// close curl resource to free up system resources | ||
curl_close($ch); | ||
|
||
// $json_output contains the output string | ||
$json_output = substr($result, $headers['header_size']); | ||
|
||
// catch errors | ||
if (!empty($curl_error) || empty($json_output)) { | ||
throw new \MaxCDN\RWSException( | ||
"CURL ERROR: $curl_error, Output: $json_output", | ||
$headers['http_code'], | ||
null, | ||
$headers | ||
); | ||
} | ||
|
||
return $json_output; | ||
} | ||
|
||
public function get($selected_call, $params = array()) | ||
{ | ||
return $this->execute($selected_call, 'GET', $params); | ||
} | ||
|
||
public function post($selected_call, $params = array()) | ||
{ | ||
return $this->execute($selected_call, 'POST', $params); | ||
} | ||
|
||
public function put($selected_call, $params = array()) | ||
{ | ||
return $this->execute($selected_call, 'PUT', $params); | ||
} | ||
|
||
public function delete($selected_call, $params = array()) | ||
{ | ||
return $this->execute($selected_call, 'DELETE', $params); | ||
} | ||
} |