Açıklama Yok
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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368
  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\home\logic;
  14. use think\Model;
  15. use think\Db;
  16. use app\home\model\Ask;
  17. /**
  18. * 逻辑定义
  19. * Class CatsLogic
  20. * @package plugins\Logic
  21. */
  22. class AskLogic extends Model
  23. {
  24. /**
  25. * 初始化操作
  26. */
  27. public function _initialize() {
  28. parent::_initialize();
  29. }
  30. // 查询条件处理
  31. public function GetAskWhere($param = [], $parent_id = null)
  32. {
  33. // 查询条件
  34. $where = [
  35. // 0未解决,1已解决
  36. 'a.status' => ['IN',[0, 1]],
  37. // 问题是否审核,1是,0否
  38. 'a.is_review' => 1,
  39. 'a.is_del' => 0,
  40. 'SearchName' => null,
  41. ];
  42. // 创始人可以看到所有数据,包括未审核问题
  43. if (0 === $parent_id) unset($where['a.is_review']);
  44. // 查询指定栏目分类下的问题
  45. if (!empty($param['type_id'])) $where['a.type_id'] = $param['type_id'];
  46. // 不为空则表示查询--悬赏--待回答问题
  47. if (!empty($param['is_recom']) && 3 == intval($param['is_recom'])) $where['a.money'] = ['>',0];
  48. // 不为空则表示查询待回答问题
  49. if (!empty($param['is_recom']) && 2 == intval($param['is_recom'])) $where['a.replies'] = 0;
  50. // 推荐问题
  51. if (!empty($param['is_recom']) && 1 == intval($param['is_recom'])) $where['a.is_recom'] = 1;
  52. // 搜索问题
  53. if (!empty($param['search_name'])) {
  54. $where['a.ask_title'] = ['LIKE', "%{$param['search_name']}%"];
  55. $where['SearchName'] = $param['search_name'];
  56. }
  57. return $where;
  58. }
  59. // Url处理
  60. public function GetUrlData($param = [], $SpecifyUrl = null)
  61. {
  62. if (empty($param['ask_id'])) $param['ask_id'] = 0;
  63. $result = [];
  64. // 最新问题url
  65. $result['NewDateUrl'] = askurl('home/Ask/index');
  66. // 问题详情页url
  67. $result['AskDetailsUrl'] = askurl('home/Ask/details', ['ask_id'=>$param['ask_id']]);
  68. // 推荐问题url
  69. $result['RecomDateUrl'] = askurl('home/Ask/index', ['type_id'=>0, 'is_recom'=>1]);
  70. // 等待回答url
  71. $result['PendingAnswerUrl'] = askurl('home/Ask/index', ['type_id'=>0, 'is_recom'=>2]);
  72. // 悬赏问题列表url
  73. $result['RewardUrl'] = askurl('home/Ask/index', ['type_id'=>0, 'is_recom'=>3]);
  74. // 提交回答url
  75. $result['AddAnswerUrl'] = askurl('home/Ask/ajax_add_answer', ['ask_id'=>$param['ask_id'], '_ajax'=>1], true, false, 1, 1, 0);
  76. // 删除整个问题数据(包扣提问、回答、评论、回复)url
  77. $result['DelAskUrl'] = askurl('home/Ask/ajax_del_ask', ['ask_id'=>$param['ask_id'], '_ajax'=>1], true, false, 1, 1, 0);
  78. // 删除整个回答数据(包扣回答、评论、回复)url
  79. $result['DelAnswerUrl'] = askurl('home/Ask/ajax_del_answer', ['ask_id'=>$param['ask_id'], '_ajax'=>1], true, false, 1, 1, 0);
  80. // 删除回答url
  81. $result['DelCommentUrl'] = askurl('home/Ask/ajax_del_comment', ['ask_id'=>$param['ask_id'], '_ajax'=>1], true, false, 1, 1, 0);
  82. // 点赞回答url
  83. $result['ClickLikeUrl'] = askurl('home/Ask/ajax_click_like', ['_ajax'=>1], true, false, 1, 1, 0);
  84. // 发布问题url
  85. $result['AddAskUrl'] = askurl('home/Ask/add_ask');
  86. // 提交发布问题url
  87. $result['SubmitAddAsk'] = askurl('home/Ask/add_ask', ['_ajax'=>1], true, false, 1, 1, 0);
  88. // 编辑问题url
  89. $result['EditAskUrl'] = askurl('home/Ask/edit_ask', ['ask_id'=>$param['ask_id']]);
  90. // 提交编辑问题url
  91. $result['SubmitEditAsk'] = askurl('home/Ask/edit_ask', ['_ajax'=>1], true, false, 1, 1, 0);
  92. // 用户问题首页
  93. $result['UsersIndexUrl'] = askurl('home/Ask/ask_index');
  94. // 编辑回答url
  95. $result['EditAnswer'] = askurl('home/Ask/ajax_edit_answer');
  96. if ('ajax_edit_answer' == request()->action()) {
  97. $result['EditAnswer'] = askurl('home/Ask/ajax_edit_answer', ['_ajax'=>1], true, false, 1, 1, 0);
  98. }
  99. // 采纳最佳答案url
  100. $result['BestAnswerUrl'] = askurl('home/Ask/ajax_best_answer', ['ask_id'=>$param['ask_id'], '_ajax'=>1], true, false, 1, 1, 0);
  101. // 获取指定数量的评论数据(分页)
  102. $result['ShowCommentUrl'] = askurl('home/Ask/ajax_show_comment', ['ask_id'=>$param['ask_id'], '_ajax'=>1], true, false, 1, 1, 0);
  103. // 创始人审核评论URL(前台)
  104. $result['ReviewCommentUrl'] = askurl('home/Ask/ajax_review_comment', ['ask_id'=>$param['ask_id'], '_ajax'=>1], true, false, 1, 1, 0);
  105. // 创始人审核问题URL(前台)
  106. $result['ReviewAskUrl'] = askurl('home/Ask/ajax_review_ask', ['_ajax'=>1], true, false, 1, 1, 0);
  107. // 按点赞量排序url
  108. $result['AnswerLikeNum'] = askurl('home/Ask/details', ['ask_id' => $param['ask_id']], true, false, 1, 1, 0);
  109. // 等待回答url
  110. if (!empty($param['type_id'])) {
  111. $result['PendingAnswerUrl'] = askurl('home/Ask/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 = [], $TidData = [], $type_id = null)
  155. {
  156. // 下拉框拼装
  157. $HtmlCode = '<select name="ask_type_id" id="ask_type_id" class="select-inner">';
  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 = [])
  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. $DelCommentUrl = $this->GetUrlData($data, 'DelCommentUrl');
  198. // 提交评论回复URL
  199. $AddAnswerUrl = $this->GetUrlData($data, 'AddAnswerUrl');
  200. // 提交点赞URL
  201. $ClickLikeUrl = $this->GetUrlData($data, 'ClickLikeUrl');
  202. // 拼装html
  203. $ReplyHtml = <<<EOF
  204. <div class="ask-comment-item" id="reply_comment_div_{$data['answer_id']}">
  205. <div class="user-info">
  206. <a class="user-box" href="javascript:void(0);">
  207. <img src="{$data['head_pic']}">
  208. <span class="name">{$data['username']}</span>
  209. </a>
  210. <span class="time">{$data['add_time']}</span>
  211. </div>
  212. <div class="txt-con mt10">{$data['content']}</div>
  213. <div class="tool mt10">
  214. <div class="tool-l">
  215. <span class="btn zan" data-url="{$ClickLikeUrl}" data-is_like='' onclick="ClickLike(this, '{$data['ask_id']}', '{$data['answer_id']}', 3);"><i class="fa fa-thumbs-o-up" aria-hidden="true"></i>点赞 <em id="ReplyLikeNum_{$data['answer_id']}">0</em></span>
  216. <span class="btn btn-reply" id="show_reply_frame_{$data['answer_id']}" onclick="ShowReplyFrame(this, '{$data['answer_id']}');">回复</span>
  217. </div>
  218. <div class="tool-r">
  219. <a href="javascript:void(0);" data-url="{$DelCommentUrl}" onclick="DataDel(this, '{$data['answer_id']}', 3, '{$data['answer_pid']}');" style="cursor: pointer; color:red;">删除</a>
  220. </div>
  221. </div>
  222. <form id="reply_comment_form_{$data['answer_id']}">
  223. <input type="hidden" name="answer_id" value="{$data['answer_pid']}">
  224. <input type="hidden" name="type_id" value="{$data['type_id']}">
  225. <input type="hidden" name="at_users_id" value="{$data['users_id']}">
  226. <input type="hidden" name="at_answer_id" value="{$data['answer_id']}">
  227. <div class="reply-form" id="reply_comment_{$data['answer_id']}">
  228. <input type="text" name="content" id="reply_comment_input_{$data['answer_id']}" placeholder="回复用户 chenfy ...">
  229. <span class="btn-comment" data-url="{$AddAnswerUrl}" onclick="SubmitReplyData(this, '{$data['answer_id']}');">回复</span>
  230. </div>
  231. </form>
  232. </div>
  233. EOF;
  234. // 返回html
  235. $ReturnHtml = ['review' => false, 'answer_pid' => $data['answer_pid'], 'htmlcode' => $ReplyHtml];
  236. return $ReturnHtml;
  237. }
  238. // 获取指定条数的评论(分页)
  239. public function ForeachReplyHtml($data = [], $parent_id = null, $comment_type = 0, $users_id = 0)
  240. {
  241. $ReplyHtml = '';
  242. foreach ($data as $key => $value) {
  243. // 如果是需要审核的评论则返回空
  244. $review = '';
  245. if (empty($value['is_review']) && isset($parent_id) && 0 == $parent_id) {
  246. // 创始人审核评论URL(前台)
  247. $ReviewCommentUrl = $this->GetUrlData($value, 'ReviewCommentUrl');
  248. $review = <<<EOF
  249. <a href="javascript:void(0);" data-url="{$ReviewCommentUrl}" onclick="Review(this, '{$value['answer_id']}', '{$comment_type}');" style="color: red;" title="该回答未审核,可点击审核,仅创始人可操作">审核</a>
  250. EOF;
  251. } else if (empty($value['is_review'])) {
  252. // 其他人查询数据,去除未审核评论,跳过这条数据拼装
  253. unset($value); continue;
  254. }
  255. // 是否允许删除
  256. $del_comment = '';
  257. if ((isset($parent_id) && 0 == $parent_id) || ($users_id == $value['users_id'])) {
  258. // 删除评论回答URL
  259. $DelCommentUrl = $this->GetUrlData($value, 'DelCommentUrl');
  260. $del_comment = <<<EOF
  261. <a href="javascript:void(0);" data-url="{$DelCommentUrl}" onclick="DataDel(this, '{$value['answer_id']}', 3, '{$value['answer_pid']}');" style="cursor: pointer; color:red;">删除</a>
  262. EOF;
  263. }
  264. /*拼装html代码*/
  265. if (!empty($value['at_users_id'])) {
  266. $value['content'] = '回复 @'.$value['at_usersname'].':&nbsp;'.$value['content'];
  267. }
  268. // 提交评论回复URL
  269. $AddAnswerUrl = $this->GetUrlData($value, 'AddAnswerUrl');
  270. // 提交点赞URL
  271. $ClickLikeUrl = $this->GetUrlData($value, 'ClickLikeUrl');
  272. // 拼装html
  273. $ReplyHtml .= <<<EOF
  274. <div class="ask-comment-item" id="reply_comment_div_{$value['answer_id']}">
  275. <div class="user-info">
  276. <a class="user-box" href="javascript:void(0);">
  277. <img src="{$value['head_pic']}">
  278. <span class="name">{$value['username']}</span>
  279. </a>
  280. <span class="time">{$value['add_time']}</span>
  281. </div>
  282. <div class="txt-con mt10">{$value['content']}</div>
  283. <div class="tool mt10">
  284. <div class="tool-l">
  285. <span class="btn zan" data-url="{$ClickLikeUrl}" data-is_like='' onclick="ClickLike(this, '{$value['ask_id']}', '{$value['answer_id']}', 3);"><i class="fa fa-thumbs-o-up" aria-hidden="true"></i>点赞 <em id="ReplyLikeNum_{$value['answer_id']}">0</em></span>
  286. <span class="btn btn-reply" id="show_reply_frame_{$value['answer_id']}" onclick="ShowReplyFrame(this, '{$value['answer_id']}');">回复</span>
  287. </div>
  288. <div class="tool-r">
  289. {$review}
  290. {$del_comment}
  291. </div>
  292. </div>
  293. <form id="reply_comment_form_{$value['answer_id']}">
  294. <input type="hidden" name="answer_id" value="{$value['answer_pid']}">
  295. <input type="hidden" name="type_id" value="{$value['type_id']}">
  296. <input type="hidden" name="at_users_id" value="{$value['users_id']}">
  297. <input type="hidden" name="at_answer_id" value="{$value['answer_id']}">
  298. <div class="reply-form" id="reply_comment_{$value['answer_id']}">
  299. <input type="text" name="content" id="reply_comment_input_{$value['answer_id']}" placeholder="回复用户 chenfy ...">
  300. <span class="btn-comment" data-url="{$AddAnswerUrl}" onclick="SubmitReplyData(this, '{$value['answer_id']}');">回复</span>
  301. </div>
  302. </form>
  303. </div>
  304. EOF;
  305. }
  306. // 返回html
  307. $ReturnHtml = ['review' => false, 'htmlcode' => $ReplyHtml];
  308. return $ReturnHtml;
  309. }
  310. /**
  311. * 获取SEO信息
  312. * @param string $inc_type [description]
  313. */
  314. public function GetSeoData($type_id = 0)
  315. {
  316. $inc_type = !empty($type_id) ? 'lists' : 'index';
  317. $seoInfo = [
  318. 'seo_title' => '问答中心',
  319. 'seo_keywords' => '',
  320. 'seo_description' => '',
  321. ];
  322. $arctypeInfo = Db::name('arctype')->field('typename,seo_title,seo_keywords,seo_description')->where(['current_channel'=>51, 'lang'=>get_home_lang()])->order('id desc')->find();
  323. if ('index' == $inc_type) {
  324. $seoInfo['seo_title'] = !empty($arctypeInfo['seo_title']) ? $arctypeInfo['seo_title'] : $arctypeInfo['typename'];
  325. $seoInfo['seo_keywords'] = !empty($arctypeInfo['seo_keywords']) ? $arctypeInfo['seo_keywords'] : '';
  326. $seoInfo['seo_description'] = !empty($arctypeInfo['seo_description']) ? $arctypeInfo['seo_description'] : '';
  327. } else if ('lists' == $inc_type) {
  328. $result = Db::name('ask_type')->field('*')->where(['type_id'=>$type_id])->find();
  329. $seoInfo['seo_title'] = !empty($result['seo_title']) ? $result['seo_title'] : $result['type_name'] . ' - ' . $arctypeInfo['typename'];
  330. $seoInfo['seo_keywords'] = !empty($result['seo_keywords']) ? $result['seo_keywords'] : '';
  331. $seoInfo['seo_description'] = !empty($result['seo_description']) ? $result['seo_description'] : '';
  332. }
  333. return $seoInfo;
  334. }
  335. }