mirror of
https://github.com/MoePlayer/APlayer-Typecho.git
synced 2026-08-13 22:43:28 +08:00
58 lines
1.7 KiB
PHP
58 lines
1.7 KiB
PHP
<?php
|
|
class MetingCache implements MetingCacheI
|
|
{
|
|
private $db = null;
|
|
public function __construct($option)
|
|
{
|
|
$this->db = Typecho_Db::get();
|
|
$dbname = $this->db->getPrefix() . 'metingcache';
|
|
$sql = "SHOW TABLES LIKE '%" . $dbname . "%'";
|
|
if (count($this->db->fetchAll($sql)) == 0) {
|
|
$this->install();
|
|
} else {
|
|
$this->db->query($this->db->delete('table.metingcache')->where('time <= ?', time()));
|
|
}
|
|
}
|
|
public function install()
|
|
{
|
|
$sql = '
|
|
DROP TABLE IF EXISTS `%dbname%`;
|
|
CREATE TABLE `%dbname%` (
|
|
`key` char(32) NOT NULL,
|
|
`data` mediumtext,
|
|
`time` bigint(20) DEFAULT NULL,
|
|
PRIMARY KEY (`key`)
|
|
) ENGINE=MyISAM DEFAULT CHARSET=%charset%';
|
|
$dbname = $this->db->getPrefix() . 'metingcache';
|
|
$search = array('%dbname%', '%charset%');
|
|
$replace = array($dbname, str_replace('UTF-8', 'utf8', Helper::options()->charset));
|
|
|
|
$sql = str_replace($search, $replace, $sql);
|
|
$sqls = explode(';', $sql);
|
|
foreach ($sqls as $sql) {
|
|
$this->db->query($sql);
|
|
}
|
|
}
|
|
public function set($key, $value, $expire = 86400)
|
|
{
|
|
$this->db->query($this->db->insert('table.metingcache')->rows(array(
|
|
'key' => md5($key),
|
|
'data' => $value,
|
|
'time' => time() + $expire
|
|
)));
|
|
}
|
|
public function get($key)
|
|
{
|
|
$rs = $this->db->fetchRow($this->db->select('data')->from('table.metingcache')->where('key = ?', md5($key)));
|
|
if (count($rs) == 0) {
|
|
return false;
|
|
} else {
|
|
return $rs['data'];
|
|
}
|
|
}
|
|
public function flush()
|
|
{
|
|
return $this->db->query($this->db->delete('table.metingcache'));
|
|
}
|
|
}
|