309 lines
7.2 KiB
PHP
309 lines
7.2 KiB
PHP
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | 小说系统 [ WE CAN DO IT JUST THINK IT ]
|
|
// +----------------------------------------------------------------------
|
|
|
|
namespace app\admin\controller;
|
|
use app\common\controller\Admin;
|
|
|
|
class Addons extends Admin {
|
|
|
|
protected $addons;
|
|
|
|
public function _initialize() {
|
|
parent::_initialize();
|
|
//加入菜单
|
|
$this->getAddonsMenu();
|
|
$this->addons = model('Addons');
|
|
$this->hooks = db('Hooks');
|
|
}
|
|
/**
|
|
* 插件列表
|
|
*/
|
|
public function index($refresh = 0) {
|
|
if ($refresh) {
|
|
$this->addons->refresh();
|
|
}
|
|
$list = $this->addons->order('id desc')->paginate(25);
|
|
// 记录当前列表页的cookie
|
|
Cookie('__forward__', $_SERVER['REQUEST_URI']);
|
|
|
|
$data = array(
|
|
'list' => $list,
|
|
'page' => $list->render(),
|
|
);
|
|
$this->setMeta("插件管理");
|
|
$this->assign($data);
|
|
return $this->fetch();
|
|
}
|
|
|
|
//创建向导首页
|
|
public function add() {
|
|
if (IS_POST) {
|
|
$data = $this->addons->create();
|
|
if ($data) {
|
|
if ($result) {
|
|
return $this->success("创建成功!", url('admin/addons/index'));
|
|
} else {
|
|
return $this->error("创建失败!");
|
|
}
|
|
} else {
|
|
return $this->error($this->addons->getError());
|
|
}
|
|
} else {
|
|
$hooks = db('Hooks')->field('name,description')->select();
|
|
$this->assign('Hooks', $hooks);
|
|
$hook = db('Hooks')->field(true)->select();
|
|
foreach ($hook as $key => $value) {
|
|
$addons_opt[$value['name']] = $value['name'];
|
|
}
|
|
$addons_opt = array(array('type' => 'select', 'opt' => $addons_opt));
|
|
if (!is_writable(SENT_ADDON_PATH)) {
|
|
return $this->error('您没有创建目录写入权限,无法使用此功能');
|
|
}
|
|
$this->setMeta("添加插件");
|
|
return $this->fetch();
|
|
}
|
|
}
|
|
|
|
//预览
|
|
public function preview($output = true) {
|
|
}
|
|
|
|
/**
|
|
* 安装插件
|
|
*/
|
|
public function install() {
|
|
$addon_name = input('addon_name', '', 'trim,ucfirst');
|
|
$class = get_addon_class($addon_name);
|
|
if (class_exists($class)) {
|
|
$addons = new $class;
|
|
$info = $addons->info;
|
|
if (!$info || !$addons->checkInfo()) {
|
|
//检测信息的正确性
|
|
return $this->error('插件信息缺失');
|
|
}
|
|
session('addons_install_error', null);
|
|
$install_flag = $addons->install();
|
|
if (!$install_flag) {
|
|
return $this->error('执行插件预安装操作失败' . session('addons_install_error'));
|
|
}
|
|
$result = $this->addons->install($info);
|
|
if ($result) {
|
|
cache('hooks', null);
|
|
return $this->success('安装成功');
|
|
} else {
|
|
return $this->error($this->addons->getError());
|
|
}
|
|
} else {
|
|
return $this->error('插件不存在');
|
|
}
|
|
}
|
|
|
|
/**
|
|
* 卸载插件
|
|
*/
|
|
public function uninstall($id) {
|
|
$result = $this->addons->uninstall($id);
|
|
if ($result === false) {
|
|
return $this->error($this->addons->getError(), '');
|
|
} else {
|
|
return $this->success('卸载成功!');
|
|
}
|
|
}
|
|
|
|
/**
|
|
* 启用插件
|
|
*/
|
|
public function enable() {
|
|
$id = input('id');
|
|
cache('hooks', null);
|
|
$model = model('Addons');
|
|
$result = $model::where(array('id' => $id))->update(array('status' => 1));
|
|
if ($result) {
|
|
return $this->success('启用成功');
|
|
} else {
|
|
return $this->error("启用失败!");
|
|
}
|
|
}
|
|
|
|
/**
|
|
* 禁用插件
|
|
*/
|
|
public function disable() {
|
|
$id = input('id');
|
|
cache('hooks', null);
|
|
$model = model('Addons');
|
|
$result = $model::where(array('id' => $id))->update(array('status' => 0));
|
|
if ($result) {
|
|
return $this->success('禁用成功');
|
|
} else {
|
|
return $this->error("禁用失败!");
|
|
}
|
|
}
|
|
|
|
/**
|
|
* 设置插件页面
|
|
*/
|
|
public function config() {
|
|
if (IS_POST) {
|
|
# code...
|
|
} else {
|
|
$id = input('id', '', 'trim,intval');
|
|
if (!$id) {
|
|
return $this->error("非法操作!");
|
|
}
|
|
$info = $this->addons->find($id);
|
|
if (!empty($info)) {
|
|
$class = get_addon_class($info['name']);
|
|
|
|
$keyList = array();
|
|
$data = array(
|
|
'keyList' => $keyList,
|
|
);
|
|
$this->assign($data);
|
|
$this->setMeta($info['title'] . " - 设置");
|
|
return $this->fetch('public/edit');
|
|
} else {
|
|
return $this->error("未安装此插件!");
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* 获取插件所需的钩子是否存在,没有则新增
|
|
* @param string $str 钩子名称
|
|
* @param string $addons 插件名称
|
|
* @param string $addons 插件简介
|
|
*/
|
|
public function existHook($str, $addons, $msg = '') {
|
|
$hook_mod = db('Hooks');
|
|
$where['name'] = $str;
|
|
$gethook = $hook_mod->where($where)->find();
|
|
if (!$gethook || empty($gethook) || !is_array($gethook)) {
|
|
$data['name'] = $str;
|
|
$data['description'] = $msg;
|
|
$data['type'] = 1;
|
|
$data['update_time'] = time();
|
|
$data['addons'] = $addons;
|
|
if (false !== $hook_mod->create($data)) {
|
|
$hook_mod->add();
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* 删除钩子
|
|
* @param string $hook 钩子名称
|
|
*/
|
|
public function deleteHook($hook) {
|
|
$model = db('hooks');
|
|
$condition = array(
|
|
'name' => $hook,
|
|
);
|
|
$model->where($condition)->delete();
|
|
S('hooks', null);
|
|
}
|
|
|
|
/**
|
|
* 钩子列表
|
|
*/
|
|
public function hooks() {
|
|
|
|
$map = array();
|
|
$order = "id desc";
|
|
$list = model('Hooks')->where($map)->order($order)->paginate(10);
|
|
|
|
// 记录当前列表页的cookie
|
|
Cookie('__forward__', $_SERVER['REQUEST_URI']);
|
|
|
|
$data = array(
|
|
'list' => $list,
|
|
'page' => $list->render(),
|
|
);
|
|
$this->setMeta("钩子管理");
|
|
$this->assign($data);
|
|
return $this->fetch();
|
|
}
|
|
|
|
public function addhook() {
|
|
$hooks = model('Hooks');
|
|
if (IS_POST) {
|
|
$result = $hooks->change();
|
|
if ($result !== false) {
|
|
return $this->success("修改成功");
|
|
} else {
|
|
return $this->error($hooks->getError());
|
|
}
|
|
} else {
|
|
$keylist = $hooks->getaddons();
|
|
$data = array(
|
|
'keyList' => $keylist,
|
|
);
|
|
$this->assign($data);
|
|
$this->setMeta('编辑钩子');
|
|
return $this->fetch('public/edit');
|
|
}
|
|
}
|
|
|
|
//钩子出编辑挂载插件页面
|
|
public function edithook($id) {
|
|
$hooks = model('Hooks');
|
|
if (IS_POST) {
|
|
$result = $hooks->change();
|
|
if ($result !== false) {
|
|
return $this->success("修改成功");
|
|
} else {
|
|
return $this->error($hooks->getError());
|
|
}
|
|
} else {
|
|
$info = db('Hooks')->find($id);
|
|
$keylist = $hooks->getaddons($info['addons']);
|
|
$data = array(
|
|
'info' => $info,
|
|
'keyList' => $keylist,
|
|
);
|
|
$this->assign($data);
|
|
$this->setMeta('编辑钩子');
|
|
return $this->fetch('public/edit');
|
|
}
|
|
}
|
|
|
|
//超级管理员删除钩子
|
|
public function delhook() {
|
|
$id = $this->getArrayParam('id');
|
|
$map['id'] = array('IN', $id);
|
|
$result = $this->hooks->where($map)->delete();
|
|
if ($result !== false) {
|
|
return $this->success('删除成功');
|
|
} else {
|
|
return $this->error('删除失败');
|
|
}
|
|
}
|
|
|
|
public function updateHook() {
|
|
$hookModel = D('Hooks');
|
|
$data = $hookModel->create();
|
|
if ($data) {
|
|
if ($data['id']) {
|
|
$flag = $hookModel->save($data);
|
|
if ($flag !== false) {
|
|
S('hooks', null);
|
|
$this->success('更新成功', Cookie('__forward__'));
|
|
} else {
|
|
$this->error('更新失败');
|
|
}
|
|
} else {
|
|
$flag = $hookModel->add($data);
|
|
if ($flag) {
|
|
S('hooks', null);
|
|
$this->success('新增成功', Cookie('__forward__'));
|
|
} else {
|
|
$this->error('新增失败');
|
|
}
|
|
}
|
|
} else {
|
|
$this->error($hookModel->getError());
|
|
}
|
|
}
|
|
} |