/**
  * @param array $handlers Array of handlers
  * @param string $path Resource path relative to base service endpoint
  * @param string $method HTTP method - one of GET, POST, PUT, DELETE, PATCH etc
  * @param string $data Request payload
  * @param array $headers HTTP headers
  * @return mixed
  * @throws \BlockCypher\Exception\BlockCypherConnectionException
  */
 public function execute($handlers = array(), $path, $method, $data = '', $headers = array())
 {
     $config = $this->apiContext->getConfig();
     $httpConfig = new BlockCypherHttpConfig(null, $method, $config);
     $headers = $headers ? $headers : array();
     $httpConfig->setHeaders($headers + array('Content-Type' => 'application/json'));
     /** @var \BlockCypher\Handler\IBlockCypherHandler $handler */
     foreach ($handlers as $handler) {
         if (!is_object($handler)) {
             $fullHandler = "\\" . (string) $handler;
             $handler = new $fullHandler($this->apiContext);
         }
         $handler->handle($httpConfig, $data, array('path' => $path, 'apiContext' => $this->apiContext));
     }
     $connection = new BlockCypherHttpConnection($httpConfig, $config);
     $response = $connection->execute($data);
     return $response;
 }
Example #2
0
 /**
  * @param array $path
  * @param ApiContext $apiContext
  * @return string
  * @throws BlockCypherConfigurationException
  */
 private function getAbsoluteUrl($path, $apiContext)
 {
     $credential = $apiContext->getCredential();
     $config = $apiContext->getConfig();
     $endPoint = rtrim(trim($this->_getEndpoint($config)), '/');
     $path = rtrim(trim($path, '/'));
     $url = $endPoint . '/' . $path;
     $url = $this->addTokenToUrl($url, $credential->getAccessToken($config));
     return $url;
 }