Files
typecho/var/Widget/Ajax.php
T
joyqi 55379c90df 初始化
修改了上一个版本的一些错误,第一次提交
2013-07-17 13:13:57 +08:00

164 lines
5.0 KiB
PHP

<?php
/**
* 异步调用组件
*
* @category typecho
* @package Widget
* @copyright Copyright (c) 2008 Typecho team (http://www.typecho.org)
* @license GNU General Public License 2.0
* @version $Id$
*/
/**
* 异步调用组件
*
* @author qining
* @category typecho
* @package Widget
*/
class Widget_Ajax extends Widget_Abstract_Options implements Widget_Interface_Do
{
/**
* 针对rewrite验证的请求返回
*
* @access public
* @return void
*/
public function remoteCallback()
{
if ($this->options->generator == $this->request->getAgent()) {
echo 'OK';
}
}
/**
* 获取最新版本
*
* @access public
* @return void
*/
public function checkVersion()
{
$this->user->pass('editor');
$client = Typecho_Http_Client::get();
if ($client) {
$client->setHeader('User-Agent', $this->options->generator)
->send('http://code.google.com/feeds/p/typecho/downloads/basic');
/** 匹配内容体 */
$response = $client->getResponseBody();
preg_match_all("/<link[^>]*href=\"([^>]*)\"\s*\/>\s*<title>([^>]*)<\/title>/is", $response, $matches);
$result = array('available' => 0);
list($soft, $version) = explode(' ', $this->options->generator);
$current = explode('/', $version);
if ($matches) {
foreach ($matches[0] as $key => $val) {
$title = trim($matches[2][$key]);
if (preg_match("/([0-9\.]+)\(([0-9\.]+)\)\-release/is", $title, $out)) {
if (version_compare($out[1], $current[0], '>=')
&& version_compare($out[2], $current[1], '>')) {
$result = array('available' => 1, 'latest' => $out[1] . '-' . $out[2],
'current' => $current[0] . '-' . $current[1], 'link' => $matches[1][$key]);
break;
}
}
}
}
Typecho_Cookie::set('__typecho_check_version', $result);
$this->response->throwJson($result);
return;
}
throw new Typecho_Widget_Exception(_t('禁止访问'), 403);
}
/**
* 远程请求代理
*
* @access public
* @return void
*/
public function feed()
{
$this->user->pass('subscriber');
$client = Typecho_Http_Client::get();
if ($client) {
$client->setHeader('User-Agent', $this->options->generator)
->send('http://typecho.org/feed/');
/** 匹配内容体 */
$response = $client->getResponseBody();
preg_match_all("/<item>\s*<title>([^>]*)<\/title>\s*<link>([^>]*)<\/link>\s*<guid>[^>]*<\/guid>\s*<pubDate>([^>]*)<\/pubDate>/is", $response, $matches);
$data = array();
if ($matches) {
foreach ($matches[0] as $key => $val) {
$data[] = array(
'title' => $matches[1][$key],
'link' => $matches[2][$key],
'date' => Typecho_I18n::dateWord(strtotime($matches[3][$key]),
$this->options->gmtTime + $this->options->timezone),
);
if ($key > 3) {
break;
}
}
}
if (!empty($data)) {
Typecho_Cookie::set('__typecho_feed', Typecho_Json::encode($data));
}
$this->response->throwJson($data);
return;
}
throw new Typecho_Widget_Exception(_t('禁止访问'), 403);
}
/**
* 自定义编辑器大小
*
* @access public
* @return void
*/
public function editorResize()
{
$this->user->pass('contributor');
if ($this->db->fetchObject($this->db->select(array('COUNT(*)' => 'num'))
->from('table.options')->where('name = ? AND user = ?', 'editorSize', $this->user->uid))->num > 0) {
$this->widget('Widget_Abstract_Options')
->update(array('value' => $this->request->size), $this->db->sql()->where('name = ? AND user = ?', 'editorSize', $this->user->uid));
} else {
$this->widget('Widget_Abstract_Options')->insert(array(
'name' => 'editorSize',
'value' => $this->request->size,
'user' => $this->user->uid
));
}
}
/**
* 异步请求入口
*
* @access public
* @return void
*/
public function action()
{
if (!$this->request->isAjax()) {
$this->response->goBack();
}
$this->on($this->request->is('do=remoteCallback'))->remoteCallback();
$this->on($this->request->is('do=feed'))->feed();
$this->on($this->request->is('do=checkVersion'))->checkVersion();
$this->on($this->request->is('do=editorResize'))->editorResize();
}
}