matheusfillipe | abd513e | 2021-05-11 03:29:11 -0300 | [diff] [blame] | 1 | <?php |
Marc Kupietz | 0215a44 | 2023-03-05 18:34:16 +0100 | [diff] [blame^] | 2 | include "User.php"; |
| 3 | use \User as User; |
| 4 | |
matheusfillipe | abd513e | 2021-05-11 03:29:11 -0300 | [diff] [blame] | 5 | //Connecting to Redis server on localhost |
| 6 | function connect(){ |
| 7 | include 'config.php'; |
| 8 | $redis = new Redis(); |
| 9 | $redis->connect('127.0.0.1', 6379); |
| 10 | $redis->auth("$REDIS_PASS"); |
| 11 | return $redis; |
| 12 | } |
| 13 | function redis_get($key){ |
| 14 | $redis = connect(); |
| 15 | return json_decode($redis->get($key)); |
| 16 | } |
Marc Kupietz | 0215a44 | 2023-03-05 18:34:16 +0100 | [diff] [blame^] | 17 | |
| 18 | function redis_get_user($key) { |
| 19 | $redis = connect(); |
| 20 | $data = json_decode($redis->get($key)); |
| 21 | $user = new User($data->user_name, $data->first_name, $data->last_name, $data->email, $data->password, $data->organization); |
| 22 | |
| 23 | return $user; |
| 24 | } |
| 25 | |
matheusfillipe | abd513e | 2021-05-11 03:29:11 -0300 | [diff] [blame] | 26 | function redis_set($key, $data, $timeout=null){ |
| 27 | $redis = connect(); |
| 28 | $redis->set($key, json_encode($data), $timeout); |
| 29 | } |
| 30 | |
| 31 | function redis_inc_ipdata($ip, $attr, $get=false){ |
| 32 | $count = redis_get($ip); |
| 33 | if ($count){ |
| 34 | if (isset($count->$attr)) $count->$attr = $count->$attr+1; |
| 35 | else $count->$attr = 1; |
| 36 | }else $count = (object)[$attr=>1]; |
| 37 | |
| 38 | if (!$get) redis_set($ip, $count, 3600); |
| 39 | return $count->$attr; |
| 40 | } |
| 41 | |
| 42 | function redis_delete($key){ |
| 43 | $redis = connect(); |
| 44 | $redis->del($key); |
| 45 | } |