forked from binarymaster/3WiFi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
user.class.php
787 lines (696 loc) · 23.2 KB
/
user.class.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
<?php
require_once 'db.php';
session_start();
/*
* Класс авторизации пользователей для сайта 3WiFi
* @link https://github.com/binarymaster/3WiFi
*/
class User {
/**
* Класс пользователя
*/
// Статусы пользователя
const USER_ADMIN = 3; // Администратор
const USER_ADVANCED = 2; // Разработчик
const USER_BASIC = 1; // Пользователь
const USER_GUEST = 0; // Гостевая учетная запись
const USER_UNAUTHORIZED = -1; // Не авторизован
const USER_BAN = -2; // Забанен
const LOG_AUTHORIZATION = 1;
const LOG_LOGOUT = 2;
const LOG_REGISTRATION = 3;
const LOG_CREATEINVITE = 4;
const LOG_DELETEINVITE = 5;
const LOG_GET_RAPIKEY = 6;
const LOG_GET_WAPIKEY = 7;
const LOG_CREATE_RAPIKEY = 8;
const LOG_CREATE_WAPIKEY = 9;
const LOG_AUTHORIZATION_DATAONLY = 10;
const LOG_GET_APIKEYS = 11;
public $uID = NULL;
public $puID = NULL;
public $InviterNickName = NULL;
public $Login = '';
public $Nick = '';
public $RegDate = NULL;
public $HashPass = NULL;
public $HashKey = NULL;
public $Salt = NULL;
public $Level = self::USER_UNAUTHORIZED;
public $HashIP = NULL;
public $invites = 0;
public $ReadApiKey = 'N/A';
public $WriteApiKey = 'N/A';
public $ApiAccess = '';
public $LastUpdate = 0;
public $LastError = '';
private static $mysqli;
function __construct($db=NULL)
{
global $db;
if (is_null($db))
{
db_connect();
}
self::$mysqli = $db;
}
function __destruct() {
if (!is_null(self::$mysqli)) self::$mysqli->close();
}
private function quote($var) {
return self::$mysqli->real_escape_string($var);
}
public function newHashKey() {
/**
* Генерирует новый хэш-ключ (Нужен для автоматической авторизации по кукам)
* @return string
*/
return md5(uniqid(rand(),true));
}
public function newHashIP($Salt = null, $IP=-1) {
/**
* Возвращает правильный хэш-ip для указанного IP и Соли (Нужно для автоматической авторизации по кукам)
* @param string [$Salt] (без параметра - соль пользователя, либо указанная соль)
* @param string [$IP] (без параметра - IP хоста, NULL - IP пользователя, либо указанный IP)
* @return string
*/
$Salt = (is_null($Salt) ? $this->Salt : $Salt);
$IP = (is_null($IP) ? $this->IP : ($IP===-1 ? $_SERVER['REMOTE_ADDR'] : $IP) );
return md5(md5($IP).$Salt);
}
public function getSessionLevel($default = NULL) {
/**
* Проверяет, авторизован пользователь или нет
* Устанавливает уровень доступа если авторизован, иначе NULL (гость)
* @param int [$default]
* @return int
*/
$this->Level = (isset($_SESSION['level']) ? $_SESSION['level'] : NULL);
return $this->Level;
}
public function saveDB() {
/**
* Сохраняет состояние в БД
* @return int uID
*/
if (is_null($this->uID))
{ // uID = NULL - новый пользователь, добавляем
$sql = "INSERT INTO `users` (`puid`, `login`, `nick`, `pass_hash`, `autologin`, `salt`, `level`, `ip_hash`, `invites`)
VALUES (".$this->puID.", '{$this->quote($this->Login)}', '{$this->quote($this->Nick)}', '{$this->quote($this->HashPass)}', '{$this->quote($this->HashKey)}', '{$this->quote($this->Salt)}', ".(int)$this->Level.", '{$this->quote($this->HashIP)}', {$this->quote($this->invites)})";
}
else
{
// обновляем пользователя с указанным uID
$sql = "UPDATE `users` SET `puid`=".$this->puID.",`login`='{$this->quote($this->Login)}', `nick`='{$this->quote($this->Nick)}', `pass_hash`='{$this->quote($this->HashPass)}', `autologin`='{$this->quote($this->HashKey)}', `salt`='{$this->quote($this->Salt)}', `level`=".(int)$this->Level.", `ip_hash`='{$this->quote($this->HashIP)}', `invites`={$this->quote($this->invites)}
WHERE `uID`={$this->quote($this->uID)}"; // Для совместимости получим его же uID обратно
}
$res = self::$mysqli->query($sql);
if (!isset($this->uID))
{
$this->uID = (($row = $res->insert_id) ? (int)$res->insert_id : null); // Запоминаем полученный uID
}
return $this->uID; // И возвращаем uID обратно
}
public function loadDB($uID = NULL) {
/**
* Загружает пользователя из БД
* Параметр uID указывает на то, что нам необходимо загрузить конкретного пользователя
* Отсутствие параметра сообщает, что в $this->Login $this->HashKey $user->HashIP загружены
* данные из кук, которые надо проверить на валидность.
* Результат true означает, что пользователь существует, загружен.
* Результат false говорит что пользователь не существует, либо авторизация не удалась.
* @param int [uID]
* @return bool $result
*/
if (is_null($uID)) { // если uID не указан, ищем по Login:HashKey:HashIP
$sql = "SELECT * FROM `users` WHERE `Login`={$this->quote($Login)} AND `HashKey`='{$this->quote($HashKey)}' AND `HashIP`='{$this->quote($HashIP)}' LIMIT 1;";
$result = false; // Пользователь даказывает верность загрузки
} else {
$sql = "SELECT * FROM `users` WHERE `uID`={$this->quote($uID)} LIMIT 1";
$result = true; // Сервер доказывает верность загрузки;
}
$res = self::$mysqli->query($sql);
if ($res->num_rows == 1) // Такой пользователь существует
{
$row = $res->fetch_assoc();
$this->uID = (int)$uID;
$this->puID = (int)$row['puid'];
$this->Login = $row['login'];
$this->Nick = $row['nick'];
$this->RegDate = $row['regdate'];
$this->LastUpdate = (int)$row['lastupdate'];
$this->HashPass = $row['pass_hash'];
$this->HashKey = $row['autologin'];
$this->Salt = $row['salt'];
$this->Level = (int)$row['level'];
$this->HashIP = $row['ip_hash'];
$this->invites = (int)$row['invites'];
$this->ReadApiKey = $row['rapikey'];
$this->WriteApiKey = $row['wapikey'];
// 1. Вне зависимости от успеха загрузки проверим авторизацию.
// 2. Вне зависимости от успеха авторизации, если запрашивали
// конкретного пользователя, вернем успешную загрузку.
$result = $result OR ( $this->HashIP == md5(md5($_SERVER['REMOTE_ADDR']).$this->Salt ) );
}
else $result = false; // Пользователь не найден пользователь, а значит и авторизация не удалась.
$res->close();
return $result;
}
public function saveSession() {
/**
* Сохраняет состояние в сессию
* @return bool true
*/
$_SESSION['uID'] = $this->uID;
$_SESSION['puID'] = $this->puID;
$_SESSION['InviterNickName'] = $this->InviterNickName;
$_SESSION['Login'] = $this->Login;
$_SESSION['Nick'] = $this->Nick;
$_SESSION['RegDate'] = $this->RegDate;
$_SESSION['HashPass'] = $this->HashPass;
$_SESSION['HashKey'] = $this->HashKey;
$_SESSION['Salt'] = $this->Salt;
$_SESSION['Level'] = $this->Level;
$_SESSION['HashIP'] = $this->HashIP;
$_SESSION['invites'] = $this->invites;
$_SESSION['ReadApiKey'] = $this->ReadApiKey;
$_SESSION['WriteApiKey'] = $this->WriteApiKey;
return true;
}
public function loadSession() {
/**
* Загружает пользователя из сессии
* @return bool $result
*/
if (isset($_SESSION['uID'])) // сессия открыта
{
$this->uID = $_SESSION['uID'];
$this->puID = $_SESSION['puID'];
$this->InviterNickName = $_SESSION['InviterNickName'];
$this->Login = $_SESSION['Login'];
$this->Nick = $_SESSION['Nick'];
$this->RegDate = $_SESSION['RegDate'];
$this->HashPass = $_SESSION['HashPass'];
$this->HashKey = $_SESSION['HashKey'];
$this->Salt = $_SESSION['Salt'];
$this->Level = $_SESSION['Level'];
$this->HashIP = $_SESSION['HashIP'];
$this->invites = $_SESSION['invites'];
$this->ReadApiKey = $_SESSION['ReadApiKey'];
$this->WriteApiKey = $_SESSION['WriteApiKey'];
return true;
}
else return false;
}
public function saveCookies() {
/**
* Сохраняет состояние в куки
* @return bool true
*/
$Cookie=array( 'Login' => $this->Login,
'HashKey' => $this->HashKey,
'HashIP' => $this->HashIP );
setcookie('Auth', serialize($Cookie), time()+3*24*60*60); // Устанавливаем куки на 3 дня
return true;
}
public function loadCookies() {
/**
* Загружает пользователя из куки
* @return bool $result
*/
if (isset($_COOKIE['Auth'])) // Есть кука
{
$Cookie = unserialize($_COOKIE['Auth']); // получаем куку
$this->Login = $Cookie['Login'];
$this->HashKey = $Cookie['HashKey'];
$this->HashIP = $Cookie['HashIP'];
return true;
} else return false;
}
public function save() {
/**
* Сохраняет состояние авторизации
* В БД, сессии и куках
* @return bool true
*/
$this->saveDB(); // сохраним изменения в базе
$this->saveSession(); // сохраним сессию
$this->saveCookies(); // сохраним куки
return true;
}
public function load() {
/**
* Восстанавливает состояние авторизации
* из БД, сессии и кук
* @return bool true
*/
if (!$this->loadSession())
{
return false;
}
$this->isActual();
/*
// Загрузили через сохраненную сессию
elseif ($this->loadCookies()) // Пытаемся загрузить куки
{ // Куки есть, загружены.
return $this->loadDB(); // Загружаем остальное из базы и авторизуемся.
}
else {return false;} // ни сессии, ни кук - не авторизован
*/
return true;
}
public function GenerateRandomString($size=32, $syms = true)
{
$Str = '';
$arr = array('a','b','c','d','e','f',
'g','h','i','j','k','l',
'm','n','o','p','r','s',
't','u','v','x','y','z',
'A','B','C','D','E','F',
'G','H','I','J','K','L',
'M','N','O','P','R','S',
'T','U','V','X','Y','Z',
'1','2','3','4','5','6',
'7','8','9','0');
$symb_arr = Array( '!', '@',
'#', '$', '%', '^', '&',
'*', '(', ')', '-', '_',
'+', '=', '|', '.', ',');
if ($syms) $arr = array_merge($arr, $symb_arr);
for($i = 0; $i < $size; $i++)
{
$Str .= $arr[rand(0, sizeof($arr) - 1)];
}
return $Str;
}
public function isActual($fix=true)
{
if ($this->uID == NULL) return false;
if (is_null(self::$mysqli)) return false;
$sql = 'SELECT UNIX_TIMESTAMP(lastupdate) FROM users WHERE uid='.$this->uID;
$res = self::$mysqli->query($sql);
if ($res->num_rows != 1) return false;
$row = $res->fetch_row();
if ($this->LastUpdate < $row[0])
{
if (!$fix) return false;
$this->loadDB($this->uID);
$this->saveSession(); // сохраним сессию
$this->saveCookies(); // сохраним куки
}
return true;
}
public function setUser($uID=NULL, $puID=0, $Login='', $Nick='', $HashPass=NULL, $HashKey=NULL, $Salt=NULL, $Level=self::USER_UNAUTHORIZED, $HashIP=NULL, $invites=0)
{
/**
* Запоминает указанные данные
* @params [User]
* @return bool true
*/
$this->uID = $uID;
$this->puID = $puID;
$this->InviterNickName = $this->getUserNameById($puID);
$this->Login = $Login;
$this->Nick = $Nick;
$this->HashPass = $HashPass;
$this->HashKey = $HashKey;
$this->Salt = $Salt;
$this->Level = $Level;
$this->HashIP = $HashIP;
$this->invites = $invites;
}
public function changeNick($NewNick)
{
if (is_null($this->uID))
{
return false;
}
$this->Nick = $NewNick;
$this->save();
return true;
}
public function changePass($NewPass)
{
if (is_null($this->uID))
{
return false;
}
$Salt = $this->GenerateRandomString(32);
$this->Salt = $Salt;
$this->HashPass = md5($NewPass.$Salt);
$this->HashKey = $this->newHashKey();
$this->HashIP = $this->newHashIP();
$this->save();
return true;
}
public function resetPass($login)
{
$salt = $this->GenerateRandomString(32);
$pass = $this->GenerateRandomString(10, false);
$hash = md5($pass.$salt);
return (self::$mysqli->query("UPDATE users SET pass_hash='$hash',salt='{$this->quote($salt)}' WHERE login='{$this->quote($login)}'") ? $pass : false);
}
public function Registration($Login, $Nick, $Password, $Invite)
{
$Salt = $this->GenerateRandomString(32);
$InviteInfo = $this->getInviteInfo($Invite);
if ($InviteInfo['uid'] != NULL) return false;
$ParentUser = $this->getUserInfo($InviteInfo['puid']);
$Invites = 0;
if($ParentUser['level'] >= 2)
{
switch($InviteInfo['level'])
{
case 1: $Invites = 3;
break;
case 2: $Invites = 10;
break;
}
}
$this->setUser(NULL, $InviteInfo['puid'], $Login, $Nick, md5($Password.$Salt), '', $Salt, (int)$InviteInfo['level'], NULL, $Invites);
$this->save();
if ($this->Auth($Password, $Login))
{
$sql = "UPDATE invites SET uid=".$this->uID." WHERE invite='".self::quote($Invite)."'";
$res = self::$mysqli->query($sql);
self::$mysqli->query('UPDATE users SET regdate=NOW() WHERE uid='.$this->uID);
$this->eventLog(self::LOG_REGISTRATION, 1, 'Invite: '.$Invite);
return true;
}
return false;
}
public function Auth($password, $login = NULL, $getDataOnly=false) {
/**
* Авторизует пользователя по паролю:[логину],
* возвращает удалось ли авторизоваться
* @param string $password
* @param string [$login]
* @return bool
*/
$login = ( is_null($login) ? $this->Login : $login );
$res = self::$mysqli->query("SELECT * FROM `users` WHERE `login`='{$this->quote($login)}' LIMIT 1");
if ($res->num_rows == 1) // Если логин существует
{
$row = $res->fetch_assoc();
if (md5($password.$row['salt']) == $row['pass_hash'])
{
$this->loadDB($row['uid']);
$this->setUser($row['uid'], $row['puid'], $login, $row['nick'], $row['pass_hash'], $this->newHashKey(), $row['salt'], $row['level'], $this->newHashIP(), $row['invites']);
$this->RegDate = $row['regdate'];
if(!$getDataOnly)
{
$this->save();
$this->eventLog(self::LOG_AUTHORIZATION, 1);
}
else
{
$this->eventLog(self::LOG_AUTHORIZATION_DATAONLY, 1);
}
return true;
}
}else { // Логин не существует, авторизация провалилась
return false;
}
$res->close();
$this->eventLog(self::LOG_AUTHORIZATION, 0);
}
/**
* Метод проверяет существование пользователя по логину
* @param string $login
* @return bool
*/
public function isUserLogin($login)
{
$res = self::$mysqli->query("SELECT `uid` FROM `users` WHERE `Login`='{$this->quote($login)}'");
$result = ($res->num_rows == 1);// Если пользователь существует
$res->close();
return $result;
}
public function isUserNick($nick) {
/**
* Метод проверяет существование пользователя по нику
* @param string $nick
* @return bool
*/
$res = self::$mysqli->query("SELECT `uid` FROM `users` WHERE `Nick`='{$this->quote($nick)}'");
$result = ($res->num_rows == 1);// Если пользователь существует
$res->close();
return $result;
}
public function getUserNameById($uID)
{
$res = self::$mysqli->query('SELECT `nick` FROM `users` WHERE `uid`='.$uID);
if ($res->num_rows < 1)
{
return false;
}
$row = $res->fetch_assoc();
$res->close();
return $row['nick'];
}
public function out() {
/**
* Метод осуществляет выход пользователя
* @return bool true
*/
$_SESSION = array(); // Очищаем сессию
session_destroy(); // Уничтожаем
setcookie('auth', '', time()-3600); // Удаляем авто авторизацию
$this->eventLog(self::LOG_LOGOUT, 1);
return true;
}
public function isValidInvite($invite) {
/**
* Метод проверяет действует ли код приглашения
* @param string $invite
* @return bool
*/
$res = self::$mysqli->query("SELECT invite FROM invites WHERE `invite`='{$this->quote($invite)}' AND `uid` IS NULL LIMIT 1;");
$result = ($res->num_rows == 1);
$res->close();
return $result;
}
public function getInviteInfo($invite) {
$res = self::$mysqli->query("SELECT * FROM invites WHERE `invite`='{$this->quote($invite)}' LIMIT 1;");
if (!$res) return false;
$result = $res->fetch_assoc();
$res->close();
return $result;
}
public function getUserInfo($uid) {
$res = self::$mysqli->query('SELECT * FROM users WHERE `uid`='.$uid.' LIMIT 1');
if (!$res) return false;
$result = $res->fetch_assoc();
$res->close();
return $result;
}
public function listInvites($uid = null) {
/**
* Метод возвращает список активных и использованных приглашений пользователя
* @param int $uid
* @return array $Invites
*/
if (is_null($uid)) $uid = $this->uID;
if ($uid == NULL) return false;
$sql = 'SELECT time, users.regdate, invite, nick, IF(users.level IS NULL, invites.level, users.level) AS level FROM invites LEFT JOIN users USING(`uid`) WHERE invites.puid='.$this->quote($uid).' ORDER BY time';
$res = self::$mysqli->query($sql);
for ($result=array();$row=$res->fetch_assoc();$row['level']=(int)$row['level'],$result[]=$row);
$res->close();
return $result;
}
public function createInvite($level=1, $uid=NULL)
{
if (is_null($uid)) $uid = $this->uID;
if ($uid == NULL) return false;
// Если не осталось инвайтов (и не админ)
if ($this->invites <= 0 && $this->Level < 3)
{
$this->LastError = 'limit';
return false;
}
// Только админ может пригласить пользователя с нестандартным уровнем
if ($this->Level <= 2 && $level != 1)
{
$this->LastError = 'lowlevel';
return false;
}
// Нельзя создавать инвайты с отрицательным уровнем
if ($level < 0)
{
$this->LastError = 'form';
return false;
}
$invite = $this->GenerateRandomString(12, false);
$res = self::$mysqli->query("INSERT INTO invites SET invite='$invite', puid=$uid, level=$level");
if (self::$mysqli->errno != 0)
{
$this->LastError = 'database';
return false;
}
if ($this->Level < 3) $res = self::$mysqli->query("UPDATE users SET invites=invites-1 WHERE uid=$uid");
$this->eventLog(self::LOG_CREATEINVITE, 1, $invite);
return true;
}
public function updateInvite($invite, $level)
{
$uid = $this->uID;
if ($uid == null) return false;
if ($this->Level <= 2 && $level != 1)
{
$this->LastError = 'lowlevel';
return false;
}
if ($level < 0)
{
$this->LastError = 'form';
return false;
}
$res = self::$mysqli->query("SELECT invite, uid FROM invites WHERE puid=$uid AND invite='".self::quote($invite)."'");
if (self::$mysqli->errno != 0)
{
$this->LastError = 'database';
return false;
}
$row = $res->fetch_row();
$invite = $row[0];
$uid = $row[1];
$res->close();
if ($invite == null)
{
$this->LastError = 'form';
return false;
}
self::$mysqli->query("UPDATE invites SET level=$level WHERE invite='".self::quote($invite)."'");
if (self::$mysqli->errno != 0)
{
$this->LastError = 'database';
return false;
}
if ($uid != null)
{
self::$mysqli->query("UPDATE users SET level=$level WHERE uid=$uid");
if (self::$mysqli->errno != 0)
{
$this->LastError = 'database';
return false;
}
}
return true;
}
public function deleteInvite($invite)
{
$uid = $this->uID;
if ($uid == NULL) return false;
$res = self::$mysqli->query("DELETE FROM invites WHERE puid=$uid AND uid IS NULL AND invite='".self::quote($invite)."'");
if (self::$mysqli->errno != 0)
{
$this->LastError = 'database';
return false;
}
if (self::$mysqli->affected_rows == 0)
{
$this->LastError = 'login';
return false;
}
if ($this->Level < 3) $res = self::$mysqli->query("UPDATE users SET invites=invites+1 WHERE uid=$uid");
$this->eventLog(self::LOG_DELETEINVITE, 1, $invite);
return true;
}
public function getApiKeys()
{
$uid = $this->uID;
if ($uid == NULL) return false;
if ($this->Level < 0)
{
$this->LastError = 'lowlevel';
return false;
}
$res = self::$mysqli->query('SELECT rapikey, wapikey FROM users WHERE uid='.(int)$uid);
if (self::$mysqli->errno != 0)
{
$this->LastError = 'database';
return false;
}
if ($res->num_rows == 0)
{
$this->LastError = 'database';
return false;
}
$data = $res->fetch_assoc();
$this->eventLog(self::LOG_GET_APIKEYS, 1, '');
return $data;
}
public function createApiKey($type)
{
$uid = $this->uID;
if ($uid == NULL) return false;
if ($type == NULL)
{
$this->LastError = 'form';
return false;
}
if ($this->Level < 1)
{
$this->LastError = 'lowlevel';
return false;
}
$ApiKey = $this->GenerateRandomString(32, false);
switch($type)
{
case 1:
$sql = 'UPDATE users SET rapikey="'.$ApiKey.'" WHERE uid='.(int)$uid;
break;
case 2:
$sql = 'UPDATE users SET wapikey="'.$ApiKey.'" WHERE uid='.(int)$uid;
break;
}
$res = self::$mysqli->query($sql);
if (self::$mysqli->errno != 0)
{
$this->LastError = 'database';
return false;
}
$this->eventLog((8+$type-1), 1, $ApiKey);
return $ApiKey;
}
public function eventLog($Action, $Status, $Data='')
{
$IP = $_SERVER['REMOTE_ADDR'];
$IP = ip2long($IP);
if($IP === false) return;
$sql = 'INSERT INTO logauth SET IP='.$IP.', uid='.$this->uID.',action='.$Action.', data="'.$Data.'", status='.$Status;
self::$mysqli->query($sql);
}
public function isLogged()
{
return !is_null($this->uID);
}
public function genToken()
{
$_SESSION['token'] = randomStr(8, false);
return $_SESSION['token'];
}
public function checkToken($token)
{
return (is_string($token) && $token != '' && $token == $_SESSION['token']);
}
public function AuthByApiKey($ApiKey, $loadData=false)
{
$ApiKey = self::quote($ApiKey);
$sql = "SELECT uid, IF(rapikey = '$ApiKey', 'read', IF(wapikey = '$ApiKey', 'write', NULL)) AS access FROM users WHERE rapikey = '$ApiKey' OR wapikey = '$ApiKey'";
$res = self::$mysqli->query($sql);
if($res->num_rows != 1)
{
$this->LastError = 'unauthorized';
return false;
}
$row = $res->fetch_assoc();
$this->ApiAccess = $row['access'];
if ($loadData)
{
$this->loadDB($row['uid']);
}
return true;
}
}
?>