add unstable function changeLTEStatus
[GitHub/Stricted/speedport-hybrid-php-api.git] / SpeedportHybrid.class.php
CommitLineData
a91317a6 1<?php
8162139f
S
2require_once('RebootException.class.php');
3require_once('RouterException.class.php');
aacbbd28 4require_once('CryptLib/CryptLib.php');
8162139f 5
1d934afe
S
6/**
7 * @author Jan Altensen (Stricted)
8 * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
9 * @copyright 2015 Jan Altensen (Stricted)
10 */
21f877e4 11class SpeedportHybrid {
0dca2d61 12 /**
23cc0061
S
13 * class version
14 * @const string
0dca2d61 15 */
219ba661 16 const VERSION = '1.0.3';
0dca2d61 17
a91317a6
S
18 /**
19 * password-challenge
20 * @var string
21 */
22 private $challenge = '';
23
809e25bd
S
24 /**
25 * csrf_token
26 * @var string
27 */
28 private $token = '';
29
a91317a6
S
30 /**
31 * hashed password
32 * @var string
33 */
34 private $hash = '';
35
36 /**
37 * session cookie
38 * @var string
39 */
ac344b92 40 private $cookie = '';
a91317a6
S
41
42 /**
43 * router url
44 * @var string
45 */
b5a532a8 46 private $url = '';
a91317a6 47
c9e082da
S
48 /**
49 * derivedk cookie
50 * @var string
51 */
52 private $derivedk = '';
53
e58a96d1 54 public function __construct ($url = 'http://speedport.ip/') {
b5a532a8 55 $this->url = $url;
a91317a6
S
56 }
57
58 /**
59 * Requests the password-challenge from the router.
60 */
e58a96d1 61 private function getChallenge () {
b5a532a8 62 $path = 'data/Login.json';
a91317a6 63 $fields = array('csrf_token' => 'nulltoken', 'showpw' => 0, 'challengev' => 'null');
b5a532a8 64 $data = $this->sentRequest($path, $fields);
219ba661 65 $data = $this->getValues($data['body']);
c2678616
S
66
67 if (isset($data['challengev']) && !empty($data['challengev'])) {
ac344b92
S
68 return $data['challengev'];
69 }
70 else {
219ba661 71 throw new RouterException('unable to get the challenge from the router');
a91317a6
S
72 }
73 }
74
75 /**
76 * login into the router with the given password
5e44cffa 77 *
a91317a6
S
78 * @param string $password
79 * @return boolean
80 */
81 public function login ($password) {
ac344b92 82 $this->challenge = $this->getChallenge();
e58a96d1 83
b5a532a8 84 $path = 'data/Login.json';
a91317a6
S
85 $this->hash = hash('sha256', $this->challenge.':'.$password);
86 $fields = array('csrf_token' => 'nulltoken', 'showpw' => 0, 'password' => $this->hash);
b5a532a8 87 $data = $this->sentRequest($path, $fields);
219ba661 88 $json = $this->getValues($data['body']);
ac344b92 89
c2678616 90 if (isset($json['login']) && $json['login'] == 'success') {
ac344b92
S
91 $this->cookie = $this->getCookie($data);
92
93 $this->derivedk = $this->getDerviedk($password);
94
95 // get the csrf_token
96 $this->token = $this->getToken();
97
98 if ($this->checkLogin(false) === true) {
99 return true;
a91317a6
S
100 }
101 }
102
103 return false;
104 }
105
df1e1394
S
106 /**
107 * check if we are logged in
108 *
adcedd8b
S
109 * @param boolean $exception
110 * @return boolean
df1e1394 111 */
adcedd8b 112 public function checkLogin ($exception = true) {
ac344b92
S
113 // check if challenge or session is empty
114 if (empty($this->challenge) || empty($this->cookie)) {
adcedd8b 115 if ($exception === true) {
219ba661 116 throw new RouterException('you musst be logged in to use this method');
adcedd8b
S
117 }
118
0dca2d61
S
119 return false;
120 }
121
34701575 122 $path = 'data/SecureStatus.json';
df1e1394 123 $fields = array();
0dca2d61 124 $data = $this->sentRequest($path, $fields, true);
219ba661 125 $data = $this->getValues($data['body']);
df1e1394 126
219ba661 127 if ($data['loginstate'] != 1) {
adcedd8b 128 if ($exception === true) {
219ba661 129 throw new RouterException('you musst be logged in to use this method');
adcedd8b
S
130 }
131
df1e1394
S
132 return false;
133 }
134
135 return true;
136 }
137
a91317a6
S
138 /**
139 * logout
5e44cffa 140 *
58feafa2 141 * @return boolean
a91317a6
S
142 */
143 public function logout () {
adcedd8b 144 $this->checkLogin();
e58a96d1 145
b5a532a8 146 $path = 'data/Login.json';
df1e1394 147 $fields = array('csrf_token' => $this->token, 'logout' => 'byby');
219ba661
S
148 $data = $this->sentRequest($path, $fields, true);
149 $data = $this->getValues($data['body']);
150 if ((isset($data['status']) && $data['status'] == 'ok') && $this->checkLogin(false) === false) {
df1e1394
S
151 // reset challenge and session
152 $this->challenge = '';
ac344b92
S
153 $this->cookie = '';
154 $this->token = '';
155 $this->derivedk = '';
df1e1394 156
58feafa2 157 return true;
df1e1394 158 }
58feafa2
S
159
160 return false;
a91317a6
S
161 }
162
163 /**
164 * reboot the router
5e44cffa 165 *
58feafa2 166 * @return boolean
a91317a6
S
167 */
168 public function reboot () {
adcedd8b 169 $this->checkLogin();
e58a96d1 170
b5a532a8 171 $path = 'data/Reboot.json';
8162139f
S
172 $fields = array('csrf_token' => $this->token, 'reboot_device' => 'true');
173 $data = $this->sentEncryptedRequest($path, $fields, true);
219ba661 174 $data = $this->getValues($data['body']);
14d4f286 175
219ba661 176 if ($data['status'] == 'ok') {
aacbbd28
S
177 // reset challenge and session
178 $this->challenge = '';
179 $this->cookie = '';
180 $this->token = '';
181 $this->derivedk = '';
182
8162139f
S
183 // throw an exception because router is unavailable for other tasks
184 // like $this->logout() or $this->checkLogin
185 throw new RebootException('Router Reboot');
186 }
58feafa2
S
187
188 return false;
a91317a6
S
189 }
190
87026df3
S
191 /**
192 * change dsl connection status
5e44cffa 193 *
87026df3 194 * @param string $status
58feafa2 195 * @return boolean
87026df3 196 */
655c9abd 197 public function changeDSLStatus ($status) {
adcedd8b 198 $this->checkLogin();
e58a96d1 199
b5a532a8 200 $path = 'data/Connect.json';
87026df3
S
201
202 if ($status == 'online' || $status == 'offline') {
203 $fields = array('csrf_token' => 'nulltoken', 'showpw' => 0, 'password' => $this->hash, 'req_connect' => $status);
0dca2d61 204 $data = $this->sentRequest($path, $fields, true);
219ba661 205 $data = $this->getValues($data['body']);
c2678616 206
219ba661 207 if ($data['status'] == 'ok') {
58feafa2
S
208 return true;
209 }
210 else {
211 return false;
212 }
87026df3
S
213 }
214 else {
23cc0061 215 throw new RouterException('unknown status');
87026df3
S
216 }
217 }
218
655c9abd
S
219 /**
220 * change lte connection status
221 *
222 * @param string $status
223 * @return boolean
224 */
225 public function changeLTEStatus ($status) {
226 throw new Exception('unstable funtion');
227 $path = 'data/Modules.json';
228
229 if ($status == '0' || $status == '1' || $status == 'yes' || $status == 'no') {
230 if ($status == 'yes') $status = '1';
231 else if ($status == 'no') $status = '0';
232
233 $fields = array('csrf_token' => $this->token, 'use_lte' => $status);
234 $data = $this->sentEncryptedRequest($path, $fields, true);
235
236 // debug only
237 return $data;
238 }
239 else {
240 throw new RouterException('unknown status');
241 }
242 }
243
58feafa2
S
244 /**
245 * get uptime based on online (connection) time
246 *
247 * @return string
248 */
249 public function getUptime () {
aacbbd28 250 $data = $this->getData('LAN');
58feafa2
S
251 $data = $this->getValues($data);
252
253 return $data['days_online'];
254 }
255
a91317a6
S
256 /**
257 * return the given json as array
5e44cffa 258 *
a91317a6
S
259 * @param string $file
260 * @return array
261 */
262 public function getData ($file) {
ac344b92 263 if ($file != 'Status') $this->checkLogin();
e58a96d1 264
b5a532a8 265 $path = 'data/'.$file.'.json';
a91317a6 266 $fields = array();
0dca2d61 267 $data = $this->sentRequest($path, $fields, true);
a91317a6 268
219ba661 269 return $data['body'];
a91317a6
S
270 }
271
5e44cffa
S
272 /**
273 * get the router syslog
274 *
275 * @return array
276 */
277 public function getSyslog() {
aacbbd28
S
278 $data = $this->getData('SystemMessages');
279 $data = $this->getValues($data);
280
281 if (isset($data['addmessage'])) {
282 return $data['addmessage'];
283 }
284 else {
285 return array();
286 }
5e44cffa
S
287 }
288
15260eeb 289 /**
aacbbd28 290 * get the Missed Calls from router
15260eeb
S
291 *
292 * @return array
293 */
aacbbd28
S
294 public function getMissedCalls() {
295 $data = $this->getData('PhoneCalls');
296 $data = $this->getValues($data);
297
298 if (isset($data['addmissedcalls'])) {
299 return $data['addmissedcalls'];
300 }
301 else {
302 return array();
303 }
15260eeb
S
304 }
305
abf641bb 306 /**
aacbbd28 307 * get the Taken Calls from router
abf641bb
S
308 *
309 * @return array
310 */
aacbbd28
S
311 public function getTakenCalls() {
312 $data = $this->getData('PhoneCalls');
313 $data = $this->getValues($data);
314
315 if (isset($data['addtakencalls'])) {
316 return $data['addtakencalls'];
317 }
318 else {
319 return array();
320 }
0dca2d61
S
321 }
322
323 /**
aacbbd28 324 * get the Dialed Calls from router
0dca2d61
S
325 *
326 * @return array
327 */
aacbbd28
S
328 public function getDialedCalls() {
329 $data = $this->getData('PhoneCalls');
330 $data = $this->getValues($data);
9bd25bb4 331
aacbbd28
S
332 if (isset($data['adddialedcalls'])) {
333 return $data['adddialedcalls'];
334 }
335 else {
336 return array();
337 }
abf641bb
S
338 }
339
809e25bd
S
340 /**
341 * reconnect LTE
342 *
343 * @return array
344 */
c9e082da 345 public function reconnectLte () {
adcedd8b 346 $this->checkLogin();
e58a96d1 347
c9e082da 348 $path = 'data/modules.json';
809e25bd 349 $fields = array('csrf_token' => $this->token, 'lte_reconn' => '1');
8162139f 350 $data = $this->sentEncryptedRequest($path, $fields, true);
c9e082da 351
219ba661 352 return $data['body'];
c9e082da 353 }
809e25bd 354
7f4a51d2
S
355 /**
356 * reset the router to Factory Default
357 * not tested
358 *
359 * @return array
360 */
9bd25bb4 361 public function resetToFactoryDefault () {
adcedd8b 362 $this->checkLogin();
e58a96d1 363
9bd25bb4
S
364 $path = 'data/resetAllSetting.json';
365 $fields = array('csrf_token' => 'nulltoken', 'showpw' => 0, 'password' => $this->hash, 'reset_all' => 'true');
0dca2d61 366 $data = $this->sentRequest($path, $fields, true);
9bd25bb4 367
219ba661 368 return $data['body'];
9bd25bb4 369 }
7f4a51d2 370
9bd25bb4 371
4ae464d1
S
372 /**
373 * check if firmware is actual
374 *
375 * @return array
376 */
377 public function checkFirmware () {
adcedd8b 378 $this->checkLogin();
e58a96d1 379
4ae464d1
S
380 $path = 'data/checkfirmware.json';
381 $fields = array('checkfirmware' => 'true');
0dca2d61 382 $data = $this->sentRequest($path, $fields, true);
4ae464d1 383
219ba661 384 return $data['body'];
4ae464d1
S
385 }
386
14d4f286
S
387 /**
388 * decrypt data from router
389 *
390 * @param string $data
391 * @return array
392 */
c2678616 393 private function decrypt ($data) {
14d4f286
S
394 $iv = hex2bin(substr($this->challenge, 16, 16));
395 $adata = hex2bin(substr($this->challenge, 32, 16));
23cc0061 396 $key = hex2bin($this->derivedk);
14d4f286
S
397 $enc = hex2bin($data);
398
23cc0061
S
399 $factory = new CryptLib\Cipher\Factory();
400 $aes = $factory->getBlockCipher('rijndael-128');
401 $aes->setKey($key);
14d4f286
S
402 $mode = $factory->getMode('ccm', $aes, $iv, [ 'adata' => $adata, 'lSize' => 7]);
403
404 $mode->decrypt($enc);
405
406 return $mode->finish();
407 }
408
409 /**
410 * decrypt data for the router
411 *
23cc0061 412 * @param string $data
14d4f286
S
413 * @return string
414 */
c2678616 415 private function encrypt ($data) {
14d4f286
S
416 $iv = hex2bin(substr($this->challenge, 16, 16));
417 $adata = hex2bin(substr($this->challenge, 32, 16));
23cc0061 418 $key = hex2bin($this->derivedk);
14d4f286 419
23cc0061
S
420 $factory = new CryptLib\Cipher\Factory();
421 $aes = $factory->getBlockCipher('rijndael-128');
422 $aes->setKey($key);
14d4f286 423 $mode = $factory->getMode('ccm', $aes, $iv, [ 'adata' => $adata, 'lSize' => 7]);
23cc0061 424 $mode->encrypt($data);
14d4f286 425
809e25bd 426 return bin2hex($mode->finish());
14d4f286
S
427 }
428
c2678616
S
429 /**
430 * get the values from array
431 *
432 * @param array $array
433 * @return array
434 */
435 private function getValues($array) {
436 $data = array();
437 foreach ($array as $item) {
aacbbd28 438 // thank you telekom for this piece of shit
8b7e3972 439 if ($item['vartype'] == 'template') {
ec351a7d
S
440 if (is_array($item['varvalue'])) {
441 $data[$item['varid']][] = $this->getValues($item['varvalue']);
442 }
443 else {
23cc0061 444 // i dont know if we need this
ec351a7d
S
445 $data[$item['varid']] = $item['varvalue'];
446 }
58feafa2
S
447 }
448 else {
8b7e3972
S
449 if (is_array($item['varvalue'])) {
450 $data[$item['varid']] = $this->getValues($item['varvalue']);
451 }
452 else {
453 $data[$item['varid']] = $item['varvalue'];
454 }
58feafa2 455 }
c2678616
S
456 }
457
458 return $data;
459 }
460
8162139f
S
461 /**
462 * sends the encrypted request to router
463 *
464 * @param string $path
465 * @param mixed $fields
466 * @param string $cookie
467 * @return array
468 */
469 private function sentEncryptedRequest ($path, $fields, $cookie = false) {
470 $count = count($fields);
23cc0061 471 $fields = $this->encrypt(http_build_query($fields));
8162139f
S
472 return $this->sentRequest($path, $fields, $cookie, $count);
473 }
474
a91317a6
S
475 /**
476 * sends the request to router
5e44cffa 477 *
b5a532a8 478 * @param string $path
809e25bd 479 * @param mixed $fields
a91317a6 480 * @param string $cookie
809e25bd 481 * @param integer $count
a91317a6
S
482 * @return array
483 */
0dca2d61 484 private function sentRequest ($path, $fields, $cookie = false, $count = 0) {
49abc701 485 $url = $this->url.$path.'?lang=en';
a91317a6
S
486 $ch = curl_init();
487 curl_setopt($ch, CURLOPT_URL, $url);
488
489 if (!empty($fields)) {
809e25bd
S
490 if (is_array($fields)) {
491 curl_setopt($ch, CURLOPT_POST, count($fields));
492 curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($fields));
493 }
494 else {
495 curl_setopt($ch, CURLOPT_POST, $count);
496 curl_setopt($ch, CURLOPT_POSTFIELDS, $fields);
497 }
a91317a6
S
498 }
499
0dca2d61 500 if ($cookie === true) {
8b7e3972 501 curl_setopt($ch, CURLOPT_COOKIE, 'lang=en; challengev='.$this->challenge.'; '.$this->cookie);
a91317a6
S
502 }
503
504 curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
505 curl_setopt($ch, CURLOPT_HEADER, true);
506
a91317a6
S
507 $result = curl_exec($ch);
508
509 $header_size = curl_getinfo($ch, CURLINFO_HEADER_SIZE);
510 $header = substr($result, 0, $header_size);
511 $body = substr($result, $header_size);
512 curl_close($ch);
513
219ba661
S
514 // check if response is empty
515 if (empty($body)) {
516 throw new RouterException('empty response');
517 }
518
8162139f
S
519 // check if body is encrypted (hex instead of json)
520 if (ctype_xdigit($body)) {
521 $body = $this->decrypt($body);
522 }
523
a91317a6
S
524 // fix invalid json
525 $body = preg_replace("/(\r\n)|(\r)/", "\n", $body);
526 $body = preg_replace('/\'/i', '"', $body);
5e44cffa 527 $body = preg_replace("/\[\s+\]/i", '[ {} ]', $body);
dae16c50 528 $body = preg_replace("/},\s+]/", "}\n]", $body);
a91317a6 529
219ba661 530 // decode json
aacbbd28 531 if (strpos($url, '.json') !== false) {
219ba661
S
532 $body = json_decode($body, true);
533 }
534
a91317a6
S
535 return array('header' => $this->parse_headers($header), 'body' => $body);
536 }
537
809e25bd
S
538 /**
539 * get the csrf_token
540 *
541 * @return string
542 */
543 private function getToken () {
adcedd8b 544 $this->checkLogin();
e58a96d1 545
49abc701 546 $path = 'html/content/overview/index.html';
809e25bd 547 $fields = array();
0dca2d61 548 $data = $this->sentRequest($path, $fields, true);
809e25bd 549
809e25bd
S
550 $a = explode('csrf_token = "', $data['body']);
551 $a = explode('";', $a[1]);
552
553 if (isset($a[0]) && !empty($a[0])) {
554 return $a[0];
555 }
556 else {
219ba661 557 throw new RouterException('unable to get csrf_token');
809e25bd
S
558 }
559 }
560
ac344b92
S
561 /**
562 * calculate the derivedk
563 *
564 * @param string $password
565 * @return string
566 */
567 private function getDerviedk ($password) {
568 $derivedk = '';
569
570 // calculate derivedk
571 if (!function_exists('hash_pbkdf2')) {
ac344b92
S
572 $pbkdf2 = new CryptLib\Key\Derivation\PBKDF\PBKDF2(array('hash' => 'sha1'));
573 $derivedk = bin2hex($pbkdf2->derive(hash('sha256', $password), substr($this->challenge, 0, 16), 1000, 32));
58feafa2 574 $derivedk = substr($derivedk, 0, 32);
ac344b92
S
575 }
576 else {
577 $derivedk = hash_pbkdf2('sha1', hash('sha256', $password), substr($this->challenge, 0, 16), 1000, 32);
578 }
579
58feafa2
S
580 if (empty($derivedk)) {
581 throw new RouterException('unable to calculate derivedk');
582 }
583
ac344b92
S
584 return $derivedk;
585 }
586
587 /**
588 * get cookie from header data
589 *
590 * @param array $data
591 * @return string
592 */
593 private function getCookie ($data) {
58feafa2 594 $cookie = '';
ac344b92
S
595 if (isset($data['header']['Set-Cookie']) && !empty($data['header']['Set-Cookie'])) {
596 preg_match('/^.*(SessionID_R3=[a-z0-9]*).*/i', $data['header']['Set-Cookie'], $match);
597 if (isset($match[1]) && !empty($match[1])) {
58feafa2 598 $cookie = $match[1];
ac344b92
S
599 }
600 }
601
58feafa2 602 if (empty($cookie)) {
219ba661 603 throw new RouterException('unable to get the session cookie from the router');
58feafa2
S
604 }
605
606 return $cookie;
ac344b92
S
607 }
608
a91317a6
S
609 /**
610 * parse the curl return header into an array
5e44cffa 611 *
a91317a6
S
612 * @param string $response
613 * @return array
614 */
615 private function parse_headers($response) {
616 $headers = array();
617 $header_text = substr($response, 0, strpos($response, "\r\n\r\n"));
618
7f4a51d2
S
619 $header_text = explode("\r\n", $header_text);
620 foreach ($header_text as $i => $line) {
a91317a6
S
621 if ($i === 0) {
622 $headers['http_code'] = $line;
623 }
624 else {
625 list ($key, $value) = explode(': ', $line);
626 $headers[$key] = $value;
627 }
628 }
629
630 return $headers;
631 }
7f4a51d2 632}