add and update some stuff
[GitHub/Stricted/speedport-hybrid-php-api.git] / SpeedportHybrid.class.php
index 43d60686009998d6b1eff53a8e81f928dc3c3660..6793763124d74cd752e6c5732f89ec6337e92383 100644 (file)
@@ -1,6 +1,7 @@
 <?php
 require_once('RebootException.class.php');
 require_once('RouterException.class.php');
+require_once('CryptLib/CryptLib.php');
 
 /**
  * @author      Jan Altensen (Stricted)
@@ -12,7 +13,7 @@ class SpeedportHybrid {
         *
         *
         */
-       const VERSION = '1.0.2';
+       const VERSION = '1.0.3';
        
        /**
         * password-challenge
@@ -36,7 +37,7 @@ class SpeedportHybrid {
         * session cookie
         * @var string
         */
-       private $session = '';
+       private $cookie = '';
        
        /**
         * router url
@@ -61,11 +62,13 @@ class SpeedportHybrid {
                $path = 'data/Login.json';
                $fields = array('csrf_token' => 'nulltoken', 'showpw' => 0, 'challengev' => 'null');
                $data = $this->sentRequest($path, $fields);
-               $data = json_decode($data['body'], true);
-               $data = $this->getValues($data);
+               $data = $this->getValues($data['body']);
                
                if (isset($data['challengev']) && !empty($data['challengev'])) {
-                       $this->challenge = $data['challengev'];
+                       return $data['challengev'];
+               }
+               else {
+                       throw new RouterException('unable to get the challenge from the router');
                }
        }
        
@@ -76,45 +79,24 @@ class SpeedportHybrid {
         * @return      boolean
         */
        public function login ($password) {
-               $this->getChallenge();
-               
-               if (empty($this->challenge)) {
-                       throw new RouterExeption('unable to get the challenge from the router');
-               }
+               $this->challenge = $this->getChallenge();
                
                $path = 'data/Login.json';
                $this->hash = hash('sha256', $this->challenge.':'.$password);
                $fields = array('csrf_token' => 'nulltoken', 'showpw' => 0, 'password' => $this->hash);
                $data = $this->sentRequest($path, $fields);
-               $json = json_decode($data['body'], true);
-               $json = $this->getValues($json);
+               $json = $this->getValues($data['body']);
+               
                if (isset($json['login']) && $json['login'] == 'success') {
-                       if (isset($data['header']['Set-Cookie']) && !empty($data['header']['Set-Cookie'])) {
-                               preg_match('/^.*(SessionID_R3=[a-z0-9]*).*/i', $data['header']['Set-Cookie'], $match);
-                               if (isset($match[1]) && !empty($match[1])) {
-                                       $this->session = $match[1];
-                               }
-                               else {
-                                       throw new RouterExeption('unable to get the session cookie from the router');
-                               }
-                               
-                               // calculate derivedk
-                               if (!function_exists("hash_pbkdf2")) {
-                                       require_once 'CryptLib/CryptLib.php';
-                                       $pbkdf2 = new CryptLib\Key\Derivation\PBKDF\PBKDF2(array('hash' => 'sha1'));
-                                       $this->derivedk = bin2hex($pbkdf2->derive(hash('sha256', $password), substr($this->challenge, 0, 16), 1000, 32));
-                                       $this->derivedk = substr($this->derivedk, 0, 32);
-                               }
-                               else {
-                                       $this->derivedk = hash_pbkdf2('sha1', hash('sha256', $password), substr($this->challenge, 0, 16), 1000, 32);
-                               }
-                               
-                               // get the csrf_token
-                               $this->token = $this->getToken();
-                               
-                               if ($this->checkLogin() === true) {
-                                       return true;
-                               }
+                       $this->cookie = $this->getCookie($data);
+                       
+                       $this->derivedk = $this->getDerviedk($password);
+                       
+                       // get the csrf_token
+                       $this->token = $this->getToken();
+                       
+                       if ($this->checkLogin(false) === true) {
+                               return true;
                        }
                }
                
@@ -124,25 +106,29 @@ class SpeedportHybrid {
        /**
         * check if we are logged in
         *
-        * @return boolean
+        * @param       boolean $exception
+        * @return      boolean
         */
-       public function checkLogin () {
-               if (empty($this->challenge) && empty($this->session)) {
+       public function checkLogin ($exception = true) {
+               // check if challenge or session is empty
+               if (empty($this->challenge) || empty($this->cookie)) {
+                       if ($exception === true) {
+                               throw new RouterException('you musst be logged in to use this method');
+                       }
+                       
                        return false;
                }
                
                $path = 'data/SecureStatus.json';
                $fields = array();
                $data = $this->sentRequest($path, $fields, true);
+               $data = $this->getValues($data['body']);
                
-               if (empty($data['body'])) {
-                       throw new RouterExeption('unable to get SecureStatus data');
-               }
-               
-               $json = json_decode($data['body'], true);
-               $json = $this->getValues($json);
-               
-               if ($json['loginstate'] != 1) {
+               if ($data['loginstate'] != 1) {
+                       if ($exception === true) {
+                               throw new RouterException('you musst be logged in to use this method');
+                       }
+                       
                        return false;
                }
                
@@ -152,77 +138,96 @@ class SpeedportHybrid {
        /**
         * logout
         * 
-        * @return      array
+        * @return      boolean
         */
        public function logout () {
-               if ($this->checkLogin() !== true) throw new RouterExeption('you musst be logged in to use this method');
+               $this->checkLogin();
                
                $path = 'data/Login.json';
                $fields = array('csrf_token' =>  $this->token, 'logout' => 'byby');
                $data = $this->sentRequest($path, $fields, true);
-               if ($this->checkLogin() === false) {
+               $data = $this->getValues($data['body']);
+               if ((isset($data['status']) && $data['status'] == 'ok') && $this->checkLogin(false) === false) {
                        // reset challenge and session
                        $this->challenge = '';
-                       $this->session = '';
-                       $this->token = "";
-                       
-                       $json = json_decode($data['body'], true);
+                       $this->cookie = '';
+                       $this->token = '';
+                       $this->derivedk = '';
                        
-                       return $json;
-               }
-               else {
-                       throw new RouterExeption('logout failed');
+                       return true;
                }
+               
+               return false;
        }
        
        /**
         * reboot the router
         * 
-        * @return      array
+        * @return      boolean
         */
        public function reboot () {
-               if ($this->checkLogin() !== true) throw new RouterExeption('you musst be logged in to use this method');
+               $this->checkLogin();
                
                $path = 'data/Reboot.json';
                $fields = array('csrf_token' => $this->token, 'reboot_device' => 'true');
                $data = $this->sentEncryptedRequest($path, $fields, true);
+               $data = $this->getValues($data['body']);
                
-               $json = json_decode($data['body'], true);
-               $json = $this->getValues($json);
-               
-               if ($json['status'] == 'ok') {
+               if ($data['status'] == 'ok') {
+                       // reset challenge and session
+                       $this->challenge = '';
+                       $this->cookie = '';
+                       $this->token = '';
+                       $this->derivedk = ''; 
+                       
                        // throw an exception because router is unavailable for other tasks
                        // like $this->logout() or $this->checkLogin
                        throw new RebootException('Router Reboot');
                }
-               else {
-                       throw new RouterException('unable to reboot');
-               }
+               
+               return false;
        }
        
        /**
         * change dsl connection status
         * 
         * @param       string  $status
+        * @return      boolean
         */
        public function changeConnectionStatus ($status) {
-               if ($this->checkLogin() !== true) throw new RouterExeption('you musst be logged in to use this method');
+               $this->checkLogin();
                
                $path = 'data/Connect.json';
                
                if ($status == 'online' || $status == 'offline') {
                        $fields = array('csrf_token' => 'nulltoken', 'showpw' => 0, 'password' => $this->hash, 'req_connect' => $status);
                        $data = $this->sentRequest($path, $fields, true);
+                       $data = $this->getValues($data['body']);
                        
-                       $json = json_decode($data['body'], true);
-                       
-                       return $json;
+                       if ($data['status'] == 'ok') {
+                               return true;
+                       }
+                       else {
+                               return false;
+                       }
                }
                else {
-                       throw new RouterExeption();
+                       throw new RouterException();
                }
        }
        
+       /**
+        * get uptime based on online (connection) time
+        *
+        * @return      string
+        */
+       public function getUptime () {
+               $data = $this->getData('LAN');
+               $data = $this->getValues($data);
+               
+               return $data['days_online'];
+       }
+       
        /**
         * return the given json as array
         * 
@@ -230,19 +235,13 @@ class SpeedportHybrid {
         * @return      array
         */
        public function getData ($file) {
-               if ($this->checkLogin() !== true && $file != "Status") throw new RouterExeption('you musst be logged in to use this method');
+               if ($file != 'Status') $this->checkLogin();
                
                $path = 'data/'.$file.'.json';
                $fields = array();
                $data = $this->sentRequest($path, $fields, true);
                
-               if (empty($data['body'])) {
-                       throw new RouterExeption('unable to get '.$file.' data');
-               }
-               
-               $json = json_decode($data['body'], true);
-               
-               return $json;
+               return $data['body'];
        }
        
        /**
@@ -251,53 +250,87 @@ class SpeedportHybrid {
         * @return      array
         */
        public function getSyslog() {
-               return $this->exportData('0');
+               $data = $this->getData('SystemMessages');
+               $data = $this->getValues($data);
+               
+               if (isset($data['addmessage'])) {
+                       return $data['addmessage'];
+               }
+               else {
+                       return array();
+               }
        }
        
        /**
-        * get the Missed Calls from router
+        * get the router syslog
         * 
         * @return      array
         */
-       public function getMissedCalls() {
-               return $this->exportData('1');
+       public function test() {
+               $data = $this->getData('NASLight');
+               $data = $this->getValues($data);
+               print_r($data);
+               /*
+               $data = $this->getValues($data);
+               
+               if (isset($data['addmessage'])) {
+                       return $data['addmessage'];
+               }
+               else {
+                       return array();
+               }
+               */
        }
        
        /**
-        * get the Taken Calls from router
+        * get the Missed Calls from router
         * 
         * @return      array
         */
-       public function getTakenCalls() {
-               return $this->exportData('2');
+       public function getMissedCalls() {
+               $data = $this->getData('PhoneCalls');
+               $data = $this->getValues($data);
+               
+               if (isset($data['addmissedcalls'])) {
+                       return $data['addmissedcalls'];
+               }
+               else {
+                       return array();
+               }
        }
        
        /**
-        * get the Dialed Calls from router
+        * get the Taken Calls from router
         * 
         * @return      array
         */
-       public function getDialedCalls() {
-               return $this->exportData('3');
+       public function getTakenCalls() {
+               $data = $this->getData('PhoneCalls');
+               $data = $this->getValues($data);
+               
+               if (isset($data['addtakencalls'])) {
+                       return $data['addtakencalls'];
+               }
+               else {
+                       return array();
+               }
        }
        
        /**
-        * export data from router
+        * get the Dialed Calls from router
         * 
         * @return      array
         */
-       private function exportData ($type) {
-               if ($this->checkLogin() !== true) throw new RouterExeption('you musst be logged in to use this method');
-               
-               $path = 'data/Syslog.json';
-               $fields = array('exporttype' => $type);
-               $data = $this->sentRequest($path, $fields, true);
+       public function getDialedCalls() {
+               $data = $this->getData('PhoneCalls');
+               $data = $this->getValues($data);
                
-               if (empty($data['body'])) {
-                       throw new RouterExeption('unable to get export data');
+               if (isset($data['adddialedcalls'])) {
+                       return $data['adddialedcalls'];
+               }
+               else {
+                       return array();
                }
-               
-               return explode("\n", $data['body']);
        }
        
        /**
@@ -306,14 +339,13 @@ class SpeedportHybrid {
         * @return      array
         */
        public function reconnectLte () {
-               if ($this->checkLogin() !== true) throw new RouterExeption('you musst be logged in to use this method');
+               $this->checkLogin();
                
                $path = 'data/modules.json';
                $fields = array('csrf_token' => $this->token, 'lte_reconn' => '1');
                $data = $this->sentEncryptedRequest($path, $fields, true);
-               $json = json_decode($data['body'], true);
                
-               return $json;
+               return $data['body'];
        }
        
        /**
@@ -323,14 +355,13 @@ class SpeedportHybrid {
         * @return      array
         */
        public function resetToFactoryDefault () {
-               if ($this->checkLogin() !== true) throw new RouterExeption('you musst be logged in to use this method');
+               $this->checkLogin();
                
                $path = 'data/resetAllSetting.json';
                $fields = array('csrf_token' => 'nulltoken', 'showpw' => 0, 'password' => $this->hash, 'reset_all' => 'true');
                $data = $this->sentRequest($path, $fields, true);
-               $json = json_decode($data['body'], true);
                
-               return $json;
+               return $data['body'];
        }
        
        
@@ -340,19 +371,13 @@ class SpeedportHybrid {
         * @return      array
         */
        public function checkFirmware () {
-               if ($this->checkLogin() !== true) throw new RouterExeption('you musst be logged in to use this method');
+               $this->checkLogin();
                
                $path = 'data/checkfirmware.json';
                $fields = array('checkfirmware' => 'true');
                $data = $this->sentRequest($path, $fields, true);
                
-               if (empty($data['body'])) {
-                       throw new RouterExeption('unable to get checkfirmware data');
-               }
-               
-               $json = json_decode($data['body'], true);
-               
-               return $json;
+               return $data['body'];
        }
        
        /**
@@ -362,7 +387,6 @@ class SpeedportHybrid {
         * @return      array
         */
        private function decrypt ($data) {
-               require_once 'CryptLib/CryptLib.php';
                $factory = new CryptLib\Cipher\Factory();
                $aes = $factory->getBlockCipher('rijndael-128');
                
@@ -386,7 +410,6 @@ class SpeedportHybrid {
         * @return      string
         */
        private function encrypt ($data) {
-               require_once 'CryptLib/CryptLib.php';
                $factory = new CryptLib\Cipher\Factory();
                $aes = $factory->getBlockCipher('rijndael-128');
                
@@ -410,7 +433,23 @@ class SpeedportHybrid {
        private function getValues($array) {
                $data = array();
                foreach ($array as $item) {
-                       $data[$item['varid']] = $item['varvalue'];
+                       // thank you telekom for this piece of shit
+                       if ($item['vartype'] == 'template') {
+                               if (is_array($item['varvalue'])) {
+                                       $data[$item['varid']][] = $this->getValues($item['varvalue']);
+                               }
+                               else {
+                                       $data[$item['varid']] = $item['varvalue'];
+                               }
+                       }
+                       else {
+                               if (is_array($item['varvalue'])) {
+                                       $data[$item['varid']] = $this->getValues($item['varvalue']);
+                               }
+                               else {
+                                       $data[$item['varid']] = $item['varvalue'];
+                               }
+                       }
                }
                
                return $data;
@@ -456,16 +495,12 @@ class SpeedportHybrid {
                }
                
                if ($cookie === true) {
-                       curl_setopt($ch, CURLOPT_COOKIE, 'challengev='.$this->challenge.'; '.$this->session);
+                       curl_setopt($ch, CURLOPT_COOKIE, 'lang=en; challengev='.$this->challenge.'; '.$this->cookie);
                }
                
                curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
                curl_setopt($ch, CURLOPT_HEADER, true);
                
-               if ($cookie) {
-                       
-               }
-               
                $result = curl_exec($ch);
                
                $header_size = curl_getinfo($ch, CURLINFO_HEADER_SIZE);
@@ -473,6 +508,11 @@ class SpeedportHybrid {
                $body = substr($result, $header_size);
                curl_close($ch);
                
+               // check if response is empty
+               if (empty($body)) {
+                       throw new RouterException('empty response');
+               }
+               
                // check if body is encrypted (hex instead of json)
                if (ctype_xdigit($body)) {
                        $body = $this->decrypt($body);
@@ -484,6 +524,11 @@ class SpeedportHybrid {
                $body = preg_replace("/\[\s+\]/i", '[ {} ]', $body);
                $body = preg_replace("/},\s+]/", "}\n]", $body);
                
+               // decode json
+               if (strpos($url, '.json') !== false) {
+                       $body = json_decode($body, true);
+               }
+               
                return array('header' => $this->parse_headers($header), 'body' => $body);
        }
        
@@ -493,16 +538,12 @@ class SpeedportHybrid {
         * @return      string
         */
        private function getToken () {
-               if ($this->checkLogin() !== true) throw new RouterExeption('you musst be logged in to use this method');
+               $this->checkLogin();
                
                $path = 'html/content/overview/index.html';
                $fields = array();
                $data = $this->sentRequest($path, $fields, true);
                
-               if (empty($data['body'])) {
-                       throw new RouterExeption('unable to get csrf_token');
-               }
-               
                $a = explode('csrf_token = "', $data['body']);
                $a = explode('";', $a[1]);
                
@@ -510,8 +551,56 @@ class SpeedportHybrid {
                        return $a[0];
                }
                else {
-                       throw new RouterExeption('unable to get csrf_token');
+                       throw new RouterException('unable to get csrf_token');
+               }
+       }
+       
+       /**
+        * calculate the derivedk
+        *
+        * @param       string  $password
+        * @return      string
+        */
+       private function getDerviedk ($password) {
+               $derivedk = '';
+               
+               // calculate derivedk
+               if (!function_exists('hash_pbkdf2')) {
+                       $pbkdf2 = new CryptLib\Key\Derivation\PBKDF\PBKDF2(array('hash' => 'sha1'));
+                       $derivedk = bin2hex($pbkdf2->derive(hash('sha256', $password), substr($this->challenge, 0, 16), 1000, 32));
+                       $derivedk = substr($derivedk, 0, 32);
                }
+               else {
+                       $derivedk = hash_pbkdf2('sha1', hash('sha256', $password), substr($this->challenge, 0, 16), 1000, 32);
+               }
+               
+               if (empty($derivedk)) {
+                       throw new RouterException('unable to calculate derivedk');
+               }
+               
+               return $derivedk;
+       }
+       
+       /**
+        * get cookie from header data
+        *
+        * @param       array   $data
+        * @return      string
+        */
+       private function getCookie ($data) {
+               $cookie = '';
+               if (isset($data['header']['Set-Cookie']) && !empty($data['header']['Set-Cookie'])) {
+                       preg_match('/^.*(SessionID_R3=[a-z0-9]*).*/i', $data['header']['Set-Cookie'], $match);
+                       if (isset($match[1]) && !empty($match[1])) {
+                               $cookie = $match[1];
+                       }
+               }
+               
+               if (empty($cookie)) {
+                       throw new RouterException('unable to get the session cookie from the router');
+               }
+               
+               return $cookie;
        }
        
        /**