From: Stricted Date: Sun, 26 Jul 2015 17:24:33 +0000 (+0200) Subject: add addPhoneBookEntry and changePhoneBookEntry X-Git-Tag: 1.0.4~6 X-Git-Url: https://git.stricted.de/?p=GitHub%2FStricted%2Fspeedport-hybrid-php-api.git;a=commitdiff_plain;h=559c5be753c40fa4f2110743b1a8f48dfde93f8f add addPhoneBookEntry and changePhoneBookEntry --- diff --git a/SpeedportHybrid.class.php b/SpeedportHybrid.class.php index ad3c171..c5eed35 100644 --- a/SpeedportHybrid.class.php +++ b/SpeedportHybrid.class.php @@ -258,6 +258,58 @@ class SpeedportHybrid { } } + /** + * add Phone Book Entry + * + * @param string $name + * @param string $firstname + * @param string $private + * @param string $work + * @param string $mobile + * @param integer $id + * + * @return array + */ + public function addPhoneBookEntry ($name, $firstname, $private, $work, $mobile, $id = -1) { + $path = 'data/PhoneBook.json'; + $fields = array( + 'csrf_token' => $this->getToken(), + 'id' => $id, + 'search' => '', + 'phonebook_name' => $name, + 'phonebook_vorname' => $firstname, + 'phonebook_number_p' => $private, + 'phonebook_number_a' => $work, + 'phonebook_number_m' => $mobile, + 'action' => '1' + ); + + $data = $this->sentRequest($path, $fields, true); + $data = $this->getValues($data['body']); + if ($data['status'] == 'ok') { + return $data; + } + else { + throw new RouterException('can not add/edit Phone Book Entry'); + } + } + + /** + * edit Phone Book Entry + * + * @param integer $id + * @param string $name + * @param string $firstname + * @param string $private + * @param string $work + * @param string $mobile + * + * @return array + */ + public function changePhoneBookEntry ($id, $name, $firstname, $private, $work, $mobile) { + return $this->addPhoneBookEntry($name, $firstname, $private, $work, $private, $id); + } + /** * get uptime based on online (connection) time * @@ -515,7 +567,7 @@ class SpeedportHybrid { } if ($cookie === true) { - curl_setopt($ch, CURLOPT_COOKIE, 'lang=en; challengev='.$this->challenge.'; '.$this->cookie); + curl_setopt($ch, CURLOPT_COOKIE, 'challengev='.$this->challenge.'; '.$this->cookie); } curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);