move exceptions and traits into own folder 1.0.4
authorStricted <info@stricted.de>
Sun, 26 Jul 2015 21:11:57 +0000 (23:11 +0200)
committerStricted <info@stricted.de>
Sun, 26 Jul 2015 21:11:57 +0000 (23:11 +0200)
15 files changed:
Connection.class.php [deleted file]
CryptLib.class.php [deleted file]
Login.class.php [deleted file]
Phone.class.php [deleted file]
RebootException.class.php [deleted file]
RouterException.class.php [deleted file]
SpeedportHybrid.class.php
System.class.php [deleted file]
lib/exception/RebootException.class.php [new file with mode: 0644]
lib/exception/RouterException.class.php [new file with mode: 0644]
lib/trait/Connection.class.php [new file with mode: 0644]
lib/trait/CryptLib.class.php [new file with mode: 0644]
lib/trait/Login.class.php [new file with mode: 0644]
lib/trait/Phone.class.php [new file with mode: 0644]
lib/trait/System.class.php [new file with mode: 0644]

diff --git a/Connection.class.php b/Connection.class.php
deleted file mode 100644 (file)
index 64b1ecb..0000000
+++ /dev/null
@@ -1,75 +0,0 @@
-<?php
-/**
- * @author      Jan Altensen (Stricted)
- * @license     GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
- * @copyright   2015 Jan Altensen (Stricted)
- */
-trait Connection {
-       /**
-        * change dsl connection status
-        * 
-        * @param       string  $status
-        * @return      boolean
-        */
-       public function changeDSLStatus ($status) {
-               $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']);
-                       
-                       if ($data['status'] == 'ok') {
-                               return true;
-                       }
-                       else {
-                               return false;
-                       }
-               }
-               else {
-                       throw new RouterException('unknown status');
-               }
-       }
-       
-       /**
-        * change lte connection status
-        * 
-        * @param       string  $status
-        * @return      boolean
-        */
-       public function changeLTEStatus ($status) {
-               throw new Exception('unstable funtion');
-               $path = 'data/Modules.json';
-               
-               if ($status == '0' || $status == '1' || $status == 'yes' || $status == 'no') {
-                       if ($status == 'yes') $status = '1';
-                       else if ($status == 'no') $status = '0';
-                       
-                       $fields = array('csrf_token' => $this->token, 'use_lte' => $status);
-                       $data = $this->sentEncryptedRequest($path, $fields, true);
-                       
-                       // debug only
-                       return $data;
-               }
-               else {
-                       throw new RouterException('unknown status');
-               }
-       }
-       
-       /**
-        * reconnect LTE
-        *
-        * @return      array
-        */
-       public function reconnectLte () {
-               $this->checkLogin();
-               
-               $path = 'data/modules.json';
-               $fields = array('csrf_token' => $this->token, 'lte_reconn' => '1');
-               $data = $this->sentEncryptedRequest($path, $fields, true);
-               
-               return $data['body'];
-       }
-}
diff --git a/CryptLib.class.php b/CryptLib.class.php
deleted file mode 100644 (file)
index ce32bb7..0000000
+++ /dev/null
@@ -1,63 +0,0 @@
-<?php
-/**
- * @author      Jan Altensen (Stricted)
- * @license     GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
- * @copyright   2015 Jan Altensen (Stricted)
- */
-trait CryptLib {
-       /**
-        * sends the encrypted request to router
-        * 
-        * @param       string  $path
-        * @param       mixed   $fields
-        * @param       string  $cookie
-        * @return      array
-        */
-       private function sentEncryptedRequest ($path, $fields, $cookie = false) {
-               $count = count($fields);
-               $fields = $this->encrypt(http_build_query($fields));
-               return $this->sentRequest($path, $fields, $cookie, $count);
-       }
-       
-       /**
-        * decrypt data from router
-        * 
-        * @param       string  $data
-        * @return      array
-        */
-       private function decrypt ($data) {
-               $iv = hex2bin(substr($this->challenge, 16, 16));
-               $adata = hex2bin(substr($this->challenge, 32, 16));
-               $key = hex2bin($this->derivedk);
-               $enc = hex2bin($data);
-               
-               $factory = new CryptLib\Cipher\Factory();
-               $aes = $factory->getBlockCipher('rijndael-128');
-               $aes->setKey($key);
-               $mode = $factory->getMode('ccm', $aes, $iv, [ 'adata' => $adata, 'lSize' => 7]);
-               
-               $mode->decrypt($enc);
-               
-               return $mode->finish();
-       }
-
-       /**
-        * decrypt data for the router
-        * 
-        * @param       string  $data
-        * @return      string
-        */
-       private function encrypt ($data) {
-               $iv = hex2bin(substr($this->challenge, 16, 16));
-               $adata = hex2bin(substr($this->challenge, 32, 16));
-               $key = hex2bin($this->derivedk);
-               
-               $factory = new CryptLib\Cipher\Factory();
-               $aes = $factory->getBlockCipher('rijndael-128');
-               $aes->setKey($key);
-               $mode = $factory->getMode('ccm', $aes, $iv, [ 'adata' => $adata, 'lSize' => 7]);
-               $mode->encrypt($data);
-               
-               return bin2hex($mode->finish());
-       }
-}
diff --git a/Login.class.php b/Login.class.php
deleted file mode 100644 (file)
index d03b94a..0000000
+++ /dev/null
@@ -1,213 +0,0 @@
-<?php
-/**
- * @author      Jan Altensen (Stricted)
- * @license     GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
- * @copyright   2015 Jan Altensen (Stricted)
- */
-trait Login {
-       /**
-        * password-challenge
-        * @var string
-        */
-       private $challenge = '';
-       
-       /**
-        * csrf_token
-        * @var string
-        */
-       private $token = '';
-       
-       /**
-        * hashed password
-        * @var string
-        */
-       private $hash = '';
-       
-       /**
-        * session cookie
-        * @var string
-        */
-       private $cookie = '';
-       
-       /**
-        * derivedk cookie
-        * @var string
-        */
-       private $derivedk = '';
-       
-       /**
-        * login into the router with the given password
-        * 
-        * @param       string  $password
-        * @return      boolean
-        */
-       public function login ($password) {
-               $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 = $this->getValues($data['body']);
-               
-               if (isset($json['login']) && $json['login'] == 'success') {
-                       $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;
-                       }
-               }
-               
-               return false;
-       }
-       
-       /**
-        * Requests the password-challenge from the router.
-        */
-       private function getChallenge () {
-               $path = 'data/Login.json';
-               $fields = array('csrf_token' => 'nulltoken', 'showpw' => 0, 'challengev' => 'null');
-               $data = $this->sentRequest($path, $fields);
-               $data = $this->getValues($data['body']);
-               
-               if (isset($data['challengev']) && !empty($data['challengev'])) {
-                       return $data['challengev'];
-               }
-               else {
-                       throw new RouterException('unable to get the challenge from the router');
-               }
-       }
-       
-       /**
-        * check if we are logged in
-        *
-        * @param       boolean $exception
-        * @return      boolean
-        */
-       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 ($data['loginstate'] != 1) {
-                       if ($exception === true) {
-                               throw new RouterException('you musst be logged in to use this method');
-                       }
-                       
-                       return false;
-               }
-               
-               return true;
-       }
-       
-       /**
-        * logout
-        * 
-        * @return      boolean
-        */
-       public function logout () {
-               $this->checkLogin();
-               
-               $path = 'data/Login.json';
-               $fields = array('csrf_token' => $this->token, 'logout' => 'byby');
-               $data = $this->sentRequest($path, $fields, true);
-               $data = $this->getValues($data['body']);
-               if ((isset($data['status']) && $data['status'] == 'ok') && $this->checkLogin(false) === false) {
-                       // reset challenge and session
-                       $this->challenge = '';
-                       $this->cookie = '';
-                       $this->token = '';
-                       $this->derivedk = '';
-                       
-                       return true;
-               }
-               
-               return false;
-       }
-       
-       /**
-        * get the csrf_token
-        * 
-        * @return      string
-        */
-       private function getToken () {
-               $this->checkLogin();
-               
-               $path = 'html/content/overview/index.html';
-               $fields = array();
-               $data = $this->sentRequest($path, $fields, true);
-               
-               $a = explode('csrf_token = "', $data['body']);
-               $a = explode('";', $a[1]);
-               
-               if (isset($a[0]) && !empty($a[0])) {
-                       return $a[0];
-               }
-               else {
-                       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;
-       }
-}
diff --git a/Phone.class.php b/Phone.class.php
deleted file mode 100644 (file)
index 8799221..0000000
+++ /dev/null
@@ -1,157 +0,0 @@
-<?php
-/**
- * @author      Jan Altensen (Stricted)
- * @license     GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
- * @copyright   2015 Jan Altensen (Stricted)
- */
-trait Phone {
-       /**
-        * get phone book entrys
-        *
-        * @return      array
-        */
-       public function getPhoneBookEntrys () {
-               $data = $this->getData('PhoneBook');
-               $data = $this->getValues($data);
-               
-               if (isset($data['addbookentry'])) {
-                       return $data['addbookentry'];
-               }
-               else {
-                       return array();
-               }
-       }
-       
-       /**
-        * 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) {
-               $this->checkLogin();
-               
-               $path = 'data/PhoneBook.json';
-               $fields = array(
-                                               'csrf_token' => $this->token,
-                                               'id' => $id,
-                                               'search' => '',
-                                               'phonebook_name' => $name,
-                                               'phonebook_vorname' => $firstname,
-                                               'phonebook_number_p' => $private,
-                                               'phonebook_number_a' => $work,
-                                               'phonebook_number_m' => $mobile
-                                               );
-               
-               $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);
-       }
-       
-       /**
-        * delete Phone Book Entry
-        *
-        * @param       integer $id
-        *
-        * @return      array
-        */
-       public function deletePhoneBookEntry ($id) {
-               $this->checkLogin();
-               
-               $path = 'data/PhoneBook.json';
-               $fields = array(
-                                               'csrf_token' => $this->token,
-                                               'id' => $id,
-                                               'deleteEntry' => 'delete'
-                                               );
-               
-               $data = $this->sentRequest($path, $fields, true);
-               $data = $this->getValues($data['body']);
-               
-               if ($data['status'] == 'ok') {
-                       return $data;
-               }
-               else {
-                       throw new RouterException('can not delete Phone Book Entry');
-               }
-       }
-       
-       /**
-        * get the Missed Calls from router
-        * 
-        * @return      array
-        */
-       public function getMissedCalls() {
-               $data = $this->getData('PhoneCalls');
-               $data = $this->getValues($data);
-               
-               if (isset($data['addmissedcalls'])) {
-                       return $data['addmissedcalls'];
-               }
-               else {
-                       return array();
-               }
-       }
-       
-       /**
-        * get the Taken Calls from router
-        * 
-        * @return      array
-        */
-       public function getTakenCalls() {
-               $data = $this->getData('PhoneCalls');
-               $data = $this->getValues($data);
-               
-               if (isset($data['addtakencalls'])) {
-                       return $data['addtakencalls'];
-               }
-               else {
-                       return array();
-               }
-       }
-       
-       /**
-        * get the Dialed Calls from router
-        * 
-        * @return      array
-        */
-       public function getDialedCalls() {
-               $data = $this->getData('PhoneCalls');
-               $data = $this->getValues($data);
-               
-               if (isset($data['adddialedcalls'])) {
-                       return $data['adddialedcalls'];
-               }
-               else {
-                       return array();
-               }
-       }
-}
diff --git a/RebootException.class.php b/RebootException.class.php
deleted file mode 100644 (file)
index fbf6fb7..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-<?php
-/**
- * @author      Jan Altensen (Stricted)
- * @license     GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
- * @copyright   2015 Jan Altensen (Stricted)
- */
-class RebootException extends Exception {
-}
diff --git a/RouterException.class.php b/RouterException.class.php
deleted file mode 100644 (file)
index e0ce1ef..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-<?php
-/**
- * @author      Jan Altensen (Stricted)
- * @license     GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
- * @copyright   2015 Jan Altensen (Stricted)
- */
-class RouterException extends Exception {
-}
index 8cd5965f2290185dbecd573813fc5f203db15edb..534d32309e3c27b3893f0b8e277873f7f311fef7 100644 (file)
@@ -1,12 +1,12 @@
 <?php
