1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060 |
- <?php
- /**
- * 易优CMS
- * ============================================================================
- * 版权所有 2016-2028 海南赞赞网络科技有限公司,并保留所有权利。
- * 网站地址: http://www.eyoucms.com
- * ----------------------------------------------------------------------------
- * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
- * ============================================================================
- * Author: 陈风任 <491085389@qq.com>
- * Date: 2019-07-30
- */
-
- namespace weapp\Ask\controller;
-
- use think\Page;
- use think\Db;
- use app\common\controller\Weapp;
- use weapp\Ask\model\AskTypeModel;
- use weapp\Ask\logic\AskLogic;
- use app\common\logic\ArctypeLogic;
-
- /**
- * 插件的控制器
- */
- class Ask extends Weapp
- {
- private $arctypeLogic;
-
- /**
- * 插件基本信息
- */
- private $weappInfo;
-
- /**
- * 构造方法
- */
- public function __construct(){
- parent::__construct();
-
- $this->arctypeLogic = new ArctypeLogic();
- // 问题表
- $this->weapp_ask_db = Db::name('weapp_ask');
- // 答案表
- $this->weapp_ask_answer_db = Db::name('weapp_ask_answer');
- // 点赞表
- $this->weapp_ask_answer_like_db = Db::name('weapp_ask_answer_like');
- // 问题分类表
- $this->weapp_ask_type_db = Db::name('weapp_ask_type');
- // 会员级别表
- $this->users_level_db = Db::name('users_level');
- // 问答业务层
- $this->AskLogic = new AskLogic;
- // 问答数据层
- $this->AskTypeModel = new AskTypeModel;
- /*插件基本信息*/
- $this->weappInfo = $this->getWeappInfo();
- $this->assign('weappInfo', $this->weappInfo);
- /*--end*/
- // $this->ask_logic_1658220528();
- }
- //
- private function ask_logic_1658220528(){
- $syn_ask_logic_1658220528 = Db::name('setting')->where(['name'=>'syn_ask_logic_1658220528', 'inc_type'=>'syn', 'lang'=>'cn'])->value('value');
- if (empty($syn_ask_logic_1658220528)){
- $Prefix = config('database.prefix');
- $isTable = Db::query('SHOW TABLES LIKE \''.$Prefix.'weapp_ask\'');
- if (!empty($isTable)) {
- $weapp_ask_typeTableInfo = Db::query("SHOW COLUMNS FROM {$Prefix}weapp_ask_type");
- $weapp_ask_typeTableInfo = get_arr_column($weapp_ask_typeTableInfo, 'Field');
- if (!empty($weapp_ask_typeTableInfo) && !in_array('seo_title', $weapp_ask_typeTableInfo)){
- $sql = "ALTER TABLE `{$Prefix}weapp_ask_type` ADD COLUMN `seo_title` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '' AFTER `parent_id`;";
- @Db::execute($sql);
- }
- if (!empty($weapp_ask_typeTableInfo) && !in_array('seo_keywords', $weapp_ask_typeTableInfo)){
- $sql = "ALTER TABLE `{$Prefix}weapp_ask_type` ADD COLUMN `seo_keywords` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '' AFTER `seo_title`;";
- @Db::execute($sql);
- }
- if (!empty($weapp_ask_typeTableInfo) && !in_array('seo_description', $weapp_ask_typeTableInfo)){
- $sql = "ALTER TABLE `{$Prefix}weapp_ask_type` ADD COLUMN `seo_description` varchar(500) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '' AFTER `seo_keywords`;";
- @Db::execute($sql);
- }
- $weapp_askTableInfo = Db::query("SHOW COLUMNS FROM {$Prefix}weapp_ask");
- $weapp_askTableInfo = get_arr_column($weapp_askTableInfo, 'Field');
- if (!empty($weapp_askTableInfo) && !in_array('money', $weapp_askTableInfo)){
- $sql = "ALTER TABLE `{$Prefix}weapp_ask` ADD COLUMN `money` decimal(8,2) NULL DEFAULT 0.00 COMMENT '悬赏金额' AFTER `update_time`;";
- @Db::execute($sql);
- }
- if (!empty($weapp_askTableInfo) && !in_array('is_top', $weapp_askTableInfo)){
- $sql = "ALTER TABLE `{$Prefix}weapp_ask` ADD COLUMN `is_top` tinyint(1) NULL DEFAULT 0 COMMENT '是否置顶' AFTER `money`;";
- @Db::execute($sql);
- }
- $this->schemaAskTable('weapp_ask_type');
- $this->schemaAskTable('weapp_ask');
- tpSetting('syn', ['syn_ask_logic_1658220528'=>1], 'cn');
- }
- }
- }
-
- /**
- * 插件安装前置操作
- */
- public function beforeInstall()
- {
- $channeltypeInfo = Db::name('channeltype')->where(['id'=>51, 'status'=>1, 'is_del'=>0])->find();
- if (!empty($channeltypeInfo)) {
- $this->error('检测到已启用【问答模型】,请先禁用!');
- }
-
- $name = 'd2ViX2lzX2F1dGhvcnRva2Vu';
- $isauthor = tpCache('web.'.base64_decode($name));
- $domain = request()->host();
- $server_ip = gethostbyname($_SERVER["SERVER_NAME"]);
- if (preg_match('/\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}/i', $domain) || 'localhost' == $domain || '127.0.0.1' == $server_ip || -1 != $isauthor) {
-
- } else {
- $file = './'.WEAPP_DIR_NAME.'/Ask';
- if (file_exists($file)) {
- delFile($file, true);
- }
- $str1 = '6Z2e5o6I5p2D572R56uZ56aB5q2i5L2/55So77yM6K+36LSt5Lmw5ZWG5Lia5o6I5p2D77yB';
- $this->error(base64_decode($str1));
- }
- }
-
- /**
- * 插件安装后置操作
- */
- public function afterInstall()
- {
- Db::name('users_menu')->where([
- 'mca' => 'plugins/Ask/ask_index',
- 'lang' => $this->admin_lang,
- ])->delete();
- Db::name('users_menu')->add([
- 'title' => '我的问答',
- 'mca' => 'plugins/Ask/ask_index',
- 'is_userpage' => 0,
- 'sort_order' => 100,
- 'status' => 1,
- 'lang' => $this->admin_lang,
- 'add_time' => getTime(),
- 'update_time' => getTime(),
- ]);
-
- try {
- $this->schemaAskTable('arctype'); // 重新生成数据表字段缓存文件
- // 在栏目追加一个入口
- $dirname = $this->arctypeLogic->get_dirname($this->weappInfo['code'], $this->weappInfo['code']);
- $dirname = strtolower($dirname);
- $saveData = [];
- $saveData['channeltype'] = 6;
- $saveData['current_channel'] = 6;
- $saveData['typename'] = '问答';
- $saveData['dirname'] = $dirname;
- $saveData['dirpath'] = '/' . $saveData['dirname'];
- $saveData['typelink'] = htmlspecialchars('/index.php?m=plugins&c=Ask&a=index');
- $saveData['litpic'] = '';
- $saveData['seo_description'] = '';
- $saveData['sort_order'] = 100;
- $saveData['is_part'] = 1;
- $saveData['admin_id'] = session('?admin_id') ? session('admin_id') : 0;
- $saveData['status'] = 1;
- $saveData['is_release'] = 0;
- $saveData['lang'] = $this->admin_lang;
- $saveData['weapp_code'] = $this->weappInfo['code'];
- $saveData['add_time'] = getTime();
- $typeid = model('Arctype')->addData($saveData);
- Db::name('arctype')->where([
- 'id' => $typeid,
- ])
- ->cache(true,null,"arctype")
- ->update([
- 'update_time' => getTime(),
- ]);
- /*--end*/
- } catch (\Exception $e) {}
-
- $this->syn_users_level();
- }
-
- /**
- * 插件卸载后置操作
- */
- public function afterUninstall()
- {
- Db::name('users_menu')->where([
- 'mca' => 'plugins/Ask/ask_index',
- 'lang' => $this->admin_lang,
- ])->delete();
-
- try {
- $arctypeRow = Db::name('arctype')->field('id')
- ->where([
- 'weapp_code' => $this->weappInfo['code'],
- ])->find();
- if (!empty($arctypeRow)) {
- $r = Db::name('arctype')->where([
- 'id' => $arctypeRow['id'],
- ])
- ->cache(true,null,"arctype")
- ->delete(); // 删除栏目
- if ($r) {
- model('Archives')->del([$arctypeRow['id']]); // 删除文档
- }
- }
- } catch (\Exception $e) {}
- }
-
- /**
- * 插件启用前置操作
- */
- public function beforeEnable()
- {
- $channeltypeInfo = Db::name('channeltype')->where(['id'=>51, 'status'=>1, 'is_del'=>0])->find();
- if (!empty($channeltypeInfo)) {
- $this->error('检测到已启用【问答模型】,请先禁用!');
- }
- }
-
- /**
- * 插件启用的后置操作
- */
- public function afterEnable()
- {
- Db::name('users_menu')->where([
- 'mca' => 'plugins/Ask/ask_index',
- 'lang' => $this->admin_lang,
- ])->update([
- 'status' => 1,
- 'update_time' => getTime(),
- ]);
-
- try {
- Db::name('arctype')->where([
- 'weapp_code' => $this->weappInfo['code'],
- ])
- ->cache(true,null,"arctype")
- ->update([
- 'is_hidden' => 0,
- 'update_time' => getTime(),
- ]);
- } catch (\Exception $e) {}
- }
-
- /**
- * 插件禁用的后置操作
- */
- public function afterDisable()
- {
- Db::name('users_menu')->where([
- 'mca' => 'plugins/Ask/ask_index',
- 'lang' => $this->admin_lang,
- ])->update([
- 'status' => 0,
- 'update_time' => getTime(),
- ]);
-
- try {
- Db::name('arctype')->where([
- 'weapp_code' => $this->weappInfo['code'],
- ])
- ->cache(true,null,"arctype")
- ->update([
- 'is_hidden' => 1,
- 'update_time' => getTime(),
- ]);
- } catch (\Exception $e) {}
- }
-
- /**
- * 插件使用指南
- */
- public function doc()
- {
- return $this->fetch('doc');
- }
-
- /**
- * 插件后台管理 - 问题列表
- */
- public function ask_list()
- {
- $list = array();
- $keywords = input('keywords/s');
- $keywords = trim($keywords);
- $map = array();
- if (!empty($keywords)) {
- $map['a.ask_title'] = array('LIKE', "%{$keywords}%");
- }
-
- $count = $this->weapp_ask_db->alias('a')->where($map)->count('ask_id');// 查询满足要求的总记录数
- $pageObj = new Page($count, 10);// 实例化分页类 传入总记录数和每页显示的记录数
- $list = $this->weapp_ask_db->field('a.*, b.type_name, b.parent_id, c.nickname')
- ->alias('a')
- ->join('__WEAPP_ASK_TYPE__ b', 'a.type_id = b.type_id', 'LEFT')
- ->join('__USERS__ c', 'a.users_id = c.users_id', 'LEFT')
- ->where($map)
- ->order('a.is_review asc, a.ask_id desc')
- ->limit($pageObj->firstRow.','.$pageObj->listRows)
- ->select();
- // 分类处理
- if (!empty($list)) {
- // 总分类数据
- $TypeData = $this->weapp_ask_type_db->getField('type_id, type_name, parent_id');
- foreach ($list as $key => $value) {
- /*分类处理*/
- if (!empty($value['parent_id'])) {
- $list[$key]['sub_type_name'] = $value['type_name'];
- $list[$key]['type_name'] = $TypeData[$value['parent_id']]['type_name'];
- }else{
- $list[$key]['type_name'] = $value['type_name'];
- $list[$key]['sub_type_name'] = '';
- }
- /* END */
-
- /*问题状态处理*/
- if (0 == $value['status']) {
- $list[$key]['status'] = '未解决';
- }else if (1 == $value['status']) {
- $list[$key]['status'] = '已解决';
- }else if (2 == $value['status']) {
- $list[$key]['status'] = '已关闭';
- }
- /* END */
-
- // 访问前台url
- $list[$key]['HomeUrl'] = $this->request->domain().ROOT_DIR."/index.php?m=plugins&c=Ask&a=details&ask_id={$value['ask_id']}";
- }
- }
-
- $pageStr = $pageObj->show(); // 分页显示输出
- $this->assign('list', $list); // 赋值数据集
- $this->assign('pageStr', $pageStr); // 赋值分页输出
- $this->assign('pageObj', $pageObj); // 赋值分页对象
- return $this->fetch('ask_list');
- }
- /*
- * 更新weapp_ask_type表的seo_title、seo_keywords、seo_description字段
- */
- private function add_seo_field(){
- $add_seo_field_156 = tpSetting('weapp.add_seo_fields_156', [], 'cn');
- if (empty($add_seo_field_156)){
- tpSetting('weapp', ['add_seo_fields_156'=>1], 'cn');
- try{
- $Prefix = config('database.prefix');
- $sql = "ALTER TABLE `{$Prefix}weapp_ask_type` ADD COLUMN `seo_title` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '' AFTER `parent_id`;";
- @Db::execute($sql);
- $sql = "ALTER TABLE `{$Prefix}weapp_ask_type` ADD COLUMN `seo_keywords` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '' AFTER `parent_id`;";
- @Db::execute($sql);
- $sql = "ALTER TABLE `{$Prefix}weapp_ask_type` ADD COLUMN `seo_description` varchar(500) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '' AFTER `parent_id`;";
- @Db::execute($sql);
- @unlink('./data/schema/ey_weapp_ask_type.php');
- }catch (\Exception $e){
- }
- }
- }
- /**
- * 插件后台管理 - 栏目管理
- */
- public function index()
- {
- $this->add_seo_field();
- $list = $this->weapp_ask_type_db->order('sort_order asc, type_id asc')->select();
- foreach ($list as $key => $value) {
- // 是否顶级栏目
- if($value['parent_id'] == 0){
- $PidData[] = $value;
- }else{
- $TidData[] = $value;
- }
- }
-
- $list_new = [];
- foreach ($PidData as $P_key => $PidValue) {
- $type_name = $PidValue['type_name'];
- $PidValue['type_name'] = '<input type="text" name="type_name[]" value="'.$PidValue['type_name'].'">';
- $PidValue['parent_name'] = '顶级栏目';
- /*一级栏目*/
- $list_new[] = $PidValue;
- /* END */
- foreach ($TidData as $T_key => $TidValue) {
- /*二级栏目*/
- if ($TidValue['parent_id'] == $PidValue['type_id']) {
- $TidValue['type_name'] = '|—<input type="text" name="type_name[]" value="'.$TidValue['type_name'].'">';
- $TidValue['parent_name'] = $type_name;
- $list_new[] = $TidValue;
- }
- /* END */
- }
- }
- $this->assign('list', $list_new);
-
- /*栏目处理*/
- $PidDataNew[0] = [
- 'type_id' => 0,
- 'type_name' => '顶级栏目',
- 'parent_id' => 0,
- ];
- $PidData = !empty($PidData) ? array_merge($PidDataNew, $PidData) : $PidDataNew;
- $this->assign('PidData', $PidData);
- /* END */
-
- /*是否有数据*/
- $IsEmpty = empty($list_new) ? 0 : 1;
- $this->assign('IsEmpty', $IsEmpty);
- /* END */
- return $this->fetch('ask_type');
- }
-
- /**
- * 插件后台管理 - 答案列表
- */
- public function answer()
- {
- $list = array();
- $keywords = input('keywords/s');
- $map = array();
- if (!empty($keywords)) {
- $map['a.content'] = array('LIKE', "%{$keywords}%");
- }
-
- $count = $this->weapp_ask_answer_db->alias('a')->where($map)->count('answer_id');// 查询满足要求的总记录数
- $pageObj = new Page($count, 10);// 实例化分页类 传入总记录数和每页显示的记录数
- $list = $this->weapp_ask_answer_db->field('a.*, b.nickname')
- ->alias('a')
- ->join('__USERS__ b', 'a.users_id = b.users_id', 'LEFT')
- ->where($map)
- ->order('a.is_review asc, a.answer_id desc')
- ->limit($pageObj->firstRow.','.$pageObj->listRows)
- ->select();
-
- foreach ($list as $key => $value) {
- // 访问前台url
- $HomeAskUrl = $this->request->domain().ROOT_DIR."/index.php?m=plugins&c=Ask&a=details&ask_id={$value['ask_id']}";
- $HomeAskUrl .= !empty($value['answer_pid']) ? '#ul_div_li_'.$value['answer_pid'] : '#ul_div_li_'.$value['answer_id'];
- $list[$key]['HomeUrl'] = $HomeAskUrl;
-
- // 内容处理
- $preg = '/<img.*?src=[\"|\']?(.*?)[\"|\']?\s.*?>/i';
- $value['content'] = htmlspecialchars_decode($value['content']);
- $value['content'] = preg_replace($preg,'[图片]',$value['content']);
- $value['content'] = strip_tags($value['content']);
- $list[$key]['content'] = mb_strimwidth($value['content'], 0, 120, "...");
- }
-
- $pageStr = $pageObj->show(); // 分页显示输出
- $this->assign('list', $list); // 赋值数据集
- $this->assign('pageStr', $pageStr); // 赋值分页输出
- $this->assign('pageObj', $pageObj); // 赋值分页对象
-
- return $this->fetch('answer');
- }
-
- // 新增栏目
- public function ask_type_data_save()
- {
- if (IS_AJAX_POST) {
- $post = input('post.');
-
- // 处理新增数据
- $AddAskData = [];
- foreach ($post['type_name'] as $key => $value) {
- $type_id = $post['type_id'][$key];
- $type_name = trim($value);
- $parent_id = $post['parent_id'][$key];
- $sort_order = $post['sort_order'][$key];
-
- if (empty($parent_id) && $parent_id < 0) $this->error('请选择所属栏目!');
- if (empty($type_name)) $this->error('分类名称不可为空');
-
- $AddAskData[] = [
- 'type_id' => $type_id,
- 'type_name' => $type_name,
- 'parent_id' => $parent_id,
- 'sort_order' => $sort_order,
- 'update_time' => getTime(),
- ];
-
- if (empty($type_id)) {
- $AddAskData[$key]['lang'] = $this->admin_lang;
- $AddAskData[$key]['add_time'] = getTime();
- unset($AddAskData[$key]['type_id']);
- }
- }
-
- // 添加\更新
- if (!empty($AddAskData)) $ReturnId = $this->AskTypeModel->saveAll($AddAskData);
-
- // 返回
- if (!empty($ReturnId)) $this->success('保存成功');
- $this->error('保存失败');
- }
-
- $param = input('param.');
- if (!empty($param['type_id']) && !empty($param['type_name'])) {
- // 添加二级栏目
- $this->assign('type_name', $param['type_name']);
- $this->assign('type_id', $param['type_id']);
- }else{
- $TypeData = $this->weapp_ask_type_db->where('parent_id', 0)->select();
- $this->assign('TypeData', $TypeData);
- }
- return $this->fetch('ask_type_add');
- }
-
- // 删除栏目
- public function ask_type_del()
- {
- $type_id = input('del_id/a');
- $type_id = eyIntval($type_id);
- if(!empty($type_id)){
- $result = $this->weapp_ask_type_db->where("type_id", 'IN', $type_id)->select();
- $title_list = get_arr_column($result, 'type_name');
-
- $r = $this->weapp_ask_type_db->where("type_id", 'IN', $type_id)->delete();
- if($r){
- adminLog('删除'.$this->weappInfo['name'].':'.implode(',', $title_list));
- // 同步删除顶级栏目下的子栏目
- if (empty($result[0]['parent_id'])) {
- $this->weapp_ask_type_db->where("parent_id", 'IN', $type_id)->delete();
- }
- $this->success("删除成功!");
- }else{
- $this->error("删除失败!");
- }
- }else{
- $this->error("参数有误!");
- }
- }
-
- /**
- * 插件后台管理 - 插件配置
- */
- public function conf()
- {
- // 同步会员级别列表
- $this->syn_users_level();
-
- $LevelData = Db::name('weapp_ask_users_level')->select();
- $this->assign('list',$LevelData);
-
- /*问答URL模式*/
- $HomeAskUrl = '';
- $ask_seo_pseudo = 1; // 默认动态URL
- $askConfData = $this->AskTypeModel->getWeappData();
- if (!empty($askConfData['data']['seo_pseudo'])) {
- $ask_seo_pseudo = intval($askConfData['data']['seo_pseudo']);
- }
- // 问答首页URL
- if (1 == $ask_seo_pseudo) {
- $HomeAskUrl = $this->root_dir.'/index.php?m=plugins&c=Ask&a=index';
- } else {
- $HomeAskUrl = url('plugins/Ask/index', [], true, false, $ask_seo_pseudo, 1);
- }
- $HomeAskUrl = str_replace($this->request->baseFile(), $this->root_dir.'/index.php', $HomeAskUrl); // 支持子目录
- $this->assign('HomeAskUrl',$HomeAskUrl);
- $this->assign('askConfData',$askConfData);
- /*end*/
-
- /*同步更新问答首页的URL到栏目问答的外部链接字段里*/
- Db::name('arctype')->where([
- 'weapp_code' => 'Ask',
- ])->cache(true,null,"arctype")->update([
- 'typelink' => $HomeAskUrl,
- 'update_time' => getTime(),
- ]);
- /*end*/
-
- return $this->fetch('conf');
- }
- /**
- * 同步会员级别列表
- * @return [type] [description]
- */
- private function syn_users_level()
- {
- $level_list = Db::name('users_level')->field('level_id,level_name,level_value,ask_is_release,ask_is_review')->where('lang', $this->admin_lang)->select();
- $ask_level_list = Db::name('weapp_ask_users_level')->getAllWithIndex('level_id');
- $saveData = $level_ids = [];
- foreach ($level_list as $key => $val) {
- array_push($level_ids, $val['level_id']);
- $data = [
- 'level_name' => $val['level_name'],
- 'level_value' => $val['level_value'],
- // 'ask_is_release' => $val['ask_is_release'],
- // 'ask_is_review' => $val['ask_is_review'],
- ];
- if (!empty($ask_level_list[$val['level_id']])) {
- $data['level_id'] = $val['level_id'];
- }
- $saveData[] = $data;
- }
- if (!empty($saveData)) {
- $model = new \weapp\Ask\model\AskUsersLevelModel;
- $model->saveAll($saveData);
- }
-
- $del_level_ids = [];
- foreach ($ask_level_list as $key => $val) {
- if (!in_array($val['level_id'], $level_ids)) {
- array_push($del_level_ids, $val['level_id']);
- }
- }
- if (!empty($del_level_ids)) {
- Db::name('weapp_ask_users_level')->where(['level_id'=>['IN', $del_level_ids]])->delete();
- }
- }
- public function setData()
- {
- if (IS_AJAX_POST) {
- $data = Db::name('weapp')->where(['code'=>'Ask'])->getField('data');
- if (!empty($data)) {
- $data = unserialize($data);
- } else {
- $data = [];
- }
- $name = input('post.name/s');
- $value = input('post.value/d');
- $data[$name] = $value;
- $saveData = array(
- 'data' => serialize($data),
- 'update_time' => getTime(),
- );
- $r = Db::name('weapp')->where(array('code' => $this->weappInfo['code']))->update($saveData);
- if ($r) {
- delFile(HTML_ROOT); //清除页面缓存,让整站导航及时刷新问答链接
- adminLog('编辑' . $this->weappInfo['name'] . '成功'); // 写入操作日志
- $this->success("操作成功", weapp_url('Ask/Ask/conf'));
- }
- }
- $this->error('操作失败');
- }
-
- /**
- * 栏目SEO配置
- * @return [type] [description]
- */
- public function ask_type_seo()
- {
- $type_id = input('param.type_id/d');
- if (IS_POST) {
- if (empty($type_id)) {
- $this->error('操作失败');
- }
-
- $data = input('post.');
- $data['update_time'] = getTime();
-
- $r = Db::name('weapp_ask_type')->where(['type_id'=>$type_id])->update($data);
- if ($r !== false) {
- $this->success('操作成功');
- }
- $this->error('操作失败');
- }
-
- $data = Db::name('weapp_ask_type')->find($type_id);
- $this->assign('data', $data);
-
- return $this->fetch('ask_type_seo');
- }
-
- /**
- * 插件后台管理 - 删除问题
- */
- public function ask_del()
- {
- $ask_id = input('del_id/a');
- $ask_id = eyIntval($ask_id);
- if(!empty($ask_id)){
- $result = $this->weapp_ask_db->where("ask_id", 'IN', $ask_id)->select();
- $title_list = get_arr_column($result, 'ask_title');
-
- $r = $this->weapp_ask_db->where("ask_id", 'IN', $ask_id)->delete();
- if($r){
- adminLog('删除'.$this->weappInfo['name'].':'.implode(',', $title_list));
- // 同步删除答案表数据
- $this->weapp_ask_answer_db->where("ask_id", 'IN', $ask_id)->delete();
- // 同步删除点赞表数据
- $this->weapp_ask_answer_like_db->where("ask_id", 'IN', $ask_id)->delete();
- $this->success("删除成功!");
- }else{
- $this->error("删除失败!");
- }
- }else{
- $this->error("参数有误!");
- }
- }
-
- /**
- * 插件后台管理 - 批量审核问题
- */
- public function ask_review()
- {
- $ask_id = input('ask_id/a');
- $ask_id = eyIntval($ask_id);
- if(!empty($ask_id)){
- $UpData = [
- 'is_review' => 1,
- 'update_time' => getTime(),
- ];
- $r = $this->weapp_ask_db->where("ask_id", 'IN', $ask_id)->update($UpData);
- if($r){
- $this->success("审核成功!");
- }else{
- $this->error("审核失败!");
- }
- }else{
- $this->error("参数有误!");
- }
- }
-
- /**
- * 插件后台管理 - 批量推荐问题
- */
- public function ask_recom()
- {
- $ask_id = input('ask_id/a');
- $ask_id = eyIntval($ask_id);
- if(!empty($ask_id)){
- $UpData = [
- 'is_recom' => 1,
- 'update_time' => getTime(),
- ];
- $r = $this->weapp_ask_db->where("ask_id", 'IN', $ask_id)->update($UpData);
- if($r){
- $this->success("审核成功!");
- }else{
- $this->error("审核失败!");
- }
- }else{
- $this->error("参数有误!");
- }
- }
-
- /**
- * 插件后台管理 - 批量删除答案
- */
- public function answer_del()
- {
- $answer_id = input('del_id/a');
- $answer_id = eyIntval($answer_id);
- if(!empty($answer_id)){
- $r = $this->weapp_ask_answer_db->where("answer_id", 'IN', $answer_id)->delete();
- if($r){
- // 同步删除点赞表数据
- $this->weapp_ask_answer_like_db->where("answer_id", 'IN', $answer_id)->delete();
- $this->success("删除成功!");
- }else{
- $this->error("删除失败!");
- }
- }else{
- $this->error("参数有误!");
- }
- }
-
- /**
- * 插件后台管理 - 批量审核答案
- */
- public function answer_review()
- {
- $answer_id = input('ask_id/a');
- $answer_id = eyIntval($answer_id);
- if(!empty($answer_id)){
- $UpData = [
- 'is_review' => 1,
- 'update_time' => getTime(),
- ];
- $r = $this->weapp_ask_answer_db->where("answer_id", 'IN', $answer_id)->update($UpData);
- if($r){
- $this->success("审核成功!");
- }else{
- $this->error("审核失败!");
- }
- }else{
- $this->error("参数有误!");
- }
- }
-
- public function getasklist($vars = [])
- {
- /*问答本身的URL模式*/
- $askTypeModel = new \weapp\Ask\model\AskTypeModel;
- $askConfData = $askTypeModel->getWeappData();
- $ask_seo_pseudo = 1;
- if (!empty($askConfData['data']['seo_pseudo'])) {
- $ask_seo_pseudo = intval($askConfData['data']['seo_pseudo']);
- }
- /*end*/
-
- $param = $vars;
-
- /*查询条件*/
- $where = [
- 'is_review' => 1
- ];
- if (!empty($param['typeid'])) $where['a.type_id'] = ['IN', explode(',', $param['typeid'])];
- if (!empty($param['notypeid'])) $where['a.type_id'] = ['NOT IN', explode(',', $param['notypeid'])];
- /*END*/
-
- /*排序方式*/
- $order = 'a.sort_order asc, a.ask_id desc';
- if (!empty($param['orderby'])) {
- $orderby = explode(',', $param['orderby']);
- if (!empty($orderby[1])) {
- $orderby = $param['orderby'];
- } else {
- $orderby = 'a.'.$param['orderby'] . ' ' . $param['orderway'];
- }
- }
- /*END*/
-
- $limit = !empty($param['limit']) ? intval($param['limit']) : 0;
-
- /*查询数据*/
- $result = Db::name('weapp_ask')->alias('a')
- ->field('a.*, b.type_name')
- ->join('__WEAPP_ASK_TYPE__ b', 'a.type_id = b.type_id', 'LEFT')
- ->where($where)
- ->order($orderby)
- ->limit($limit)
- ->select();
- /*END*/
-
- /*处理数据*/
- if (!empty($result)) {
- $users_ids = [];
- foreach ($result as $key => $value) {
- array_push($users_ids, $value['users_id']);
- $result[$key]['ask_url'] = url('plugins/Ask/details', ['ask_id'=>$value['ask_id']], true, false, $ask_seo_pseudo);
- $result[$key]['type_url'] = url('plugins/Ask/index', ['type_id'=>$value['type_id']], true, false, $ask_seo_pseudo);
- $result[$key]['content'] = htmlspecialchars_decode($value['content']);
- }
-
- $usersList = [];
- $usersRow = Db::name('users')->field('a.*, b.level_name')
- ->alias('a')
- ->join('users_level b', 'a.level=b.level_id', 'LEFT')
- ->where(['a.users_id'=>['IN', $users_ids]])
- ->select();
- foreach ($usersRow as $key => $val) {
- // 会员头像
- $val['head_pic'] = get_head_pic(htmlspecialchars_decode($val['head_pic']));
- $val['head_pic'] = func_preg_replace(['http://thirdqq.qlogo.cn'], ['https://thirdqq.qlogo.cn'], $val['head_pic']);
- // 会员昵称
- $val['nickname'] = !empty($val['nickname']) ? $val['nickname'] : $val['username'];
- // 过滤密码
- unset($val['password']);
- unset($val['paypwd']);
- $usersList[$val['users_id']]['users'] = $val;
- }
-
- foreach ($result as $k => $v){
- !empty($usersList[$v['users_id']]) && $result[$k] += $usersList[$v['users_id']];
- }
- } else {
- return false;
- }
- /*END*/
-
- return $result;
- }
- //设置频率
- public function rate_edit(){
- if (IS_POST) {
- $post = input('post.');
-
- $data = Db::name('weapp')->where(['code'=>'Ask'])->getField('data');
- if (!empty($data)) {
- $data = unserialize($data);
- } else {
- $data = [];
- }
-
- $data = array_merge($data, $post);
-
- $saveData = [
- 'data' => serialize($data),
- 'update_time' => getTime(),
- ];
- $r = Db::name('weapp')->where(['code'=>'Ask'])->update($saveData);
- if ($r !== false) {
- $this->success('操作成功');
- }
- $this->error('操作失败');
- }
-
- $data = Db::name('weapp')->where(['code'=>'Ask'])->getField('data');
- if (!empty($data)) {
- $data = unserialize($data);
- }
- $this->assign('data', $data);
-
- return $this->fetch('rate_edit');
- }
- public function seo_edit()
- {
- if (IS_POST) {
- $post = input('post.');
-
- $data = Db::name('weapp')->where(['code'=>'Ask'])->getField('data');
- if (!empty($data)) {
- $data = unserialize($data);
- } else {
- $data = [];
- }
-
- $data = array_merge($data, $post);
-
- $saveData = [
- 'data' => serialize($data),
- 'update_time' => getTime(),
- ];
- $r = Db::name('weapp')->where(['code'=>'Ask'])->update($saveData);
- if ($r !== false) {
- $this->success('操作成功');
- }
- $this->error('操作失败');
- }
-
- $data = Db::name('weapp')->where(['code'=>'Ask'])->getField('data');
- if (!empty($data)) {
- $data = unserialize($data);
- }
- $this->assign('data', $data);
-
- return $this->fetch('seo_edit');
- }
-
- /**
- * ajax 修改指定表数据字段 一般修改状态 比如 是否推荐 是否开启 等 图标切换的
- * table,id_name,id_value,field,value
- */
- public function changeTableVal()
- {
- if (IS_AJAX_POST) {
- $url = null;
- $data = [
- 'refresh' => 0,
- ];
-
- $param = input('param.');
- $table = input('param.table/s'); // 表名
- $id_name = input('param.id_name/s'); // 表主键id名
- $id_value = input('param.id_value/d'); // 表主键id值
- $field = input('param.field/s'); // 修改哪个字段
- $value = input('param.value/s', '', null); // 修改字段值
- $value = eyPreventShell($value) ? $value : strip_sql($value);
-
- /*处理数据的安全性*/
- if (empty($id_value)) {
- $this->error('查询条件id不合法!');
- }
- foreach ($param as $key => $val) {
- if ('value' == $key) {
- continue;
- }
- if (!preg_match('/^([A-Za-z0-9_-]*)$/i', $val)) {
- $this->error('数据含有非法入侵字符!');
- }
- }
- /*end*/
-
-
- $savedata = [
- $field => $value,
- 'update_time' => getTime(),
- ];
-
- // 根据条件保存修改的数据
- $r = Db::name($table)->where([$id_name => $id_value])->cache(true,null,$table)->save($savedata);
- if ($r !== false) {
- $this->success('更新成功', $url, $data);
- }
- $this->error('更新失败', null, []);
- }
- }
- //设置悬赏
- public function reward_edit(){
- if (IS_POST) {
- $post = input('post.');
-
- $data = Db::name('weapp')->where(['code'=>'Ask'])->getField('data');
- if (!empty($data)) {
- $data = unserialize($data);
- } else {
- $data = [];
- }
-
- $data = array_merge($data, $post);
-
- $saveData = [
- 'data' => serialize($data),
- 'update_time' => getTime(),
- ];
- $r = Db::name('weapp')->where(['code'=>'Ask'])->update($saveData);
- if ($r !== false) {
- $this->success('操作成功');
- }
- $this->error('操作失败');
- }
-
- $data = Db::name('weapp')->where(['code'=>'Ask'])->getField('data');
- if (!empty($data)) {
- $data = unserialize($data);
- }
- $this->assign('data', $data);
-
- return $this->fetch('reward_edit');
- }
- //设置敏感词过滤
- public function sensitive_edit(){
- if (IS_POST) {
- $post = input('post.');
- $data = Db::name('weapp')->where(['code'=>'Ask'])->getField('data');
- if (!empty($data)) {
- $data = unserialize($data);
- } else {
- $data = [];
- }
-
- $data = array_merge($data, $post);
-
- $saveData = [
- 'data' => serialize($data),
- 'update_time' => getTime(),
- ];
- $r = Db::name('weapp')->where(['code'=>'Ask'])->update($saveData);
- if ($r !== false) {
- $this->success('操作成功');
- }
- $this->error('操作失败');
- }
-
- $data = Db::name('weapp')->where(['code'=>'Ask'])->getField('data');
- if (!empty($data)) {
- $data = unserialize($data);
- }
- $this->assign('data', $data);
-
- return $this->fetch('sensitive_edit');
- }
- /**
- * 重新生成单个数据表缓存字段文件
- */
- function schemaAskTable($name)
- {
- $table = $name;
- $prefix = \think\Config::get('database.prefix');
- if (!preg_match('/^'.$prefix.'/i', $name)) {
- $table = $prefix.$name;
- }
- try{
- /*调用命令行的指令*/
- \think\Console::call('optimize:schema', ['--table', $table]);
- /*--end*/
- }catch (\Exception $e){}
-
- }
- }
|