Files
emlog_lastRSS/lastRSS_setting.php

166 lines
8.0 KiB
PHP
Raw Normal View History

2013-04-02 01:01:36 +08:00
<?php
!defined('EMLOG_ROOT') && exit('access deined!');
$DB = MySql::getInstance();
require_once(EMLOG_ROOT.'/content/plugins/lastRSS/lastRSS_config.php');
function plugin_setting_view(){
global $DB, $lastRSS_cache_time, $lastRSS_item_num, $lastRSS_is_urlshort, $lastRSS_is_blank, $lastRSS_urlshort_domain;
?>
<style type="text/css">
#lastRSS_form_config p, #lastRSS_form_input p, #lastRSS_form_modify p {font-size:14px;}
ol {margin:0;padding:0;}
.entry {overflow:hidden;zoom:1;list-style: decimal inside none;font-size:14px;padding:8px;background:#DFE1E3;border-top:1px solid #E9EAEB;border-bottom:1px solid #C7CCD1;}
.right {float:right;display:inline;}
#lastRSS_form_modify {display:none;}
</style>
<div class="containertitle"><b>Rss订阅 参数设置</b>
<?php if(isset($_GET['setting'])):?><span class="actived">插件设置完成</span><?php endif;?>
</div>
<div class="line"></div>
<form action="?plugin=lastRSS&action=setting&do=config" method="post" id="lastRSS_form_config">
<p>缓存时间:<input type="text" name="lastRSS_cache_time" value="<?php echo $lastRSS_cache_time; ?>" size="20" /> 单位为秒留空或“0”表示不缓存推荐设置大于“1200”</p>
<p>显示条数:<input type="text" name="lastRSS_item_num" value="<?php echo $lastRSS_item_num; ?>" size="20" /> 前台轮播显示的条数推荐大于“1”</p>
<p><input type="checkbox" value="1" name="lastRSS_is_urlshort"<?php if($lastRSS_is_urlshort == 1):?> checked<?php endif;?> /> 使用网址缩短服务来缩短RSS日志的链接(已存入数据库的链接不变)需服务器开启curl开启会增加程序运行时间</p>
<p><label for="lastRSS_urlshort_domain">短网址服务商:</label>
<select name="lastRSS_urlshort_domain" id="lastRSS_urlshort_domain">
<option value="t.cn"<?php if($lastRSS_urlshort_domain == 't.cn'):?> selected<?php endif;?>>t.cn</option>
<option value="bit.ly"<?php if($lastRSS_urlshort_domain == 'bit.ly'):?> selected<?php endif;?>>bit.ly</option>
<option value="j.mp"<?php if($lastRSS_urlshort_domain == 'j.mp'):?> selected<?php endif;?>>j.mp</option>
<option value="goo.gl"<?php if($lastRSS_urlshort_domain == 'goo.gl'):?> selected<?php endif;?>>goo.gl</option>
</select>
</p>
<p><input type="checkbox" value="1" name="lastRSS_is_blank"<?php if($lastRSS_is_blank == 1):?> checked<?php endif;?> /> 新窗口打开前台显示的RSS日志链接&nbsp; <input type="submit" value="保存参数" class="submit" /></p>
</form>
<div class="containertitle"><b>RSS 导入</b></div>
<div class="line"></div>
<form action="?plugin=lastRSS&action=setting&do=add" method="post" id="lastRSS_form_input">
<p>RSS URL <input type="text" name="url" style="width: 270px;" />&nbsp; 标题(不填则插件自动获取) <input type="text" name="title" style="width: 200px;" />&nbsp; <input type="submit" value="添加 RSS" class="submit" /></p>
</form>
<?php
$feeds = getRssFeeds();
if ($DB->num_rows($feeds) != 0):
?>
<div class="containertitle"><b>管理:(双击单行可对应修改该RSS的URL和标题)</b></div>
<div class="line"></div>
<form action="?plugin=lastRSS&action=setting&do=update" method="post" id="lastRSS_form_modify">
<p>RSS URL <input type="text" name="url" id="modify_url" style="width: 270px;" />&nbsp; 标题: <input type="text" name="title" id="modify_title" style="width: 200px;" />&nbsp; <input type="hidden" name="id" id="modify_id" /> <input type="submit" value="更新 RSS" class="submit" /> <input type="submit" id="cancel_update" value="取消更新" /></p>
</form>
<ol>
<?php
while ($item = $DB->fetch_array($feeds)) {
?>
<li class="entry" data-id="<?php echo $item['id']; ?>" data-url="<?php echo $item['url']; ?>" data-title="<?php echo $item['title']; ?>">
<span class="right"><a href="javascript:;" class="del">删除</a></span>
<span ><?php echo $item['title']; ?></span>》 URL<span style="color:#666; font-size: 12px;"><?php echo $item['url']; ?></span>
</li>
<?php
}
else:
?>
<div class="containertitle"><b>暂无RSS地址请导入</b></div>
<?php
endif;
}
?>
<?php
function plugin_setting(){
$do = isset($_GET['do']) ? $_GET['do'] : '';
if ($do == 'del') {
$id = intval($_POST['id']);
if ($id != 0) {
deleteFeed($id);
$msg = array('success' => 'true');
exit(json_encode($msg));
}
} elseif ($do == 'update') {
$id = intval($_POST['id']);
$url = isset($_POST['url']) ? trim($_POST['url']) : '';
if (!empty($url)) {
$title = (isset($_POST['title']) && trim($_POST['title']) !='') ? $_POST['title'] : getTitle($url);
$title = addslashes($title);
if (!empty($title)) {
updateFeed($id, $url, $title);
header("Location:plugin.php?plugin=lastRSS&setting=true");
} else {
emMsg("RSS修改失败插件无法获取{$url}的标题请自行添加标题再添加该RSS");
}
} else {
emMsg("RSS修改失败RSS地址不能为空");
}
} elseif ($do == 'add') {
$url = isset($_POST['url']) ? trim($_POST['url']) : '';
if (!empty($url)) {
$title = (isset($_POST['title']) && trim($_POST['title']) !='') ? $_POST['title'] : getTitle($url);
$title = addslashes($title);
if (!empty($title)) {
insertFeed($url, $title);
updateLogs();
header("Location:plugin.php?plugin=lastRSS&setting=true");
} else {
emMsg("RSS导入失败插件无法获取{$url}的标题请自行添加标题再导入该RSS");
}
} else {
emMsg("RSS导入失败RSS地址不能为空");
}
} elseif ($do == 'config') {
$lastRSS_cache_time = isset($_POST['lastRSS_cache_time']) ? intval($_POST['lastRSS_cache_time']) : 0;
$lastRSS_item_num = isset($_POST['lastRSS_item_num']) ? intval($_POST['lastRSS_item_num']) : 2;
$lastRSS_is_urlshort = isset($_POST['lastRSS_is_urlshort']) ? intval($_POST['lastRSS_is_urlshort']) : 0;
$lastRSS_urlshort_domain = isset($_POST['lastRSS_urlshort_domain']) ? trim($_POST['lastRSS_urlshort_domain']) : 't.cn';
$lastRSS_is_blank = isset($_POST['lastRSS_is_blank']) ? intval($_POST['lastRSS_is_blank']) : 0;
$data = "<?php
\$lastRSS_cache_time = ".$lastRSS_cache_time.";
\$lastRSS_item_num = ".$lastRSS_item_num.";
\$lastRSS_is_urlshort = ".$lastRSS_is_urlshort.";
\$lastRSS_urlshort_domain = '".$lastRSS_urlshort_domain."';
\$lastRSS_is_blank = ".$lastRSS_is_blank.";
?>";
$file = EMLOG_ROOT.'/content/plugins/lastRSS/lastRSS_config.php';
@ $fp = fopen($file, 'wb') OR emMsg('读取文件失败如果您使用的是Unix/Linux主机请修改文件/content/plugins/lastRSS/lastRSS_config.php的权限为777。如果您使用的是Windows主机请联系管理员将该文件设为everyone可写');
@ $fw = fwrite($fp,$data) OR emMsg('写入文件失败如果您使用的是Unix/Linux主机请修改文件/content/plugins/lastRSS/lastRSS_config.php的权限为777。如果您使用的是Windows主机请联系管理员将该文件设为everyone可写');
fclose($fp);
header("Location:plugin.php?plugin=lastRSS&setting=true");
}
}
?>
</ol>
<script type="text/javascript">
$(function(){
$body = (window.opera) ? (document.compatMode == "CSS1Compat" ? $("html") : $("body")) : $("html,body");
$("#lastRSS").addClass('sidebarsubmenu1');
$(".entry").dblclick(function(){
var feedUrl = $(this).data("url"),
feedId = $(this).data("id"),
feedTitle = $(this).data("title");
$("#modify_url").val(feedUrl);
$("#modify_title").val(feedTitle);
$("#modify_id").val(feedId);
$("#lastRSS_form_modify").slideDown(400,function(){
$body.animate({
scrollTop: $(this).offset().top - 40
}, 500);
$("#modify_url").focus();
});
});
$('.del').click(function(){
if (confirm('确认删除这个 RSS 数据源?')) {
var _parent = $(this).parents('.entry');
var _id = _parent.data('id');
$.post('./plugin.php?plugin=lastRSS&action=setting&do=del', {id: _id}, function(e, s){
if (s === 'success') {
_parent.remove();
} else {
alert('删除出错请前往http://xiaosong.org/留言');
}
})
}
return false;
});
$("#cancel_update").click(function(){
$("#lastRSS_form_modify").slideUp(200,function(){
$("#modify_url").blur();
});
return false;
})
})
</script>