add getTakenCalls
[GitHub/Stricted/speedport-hybrid-php-api.git] / speedport.class.php
index 36837cef33c7c4b5de695fe0671da36a9d5bb6fd..6facff61ed6f354621f698eec1e9f4866adb8d6b 100644 (file)
@@ -27,9 +27,10 @@ class speedport {
         * router url
         * @var string
         */
-       private $url = 'http://speedport.ip/';
+       private $url = '';
        
-       public function __construct ($password) {
+       public function __construct ($password, $url = 'http://speedport.ip/') {
+               $this->url = $url;
                $this->getChallenge();
                
                if (empty($this->challenge)) {
@@ -47,9 +48,9 @@ class speedport {
         * Requests the password-challenge from the router.
         */
        public function getChallenge () {
-               $url = 'data/Login.json';
+               $path = 'data/Login.json';
                $fields = array('csrf_token' => 'nulltoken', 'showpw' => 0, 'challengev' => 'null');
-               $data = $this->sentRequest($url, $fields);
+               $data = $this->sentRequest($path, $fields);
                $data = json_decode($data['body'], true);
                if ($data[1]['varid'] == 'challengev') {
                        $this->challenge = $data[1]['varvalue'];
@@ -58,15 +59,15 @@ class speedport {
        
        /**
         * login into the router with the given password
-        *
+        * 
         * @param       string  $password
         * @return      boolean
         */
        public function login ($password) {
-               $url = 'data/Login.json';
+               $path = 'data/Login.json';
                $this->hash = hash('sha256', $this->challenge.':'.$password);
                $fields = array('csrf_token' => 'nulltoken', 'showpw' => 0, 'password' => $this->hash);
-               $data = $this->sentRequest($url, $fields);
+               $data = $this->sentRequest($path, $fields);
                $json = json_decode($data['body'], true);
                if ($json[15]['varid'] == 'login' && $json[15]['varvalue'] == 'success') {
                        if (isset($data['header']['Set-Cookie']) && !empty($data['header']['Set-Cookie'])) {
@@ -87,13 +88,13 @@ class speedport {
        
        /**
         * logout
-        *
+        * 
         * @return      array
         */
        public function logout () {
-               $url = 'data/Login.json';
+               $path = 'data/Login.json';
                $fields = array('logout' => 'byby');
-               $data = $this->sentRequest($url, $fields);
+               $data = $this->sentRequest($path, $fields);
                // reset challenge and session
                $this->challenge = '';
                $this->session = '';
@@ -105,14 +106,14 @@ class speedport {
        
        /**
         * reboot the router
-        *
+        * 
         * @return      array
         */
        public function reboot () {
-               $url = 'data/Reboot.json';
+               $path = 'data/Reboot.json';
                $fields = array('csrf_token' => 'nulltoken', 'showpw' => 0, 'password' => $this->hash, 'reboot_device' => 'true');
                $cookie = 'challengev='.$this->challenge.'; '.$this->session;
-               $data = $this->sentRequest($url, $fields, $cookie);
+               $data = $this->sentRequest($path, $fields, $cookie);
                $json = json_decode($data['body'], true);
                
                return $json;
@@ -120,16 +121,16 @@ class speedport {
        
        /**
         * change dsl connection status
-        *
+        * 
         * @param       string  $status
         */
        public function changeConnectionStatus ($status) {
-               $url = 'data/Connect.json';
+               $path = 'data/Connect.json';
                
                if ($status == 'online' || $status == 'offline') {
                        $fields = array('csrf_token' => 'nulltoken', 'showpw' => 0, 'password' => $this->hash, 'req_connect' => $status);
                        $cookie = 'challengev='.$this->challenge.'; '.$this->session;
-                       $this->sentRequest($url, $fields, $cookie);
+                       $this->sentRequest($path, $fields, $cookie);
                }
                else {
                        throw new Exception();
@@ -138,7 +139,7 @@ class speedport {
        
        /**
         * return the given json as array
-        *
+        * 
         * the following paths are known to be valid:
         * /data/dsl.json
         * /data/interfaces.json
@@ -161,17 +162,17 @@ class speedport {
         * /data/filterlist.json
         * /data/bonding_tr181.json
         * /data/letinfo.json
-        *
+        * 
         * /data/Status.json (No login needed)
-        *
+        * 
         * @param       string  $file
         * @return      array
         */
        public function getData ($file) {
-               $url = 'data/'.$file.'.json';
+               $path = 'data/'.$file.'.json';
                $fields = array();
                $cookie = 'challengev='.$this->challenge.'; '.$this->session;
-               $data = $this->sentRequest($url, $fields, $cookie);
+               $data = $this->sentRequest($path, $fields, $cookie);
                
                if (empty($data['body'])) {
                        throw new Exception('unable to get '.$file.' data');
@@ -182,16 +183,70 @@ class speedport {
                return $json;
        }
        
+       /**
+        * get the router syslog
+        * 
+        * @return      array
+        */
+       public function getSyslog() {
+               $path = 'data/Syslog.json';
+               $fields = array('exporttype' => '0');
+               $cookie = 'challengev='.$this->challenge.'; '.$this->session;
+               $data = $this->sentRequest($path, $fields, $cookie);
+               
+               if (empty($data['body'])) {
+                       throw new Exception('unable to get syslog data');
+               }
+               
+               return explode("\n", $data['body']);
+       }
+       
+       /**
+        * get the Missed Calls from router
+        * 
+        * @return      array
+        */
+       public function getMissedCalls() {
+               $path = 'data/Syslog.json';
+               $fields = array('exporttype' => '1');
+               $cookie = 'challengev='.$this->challenge.'; '.$this->session;
+               $data = $this->sentRequest($path, $fields, $cookie);
+               
+               if (empty($data['body'])) {
+                       throw new Exception('unable to get syslog data');
+               }
+               
+               return explode("\n", $data['body']);
+       }
+       
+       /**
+        * get the Taken Calls from router
+        * 
+        * @return      array
+        */
+       public function getTakenCalls() {
+               $path = 'data/Syslog.json';
+               $fields = array('exporttype' => '2');
+               $cookie = 'challengev='.$this->challenge.'; '.$this->session;
+               $data = $this->sentRequest($path, $fields, $cookie);
+               
+               if (empty($data['body'])) {
+                       throw new Exception('unable to get syslog data');
+               }
+               
+               return explode("\n", $data['body']);
+       }
+       
        /**
         * sends the request to router
-        *
-        * @param       string  $url
+        * 
+        * @param       string  $path
         * @param       array   $fields
         * @param       string  $cookie
         * @return      array
         */
-       private function sentRequest ($url, $fields = array(), $cookie = '') {
-               $url = $this->url.$url;
+       private function sentRequest ($path, $fields = array(), $cookie = '') {
+               $url = $this->url.$path;
                $ch = curl_init();
                curl_setopt($ch, CURLOPT_URL, $url);
                
@@ -223,17 +278,15 @@ class speedport {
                $body = preg_replace("/(\r\n)|(\r)/", "\n", $body);
                $body = preg_replace('/\'/i', '"', $body);
                $body = preg_replace("/},\n\n]/", "}\n]", $body);
-               $body = preg_replace('/\s+/', ' ', $body);
-               $body = preg_replace("/\[ \]/i", '[ {} ]', $body);
-               $body = preg_replace("/}, ]/", "} ]", $body);
-               $body = preg_replace("/\n/", " ", $body);
+               $body = preg_replace("/\[\s+\]/i", '[ {} ]', $body);
+               $body = preg_replace("/},\n\s+]/", "} ]", $body);
                
                return array('header' => $this->parse_headers($header), 'body' => $body);
        }
        
        /**
         * parse the curl return header into an array
-        *
+        * 
         * @param       string  $response
         * @return      array
         */