* Date: 20.09.14 23:15 * You must not use this file without permission. */ namespace Workflow\Plugins\ConnectionProvider; use Workflow\VtUtils; class FlexxLogistics extends \Workflow\ConnectionProvider { protected $_title = 'Flexx Logistics'; private $_connection = null; protected $configFields = array( /*'default' => array( 'label' => 'Default method
for all Workflow Mails', 'type' => 'checkbox' )*/ ); /** * @throws Exception */ public function renderExtraBackend($data) { } public function getConfigFields() { return array_merge($this->configFields, array( 'url' => array ( 'label' => 'Server URL', 'type' => 'text', 'description' => 'URL of Backend Server' ), 'apikey' => array ( 'label' => 'Offline API Key', 'type' => 'password', 'description' => 'API Key to access Server' ), )); } /** * @return bool * @throws \Exception */ public function test() { if(extension_loaded('curl') === false) { throw new \Exception('php-curl Extension is required'); } if(version_compare (phpversion(), '5.4.0') < 0) { throw new \Exception('PHP Version 5.4 is required'); } try { $response = $this->sendRequest('api_tokens/' . $this->get('apikey')); if(!empty($response->token)) { return true; } else { throw new \Exception('API Key wrong'); } } catch (\Exception $exp) { throw new \Exception ($exp->getMessage()); } return true; } public function sendRequest($endpoint, $parameters = null, $method = 'AUTO') { $url = rtrim($this->get('url'), '/') . '/api/'; $apiKey = $this->get('apikey'); $header = array( 'Accept: application/json', 'Content-Type: application/json', 'X-AUTH-TOKEN: ' . $apiKey ); $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url . $endpoint); if(!empty($parameters)) { $data_string = json_encode($parameters); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_POSTFIELDS, $data_string); } if($method != 'GET' && $method != 'POST' && $method != 'AUTO') { curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method); } curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_HTTPHEADER, $header); $server_output = curl_exec ($ch); curl_close ($ch); return json_decode($server_output); } } \Workflow\ConnectionProvider::register('flexxlogistics', '\Workflow\Plugins\ConnectionProvider\FlexxLogistics');