blob: c2f46881505d7fae354d0f67c3d486d8a186e2c4 (
plain)
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
|
<?php
/**
* ElggHMACCache
* Store cached data in a temporary database, only used by the HMAC stuff.
*
* @package Elgg.Core
* @subpackage HMAC
*/
class ElggHMACCache extends ElggCache {
/**
* Set the Elgg cache.
*
* @param int $max_age Maximum age in seconds, 0 if no limit.
*/
function __construct($max_age = 0) {
$this->setVariable("max_age", $max_age);
}
/**
* Save a key
*
* @param string $key Name
* @param string $data Value
*
* @return boolean
*/
public function save($key, $data) {
global $CONFIG;
$key = sanitise_string($key);
$time = time();
$query = "INSERT into {$CONFIG->dbprefix}hmac_cache (hmac, ts) VALUES ('$key', '$time')";
return insert_data($query);
}
/**
* Load a key
*
* @param string $key Name
* @param int $offset Offset
* @param int $limit Limit
*
* @return string
*/
public function load($key, $offset = 0, $limit = null) {
global $CONFIG;
$key = sanitise_string($key);
$row = get_data_row("SELECT * from {$CONFIG->dbprefix}hmac_cache where hmac='$key'");
if ($row) {
return $row->hmac;
}
return false;
}
/**
* Invalidate a given key.
*
* @param string $key Name
*
* @return bool
*/
public function delete($key) {
global $CONFIG;
$key = sanitise_string($key);
return delete_data("DELETE from {$CONFIG->dbprefix}hmac_cache where hmac='$key'");
}
/**
* Clear out all the contents of the cache.
*
* Not currently implemented in this cache type.
*
* @return true
*/
public function clear() {
return true;
}
/**
* Clean out old stuff.
*
*/
public function __destruct() {
global $CONFIG;
$time = time();
$age = (int)$this->getVariable("max_age");
$expires = $time - $age;
delete_data("DELETE from {$CONFIG->dbprefix}hmac_cache where ts<$expires");
}
}
|