bomp to 2.1.0
fix bug
This commit is contained in:
82
autopub.php
82
autopub.php
@@ -1,60 +1,62 @@
|
||||
<?php
|
||||
/*
|
||||
Plugin Name: 自动发布
|
||||
Version: 2.0.0
|
||||
Plugin URL: http://xiaosong.org/share/new-version-automatically-publish-plugin-released
|
||||
Description: 自动发布文章,修正时区问题,增加相关挂载点,自动删除缓存文件。
|
||||
Author: 小松
|
||||
Author Email: sahala_2007@126.com
|
||||
Author URL: http://xiaosong.org
|
||||
*/
|
||||
Plugin Name: 自动发布
|
||||
Version: 2.1.0
|
||||
Plugin URL: http://xiaosong.org/share/new-version-automatically-publish-plugin-released
|
||||
Description: 自动发布文章,修正时区问题,增加相关挂载点,自动删除缓存文件。
|
||||
Author: 小松
|
||||
Author Email: sahala_2007@126.com
|
||||
Author URL: http://xiaosong.org
|
||||
*/
|
||||
!defined('EMLOG_ROOT') && exit('access deined!');
|
||||
|
||||
function autopubAjax(){
|
||||
echo '<script type="text/javascript">$(function(){$.get("'.BLOG_URL.'?plugin=autopub");})</script>'."\n";
|
||||
echo '<script type="text/javascript">$.get("'.DYNAMIC_BLOGURL.'content/plugins/autopub/autopub_ajax.php")</script>'."\n";
|
||||
}
|
||||
function autopubAjaxAdmin(){
|
||||
echo '<script type="text/javascript">$.get("'.BLOG_URL.'content/plugins/autopub/autopub_ajax.php")</script>'."\n";
|
||||
}
|
||||
function autopubPhp(){
|
||||
echo '<script type="text/javascript">$(function(){$.ajax({url: "'.BLOG_URL.'content/plugins/autopub/autopub_cron.php",timeout: 1000,cache: false});})</script>'."\n";
|
||||
echo '<script type="text/javascript">$.ajax({url: "'.BLOG_URL.'content/plugins/autopub/autopub_cron.php",timeout: 1000,cache: false})</script>'."\n";
|
||||
}
|
||||
|
||||
function doPub(){
|
||||
$DB = MySql::getInstance();
|
||||
$CACHE = Cache::getInstance();
|
||||
$autopub = unserialize(Option::get('autopub'));
|
||||
$sql = "SELECT gid, content FROM ".DB_PREFIX."blog where hide ='y' order by date DESC";
|
||||
$result = $DB->query($sql);
|
||||
while($row = $DB->fetch_array($result)){
|
||||
$key = 'post-'.$row['gid'];
|
||||
if (isset($autopub[$key])) {
|
||||
$pub_time = $autopub[$key];
|
||||
if (time() >= $pub_time) {
|
||||
$autopubCopyRight = '<!-- (此文通过<a href="http://xiaosong.org/share/auto-pub-plugin-update">emlog自动发布插件</a>发布) -->';
|
||||
$condition = strpos($row['content'], $autopubCopyRight) === false ? ",content = '".addslashes($row['content'].$autopubCopyRight)."'" : "";
|
||||
$sql_do = "UPDATE ".DB_PREFIX."blog SET hide = 'n',date = '".$pub_time."'".$condition." WHERE gid='".$row['gid']."'";
|
||||
$DB->query($sql_do);
|
||||
doAction('save_log', $row['gid']);
|
||||
unset($autopub[$key]);
|
||||
}
|
||||
$DB = MySql::getInstance();
|
||||
$CACHE = Cache::getInstance();
|
||||
$autopub = unserialize(Option::get('autopub'));
|
||||
$sql = "SELECT gid, content FROM ".DB_PREFIX."blog where hide ='y' order by date DESC";
|
||||
$result = $DB->query($sql);
|
||||
while($row = $DB->fetch_array($result)){
|
||||
$key = 'post-'.$row['gid'];
|
||||
if (isset($autopub[$key])) {
|
||||
$pub_time = $autopub[$key];
|
||||
if (time() >= $pub_time) {
|
||||
$autopubCopyRight = '<!-- (此文通过<a href="http://xiaosong.org/share/auto-pub-plugin-update">emlog自动发布插件</a>发布) -->';
|
||||
$condition = strpos($row['content'], $autopubCopyRight) === false ? ",content = '".addslashes($row['content'].$autopubCopyRight)."'" : "";
|
||||
$sql_do = "UPDATE ".DB_PREFIX."blog SET hide = 'n',date = '".$pub_time."'".$condition." WHERE gid='".$row['gid']."'";
|
||||
$DB->query($sql_do);
|
||||
doAction('save_log', $row['gid']);
|
||||
unset($autopub[$key]);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Option::updateOption('autopub', serialize($autopub));
|
||||
$CACHE->updateCache();
|
||||
Option::updateOption('autopub', serialize($autopub));
|
||||
$CACHE->updateCache();
|
||||
}
|
||||
|
||||
$autopubArray = unserialize(Option::get('autopub'));
|
||||
if (count($autopubArray) > 1) {
|
||||
if (isset($autopubArray['trigger']) && $autopubArray['trigger'] == 'ajax') {
|
||||
emLoadJQuery();
|
||||
addAction('index_footer', 'autopubAjax');
|
||||
addAction('adm_footer', 'autopubAjax');
|
||||
} else if (isset($autopubArray['trigger']) && $autopubArray['trigger'] == 'php') {
|
||||
addAction('adm_footer', 'autopubPhp');
|
||||
}
|
||||
if (isset($autopubArray['trigger']) && $autopubArray['trigger'] == 'ajax') {
|
||||
emLoadJQuery();
|
||||
addAction('index_footer', 'autopubAjax');
|
||||
addAction('adm_footer', 'autopubAjaxAdmin');
|
||||
} else if (isset($autopubArray['trigger']) && $autopubArray['trigger'] == 'php') {
|
||||
addAction('adm_footer', 'autopubPhp');
|
||||
}
|
||||
}
|
||||
|
||||
function autopub_menu() {
|
||||
echo '<div class="sidebarsubmenu" id="autopub"><a href="./plugin.php?plugin=autopub">自动发布</a></div>';
|
||||
echo '<div class="sidebarsubmenu" id="autopub"><a href="./plugin.php?plugin=autopub">自动发布</a></div>';
|
||||
}
|
||||
|
||||
addAction('adm_sidebar_ext', 'autopub_menu');
|
||||
?>
|
||||
addAction('adm_sidebar_ext', 'autopub_menu');
|
||||
@@ -3,11 +3,12 @@
|
||||
* 自动发布插件
|
||||
* @copyright (c) xiaosong.org All Rights Reserved
|
||||
*/
|
||||
!defined('EMLOG_ROOT') && exit('access deined!');
|
||||
@set_time_limit(0);
|
||||
require_once('../../../init.php');
|
||||
|
||||
$isAjax = (isset($_SERVER['HTTP_X_REQUESTED_WITH']) && strstr($_SERVER['HTTP_X_REQUESTED_WITH'], 'XMLHttpRequest')) ? 1 : 0;
|
||||
if ($isAjax) {
|
||||
doPub();
|
||||
exit();
|
||||
}
|
||||
emDirect(BLOG_URL);
|
||||
?>
|
||||
emDirect(BLOG_URL);
|
||||
@@ -28,6 +28,4 @@ function callback_init(){
|
||||
Option::updateOption('autopub', serialize($autopub));
|
||||
$CACHE = Cache::getInstance();
|
||||
$CACHE->updateCache('options');
|
||||
}
|
||||
|
||||
?>
|
||||
}
|
||||
@@ -5,17 +5,13 @@
|
||||
*/
|
||||
ignore_user_abort(true);
|
||||
set_time_limit(0);
|
||||
require_once('../../../init.php');
|
||||
|
||||
if (!defined('EMLOG_ROOT')) {
|
||||
require_once('../../../init.php');
|
||||
}
|
||||
|
||||
do {
|
||||
clearstatcache();
|
||||
$run = EMLOG_ROOT.'/content/plugins/autopub/autopub_cron_pid.php';
|
||||
if(!file_exists($run)) die('do nothing');
|
||||
doPub();
|
||||
sleep(30);
|
||||
} while (true);
|
||||
|
||||
?>
|
||||
clearstatcache();
|
||||
$run = EMLOG_ROOT.'/content/plugins/autopub/autopub_cron_pid.php';
|
||||
if(!file_exists($run)) die('do nothing');
|
||||
doPub();
|
||||
sleep(30);
|
||||
} while (true);
|
||||
Reference in New Issue
Block a user