<?php
require_once('RebootException.class.php');
require_once('RouterException.class.php');
+require_once('CryptLib/CryptLib.php');
/**
* @author Jan Altensen (Stricted)
$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 string
*/
public function getUptime () {
- // TODO: search for a better solution, calling Connect.json need some time
- $data = $this->getData('Connect');
+ $data = $this->getData('LAN');
$data = $this->getValues($data);
return $data['days_online'];
* @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) {
- $this->checkLogin();
-
- $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);
- return explode("\n", $data['body']);
+ if (isset($data['adddialedcalls'])) {
+ return $data['adddialedcalls'];
+ }
+ else {
+ return array();
+ }
}
/**
* @return array
*/
private function decrypt ($data) {
- require_once 'CryptLib/CryptLib.php';
$factory = new CryptLib\Cipher\Factory();
$aes = $factory->getBlockCipher('rijndael-128');
* @return string
*/
private function encrypt ($data) {
- require_once 'CryptLib/CryptLib.php';
$factory = new CryptLib\Cipher\Factory();
$aes = $factory->getBlockCipher('rijndael-128');
private function getValues($array) {
$data = array();
foreach ($array as $item) {
- // thank you telekom for this piece of bullshit
+ // thank you telekom for this piece of shit
if ($item['vartype'] == 'template') {
if (is_array($item['varvalue'])) {
$data[$item['varid']][] = $this->getValues($item['varvalue']);
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);
$body = preg_replace("/},\s+]/", "}\n]", $body);
// decode json
- if (strpos($url, '.json') !== false && strpos($url, 'Syslog.json') === false) {
+ if (strpos($url, '.json') !== false) {
$body = json_decode($body, true);
}
// calculate derivedk
if (!function_exists('hash_pbkdf2')) {
- require_once 'CryptLib/CryptLib.php';
$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);