'supr', 'name' => 'su.pr StumbleUpon', 'home' => 'http://su.pr', 'url_api' => 'http://su.pr/api/', 'url_base' => 'http://su.pr/', 'url_min_len' => 23, ]; private $args = [ 'version' => '1.0', 'format' => 'xml', 'login' => '', 'apiKey' => '', ]; protected function init() { $this->args['login'] = $this->settings->get('srv_supr_login'); $this->args['apiKey'] = $this->settings->get('srv_supr_apikey'); } public function saveSettings() { $this->settings->put('srv_supr_login', $_POST['kutrl_srv_supr_login']); $this->settings->put('srv_supr_apikey', $_POST['kutrl_srv_supr_apikey']); } public function settingsForm() { echo '
' . '' . sprintf(__('This is your login to sign up to %s'), $this->config['name']) . '
' . '' . '' . sprintf(__('This is your personnal %s API key. You can find it on your account page.'), $this->config['name']) . '
'; } public function testService() { if (empty($this->args['login']) || empty($this->args['apiKey'])) { $this->error->add(__('Service is not well configured.')); return false; } $args = $this->args; $arg['longUrl'] = $this->url_test; if (!($response = self::post($this->url_api . 'shorten', $args, true))) { $this->error->add(__('Failed to call service.')); return false; } $rsp = simplexml_load_string($response); $status = (string) $rsp->statusCode; if ($status != 'OK') { $err_no = (int) $rsp->errorCode; $err_msg = (int) $rsp->errorMessage; $this->error->add(sprintf(__('An error occured with code %s and message "%s"'), $err_no, $err_msg)); return false; } return true; } public function createHash($url, $hash = null) { $args = $this->args; $args['longUrl'] = $url; if (!($response = self::post($this->url_api . 'shorten', $args, true))) { $this->error->add(__('Failed to call service.')); return false; } $rsp = simplexml_load_string($response); $status = (string) $rsp->statusCode; if ($status != 'OK') { $err_no = (int) $rsp->errorCode; $err_msg = (int) $rsp->errorMessage; $this->error->add(sprintf(__('An error occured with code %s and message "%s"'), $err_no, $err_msg)); return false; } $rs = new ArrayObject(); $rs->hash = (string) $rsp->results[0]->nodeKeyVal->hash; $rs->url = (string) $rsp->results[0]->nodeKeyVal->nodeKey; $rs->type = $this->id; return $rs; } }