official_website/app/admin/controller/Download.php

544 lines
21 KiB
PHP

<?php
/**
* @Descripttion : FOXCMS 是一款高效的 PHP 多端跨平台内容管理系统
* @Author : FoxCMS Team
* @Date : 2023/6/26 14:48
* @version : V1.08
* @copyright : ©2021-现在 贵州黔狐科技股份有限公司 版权所有
* @LastEditTime : 2023/6/26 14:48
*/
namespace app\admin\controller;
use app\common\controller\AdminContentBase;
use app\common\model\Attachment;
use app\common\model\Column;
use app\common\model\DictType as DictTypeModel;
use app\common\util\FileUtil;
use think\Exception;
use think\facade\Db;
use think\facade\View;
class Download extends AdminContentBase
{
public function initialize()
{
parent::initialize();
$action = $this->request->action();
if ($action == "add" || $action == "edit") {
//文章来源 开始
$articleSourceList = DictTypeModel::where('dict_type', 'article_source')->with('dictDatas')->find()->dictDatas; //文章来源
$articleSources = [];
$articleSourceDictCode = 0;
if (sizeof($articleSourceList) == 1) {
$articleSource = $articleSourceList[0];
$dict_value = $articleSource['dict_value'];
$articleSources = explode(',', $dict_value);
$articleSourceDictCode = $articleSource['dict_code'];
}
View::assign('articleSources', $articleSources);
View::assign('articleSourceDictCode', $articleSourceDictCode);
//结束
//作者 开始
$authorList = DictTypeModel::where('dict_type', 'author')->with('dictDatas')->find()->dictDatas; //作者
$authors = [];
$authorDictCode = 0;
if (sizeof($authorList) == 1) {
$author = $authorList[0];
$dict_value = $author['dict_value'];
$authors = explode(',', $dict_value);
$authorDictCode = $author['dict_code'];
}
View::assign('authors', $authors);
View::assign('authorDictCode', $authorDictCode);
//服务器名称
$serverNameList = DictTypeModel::where('dict_type', 'server_name')->with('dictDatas')->find()->dictDatas; //服务器名称
$serverNames = [];
$serverNameCode = 0;
if (sizeof($serverNameList) == 1) {
$serverName = $serverNameList[0];
$dict_value = $serverName['dict_value'];
$serverNames = explode(',', $dict_value);
$serverNameCode = $serverName['dict_code'];
}
View::assign('serverNames', $serverNames);
View::assign('serverNameCode', $serverNameCode);
//文件类别
$fileCategoryList = DictTypeModel::where('dict_type', 'file_category')->with('dictDatas')->find()->dictDatas; //文件类别
$fileCategorys = [];
$fileCategoryeCode = 0;
if (sizeof($fileCategoryList) == 1) {
$fileCategory = $fileCategoryList[0];
$dict_value = $fileCategory['dict_value'];
$fileCategorys = explode(',', $dict_value);
$fileCategoryeCode = $fileCategory['dict_code'];
}
View::assign('fileCategorys', $fileCategorys);
View::assign('fileCategoryeCode', $fileCategoryeCode);
//查询栏目
$columnDatas = Column::where(["column_model" => "article"])->field('id,name as title')->order('level asc')->order('sort asc')->select(); //栏目
View::assign('columns', $columnDatas);
//查询文档标签
$tagList = \app\common\model\Tag::select();
View::assign('tagList', $tagList);
//查询上传文件后缀
$attachments = Attachment::select();
$f_suffixs = "";
if (sizeof($attachments) == 1) {
if (!empty($attachments[0]['f_suffixs'])) {
$f_suffixs = $attachments[0]['f_suffixs'];
$f_suffixsArr = explode(",", $f_suffixs);
$fs = "";
foreach ($f_suffixsArr as $fsuffix) {
$fs .= "." . $fsuffix . ",";
}
$f_suffixs = substr($fs, 0, strlen($fs) - 1);
}
}
View::assign('f_suffixs', $f_suffixs);
}
}
public function index()
{
$param = $this->request->param();
View::assign('bcid', $param['bcid']);
$columnId = $param['columnId'];
if ($this->request->isAjax(true)) {
$where = array();
$download = new \app\common\model\Download();
if (empty($param["currentPage"])) {
$param["currentPage"] = 1;
}
if (empty($param["pageSize"])) {
$param["pageSize"] = 10;
}
if (!empty($param["keyword"]) && !empty($param["prop"])) {
$prop = $param["prop"];
if ($prop == 1) { //属性
$articleField = $this->getArticleField($param['keyword']);
array_push($where, ['article_field', 'like', '%' . $articleField . '%']);
} elseif ($prop == 2) { //栏目
array_push($where, ['column', 'like', '%' . $param['keyword'] . '%']);
} elseif ($prop == 3) { //标题
array_push($where, ['title', 'like', '%' . $param['keyword'] . '%']);
}
}
//向下查询所有子孙栏目
$columnIdArr = getChildrensColumnId($columnId, 'Download', $this->getMyLang());
if (sizeof($columnIdArr) > 0) {
array_push($where, ['column_id', 'in', implode(",", $columnIdArr)]);
} else {
array_push($where, ['column_id', '=', $columnId]);
}
array_push($where, ['lang', '=', $this->getMyLang()]);
$list = $download->where($where)->order("create_time", "desc")->paginate(['page' => $param['currentPage'], 'list_rows' => $param['pageSize']]);
$this->success('查询成功', null, $list);
}
View::assign('columnId', $columnId);
return view();
}
public function add()
{
$param = $this->request->param();
$bcid = $param['bcid'];
View::assign('bcid', $bcid);
$ids = explode('_', $bcid);
$columnId = $ids[sizeof($ids) - 1]; //栏目id
$column = Column::find($columnId);
$bcidStr = '4_' . str_replace(",", "_", $column->tier);
$breadcrumb = Column::getBreadcrumb($bcidStr);
array_push($breadcrumb, ['id' => '', 'title' => '添加', 'name' => DIRECTORY_SEPARATOR . config('adminconfig.admin_path') . '/Download/add', 'url' => 'javascript:void(0)']);
View::assign("breadcrumb", $breadcrumb);
if ($this->request->isAjax()) {
if (array_key_exists("content", $param)) {
$rdata = $this->replaceContent($param, 'content'); //替换内容
if ($rdata["code"] == 0) {
$this->error($rdata['msg']);
}
$param['content'] = $rdata['content']; //替换内容
}
if (empty($param["release_time"])) {
$param["release_time"] = date("Y-m-d H:i:s");
}
if (empty($param["click"])) {
$param["click"] = rand(1, 100);
}
$tags = $param["tags"];
if (!empty($tags)) { //文档标签
$this->addTags($tags);
}
if (!empty($param['file_id'])) {
$uf = \app\common\model\UploadFiles::find($param['file_id']);
if ($uf) {
$param['file_name'] = $uf['file_name'];
$param['file_size'] = $uf['file_size'];
$uf->delete();
}
}
unset($param['file_id']);
$param['lang'] = $this->lang;
$download = \app\common\model\Download::create($param);
xn_add_admin_log("添加下载", "download", $param['title']); //添加日志
$seo = xn_cfg("seo");
if ($seo["url_model"] == 3) {
$rparam = ["columnId" => $param["column_id"], "oneId" => "key3", "first" => 1, "column_model" => "download", "id" => $download->id];
$rparam = array_merge($rparam, $seo);
$this->success('操作成功', "", $rparam);
} else {
$this->success('操作成功');
}
}
View::assign('column', $column);
return view();
}
private function getAttrListAttr($article_field)
{
$attrTextList = [
'c' => ['text' => '推荐', 'state' => 0, 'tag' => 'c'],
't' => ['text' => '头条', 'state' => 0, 'tag' => 't'],
'h' => ['text' => '热门', 'state' => 0, 'tag' => 'h'],
'b' => ['text' => '加粗', 'state' => 0, 'tag' => 'b'],
's' => ['text' => '幻灯', 'state' => 0, 'tag' => 's'],
];
$attrTextListR = [];
$articleFieldArr = explode(',', $article_field);
foreach ($attrTextList as $akey => $ak) {
foreach ($articleFieldArr as $key => $articleField) {
if ($articleField == $akey) {
$ak['state'] = 1;
break;
}
}
array_push($attrTextListR, $ak);
}
return $attrTextListR;
}
public function edit()
{
$param = $this->request->param();
$bcid = $param['bcid'];
View::assign('bcid', $bcid);
$ids = explode('_', $bcid);
$columnId = $ids[sizeof($ids) - 1]; //栏目id
$column = Column::find($columnId);
$bcidStr = '4_' . str_replace(",", "_", $column->tier);
$breadcrumb = Column::getBreadcrumb($bcidStr);
array_push($breadcrumb, ['id' => '', 'title' => '编辑', 'name' => DIRECTORY_SEPARATOR . config('adminconfig.admin_path') . '/Download/edit', 'url' => 'javascript:void(0)']);
View::assign("breadcrumb", $breadcrumb);
View::assign('id', $param['id']);
if (array_key_exists('id', $param)) {
$download = \app\common\model\Download::find($param['id']);
$articleFieldList = $this->getAttrListAttr($download->article_field);
View::assign('articleFieldList', $articleFieldList);
View::assign('download', $download);
}
if ($this->request->isAjax()) {
if (array_key_exists("content", $param)) {
$rdata = $this->replaceContent($param, 'content'); //替换内容
if ($rdata["code"] == 0) {
$this->error($rdata['msg']);
}
$param['content'] = $rdata['content']; //替换内容
}
$tags = $param["tags"];
if (!empty($tags)) { //文档标签
$this->addTags($tags);
}
if (!empty($param['file_id'])) {
$uf = \app\common\model\UploadFiles::find($param['file_id']);
if ($uf) {
$param['file_name'] = $uf['file_name'];
$param['file_size'] = $uf['file_size'];
$uf->delete();
}
}
unset($param['file_id']);
$fc = \app\common\model\Download::field("id,create_time")->find($param['id']);
if ($fc) {
if (empty($fc['create_time'])) {
$param['create_time'] = date('Y-m-d H:i:s', time());
}
if (empty($fc['update_time'])) {
$param['update_time'] = date('Y-m-d H:i:s', time());
}
} else {
$this->error("抱歉没找到修改数据");
}
$param['lang'] = $this->lang;
\app\common\model\Download::update($param);
xn_add_admin_log("编辑下载", "download", $param['title']); //添加日志
$seo = xn_cfg("seo");
if ($seo["url_model"] == 3) {
$rparam = ["columnId" => $param["column_id"], "oneId" => "key3", "first" => 1, "column_model" => "download", "id" => $param["id"]];
$rparam = array_merge($rparam, $seo);
$this->success('操作成功', "", $rparam);
} else {
$this->success('操作成功');
}
}
return view();
}
public function batchAddField()
{
$param = $this->request->param();
if (array_key_exists('articleField', $param) && array_key_exists('ids', $param)) {
$idsArr = explode(",", $param['ids']);
$res = \app\common\model\Download::whereIn("id", $idsArr)->update(['article_field' => $param['articleField']]);
if ($res) {
$this->success("操作成功");
}
}
$this->error("操作失败");
}
public function batchDelField()
{
$param = $this->request->param();
if (array_key_exists('ids', $param)) {
$idsArr = explode(",", $param['ids']);
$res = \app\common\model\Download::whereIn("id", $idsArr)->update(['article_field' => '']);
if ($res) {
$this->success("操作成功");
}
}
$this->error("操作失败");
}
public function batchMove()
{
$param = $this->request->param();
if (array_key_exists('columnId', $param) && array_key_exists('ids', $param)) {
$idsArr = explode(",", $param['ids']);
$res = \app\common\model\Download::whereIn("id", $idsArr)->update(['column_id' => $param['columnId']]);
if ($res) {
xn_add_admin_log("批量移除下载", "download"); //添加日志
$this->success("操作成功");
}
}
$this->error("操作失败");
}
public function batchCope()
{
$param = $this->request->param();
if (array_key_exists('ids', $param)) {
$ids = $param['ids'];
//文章字段
$tableFields = (new \app\common\model\Download())->getTableFields();
$tableFields = array_diff($tableFields, ["id", "create_time", "update_time", 'click']);
$fields = "";
foreach ($tableFields as $key => $field) {
$fields .= "`{$field}`,";
}
if (strlen($fields) <= 0) {
$this->error("操作失败,表字段为空");
}
$fields = substr($fields, 0, strlen($fields) - 1);
$sql = '
INSERT INTO
fox_download (' . $fields . ')
SELECT
' . $fields . '
FROM
fox_download
WHERE
id in(' . $ids . ')';
try {
$res = Db::execute($sql);
if ($res) {
xn_add_admin_log("批量复制下载", "download"); //添加日志
$this->success("操作成功");
}
} catch (Exception $e) {
$this->error("操作数据失败");
}
}
$this->error("操作失败");
}
public function batchDel()
{
$param = $this->request->param();
if (array_key_exists('ids', $param)) {
$ids = $param['ids'];
$res = \app\common\model\Download::whereIn('id', $ids)->delete();
if ($res) {
xn_add_admin_log("批量删除下载", "download"); //添加日志
$this->success("操作成功");
}
}
$this->error("操作失败");
}
// 保存字典
public function saveDict()
{
$param = $this->request->param();
if (array_key_exists("dataList", $param) && array_key_exists("id", $param)) {
$idFlag = $param['id'];
$dataList = $param['dataList'];
if (sizeof($dataList) <= 0) {
$this->error("数据为空,操作失败");
}
$id = 0;
$saveData = [];
foreach ($dataList as $data) {
if (($id == 0) && !empty($data['id'])) {
$id = intval($data['id']);
}
array_push($saveData, $data['text']);
}
//去重
$saveData = array_unique($saveData);
//重新排序
$saveData = array_values($saveData);
$dictdata = new \app\common\model\DictData();
$adminId = $this->getAdminId(); //当前登录用户id
$dataStr = implode(",", $saveData);
$isOp = false; //是否操作成功
if ($id <= 0) { //保存
$data = array('dict_label' => $dataStr, 'dict_value' => $dataStr, 'dict_type' => $idFlag, 'remark' => "保存", 'create_by' => $adminId, 'update_by' => $adminId);
$isOp = $dictdata->save($data);
$id = $dictdata["id"];
} else { //更新
$data = array('dict_label' => $dataStr, 'dict_value' => $dataStr, 'dict_type' => $idFlag, 'remark' => "更新", 'create_by' => $adminId, 'update_by' => $adminId);
$isOp = $dictdata->where("dict_code", $id)->update($data);
}
if ($isOp) {
$rdata = ['id' => $id, 'dataList' => $saveData];
$this->success('操作成功', null, $rdata);
} else {
$this->error("操作失败");
}
} else {
$this->error("参数错误,操作失败!");
}
}
public function look($id)
{
$download = \app\common\model\Download::find($id);
$model = "";
$columnId = $download->column_id;
$columnO = Column::find($columnId);
if ($columnO) {
$model = $columnO["column_model"];
}
$path = "/$model/detail";
$url = detailSetUrl($path, $id, $columnId, $model, $this->lang);
$url = replaceSymbol($url);
$this->redirect($url);
exit();
}
private function addTags($tags)
{
try {
$findTags = \app\common\model\Tag::select();
$is_used = 1;
$tagList = explode(",", $tags);
$tagArr = [];
foreach ($tagList as $tag) {
$isExist = false;
foreach ($findTags as $findTag) {
if ($findTag['name'] == $tag) {
$isExist = true;
break;
}
}
if (!$isExist && !empty($tag)) {
array_push($tagArr, ["name" => $tag, "is_used" => $is_used]);
}
}
(new \app\common\model\Tag())->saveAll($tagArr);
} catch (\Exception $e) {
}
}
public function clickField()
{
$param = $this->request->param();
if (empty($param['id']) || empty($param['field_type'])) {
$this->error("缺少文章属性参数");
}
$article = \app\common\model\Download::find($param['id']);
if (!$article) {
$this->error("没找到文章数据");
}
$field_type = $param['field_type'];
$article_field = $article['article_field'];
$article_fields = [];
if (empty($article_field)) {
array_push($article_fields, $field_type);
} else {
$article_fields = explode(",", $article_field);
if (in_array($field_type, $article_fields)) {
$afs = [];
foreach ($article_fields as $af) {
if ($af != $field_type) {
array_push($afs, $af);
}
}
$article_fields = $afs;
} else {
array_push($article_fields, $field_type);
}
}
$r = \app\common\model\Download::update(['id' => $param['id'], 'article_field' => implode(",", $article_fields)]);
if ($r <= 0) {
$this->error("操作失败");
}
$this->success("操作成功");
}
// 导入模板
public function import()
{
$fileUtil = new FileUtil();
$file = request()->file("file");
if (!$fileUtil->validation($file)) {
$this->error("请检查上传文件的后缀格式或大小是否符合设置!");
}
//文件上传
$result = $fileUtil->upload($file, 0);
if ($result['code'] == 1) {
$file = $result['file'];
if (!(preg_match('/(http:\/\/)|(https:\/\/)/i', $file))) { //判断是否存在
if (!(str_starts_with($file, "/"))) {
// $file = substr($file, 1, strlen($file));
$file = "/" . $file;
}
// $file = $this->domain.$file;
$result['file'] = $file;
}
$result['file_size'] = xn_file_size($result['file_size']);
$this->success("上传成功", "", $result);
} else {
$this->error($result['msg']);
}
}
}