99 lines
3.1 KiB
PHP
99 lines
3.1 KiB
PHP
|
<?php
|
||
|
/**
|
||
|
* @copyright Copyright (c) 2021 勾股工作室
|
||
|
* @license https://opensource.org/licenses/GPL-3.0
|
||
|
* @link https://www.gougucms.com
|
||
|
*/
|
||
|
|
||
|
declare (strict_types = 1);
|
||
|
|
||
|
namespace app\home\controller;
|
||
|
|
||
|
use app\base\BaseController;
|
||
|
use app\home\validate\KeywordsCheck;
|
||
|
use think\exception\ValidateException;
|
||
|
use think\facade\Db;
|
||
|
use think\facade\View;
|
||
|
|
||
|
class Keywords extends BaseController
|
||
|
{
|
||
|
public function index()
|
||
|
{
|
||
|
if (request()->isAjax()) {
|
||
|
$param = get_params();
|
||
|
$where = array();
|
||
|
if (!empty($param['keywords'])) {
|
||
|
$where[] = ['title', 'like', '%' . $param['keywords'] . '%'];
|
||
|
}
|
||
|
$where[] = ['status', '>=', 0];
|
||
|
$rows = empty($param['limit']) ? get_config('app.page_size') : $param['limit'];
|
||
|
$content = Db::name('Keywords')
|
||
|
->order('create_time desc')
|
||
|
->where($where)
|
||
|
->paginate($rows, false, ['query' => $param]);
|
||
|
return table_assign(0, '', $content);
|
||
|
} else {
|
||
|
return view();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
//添加
|
||
|
public function add()
|
||
|
{
|
||
|
$param = get_params();
|
||
|
if (request()->isAjax()) {
|
||
|
if (!empty($param['id']) && $param['id'] > 0) {
|
||
|
try {
|
||
|
validate(KeywordsCheck::class)->scene('edit')->check($param);
|
||
|
} catch (ValidateException $e) {
|
||
|
// 验证失败 输出错误信息
|
||
|
return to_assign(1, $e->getError());
|
||
|
}
|
||
|
$param['update_time'] = time();
|
||
|
$res = Db::name('Keywords')->strict(false)->field(true)->update($param);
|
||
|
if ($res) {
|
||
|
add_log('edit', $param['id'], $param);
|
||
|
}
|
||
|
return to_assign();
|
||
|
} else {
|
||
|
try {
|
||
|
validate(KeywordsCheck::class)->scene('add')->check($param);
|
||
|
} catch (ValidateException $e) {
|
||
|
// 验证失败 输出错误信息
|
||
|
return to_assign(1, $e->getError());
|
||
|
}
|
||
|
$param['create_time'] = time();
|
||
|
$insertId = Db::name('Keywords')->strict(false)->field(true)->insertGetId($param);
|
||
|
if ($insertId) {
|
||
|
add_log('add', $insertId, $param);
|
||
|
}
|
||
|
return to_assign();
|
||
|
}
|
||
|
} else {
|
||
|
$id = isset($param['id']) ? $param['id'] : 0;
|
||
|
if ($id > 0) {
|
||
|
$keywords = Db::name('Keywords')->where(['id' => $id])->find();
|
||
|
View::assign('keywords', $keywords);
|
||
|
}
|
||
|
View::assign('id', $id);
|
||
|
return view();
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
//删除
|
||
|
public function delete()
|
||
|
{
|
||
|
$id = get_params("id");
|
||
|
$data['status'] = '-1';
|
||
|
$data['id'] = $id;
|
||
|
$data['update_time'] = time();
|
||
|
if (Db::name('Keywords')->update($data) !== false) {
|
||
|
add_log('delete', $id, $data);
|
||
|
return to_assign(0, "删除成功");
|
||
|
} else {
|
||
|
return to_assign(1, "删除失败");
|
||
|
}
|
||
|
}
|
||
|
}
|