1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- <?php
- class ConsultPagopar{
-
- const URL_BASE = 'https://api.pagopar.com/api/';
- const URL_CATEGORIAS = self::URL_BASE.'categorias/1.1/traer';
- const URL_CIUDADES = self::URL_BASE.'ciudades/1.1/traer';
-
- const TOKEN_TIPO_CIUDAD = 'CIUDADES';
- const TOKEN_TIPO_CATEGORIA = 'CATEGORIAS';
- public $privateKey = null;
- public $publicKey = null;
-
- public function __construct() {
- }
-
- private function runCurl($args, $url){
- $args = json_encode($args);
- $ch = curl_init();
- $headers= array('Accept: application/json','Content-Type: application/json');
- curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
- curl_setopt($ch, CURLOPT_URL, $url);
- curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
- curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
- curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
- curl_setopt($ch, CURLOPT_POST, true);
- curl_setopt($ch, CURLOPT_POSTFIELDS, $args);
- $response = curl_exec($ch);
- $error = curl_error($ch);
- $info = curl_getinfo($ch);
- curl_close($ch);
- return $response;
- }
-
- private function generateToken($typeOfToken){
- return sha1($this->privateKey.$typeOfToken);
- }
-
- public function getCities(){
- $token = $this->generateToken(self::TOKEN_TIPO_CIUDAD);
- $args = ['token'=>$token,'token_publico'=>$this->publicKey];
- $response = $this->runCurl($args, self::URL_CIUDADES);
- return json_decode($response);
- }
-
- public function getProductCategories(){
- $token = $this->generateToken(self::TOKEN_TIPO_CATEGORIA);
- $args = ['token'=>$token,'token_publico'=>$this->publicKey];
- $response = $this->runCurl($args, self::URL_CATEGORIAS);
- $arrayResponse = json_decode($response);
- return $arrayResponse->resultado;
- }
- }
|