-require_once('RebootException.class.php');
-require_once('RouterException.class.php');
+require_once('lib/exception/RebootException.class.php');
+require_once('lib/exception/RouterException.class.php');
 require_once('CryptLib/CryptLib.php');
-require_once('Connection.class.php');
-require_once('CryptLib.class.php');
-require_once('Login.class.php');
-require_once('Phone.class.php');
-require_once('System.class.php');
+require_once('lib/trait/Connection.class.php');
+require_once('lib/trait/CryptLib.class.php');
+require_once('lib/trait/Login.class.php');
+require_once('lib/trait/Phone.class.php');
+require_once('lib/trait/System.class.php');
 
 /**
  * @author      Jan Altensen (Stricted)
diff --git a/System.class.php b/System.class.php
deleted file mode 100644 (file)
index 4bf7a27..0000000
+++ /dev/null
@@ -1,112 +0,0 @@
-<?php
-/**
- * @author      Jan Altensen (Stricted)
- * @license     GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
- * @copyright   2015 Jan Altensen (Stricted)
- */
-trait System {
-       /**
-        * 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
-        * 
-        * @param       string  $file
-        * @return      array
-        */
-       public function getData ($file) {
-               if ($file != 'Status') $this->checkLogin();
-               
-               $path = 'data/'.$file.'.json';
-               $fields = array();
-               $data = $this->sentRequest($path, $fields, true);
-               
-               return $data['body'];
-       }
-       
-       /**
-        * get the router syslog
-        * 
-        * @return      array
-        */
-       public function getSyslog() {
-               $data = $this->getData('SystemMessages');
-               $data = $this->getValues($data);
-               
-               if (isset($data['addmessage'])) {
-                       return $data['addmessage'];
-               }
-               else {
-                       return array();
-               }
-       }
-       
-       /**
-        * reset the router to Factory Default
-        * not tested
-        *
-        * @return      array
-        */
-       public function resetToFactoryDefault () {
-               $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);
-               
-               return $data['body'];
-       }
-       
-       
-       /**
-        * check if firmware is actual
-        * 
-        * @return      array
-        */
-       public function checkFirmware () {
-               $this->checkLogin();
-               
-               $path = 'data/checkfirmware.json';
-               $fields = array('checkfirmware' => 'true');
-               $data = $this->sentRequest($path, $fields, true);
-               
-               return $data['body'];
-       }
-       
-       /**
-        * reboot the router
-        * 
-        * @return      boolean
-        */
-       public function reboot () {
-               $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']);
-               
-               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');
-               }
-               
-               return false;
-       }
-}
diff --git a/lib/exception/RebootException.class.php b/lib/exception/RebootException.class.php
new file mode 100644 (file)
index 0000000..fbf6fb7
--- /dev/null
@@ -0,0 +1,8 @@
+<?php
+/**
+ * @author      Jan Altensen (Stricted)
+ * @license     GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
+ * @copyright   2015 Jan Altensen (Stricted)
+ */
+class RebootException extends Exception {
+}
diff --git a/lib/exception/RouterException.class.php b/lib/exception/RouterException.class.php
new file mode 100644 (file)
index 0000000..e0ce1ef
--- /dev/null
@@ -0,0 +1,8 @@
+<?php
+/**
+ * @author      Jan Altensen (Stricted)
+ * @license     GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
+ * @copyright   2015 Jan Altensen (Stricted)
+ */
+class RouterException extends Exception {
+}
diff --git a/lib/trait/Connection.class.php b/lib/trait/Connection.class.php
new file mode 100644 (file)
index 0000000..64b1ecb
--- /dev/null
@@ -0,0 +1,75 @@
+<?php
+/**
+ * @author      Jan Altensen (Stricted)
+ * @license     GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
+ * @copyright   2015 Jan Altensen (Stricted)
+ */
+trait Connection {
+       /**
+        * change dsl connection status
+        * 
+        * @param       string  $status
+        * @return      boolean
+        */
+       public function changeDSLStatus ($status) {
+               $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']);
+                       
+                       if ($data['status'] == 'ok') {
+                               return true;
+                       }
+                       else {
+                               return false;
+                       }
+               }
+               else {
+                       throw new RouterException('unknown status');
+               }
+       }
+       
+       /**
+        * change lte connection status
+        * 
+        * @param       string  $status
+        * @return      boolean
+        */
+       public function changeLTEStatus ($status) {
+               throw new Exception('unstable funtion');
+               $path = 'data/Modules.json';
+               
+               if ($status == '0' || $status == '1' || $status == 'yes' || $status == 'no') {
+                       if ($status == 'yes') $status = '1';
+                       else if ($status == 'no') $status = '0';
+                       
+                       $fields = array('csrf_token' => $this->token, 'use_lte' => $status);
+                       $data = $this->sentEncryptedRequest($path, $fields, true);
+                       
+                       // debug only
+                       return $data;
+               }
+               else {
+                       throw new RouterException('unknown status');
+               }
+       }
+       
+       /**
+        * reconnect LTE
+        *
+        * @return      array
+        */
+       public function reconnectLte () {
+               $this->checkLogin();
+               
+               $path = 'data/modules.json';
+               $fields = array('csrf_token' => $this->token, 'lte_reconn' => '1');
+               $data = $this->sentEncryptedRequest($path, $fields, true);
+               
+               return $data['body'];
+       }
+}
diff --git a/lib/trait/CryptLib.class.php b/lib/trait/CryptLib.class.php
new file mode 100644 (file)
index 0000000..ce32bb7
--- /dev/null
@@ -0,0 +1,63 @@
+<?php
+/**
+ * @author      Jan Altensen (Stricted)
+ * @license     GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
+ * @copyright   2015 Jan Altensen (Stricted)
+ */
+trait CryptLib {
+       /**
+        * sends the encrypted request to router
+        * 
+        * @param       string  $path
+        * @param       mixed   $fields
+        * @param       string  $cookie
+        * @return      array
+        */
+       private function sentEncryptedRequest ($path, $fields, $cookie = false) {
+               $count = count($fields);
+               $fields = $this->encrypt(http_build_query($fields));
+               return $this->sentRequest($path, $fields, $cookie, $count);
+       }
+       
+       /**
+        * decrypt data from router
+        * 
+        * @param       string  $data
+        * @return      array
+        */
+       private function decrypt ($data) {
+               $iv = hex2bin(substr($this->challenge, 16, 16));
+               $adata = hex2bin(substr($this->challenge, 32, 16));
+               $key = hex2bin($this->derivedk);
+               $enc = hex2bin($data);
+               
+               $factory = new CryptLib\Cipher\Factory();
+               $aes = $factory->getBlockCipher('rijndael-128');
+               $aes->setKey($key);
+               $mode = $factory->getMode('ccm', $aes, $iv, [ 'adata' => $adata, 'lSize' => 7]);
+               
+               $mode->decrypt($enc);
+               
+               return $mode->finish();
+       }
+
+       /**
+        * decrypt data for the router
+        * 
+        * @param       string  $data
+        * @return      string
+        */
+       private function encrypt ($data) {
+               $iv = hex2bin(substr($this->challenge, 16, 16));
+               $adata = hex2bin(substr($this->challenge, 32, 16));
+               $key = hex2bin($this->derivedk);
+               
+               $factory = new CryptLib\Cipher\Factory();
+               $aes = $factory->getBlockCipher('rijndael-128');
+               $aes->setKey($key);
+               $mode = $factory->getMode('ccm', $aes, $iv, [ 'adata' => $adata, 'lSize' => 7]);
+               $mode->encrypt($data);
+               
+               return bin2hex($mode->finish());
+       }
+}
diff --git a/lib/trait/Login.class.php b/lib/trait/Login.class.php
new file mode 100644 (file)
index 0000000..d03b94a
--- /dev/null
@@ -0,0 +1,213 @@
+<?php
+/**
+ * @author      Jan Altensen (Stricted)
+ * @license     GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
+ * @copyright   2015 Jan Altensen (Stricted)
+ */
+trait Login {
+       /**
+        * password-challenge
+        * @var string
+        */
+       private $challenge = '';
+       
+       /**
+        * csrf_token
+        * @var string
+        */
+       private $token = '';
+       
+       /**
+        * hashed password
+        * @var string
+        */
+       private $hash = '';
+       
+       /**
+        * session cookie
+        * @var string
+        */
+       private $cookie = '';
+       
+       /**
+        * derivedk cookie
+        * @var string
+        */
+       private $derivedk = '';
+       
+       /**
+        * login into the router with the given password
+        * 
+        * @param       string  $password
+        * @return      boolean
+        */
+       public function login ($password) {
+               $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 = $this->getValues($data['body']);
+               
+               if (isset($json['login']) && $json['login'] == 'success') {
+                       $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;
+                       }
+               }
+               
+               return false;
+       }
+       
+       /**
+        * Requests the password-challenge from the router.
+        */
+       private function getChallenge () {
+               $path = 'data/Login.json';
+               $fields = array('csrf_token' => 'nulltoken', 'showpw' => 0, 'challengev' => 'null');
+               $data = $this->sentRequest($path, $fields);
+               $data = $this->getValues($data['body']);
+               
+               if (isset($data['challengev']) && !empty($data['challengev'])) {
+                       return $data['challengev'];
+               }
+               else {
+                       throw new RouterException('unable to get the challenge from the router');
+               }
+       }
+       
+       /**
+        * check if we are logged in
+        *
+        * @param       boolean $exception
+        * @return      boolean
+        */
+       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 ($data['loginstate'] != 1) {
+                       if ($exception === true) {
+                               throw new RouterException('you musst be logged in to use this method');
+                       }
+                       
+                       return false;
+               }
+               
+               return true;
+       }
+       
+       /**
+        * logout
+        * 
+        * @return      boolean
+        */
+       public function logout () {
+               $this->checkLogin();
+               
+               $path = 'data/Login.json';
+               $fields = array('csrf_token' => $this->token, 'logout' => 'byby');
+               $data = $this->sentRequest($path, $fields, true);
+               $data = $this->getValues($data['body']);
+               if ((isset($data['status']) && $data['status'] == 'ok') && $this->checkLogin(false) === false) {
+                       // reset challenge and session
+                       $this->challenge = '';
+                       $this->cookie = '';
+                       $this->token = '';
+                       $this->derivedk = '';
+                       
+                       return true;
+               }
+               
+               return false;
+       }
+       
+       /**
+        * get the csrf_token
+        * 
+        * @return      string
+        */
+       private function getToken () {
+               $this->checkLogin();
+               
+               $path = 'html/content/overview/index.html';
+               $fields = array();
+               $data = $this->sentRequest($path, $fields, true);
+               
+               $a = explode('csrf_token = "', $data['body']);
+               $a = explode('";', $a[1]);
+               
+               if (isset($a[0]) && !empty($a[0])) {
+                       return $a[0];
+               }
+               else {
+                       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;
+       }
+}
diff --git a/lib/trait/Phone.class.php b/lib/trait/Phone.class.php
new file mode 100644 (file)
index 0000000..8799221
--- /dev/null
@@ -0,0 +1,157 @@
+<?php
+/**
+ * @author      Jan Altensen (Stricted)
+ * @license     GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
+ * @copyright   2015 Jan Altensen (Stricted)
+ */
+trait Phone {
+       /**
+        * get phone book entrys
+        *
+        * @return      array
+        */
+       public function getPhoneBookEntrys () {
+               $data = $this->getData('PhoneBook');
+               $data = $this->getValues($data);
+               
+               if (isset($data['addbookentry'])) {
+                       return $data['addbookentry'];
+               }
+               else {
+                       return array();
+               }
+       }
+       
+       /**
+        * 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) {
+               $this->checkLogin();
+               
+               $path = 'data/PhoneBook.json';
+               $fields = array(
+                                               'csrf_token' => $this->token,
+                                               'id' => $id,
+                                               'search' => '',
+                                               'phonebook_name' => $name,
+                                               'phonebook_vorname' => $firstname,
+                                               'phonebook_number_p' => $private,
+                                               'phonebook_number_a' => $work,
+                                               'phonebook_number_m' => $mobile
+                                               );
+               
+               $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);
+       }
+       
+       /**
+        * delete Phone Book Entry
+        *
+        * @param       integer $id
+        *
+        * @return      array
+        */
+       public function deletePhoneBookEntry ($id) {
+               $this->checkLogin();
+               
+               $path = 'data/PhoneBook.json';
+               $fields = array(
+                                               'csrf_token' => $this->token,
+                                               'id' => $id,
+                                               'deleteEntry' => 'delete'
+                                               );
+               
+               $data = $this->sentRequest($path, $fields, true);
+               $data = $this->getValues($data['body']);
+               
+               if ($data['status'] == 'ok') {
+                       return $data;
+               }
+               else {
+                       throw new RouterException('can not delete Phone Book Entry');
+               }
+       }
+       
+       /**
+        * get the Missed Calls from router
+        * 
+        * @return      array
+        */
+       public function getMissedCalls() {
+               $data = $this->getData('PhoneCalls');
+               $data = $this->getValues($data);
+               
+               if (isset($data['addmissedcalls'])) {
+                       return $data['addmissedcalls'];
+               }
+               else {
+                       return array();
+               }
+       }
+       
+       /**
+        * get the Taken Calls from router
+        * 
+        * @return      array
+        */
+       public function getTakenCalls() {
+               $data = $this->getData('PhoneCalls');
+               $data = $this->getValues($data);
+               
+               if (isset($data['addtakencalls'])) {
+                       return $data['addtakencalls'];
+               }
+               else {
+                       return array();
+               }
+       }
+       
+       /**
+        * get the Dialed Calls from router
+        * 
+        * @return      array
+        */
+       public function getDialedCalls() {
+               $data = $this->getData('PhoneCalls');
+               $data = $this->getValues($data);
+               
+               if (isset($data['adddialedcalls'])) {
+                       return $data['adddialedcalls'];
+               }
+               else {
+                       return array();
+               }
+       }
+}
diff --git a/lib/trait/System.class.php b/lib/trait/System.class.php
new file mode 100644 (file)
index 0000000..4bf7a27
--- /dev/null
@@ -0,0 +1,112 @@
+<?php
+/**
+ * @author      Jan Altensen (Stricted)
+ * @license     GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
+ * @copyright   2015 Jan Altensen (Stricted)
+ */
+trait System {
+       /**
+        * 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
+        * 
+        * @param       string  $file
+        * @return      array
+        */
+       public function getData ($file) {
+               if ($file != 'Status') $this->checkLogin();
+               
+               $path = 'data/'.$file.'.json';
+               $fields = array();
+               $data = $this->sentRequest($path, $fields, true);
+               
+               return $data['body'];
+       }
+       
+       /**
+        * get the router syslog
+        * 
+        * @return      array
+        */
+       public function getSyslog() {
+               $data = $this->getData('SystemMessages');
+               $data = $this->getValues($data);
+               
+               if (isset($data['addmessage'])) {
+                       return $data['addmessage'];
+               }
+               else {
+                       return array();
+               }
+       }
+       
+       /**
+        * reset the router to Factory Default
+        * not tested
+        *
+        * @return      array
+        */
+       public function resetToFactoryDefault () {
+               $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);
+               
+               return $data['body'];
+       }
+       
+       
+       /**
+        * check if firmware is actual
+        * 
+        * @return      array
+        */
+       public function checkFirmware () {
+               $this->checkLogin();
+               
+               $path = 'data/checkfirmware.json';
+               $fields = array('checkfirmware' => 'true');
+               $data = $this->sentRequest($path, $fields, true);
+               
+               return $data['body'];
+       }
+       
+       /**
+        * reboot the router
+        * 
+        * @return      boolean
+        */
+       public function reboot () {
+               $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']);
+               
+               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');
+               }
+               
+               return false;
+       }
+}