forked from kookxiang/Tieba_Sign
-
Notifications
You must be signed in to change notification settings - Fork 0
/
admin.php
514 lines (513 loc) · 21.4 KB
/
admin.php
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
<?php
define('IN_ADMINCP', true);
define('DISABLE_PLUGIN', true);
require_once './system/common.inc.php';
if(!is_admin($uid)) exit();
$formhash = substr(md5(substr(TIMESTAMP, 0, -7).$username.$uid.SYS_KEY.ROOT.'ADMINCP_ONLY'), 5, 14);
switch($_GET['action']){
case 'load_userstat':
$data = array();
$date = date('Ymd');
$query = DB::query('SELECT uid, username FROM member ORDER BY uid');
while($result = DB::fetch($query)){
$_uid = $result['uid'];
$data[$_uid] = $result;
$data[$_uid]['succeed'] = 0;
$data[$_uid]['skiped'] = 0;
$data[$_uid]['waiting'] = 0;
$data[$_uid]['retry'] = 0;
$data[$_uid]['unsupport'] = 0;
}
$query = DB::query("SELECT uid, COUNT(*) AS num FROM `sign_log` WHERE date='{$date}' AND `status`=2 GROUP BY uid");
while($result = DB::fetch($query)){
$_uid = $result['uid'];
$data[$_uid]['succeed'] = $result['num'];
}
$query = DB::query("SELECT uid, COUNT(*) AS num FROM `sign_log` WHERE date='{$date}' AND `status`=0 GROUP BY uid");
while($result = DB::fetch($query)){
$_uid = $result['uid'];
$data[$_uid]['waiting'] = $result['num'];
}
$query = DB::query("SELECT uid, COUNT(*) AS num FROM `sign_log` WHERE date='{$date}' AND `status`=1 GROUP BY uid");
while($result = DB::fetch($query)){
$_uid = $result['uid'];
$data[$_uid]['retry'] = $result['num'];
}
$query = DB::query("SELECT uid, COUNT(*) AS num FROM `sign_log` WHERE date='{$date}' AND `status`=-1 GROUP BY uid");
while($result = DB::fetch($query)){
$_uid = $result['uid'];
$data[$_uid]['unsupport'] = $result['num'];
}
$query = DB::query("SELECT uid, COUNT(*) AS num FROM `sign_log` WHERE date='{$date}' AND `status`=-2 GROUP BY uid");
while($result = DB::fetch($query)){
$_uid = $result['uid'];
$data[$_uid]['skiped'] = $result['num'];
}
exit(json_encode($data));
case 'load_user':
$data = array();
$query = DB::query('SELECT uid, username, email FROM member ORDER BY uid');
while($result = DB::fetch($query)){
$result['email'] = htmlspecialchars($result['email']);
$data[] = $result;
}
exit(json_encode($data));
break;
case 'load_setting':
$data = CACHE::get('setting');
unset($data['SYS_KEY']);
exit(json_encode($data));
break;
case 'save_setting':
if($formhash != $_POST['formhash']) showmessage('来源不可信,请重试', 'admin.php#setting');
if(defined('AFENABLED')){
saveSetting('admin_uid', $_POST['admin_uid']);
}
saveSetting('account_switch', ($_POST['account_switch'] ? 1 : 0));
saveSetting('register_limit', ($_POST['register_limit'] ? 1 : 0));
saveSetting('register_check', ($_POST['register_check'] ? 1 : 0));
saveSetting('autoupdate', ($_POST['autoupdate'] ? 1 : 0));
saveSetting('block_register', ($_POST['block_register'] ? 1 : 0));
saveSetting('invite_code', stripslashes(daddslashes($_POST['invite_code'])));
saveSetting('beian_no', stripslashes(daddslashes(htmlspecialchars($_POST['beian_no']))));
saveSetting('jquery_mode', $_POST['jquery_mode']);
saveSetting('max_tieba', intval($_POST['max_tieba']));
saveSetting('extra_title', stripslashes(daddslashes(htmlspecialchars($_POST['extra_title']))));
showmessage('设置已经保存☆Kira~', 'admin.php#setting', 2);
break;
case 'deluser':
$_uid = intval($_GET['uid']);
if($uid == $_uid) showmessage('删你自己的号是要作死啊?!', 'admin.php#user');
if($formhash != $_GET['formhash']) showmessage('来源不可信,请重试', 'admin.php#user');
delete_user($_uid);
showmessage('删除用户成功', 'admin.php#user', 1);
break;
case 'update_liked_tieba':
$_uid = intval($_GET['uid']);
if($formhash != $_GET['formhash']) showmessage('来源不可信,请重试', 'admin.php#user');
update_liked_tieba($_uid);
list($insert, $deleted) = update_liked_tieba($_uid);
showmessage("喜欢的贴吧列表已经更新,<br>新增{$insert}个贴吧, 删除{$deleted}个贴吧", 'admin.php#user', 1);
break;
case 'reset_failure':
$_uid = intval($_GET['uid']);
if($formhash != $_GET['formhash']) showmessage('来源不可信,请重试', 'admin.php#stat');
$date = date('Ymd');
DB::query("UPDATE sign_log SET status='0', retry='0' WHERE uid='{$_uid}' AND date='{$date}' AND status<0");
showmessage('已经重置,稍后系统将自动重试', 'admin.php#stat', 1);
break;
case 'reset_failure_all':
if(!defined('AFENABLED')) exit();
if($formhash != $_GET['formhash']) showmessage('来源不可信,请重试', 'admin.php#stat');
$date = date('Ymd');
DB::query("UPDATE sign_log SET status='0', retry='0' WHERE date='{$date}' AND status<0");
showmessage('已经重置,稍后系统将自动重试', 'admin.php#stat', 1);
break;
case 'mail_setting':
if($formhash != $_POST['formhash']) showmessage('来源不可信,请重试', 'admin.php#setting');
$classes = getClasses();
$class = $_POST['mail_sender'];
if(!$classes[$class]) showmessage('选择的邮件发送方式不正确.', 'admin.php#setting');
if(!$classes[$class]->isAvailable()) showmessage('选择的邮件发送方式不可用.', 'admin.php#setting');
saveSetting('mail_class', $class);
showmessage('保存成功<br>(请确认高级设置配置有效)', 'admin.php#setting');
break;
case 'mail_advanced':
$classes = getClasses();
$class = getSetting('mail_class');
$obj = $classes[$class];
if(!$obj) showmessage('选择的邮件发送方式不正确.', 'admin.php#setting');
if(!$obj->isAvailable()) showmessage('选择的邮件发送方式不可用.', 'admin.php#setting');
$_config = $obj->config;
if($_POST['formhash'] == $formhash){
foreach($_config as $k=>$v){
$key = $v[1];
$value = daddslashes($_POST[$key]);
saveSetting("_mail_{$class}_{$key}", $value);
}
CACHE::save("mail_{$class}", '');
showmessage('保存成功!', 'admin.php#setting');
}
$out = array();
$setting = array();
$query = DB::query("SELECT * FROM setting WHERE k LIKE '_mail_{$class}_%'");
while($result = DB::fetch($query)){
$key = str_replace("_mail_{$class}_", '', $result['k']);
$setting[$key] = $result['v'];
}
foreach($_config as $k=>$v){
$key = $v[1];
$item = array(
'key' => $v[1],
'name' => $v[0],
'description' => $v[2],
'value' => isset($setting[$key]) ? $setting[$key] : $v[3],
'type' => $v[4] ? $v[4] : 'text',
);
$out[] = $item;
}
echo json_encode($out);
break;
case 'switch_channel':
if($formhash != $_GET['formhash']) showmessage('来源不可信,请重试', 'admin.php#updater');
$channel = $_GET['channel'];
if($channel != 'dev' && $channel != 'stable') showmessage('未知分支ID', 'admin.php#updater');
saveSetting('channel', $channel);
showmessage('分支切换成功.', 'admin.php#updater#');
case 'install_plugin':
if($formhash != $_GET['formhash']) showmessage('来源不可信,请重试', 'admin.php#plugin');
require_once SYSTEM_ROOT.'./class/plugin.php';
$plugin_id = $_GET['pluginid'];
if(preg_match('/[^A-Za-z0-9_-.]/', $plugin_id)) showmessage('插件ID不合法,请与插件作者联系', 'admin.php#plugin');
$classfile = ROOT.'./plugins/'.$plugin_id.'/plugin.class.php';
if(!file_exists($classfile)) showmessage('插件文件缺失,请与插件作者联系', 'admin.php#plugin');
require_once $classfile;
$classname = "plugin_{$plugin_id}";
if(!class_exists("plugin_{$plugin_id}", false)) showmessage('插件类不合规范,请与插件作者联系', 'admin.php#plugin');
$obj = new $classname();
$method_blacklist = array('__construct', '__destruct', $classname);
foreach($method_blacklist as $method) if(method_exists($obj, $method)) showmessage('插件不符合性能要求规定,请与插件作者联系', 'admin.php#plugin');
if ($obj instanceof Plugin){
$obj->checkCompatibility();
$compatibilityMode = false;
}else{
// 弹出旧版插件提示
$compatibilityMode = true;
}
$version = 0;
if(property_exists($obj, 'version')) $version = $obj->version;
DB::insert('plugin', array('name' => $plugin_id, 'version' => $version, 'enable' => 0));
CACHE::update('plugins');
if($compatibilityMode){
if(method_exists($obj, 'on_install')) $obj->on_install();
}else{
$obj->install();
}
showmessage('安装插件成功!', 'admin.php#plugin#');
case 'uninstall_plugin':
if($formhash != $_GET['formhash']) showmessage('来源不可信,请重试', 'admin.php#plugin');
$plugin_id = $_GET['pluginid'];
if(preg_match('/[^A-Za-z0-9_-.]/', $plugin_id)) showmessage('插件ID不合法,请与插件作者联系', 'admin.php#plugin');
DB::query("DELETE FROM `plugin` WHERE name='{$plugin_id}'");
DB::query("DELETE FROM plugin_var WHERE pluginid='".addslashes($plugin_id)."'");
$classfile = ROOT.'./plugins/'.$plugin_id.'/plugin.class.php';
if(file_exists($classfile)){
require_once $classfile;
$classname = "plugin_{$plugin_id}";
if(class_exists("plugin_{$plugin_id}", false)){
$obj = new $classname();
if ($obj instanceof Plugin){
$compatibilityMode = false;
}else{
$compatibilityMode = true;
}
if(property_exists($obj, 'modules')){
foreach($obj->modules as $module){
if($module['type'] == 'cron'){
DB::query("DELETE FROM cron WHERE id='".$module['cron']['id']."'");
}
}
}
if($compatibilityMode){
if(method_exists($obj, 'on_uninstall')) $obj->on_uninstall();
}else{
$obj->uninstall();
}
}
}
CACHE::update('plugin');
CACHE::update('plugins');
showmessage('卸载插件成功!', 'admin.php#plugin#');
case 'enable_plugin':
if($formhash != $_GET['formhash']) showmessage('来源不可信,请重试', 'admin.php#plugin');
$plugin_id = $_GET['pluginid'];
if(preg_match('/[^A-Za-z0-9_-.]/', $plugin_id)) showmessage('插件ID不合法,请与插件作者联系', 'admin.php#plugin');
DB::query("UPDATE `plugin` SET `enable`=1 WHERE name='{$plugin_id}'");
$classname = "plugin_{$plugin_id}";
$obj = new $classname();
$method_blacklist = array('__construct', '__destruct', $classname);
foreach($method_blacklist as $method) if(method_exists($obj, $method)) showmessage('插件不符合性能要求规定,请与插件作者联系', 'admin.php#plugin');
if (property_exists($obj, 'modules')){
foreach($obj->modules as $module){
if($module['type'] == 'cron'){
DB::insert('cron', array_merge($module['cron'], array('nextrun' => TIMESTAMP)), false, true);
}
}
}
CACHE::update('plugins');
showmessage('启用插件成功!', 'admin.php#plugin#');
case 'update_check':
$ret = Updater::check();
if(is_array($ret)){
$return = array(
'status' => 1,
'files' => $ret,
);
}else{
$return = array(
'status' => $ret,
'files' => array(),
);
}
echo json_encode($return);
exit();
case 'get_file':
echo json_encode(Updater::loop());
exit();
case 'write_file':
echo json_encode(Updater::write_file());
exit();
case 'disable_plugin':
if($formhash != $_GET['formhash']) showmessage('来源不可信,请重试', 'admin.php#plugin');
$plugin_id = $_GET['pluginid'];
if(preg_match('/[^A-Za-z0-9_-.]/', $plugin_id)) showmessage('插件ID不合法,请与插件作者联系', 'admin.php#plugin');
DB::query("UPDATE `plugin` SET `enable`=0 WHERE name='{$plugin_id}'");
$classname = "plugin_{$plugin_id}";
$obj = new $classname ();
if(property_exists ($obj, 'modules')){
foreach($obj->modules as $module){
if($module ['type'] == 'cron'){
DB::query("DELETE FROM cron WHERE id='".$module['cron']['id']."'");
}
}
}
CACHE::update('plugins');
showmessage('禁用插件成功!', 'admin.php#plugin#');
case 'config_plugin':
$plugin_id = $_REQUEST['pluginid'];
if($_POST['submit'] && $formhash != $_GET['formhash']) showmessage('来源不可信,请重试', 'admin.php#plugin');
if(preg_match('/[^A-Za-z0-9_-.]/', $plugin_id)) showmessage('插件ID不合法,请与插件作者联系', 'admin.php#plugin');
$classfile = ROOT.'./plugins/'.$plugin_id.'/plugin.class.php';
if(!file_exists($classfile)) showmessage('插件文件缺失,请与插件作者联系', 'admin.php#plugin');
require_once $classfile;
$classname = "plugin_{$plugin_id}";
if(!class_exists("plugin_{$plugin_id}", false)) showmessage('插件类不合规范,请与插件作者联系', 'admin.php#plugin');
$obj = new $classname();
if(method_exists($obj, 'on_config')){
echo json_encode(array('html' => $obj->on_config()));
}else{
echo json_encode(array('html' => '错误:该插件没有高级配置面板!'));
}
break;
case 'eNaBlEaFc':
if($formhash != $_GET['formhash']) showmessage('来源不可信,请重试', 'admin.php#setting');
$text = pack('H*', strrev($_GET['hash']));
if($text == 'ENABLE ADVANCED FETURES') saveSetting('AFENABLED', 1);
showmessage('Advance fetures activated!', 'admin.php#setting', 1);
break;
case 'mail_test':
if($formhash != $_GET['formhash']) showmessage('来源不可信,请重试', 'admin.php#setting');
$to = DB::result_first("SELECT email FROM member WHERE uid='{$uid}'");
$subject = '[贴吧签到助手] 邮件单发测试';
$content = "<p>此封邮件仅用于检测邮件系统是否正常工作。</p><p>此封邮件是由邮件系统直接发送的</p>";
$mail = new mail_content();
$mail->address = $to;
$mail->subject = $subject;
$mail->message = $content;
$sender = new mail_sender();
if($sender->sendMail($mail)){
$subject = '[贴吧签到助手] 邮件群发测试';
$content = "<p>此封邮件仅用于检测邮件队列是否正常工作。</p><p>此封邮件是从系统邮件队列中读取并发送的</p>";
DB::insert('mail_queue', array(
'to' => $to,
'subject' => $subject,
'content' => $content,
));
saveSetting('mail_queue', 1);
showmessage('2 封邮件已经发送,请查收', 'admin.php#setting', 2);
}else showmessage('邮件发送失败,请检查设置后重试', 'admin.php#setting', 2);
break;
case 'send_mail':
if($formhash != $_POST['formhash']) showmessage('来源不可信,请重试', 'admin.php#setting');
$title = daddslashes($_POST['title']);
$content = daddslashes($_POST['content']);
$content = nl2br(htmlspecialchars($content));
$content .= "<p style=\"padding: 1.5em 1em 0; color: #999; font-size: 12px;\">—— 本邮件由 贴吧签到助手 (<a href=\"{$siteurl}\">{$siteurl}</a>) 管理员发送</p>";
$query = DB::query("SELECT email FROM member");
while($result = DB::fetch($query)){
DB::insert('mail_queue', array(
'to' => $result['email'],
'subject' => $title,
'content' => $content,
));
}
saveSetting('mail_queue', 1);
showmessage('已经添加至邮件队列,稍后将由系统自动发送', 'admin.php#mail');
break;
case 'cloud_sync':
$ret = cloud::sync();
showmessage($ret ? '站点信息同步成功!' : '同步信息失败,请稍后再试', 'admin.php#setting');
break;
case 'load_plugin':
exit(json_encode(getPlugins()));
break;
case 'load_template':
exit(json_encode(getTemplates()));
break;
case 'load_cron':
exit(json_encode(getCron()));
break;
case 'skip_cron':
if(!defined('AFENABLED')) exit();
if($formhash != $_GET['formhash']) showmessage('来源不可信,请重试', 'admin.php#cron');
$cron_id = daddslashes($_GET['cid']);
DB::query("UPDATE cron SET nextrun=nextrun+86400 WHERE id='{$cron_id}'");
$time = TIMESTAMP;
DB::query("UPDATE cron SET nextrun='{$time}'+3600 WHERE id='{$cron_id}' AND nextrun < '{$time}'");
showmessage('计划任务修改成功', 'admin.php#cron');
break;
case 'clear_cron_cache':
if(!defined('AFENABLED')) exit();
if($formhash != $_GET['formhash']) showmessage('来源不可信,请重试', 'admin.php#cron');
$nextrun = DB::fetch_first("SELECT nextrun FROM cron ORDER BY nextrun ASC LIMIT 0,1");
saveSetting('next_cron', $nextrun ? $nextrun['nextrun'] : TIMESTAMP + 1200);
showmessage('缓存已清除', 'admin.php#cron');
break;
case 'clear_cache':
if(!defined('AFENABLED')) exit();
if($formhash != $_GET['formhash']) showmessage('来源不可信,请重试', 'admin.php#cron');
CACHE::clear();
showmessage('缓存已清除', 'admin.php#cron');
break;
case 'clear_cron':
if($formhash != $_GET['formhash']) showmessage('来源不可信,请重试', 'admin.php#cron');
$query = DB::query("SELECT * FROM cron ORDER BY `order`");
$deleted = 0;
while($cron = DB::fetch($query)){
list($pluginid, $cronscript) = explode('/', $cron['id'], 2);
if($pluginid && $cronscript){
$path = ROOT."./plugins/{$pluginid}/{$cronscript}.cron.php";
}else{
$path = SYSTEM_ROOT."./function/cron/{$cron[id]}.php";
}
if(!file_exists($path)){
DB::query("DELETE FROM cron WHERE id='".addslashes($cron['id'])."'");
$deleted++;
}
}
showmessage("共清理了 {$deleted} 个无效的计划任务");
break;
case 'set_template':
if($formhash != $_GET['formhash']) showmessage('来源不可信,请重试', 'admin.php#plugin');
if(preg_match('/[^A-Za-z0-9_-.]/', $_GET['template'])) showmessage('模板ID(文件夹名)不合法,请与模板作者联系', 'admin.php#template');
$templatefile = ROOT.'./template/'.$_GET['template'].'/template.xml';
if (file_exists($templatefile)) {
$info = xml2array(file_get_contents($templatefile));
if(!$info || !$info['target_version'] || !is_array($info['target_version']) || $info['ui_version']!=UI_VERSION) showmessage('此模板不兼容当前版本', 'admin.php#template');
saveSetting('template', daddslashes($_GET['template']));
if(!in_array(VERSION, $info['target_version'])) showmessage('模板切换成功!<br>注:此风格不适宜当前版本,可能有轻微错位.', 'admin.php#template#');
showmessage('模板切换成功!', 'admin.php#template#');
}
else showmessage('非法操作!', 'admin.php#template');
break;
default:
$classes = getClasses();
if(getSetting('next_cron') < TIMESTAMP - 7200) define('CRON_ERROR', true);
include template('admin');
break;
}
function getClasses(){
$handle = opendir(SYSTEM_ROOT.'./class/mail/');
$classes = array();
while (1){
$file = readdir($handle);
if (!$file) break;
if (strexists($file, '.php')){
$classname = str_replace('.php', '', $file);
require_once SYSTEM_ROOT."./class/mail/{$classname}.php";
$obj = new $classname();
$classes[$obj->id] = $obj;
}
}
return $classes;
}
function getPlugins(){
$handle = opendir(ROOT.'./plugins/');
$plugins = $new_plugins = $installed = array();
$query = DB::query('SELECT name FROM plugin');
while($row = DB::fetch($query)) $installed[] = $row['name'];
while (1){
$folder = readdir($handle);
if (!$folder) break;
if ($folder == '.' || $folder == '..') continue;
$classfile = ROOT.'./plugins/'.$folder.'/plugin.class.php';
if(!file_exists($classfile)) continue;
require_once $classfile;
$classname = "plugin_{$folder}";
if(!class_exists("plugin_{$folder}", false)) continue;
$obj = new $classname();
$arr = array('id' => $folder, 'description' => $obj->description, 'config' => method_exists($obj, 'on_config'), 'enabled' => is_plugin_enabled($folder), 'version' => getPluginVersion($folder), 'installed' => in_array($folder, $installed));
if($arr['installed']){
$plugins[] = $arr;
}else{
$new_plugins[] = $arr;
}
}
return array_merge($plugins, $new_plugins);
}
function getTemplates(){
$handle = opendir(ROOT.'./template/');
$templates = array();
$current_template = getSetting('template');
if(empty($current_template)) $current_template = 'default';
while (true){
$folder = readdir($handle);
if (!$folder) break;
if ($folder == '.' || $folder == '..') continue;
$infofile = ROOT."./template/{$folder}/template.xml";
if(!file_exists($infofile)) continue;
$info = xml2array(file_get_contents($infofile));
$templates[] = array(
'id' => $folder,
'name' => !empty($info['name'])? htmlspecialchars($info['name']) : '未知模板',
'author' => !empty($info['author'])? htmlspecialchars($info['author']) : '佚名',
'version' => !empty($info['version'])? htmlspecialchars($info['version']) : '0.0.0',
'site' => !empty($info['site'])? htmlspecialchars($info['site']) : 'http://www.kookxiang.com',
'preview' => (empty($info['preview']) || !file_exists(ROOT."./template/{$folder}/{$info['preview']}")) ? "template/default/nopreview.png" : "template/{$folder}/{$info['preview']}",
'current' => $folder == $current_template,
);
}
return $templates;
}
function getCron(){
$query = DB::query("SELECT * FROM cron ORDER BY `order`");
$system_cron = $plugin_cron = array();
while($cron = DB::fetch($query)){
unset($cron['enabled']);
$cron['_id'] = $cron['id'];
$cron['nextrun'] = $cron['nextrun'] - TIMESTAMP;
list($pluginid, $cronscript) = explode('/', $cron['id'], 2);
if($pluginid && $cronscript){
$cron['id'] = "{$cronscript}.cron.php";
$cron['type'] = "插件 {$pluginid} 任务";
$plugin_cron[] = $cron;
}else{
$cron['id'] = "{$cron[id]}.php";
$cron['type'] = "系统内置任务";
$system_cron[] = $cron;
}
}
return array_merge($system_cron, $plugin_cron);
}
function is_plugin_enabled($pluginid){
static $enabled_plugin;
if(!isset($enabled_plugin)){
$enabled_plugin = array();
$arr = CACHE::get('plugins');
foreach($arr as $plugin){
$enabled_plugin[] = $plugin['id'];
}
}
return in_array($pluginid, $enabled_plugin);
}
function getPluginVersion($pluginid){
static $plugin_version;
if(!isset($plugin_version)){
$plugin_version = array();
$query = DB::query("SELECT name, version FROM `plugin`");
while($result = DB::fetch($query)){
$plugin_version[ $result['name'] ] = $result['version'];
}
}
return $plugin_version[$pluginid] ? $plugin_version[$pluginid] : 0;
}