Brak opisu
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

AskLogic.php 16KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400
  1. <?php
  2. /**
  3. * 易优CMS
  4. * ============================================================================
  5. * 版权所有 2016-2028 海南赞赞网络科技有限公司,并保留所有权利。
  6. * 网站地址: http://www.eyoucms.com
  7. * ----------------------------------------------------------------------------
  8. * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
  9. * ============================================================================
  10. * Author: 陈风任 <491085389@qq.com>
  11. * Date: 2019-7-30
  12. */
  13. namespace app\plugins\logic;
  14. use think\Db;
  15. use app\plugins\model\AskModel;
  16. /**
  17. * 逻辑定义
  18. * Class CatsLogic
  19. * @package plugins\Logic
  20. */
  21. class AskLogic
  22. {
  23. // 查询条件处理
  24. public function GetAskWhere($param = array(), $parent_id = null)
  25. {
  26. // 查询条件
  27. $where = [
  28. // 0未解决,1已解决
  29. 'a.status' => ['IN',[0, 1]],
  30. // 问题是否审核,1是,0否
  31. 'a.is_review' => 1,
  32. ];
  33. // 创始人可以看到所有数据,包括未审核问题
  34. if (0 === $parent_id) unset($where['a.is_review']);
  35. // 查询指定栏目分类下的问题
  36. if (!empty($param['type_id'])) $where['a.type_id'] = $param['type_id'];
  37. // 不为空则表示查询--悬赏--待回答问题
  38. if (!empty($param['is_recom']) && 3 == intval($param['is_recom'])) $where['a.money'] = ['>',0];
  39. // 不为空则表示查询待回答问题
  40. if (!empty($param['is_recom']) && 2 == intval($param['is_recom'])) $where['a.replies'] = 0;
  41. // 推荐问题
  42. if (!empty($param['is_recom']) && 1 == intval($param['is_recom'])) $where['a.is_recom'] = 1;
  43. // 搜索问题
  44. if (!empty($param['search_name'])) {
  45. $where['a.ask_title'] = ['LIKE', "%{$param['search_name']}%"];
  46. }
  47. return $where;
  48. }
  49. // Url处理
  50. public function GetUrlData($param = array(), $SpecifyUrl = null)
  51. {
  52. if (empty($param['ask_id'])) $param['ask_id'] = 0;
  53. $result = [];
  54. // 最新问题url
  55. $result['NewDateUrl'] = url('plugins/Ask/index');
  56. // ROOT_DIR.'/index.php?m=plugins&c=Ask&a=index';
  57. // 问题详情页url
  58. $result['AskDetailsUrl'] = url('plugins/Ask/details', ['ask_id'=>$param['ask_id']]);
  59. // ROOT_DIR.'/index.php?m=plugins&c=Ask&a=details&ask_id='.$param['ask_id'];
  60. // 推荐问题url
  61. $result['RecomDateUrl'] = url('plugins/Ask/index', ['type_id'=>0, 'is_recom'=>1]);
  62. // ROOT_DIR.'/index.php?m=plugins&c=Ask&a=index&is_recom=1';
  63. // 悬赏问题列表url
  64. $result['RewardUrl'] = url('plugins/Ask/index', ['type_id'=>0, 'is_recom'=>3]);
  65. // 等待回答url
  66. $result['PendingAnswerUrl'] = url('plugins/Ask/index', ['type_id'=>0, 'is_recom'=>2]);
  67. // ROOT_DIR.'/index.php?m=plugins&c=Ask&a=index&is_recom=2';
  68. // 提交回答url
  69. $result['AddAnswerUrl'] = url('plugins/Ask/ajax_add_answer', ['ask_id'=>$param['ask_id'], '_ajax'=>1], true, false, 1, 1, 0);
  70. // ROOT_DIR.'/index.php?m=plugins&c=Ask&a=ajax_add_answer&ask_id='.$param['ask_id'];
  71. // 删除回答url
  72. $result['DelAnswerUrl'] = url('plugins/Ask/ajax_del_answer', ['ask_id'=>$param['ask_id'], '_ajax'=>1], true, false, 1, 1, 0);
  73. // ROOT_DIR.'/index.php?m=plugins&c=Ask&a=ajax_del_answer&ask_id='.$param['ask_id'];
  74. // 点赞回答url
  75. $result['ClickLikeUrl'] = url('plugins/Ask/ajax_click_like', ['_ajax'=>1], true, false, 1, 1, 0);
  76. // ROOT_DIR.'/index.php?m=plugins&c=Ask&a=ajax_click_like';
  77. // 发布问题url
  78. $result['AddAskUrl'] = url('plugins/Ask/add_ask');
  79. // 提交问题url
  80. $result['SubmitAddAsk'] = url('plugins/Ask/add_ask', ['_ajax'=>1], true, false, 1, 1, 0);
  81. // ROOT_DIR.'/index.php?m=plugins&c=Ask&a=add_ask';
  82. // 编辑问题url
  83. $result['EditAskUrl'] = url('plugins/Ask/edit_ask', ['ask_id'=>$param['ask_id']]);
  84. // ROOT_DIR.'/index.php?m=plugins&c=Ask&a=edit_ask&ask_id='.$param['ask_id'];
  85. // 用户问题首页
  86. $result['UsersIndexUrl'] = url('plugins/Ask/ask_index');
  87. // ROOT_DIR.'/index.php?m=plugins&c=Ask&a=ask_index';
  88. // 编辑回答url
  89. $result['EditAnswer'] = url('plugins/Ask/ajax_edit_answer');
  90. // ROOT_DIR.'/index.php?m=plugins&c=Ask&a=ajax_edit_answer';
  91. if ('ajax_edit_answer' == request()->action()) {
  92. $result['EditAnswer'] = url('plugins/Ask/ajax_edit_answer', ['_ajax'=>1], true, false, 1, 1, 0);
  93. }
  94. // 采纳最佳答案url
  95. $result['BestAnswerUrl'] = url('plugins/Ask/ajax_best_answer', ['ask_id'=>$param['ask_id'], '_ajax'=>1], true, false, 1, 1, 0);
  96. // ROOT_DIR.'/index.php?m=plugins&c=Ask&a=ajax_best_answer&ask_id='.$param['ask_id'];
  97. // 获取指定数量的评论数据(分页)
  98. $result['ShowCommentUrl'] = url('plugins/Ask/ajax_show_comment', ['ask_id'=>$param['ask_id'], '_ajax'=>1], true, false, 1, 1, 0);
  99. // ROOT_DIR.'/index.php?m=plugins&c=Ask&a=ajax_show_comment&ask_id='.$param['ask_id'].'&_ajax=1';
  100. // 创始人审核评论URL(前台)
  101. $result['ReviewCommentUrl'] = url('plugins/Ask/ajax_review_comment', ['ask_id'=>$param['ask_id'], '_ajax'=>1], true, false, 1, 1, 0);
  102. // ROOT_DIR.'/index.php?m=plugins&c=Ask&a=ajax_review_comment&ask_id='.$param['ask_id'].'&_ajax=1';
  103. // 创始人审核问题URL(前台)
  104. $result['ReviewAskUrl'] = url('plugins/Ask/ajax_review_ask', ['_ajax'=>1], true, false, 1, 1, 0);
  105. // ROOT_DIR.'/index.php?m=plugins&c=Ask&a=ajax_review_ask&_ajax=1';
  106. // 按点赞量排序url
  107. $result['AnswerLikeNum'] = url('plugins/Ask/details', ['ask_id' => $param['ask_id']], true, false, 1, 1, 0);
  108. // 等待回答url
  109. if (!empty($param['type_id'])) {
  110. $result['PendingAnswerUrl'] = url('plugins/Ask/index', ['type_id'=>$param['type_id'], 'is_recom'=>2]);
  111. // ROOT_DIR.'/index.php?m=plugins&c=Ask&a=index&type_id='.$param['type_id'].'&is_recom=2';
  112. }
  113. if (!empty($SpecifyUrl)) {
  114. if (!empty($result[$SpecifyUrl])) {
  115. return $result[$SpecifyUrl];
  116. }else{
  117. return $result['NewDateUrl'];
  118. }
  119. }else{
  120. return $result;
  121. }
  122. }
  123. // 关键词标红
  124. public function GetRedKeyWord($SearchName, $ask_title)
  125. {
  126. $ks = explode(' ',$SearchName);
  127. foreach($ks as $k){
  128. $k = trim($k);
  129. if($k == '') continue;
  130. if(ord($k[0]) > 0x80 && strlen($k) < 1) continue;
  131. $ask_title = str_replace($k, "<font color='red'>$k</font>", $ask_title);
  132. }
  133. return $ask_title;
  134. }
  135. // 内容转义处理
  136. public function ContentDealWith($param = null)
  137. {
  138. if (!empty($param['content'])) {
  139. $content = $param['content'];
  140. }else if(!empty($param['ask_content'])){
  141. $content = $param['ask_content'];
  142. }else{
  143. return false;
  144. }
  145. // 斜杆转义
  146. $content = addslashes($content);
  147. // 过滤内容的style属性
  148. $content = preg_replace('/style(\s*)=(\s*)[\'|\"](.*?)[\'|\"]/i', '', $content);
  149. // 过滤内容的class属性
  150. $content = preg_replace('/class(\s*)=(\s*)[\'|\"](.*?)[\'|\"]/i', '', $content);
  151. return $content;
  152. }
  153. // 栏目分类格式化输出
  154. public function GetTypeHtmlCode($PidData = array(), $TidData = array(), $type_id = null)
  155. {
  156. // 下拉框拼装
  157. $HtmlCode = '<select name="ask_type_id" id="ask_type_id" class="tit_input" style="width: unset;">';
  158. $HtmlCode .= '<option value="0">请选择分类</option>';
  159. foreach ($PidData as $P_key => $PidValue) {
  160. /*是否默认选中*/
  161. $selected = '';
  162. if ($type_id == $PidValue['type_id']) $selected = 'selected';
  163. /* END */
  164. /*一级下拉框*/
  165. $HtmlCode .= '<option value="'.$PidValue['type_id'].'" '.$selected.'>'.$PidValue['type_name'].'</option>';
  166. /* END */
  167. foreach ($TidData as $T_key => $TidValue) {
  168. if ($TidValue['parent_id'] == $PidValue['type_id']) {
  169. /*是否默认选中*/
  170. $selected = '';
  171. if ($type_id == $TidValue['type_id']) $selected = 'selected';
  172. /* END */
  173. /*二级下拉框*/
  174. $HtmlCode .= '<option value="'.$TidValue['type_id'].'" '.$selected.'>&nbsp; &nbsp; &nbsp;'.$TidValue['type_name'].'</option>';
  175. /* END */
  176. }
  177. }
  178. }
  179. $HtmlCode .= '</select>';
  180. return $HtmlCode;
  181. }
  182. // 拼装html代码
  183. public function GetReplyHtml($data = array())
  184. {
  185. $ReplyHtml = '';
  186. // 如果是需要审核的评论则返回空
  187. if (empty($data['is_review'])) return $ReplyHtml;
  188. /*拼装html代码*/
  189. // 友好显示时间
  190. $data['add_time'] = friend_date($data['add_time']);
  191. // 处理内容格式
  192. $data['content'] = htmlspecialchars_decode($data['content']);
  193. if (!empty($data['at_users_id'])) {
  194. $data['content'] = '回复 @'.$data['at_usersname'].':&nbsp;'.$data['content'];
  195. }
  196. // 删除评论回答URL
  197. $DelAnswerUrl = $this->GetUrlData($data, 'DelAnswerUrl');
  198. // 拼装html
  199. $ReplyHtml = <<<EOF
  200. <li class="secend-li" id="{$data['answer_id']}_answer_li">
  201. <div class="head-secend">
  202. <a><img src="{$data['head_pic']}" style="width:30px;height:30px;border-radius:100%;margin-right: 16px;"></a>
  203. <strong>{$data['username']}</strong>
  204. <span style="margin:0 10px"> | </span>
  205. <span>{$data['add_time']}</span>
  206. <div style="flex-grow:1"></div>
  207. <span id="{$data['answer_id']}_replyA" onclick="replyUser('{$data['answer_pid']}','{$data['users_id']}','{$data['username']}','{$data['answer_id']}')" class="secend-huifu-btn" style="cursor: pointer;">回复</span>
  208. &nbsp;&nbsp;|&nbsp;&nbsp;
  209. <a data-url="{$DelAnswerUrl}" onclick="DataDel(this, '{$data['answer_id']}', 2)" class="secend-huifu-btn" style="cursor: pointer; color:red;">删除</a>
  210. </div>
  211. <div class="secend-huifu-text">
  212. {$data['content']}
  213. </div>
  214. </li>
  215. EOF;
  216. // 返回html
  217. $ReturnHtml = ['review' => false, 'htmlcode' => $ReplyHtml];
  218. return $ReturnHtml;
  219. }
  220. // 获取指定条数的评论(分页)
  221. public function ForeachReplyHtml($data = array(), $parent_id = null)
  222. {
  223. $ReplyHtml = '';
  224. foreach ($data as $key => $value) {
  225. // 如果是需要审核的评论则返回空
  226. $review = '';
  227. if (empty($value['is_review']) && 0 == $parent_id) {
  228. // 创始人审核评论URL(前台)
  229. $ReviewCommentUrl = $this->GetUrlData($value, 'ReviewCommentUrl');
  230. $review = <<<EOF
  231. <span id='{$value['answer_id']}_Review'>
  232. <span data-url='{$ReviewCommentUrl}' onclick="Review(this, '{$value['answer_id']}')" class="secend-huifu-btn" style="cursor: pointer; color: red;" title="该评论未审核,可点击审核,仅创始人可操作">审核</span>
  233. <span style="margin:0 10px"> | </span>
  234. </span>
  235. EOF;
  236. } else if (empty($value['is_review'])) {
  237. // 其他人查询数据,去除未审核评论,跳过这条数据拼装
  238. unset($value); continue;
  239. }
  240. /*拼装html代码*/
  241. if (!empty($value['at_users_id'])) {
  242. $value['content'] = '回复 @'.$value['at_usersname'].':&nbsp;'.$value['content'];
  243. }
  244. // 删除评论回答URL
  245. $DelAnswerUrl = $this->GetUrlData($value, 'DelAnswerUrl');
  246. // 拼装html
  247. $ReplyHtml .= <<<EOF
  248. <li class="secend-li" id="{$value['answer_id']}_answer_li">
  249. <div class="head-secend">
  250. <a><img src="{$value['head_pic']}" style="width:30px;height:30px;border-radius:100%;margin-right: 16px;"></a>
  251. <strong>{$value['username']}</strong>
  252. <span style="margin:0 10px"> | </span>
  253. <span>{$value['add_time']}</span>
  254. <div style="flex-grow:1"></div>
  255. {$review}
  256. <span id="{$value['answer_id']}_replyA" onclick="replyUser('{$value['answer_pid']}','{$value['users_id']}','{$value['username']}','{$value['answer_id']}')" class="secend-huifu-btn" style="cursor: pointer;">回复</span>
  257. &nbsp;&nbsp;|&nbsp;&nbsp;
  258. <a data-url="{$DelAnswerUrl}" onclick="DataDel(this, '{$value['answer_id']}', 2)" class="secend-huifu-btn" style="cursor: pointer; color:red;">删除</a>
  259. </div>
  260. <div class="secend-huifu-text">
  261. {$value['content']}
  262. </div>
  263. </li>
  264. EOF;
  265. }
  266. // 返回html
  267. $ReturnHtml = ['review' => false, 'htmlcode' => $ReplyHtml];
  268. return $ReturnHtml;
  269. }
  270. /**
  271. * 获取SEO信息
  272. * @param string $inc_type [description]
  273. */
  274. public function GetSeoData($type_id = 0)
  275. {
  276. $inc_type = !empty($type_id) ? 'lists' : 'index';
  277. $seoInfo = [
  278. 'seo_title' => '问答中心',
  279. 'seo_keywords' => '',
  280. 'seo_description' => '',
  281. ];
  282. $typename = Db::name('arctype')->where(['weapp_code'=>'Ask'])->getField('typename');
  283. !empty($typename) && $seoInfo['seo_title'] = $typename;
  284. $data = Db::name('weapp')->where(['code'=>'Ask'])->getField('data');
  285. $dataArr = unserialize($data);
  286. if ('index' == $inc_type && !empty($dataArr['seo_info'][$inc_type])) {
  287. $seoInfo = $dataArr['seo_info'][$inc_type];
  288. } else {
  289. if ('lists' == $inc_type) {
  290. $p = input('param.p/d');
  291. $result = Db::name('weapp_ask_type')->field('*')->where(['type_id'=>$type_id])->find();
  292. if (!empty($result['seo_title'])) {
  293. $seoInfo['seo_title'] = $result['seo_title'] . ($p > 1 ? "_第{$p}页" : '');
  294. } else {
  295. $seoInfo['seo_title'] = $result['type_name'] . ' - ' . $typename . ($p > 1 ? "_第{$p}页" : '');
  296. }
  297. !empty($result['seo_keywords']) && $seoInfo['seo_keywords'] = $result['seo_keywords'];
  298. !empty($result['seo_description']) && $seoInfo['seo_description'] = $result['seo_description'];
  299. }
  300. }
  301. return $seoInfo;
  302. }
  303. /*
  304. * 获取限制提交频率
  305. */
  306. public function GetRateData(){
  307. $rate = [];
  308. $data = Db::name('weapp')->where(['code'=>'Ask'])->getField('data');
  309. $dataArr = unserialize($data);
  310. !empty($dataArr['rate']) && $rate = $dataArr['rate'];
  311. return $rate;
  312. }
  313. /*
  314. * 获取敏感词过滤设置信息
  315. */
  316. public function GetSensitiveData(){
  317. $sensitive = [];
  318. $data = Db::name('weapp')->where(['code'=>'Ask'])->getField('data');
  319. $dataArr = unserialize($data);
  320. !empty($dataArr['sensitive']) && $sensitive = $dataArr['sensitive'];
  321. if (!empty($sensitive['sensitive_data'])){
  322. $sensitive['sensitive_data'] = str_replace(",",",",$sensitive['sensitive_data']);
  323. $sensitive['sensitive_data'] = explode(",",$sensitive['sensitive_data']);
  324. }
  325. return $sensitive;
  326. }
  327. /*
  328. * 判断是否存在敏感词
  329. * @paramarray $list 定义敏感词一维数组
  330. * @paramstring $string 要过滤的内容
  331. * @returnstring $log 处理结果[敏感词个数,敏感词内容,替换后的字符串]
  332. */
  333. public function sensitive($list, $string){
  334. $count = 0; //违规词的个数
  335. $sensitiveWord = ''; //违规词
  336. $stringAfter = $string; //替换后的内容
  337. $pattern = "/" . implode("|", $list) . "/i"; //定义正则表达式
  338. if (preg_match_all($pattern, $string, $matches)) { //匹配到了结果
  339. $patternList = $matches[0]; //匹配到的数组
  340. $count = count($patternList);
  341. $sensitiveWord = implode(',', $patternList); //敏感词数组转字符串
  342. $replaceArray = array_combine($patternList, array_fill(0, count($patternList), '**')); //把匹配到的数组进行合并,替换使用
  343. $stringAfter = strtr($string, $replaceArray); //结果替换
  344. }
  345. return [$count,$sensitiveWord,$stringAfter];
  346. }
  347. }