Created
February 5, 2016 12:36
-
-
Save TiagoGouvea/1526ca16985e25de4f8e to your computer and use it in GitHub Desktop.
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
<?php | |
/** | |
* Authors: | |
* Júlio Paulillo <[email protected]> | |
* Tulio Monte Azul <[email protected]> | |
* | |
* DOCS | |
* ############# | |
* Guia de integrações | |
* http://ajuda.rdstation.com.br/hc/pt-br/articles/200310549-Guia-de-integra%C3%A7%C3%B5es-com-o-RD-Station | |
* | |
* Marcar venda e lost via formulário próprio ou sistema (API) | |
* http://ajuda.rdstation.com.br/hc/pt-br/articles/202640385-Marcar-venda-e-lost-via-formul%C3%A1rio-pr%C3%B3prio-ou-sistema-API- | |
* | |
* Alterar estado do Lead no funil do RD Station (API) | |
* http://ajuda.rdstation.com.br/hc/pt-br/articles/200310699-Alterar-estado-do-Lead-no-funil-do-RD-Station-API- | |
* | |
* Integrar formulário no site ou sistema próprio para Criação de Lead (API) | |
* http://ajuda.rdstation.com.br/hc/pt-br/articles/200310589-Integrar-formulário-no-site-ou-sistema-próprio-para-Criação-de-Lead-API- | |
**/ | |
namespace TiagoGouvea\PHPRdStation; | |
use Exception; | |
class RDStationAPI | |
{ | |
public $token; | |
public $privateToken; | |
public $baseURL = "https://www.rdstation.com.br/api/"; | |
public $apiVersion = "1.2"; | |
public $defaultIdentifier = "rdstation-php-integration"; | |
public function __construct($privateToken = NULL, $token = NULL) | |
{ | |
if (empty($privateToken)) throw new Exception("Inform RDStationAPI.privateToken as the first argument."); | |
$this->token = $token; | |
$this->privateToken = $privateToken; | |
} | |
/** | |
* $type: (String) generic, leads, conversions | |
**/ | |
protected function getURL($type = 'generic') | |
{ | |
//(POST) https://www.rdstation.com.br/api/1.2/services/PRIVATE_TOKEN/generic //USED TO CHANGE A LEAD STATUS | |
//(PUT) https://www.rdstation.com.br/api/1.2/leads/:lead_email //USED TO UPDATE A LEAD | |
//(POST) https://www.rdstation.com.br/api/1.2/conversions //USED TO SEND A NEW LEAD | |
switch ($type) { | |
case 'generic': | |
return $this->baseURL . $this->apiVersion . "/services/" . $this->privateToken . "/generic"; | |
case 'leads': | |
return $this->baseURL . $this->apiVersion . "/leads/"; | |
case 'conversions': | |
return $this->baseURL . $this->apiVersion . "/conversions"; | |
} | |
} | |
protected function validateToken() | |
{ | |
if (empty($this->token)) throw new Exception("Inform RDStation.token as the second argument when instantiating a new RDStationAPI object."); | |
} | |
/** | |
* $method: (String) POST, PUT | |
* $url: (String) RD Station endpoint returned by $this->getURL() | |
* $data: (Array) | |
**/ | |
protected function request($method = "POST", $url, $data = array()) | |
{ | |
$data['token_rdstation'] = $this->token; | |
$JSONData = json_encode($data); | |
$URLParts = parse_url($url); | |
$fp = fsockopen($URLParts['host'], | |
isset($URLParts['port']) ? $URLParts['port'] : 80, | |
$errno, $errstr, 30); | |
$out = $method . " " . $URLParts['path'] . " HTTP/1.1\r\n"; | |
$out .= "Host: " . $URLParts['host'] . "\r\n"; | |
$out .= "Content-Type: application/json\r\n"; | |
$out .= "Content-Length: " . strlen($JSONData) . "\r\n"; | |
$out .= "Connection: Close\r\n\r\n"; | |
$out .= $JSONData; | |
var_dump($url); | |
var_dump($out); | |
$written = fwrite($fp, $out); | |
fclose($fp); | |
var_dump($written); | |
return ($written !== false); | |
} | |
/** | |
* $email: (String) The email of the lead | |
* $data: (Array) Custom data array, example: | |
* array( | |
* "identificador" => "contact-form", | |
* "nome" => "Júlio Paulillo", | |
* "empresa" => "Agendor", | |
* "cargo" => "Cofounder", | |
* "telefone" => "(11) 3280-8090", | |
* "celular" => "(11) 99999-9999", | |
* "website" => "www.agendor.com.br", | |
* "twitter" => "twitter.com/paulillo", | |
* "facebook" => "facebook.com/paulillo", | |
* "c_utmz" => "", | |
* "created_at" => "", | |
* "tags" => "cofounder, hotlead" | |
* ); | |
**/ | |
public function sendNewLead($email, $data = array()) | |
{ | |
$this->validateToken(); | |
if (empty($email)) throw new Exception("Inform at least the lead email as the first argument."); | |
if (empty($data['identificador'])) $data['identificador'] = $this->defaultIdentifier; | |
if (empty($data["client_id"]) && !empty($_COOKIE["rdtrk"])) $data["client_id"] = json_decode($_COOKIE["rdtrk"])->{'id'}; | |
$data['email'] = $email; | |
return $this->request("POST", $this->getURL('conversions'), $data); | |
} | |
/** | |
* Helper function to update lead properties | |
**/ | |
public function updateLead($email, $data = array()) | |
{ | |
return $this->sendNewLead($email, $data); | |
} | |
/** | |
* $email: (String) Lead email | |
* $newStage: (Integer) 0 - Lead, 1 - Qualified Lead, 2 - Customer | |
* $opportunity: (Integer) true or false | |
**/ | |
public function updateLeadStageAndOpportunity($email, $newStage = 0, $opportunity = false) | |
{ | |
if (empty($email)) throw new Exception("Inform lead email as the first argument."); | |
$url = $this->getURL('leads') . $email; | |
$data = array( | |
"auth_token" => $this->privateToken, | |
"lead" => array( | |
"lifecycle_stage" => $newStage, | |
"opportunity" => $opportunity | |
) | |
); | |
return $this->request("PUT", $url, $data); | |
} | |
/** | |
* $emailOrLeadId: (String / Integer) Lead email OR Lead unique custom ID | |
* $status: (String) won / lost | |
* $value: (Integer/Decimal) Purchase value | |
* $lostReason: (String) | |
**/ | |
public function updateLeadStatus($emailOrLeadId, $status, $value = NULL, $lostReason = NULL) | |
{ | |
if (empty($emailOrLeadId)) | |
throw new Exception("Inform lead email or unique custom ID as the first argument."); | |
if (empty($status)) | |
throw new Exception("Inform lead status as the second argument."); | |
else if ($status != "won" && $status != "lost") | |
throw new Exception("Lead status (second argument) should be 'won' or 'lost'."); | |
$data = array( | |
"status" => $status, | |
"value" => $value, | |
"lost_reason" => $lostReason, | |
); | |
if (is_integer($emailOrLeadId)) | |
$data["lead_id"] = $emailOrLeadId; | |
else | |
$data["email"] = $emailOrLeadId; | |
return $this->request("POST", $this->getURL('generic'), $data); | |
} | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment