123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368 |
- <?php
- /**
- * 易优CMS
- * ============================================================================
- * 版权所有 2016-2028 海南赞赞网络科技有限公司,并保留所有权利。
- * 网站地址: http://www.eyoucms.com
- * ----------------------------------------------------------------------------
- * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
- * ============================================================================
- * Author: 陈风任 <491085389@qq.com>
- * Date: 2019-7-30
- */
-
- namespace app\home\logic;
-
- use think\Model;
- use think\Db;
- use app\home\model\Ask;
-
- /**
- * 逻辑定义
- * Class CatsLogic
- * @package plugins\Logic
- */
- class AskLogic extends Model
- {
- /**
- * 初始化操作
- */
- public function _initialize() {
- parent::_initialize();
- }
-
- // 查询条件处理
- public function GetAskWhere($param = [], $parent_id = null)
- {
- // 查询条件
- $where = [
- // 0未解决,1已解决
- 'a.status' => ['IN',[0, 1]],
- // 问题是否审核,1是,0否
- 'a.is_review' => 1,
- 'a.is_del' => 0,
- 'SearchName' => null,
- ];
-
- // 创始人可以看到所有数据,包括未审核问题
- if (0 === $parent_id) unset($where['a.is_review']);
-
- // 查询指定栏目分类下的问题
- if (!empty($param['type_id'])) $where['a.type_id'] = $param['type_id'];
-
- // 不为空则表示查询--悬赏--待回答问题
- if (!empty($param['is_recom']) && 3 == intval($param['is_recom'])) $where['a.money'] = ['>',0];
-
- // 不为空则表示查询待回答问题
- if (!empty($param['is_recom']) && 2 == intval($param['is_recom'])) $where['a.replies'] = 0;
-
- // 推荐问题
- if (!empty($param['is_recom']) && 1 == intval($param['is_recom'])) $where['a.is_recom'] = 1;
-
- // 搜索问题
- if (!empty($param['search_name'])) {
- $where['a.ask_title'] = ['LIKE', "%{$param['search_name']}%"];
- $where['SearchName'] = $param['search_name'];
- }
-
- return $where;
- }
-
- // Url处理
- public function GetUrlData($param = [], $SpecifyUrl = null)
- {
- if (empty($param['ask_id'])) $param['ask_id'] = 0;
- $result = [];
- // 最新问题url
- $result['NewDateUrl'] = askurl('home/Ask/index');
- // 问题详情页url
- $result['AskDetailsUrl'] = askurl('home/Ask/details', ['ask_id'=>$param['ask_id']]);
- // 推荐问题url
- $result['RecomDateUrl'] = askurl('home/Ask/index', ['type_id'=>0, 'is_recom'=>1]);
- // 等待回答url
- $result['PendingAnswerUrl'] = askurl('home/Ask/index', ['type_id'=>0, 'is_recom'=>2]);
- // 悬赏问题列表url
- $result['RewardUrl'] = askurl('home/Ask/index', ['type_id'=>0, 'is_recom'=>3]);
- // 提交回答url
- $result['AddAnswerUrl'] = askurl('home/Ask/ajax_add_answer', ['ask_id'=>$param['ask_id'], '_ajax'=>1], true, false, 1, 1, 0);
- // 删除整个问题数据(包扣提问、回答、评论、回复)url
- $result['DelAskUrl'] = askurl('home/Ask/ajax_del_ask', ['ask_id'=>$param['ask_id'], '_ajax'=>1], true, false, 1, 1, 0);
- // 删除整个回答数据(包扣回答、评论、回复)url
- $result['DelAnswerUrl'] = askurl('home/Ask/ajax_del_answer', ['ask_id'=>$param['ask_id'], '_ajax'=>1], true, false, 1, 1, 0);
- // 删除回答url
- $result['DelCommentUrl'] = askurl('home/Ask/ajax_del_comment', ['ask_id'=>$param['ask_id'], '_ajax'=>1], true, false, 1, 1, 0);
- // 点赞回答url
- $result['ClickLikeUrl'] = askurl('home/Ask/ajax_click_like', ['_ajax'=>1], true, false, 1, 1, 0);
- // 发布问题url
- $result['AddAskUrl'] = askurl('home/Ask/add_ask');
- // 提交发布问题url
- $result['SubmitAddAsk'] = askurl('home/Ask/add_ask', ['_ajax'=>1], true, false, 1, 1, 0);
- // 编辑问题url
- $result['EditAskUrl'] = askurl('home/Ask/edit_ask', ['ask_id'=>$param['ask_id']]);
- // 提交编辑问题url
- $result['SubmitEditAsk'] = askurl('home/Ask/edit_ask', ['_ajax'=>1], true, false, 1, 1, 0);
- // 用户问题首页
- $result['UsersIndexUrl'] = askurl('home/Ask/ask_index');
- // 编辑回答url
- $result['EditAnswer'] = askurl('home/Ask/ajax_edit_answer');
- if ('ajax_edit_answer' == request()->action()) {
- $result['EditAnswer'] = askurl('home/Ask/ajax_edit_answer', ['_ajax'=>1], true, false, 1, 1, 0);
- }
- // 采纳最佳答案url
- $result['BestAnswerUrl'] = askurl('home/Ask/ajax_best_answer', ['ask_id'=>$param['ask_id'], '_ajax'=>1], true, false, 1, 1, 0);
- // 获取指定数量的评论数据(分页)
- $result['ShowCommentUrl'] = askurl('home/Ask/ajax_show_comment', ['ask_id'=>$param['ask_id'], '_ajax'=>1], true, false, 1, 1, 0);
- // 创始人审核评论URL(前台)
- $result['ReviewCommentUrl'] = askurl('home/Ask/ajax_review_comment', ['ask_id'=>$param['ask_id'], '_ajax'=>1], true, false, 1, 1, 0);
- // 创始人审核问题URL(前台)
- $result['ReviewAskUrl'] = askurl('home/Ask/ajax_review_ask', ['_ajax'=>1], true, false, 1, 1, 0);
- // 按点赞量排序url
- $result['AnswerLikeNum'] = askurl('home/Ask/details', ['ask_id' => $param['ask_id']], true, false, 1, 1, 0);
- // 等待回答url
- if (!empty($param['type_id'])) {
- $result['PendingAnswerUrl'] = askurl('home/Ask/index', ['type_id'=>$param['type_id'], 'is_recom'=>2]);
- }
- if (!empty($SpecifyUrl)) {
- if (!empty($result[$SpecifyUrl])) {
- return $result[$SpecifyUrl];
- }else{
- return $result['NewDateUrl'];
- }
- }else{
- return $result;
- }
-
- }
-
- // 关键词标红
- public function GetRedKeyWord($SearchName, $ask_title)
- {
- $ks = explode(' ',$SearchName);
- foreach($ks as $k){
- $k = trim($k);
- if($k == '') continue;
- if(ord($k[0]) > 0x80 && strlen($k) < 1) continue;
- $ask_title = str_replace($k, "<font color='red'>$k</font>", $ask_title);
- }
- return $ask_title;
- }
-
- // 内容转义处理
- public function ContentDealWith($param = null)
- {
- if (!empty($param['content'])) {
- $content = $param['content'];
- }else if(!empty($param['ask_content'])){
- $content = $param['ask_content'];
- }else{
- return false;
- }
-
- // 斜杆转义
- $content = addslashes($content);
- // 过滤内容的style属性
- $content = preg_replace('/style(\s*)=(\s*)[\'|\"](.*?)[\'|\"]/i', '', $content);
- // 过滤内容的class属性
- $content = preg_replace('/class(\s*)=(\s*)[\'|\"](.*?)[\'|\"]/i', '', $content);
-
- return $content;
- }
-
- // 栏目分类格式化输出
- public function GetTypeHtmlCode($PidData = [], $TidData = [], $type_id = null)
- {
- // 下拉框拼装
- $HtmlCode = '<select name="ask_type_id" id="ask_type_id" class="select-inner">';
- $HtmlCode .= '<option value="0">请选择分类</option>';
- foreach ($PidData as $P_key => $PidValue) {
- /*是否默认选中*/
- $selected = '';
- if ($type_id == $PidValue['type_id']) $selected = 'selected';
- /* END */
-
- /*一级下拉框*/
- $HtmlCode .= '<option value="'.$PidValue['type_id'].'" '.$selected.'>'.$PidValue['type_name'].'</option>';
- /* END */
-
- foreach ($TidData as $T_key => $TidValue) {
- if ($TidValue['parent_id'] == $PidValue['type_id']) {
- /*是否默认选中*/
- $selected = '';
- if ($type_id == $TidValue['type_id']) $selected = 'selected';
- /* END */
-
- /*二级下拉框*/
- $HtmlCode .= '<option value="'.$TidValue['type_id'].'" '.$selected.'> '.$TidValue['type_name'].'</option>';
- /* END */
- }
- }
- }
- $HtmlCode .= '</select>';
- return $HtmlCode;
- }
-
- // 拼装html代码
- public function GetReplyHtml($data = [])
- {
- $ReplyHtml = '';
- // 如果是需要审核的评论则返回空
- if (empty($data['is_review'])) return $ReplyHtml;
-
- /*拼装html代码*/
- // 友好显示时间
- $data['add_time'] = friend_date($data['add_time']);
- // 处理内容格式
- $data['content'] = htmlspecialchars_decode($data['content']);
- if (!empty($data['at_users_id'])) {
- $data['content'] = '回复 @'.$data['at_usersname'].': '.$data['content'];
- }
- // 删除评论回答URL
- $DelCommentUrl = $this->GetUrlData($data, 'DelCommentUrl');
- // 提交评论回复URL
- $AddAnswerUrl = $this->GetUrlData($data, 'AddAnswerUrl');
- // 提交点赞URL
- $ClickLikeUrl = $this->GetUrlData($data, 'ClickLikeUrl');
-
- // 拼装html
- $ReplyHtml = <<<EOF
- <div class="ask-comment-item" id="reply_comment_div_{$data['answer_id']}">
- <div class="user-info">
- <a class="user-box" href="javascript:void(0);">
- <img src="{$data['head_pic']}">
- <span class="name">{$data['username']}</span>
- </a>
- <span class="time">{$data['add_time']}</span>
- </div>
- <div class="txt-con mt10">{$data['content']}</div>
- <div class="tool mt10">
- <div class="tool-l">
- <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>
- <span class="btn btn-reply" id="show_reply_frame_{$data['answer_id']}" onclick="ShowReplyFrame(this, '{$data['answer_id']}');">回复</span>
- </div>
- <div class="tool-r">
- <a href="javascript:void(0);" data-url="{$DelCommentUrl}" onclick="DataDel(this, '{$data['answer_id']}', 3, '{$data['answer_pid']}');" style="cursor: pointer; color:red;">删除</a>
- </div>
- </div>
- <form id="reply_comment_form_{$data['answer_id']}">
- <input type="hidden" name="answer_id" value="{$data['answer_pid']}">
- <input type="hidden" name="type_id" value="{$data['type_id']}">
- <input type="hidden" name="at_users_id" value="{$data['users_id']}">
- <input type="hidden" name="at_answer_id" value="{$data['answer_id']}">
- <div class="reply-form" id="reply_comment_{$data['answer_id']}">
- <input type="text" name="content" id="reply_comment_input_{$data['answer_id']}" placeholder="回复用户 chenfy ...">
- <span class="btn-comment" data-url="{$AddAnswerUrl}" onclick="SubmitReplyData(this, '{$data['answer_id']}');">回复</span>
- </div>
- </form>
- </div>
- EOF;
- // 返回html
- $ReturnHtml = ['review' => false, 'answer_pid' => $data['answer_pid'], 'htmlcode' => $ReplyHtml];
- return $ReturnHtml;
- }
-
- // 获取指定条数的评论(分页)
- public function ForeachReplyHtml($data = [], $parent_id = null, $comment_type = 0, $users_id = 0)
- {
- $ReplyHtml = '';
- foreach ($data as $key => $value) {
- // 如果是需要审核的评论则返回空
- $review = '';
- if (empty($value['is_review']) && isset($parent_id) && 0 == $parent_id) {
- // 创始人审核评论URL(前台)
- $ReviewCommentUrl = $this->GetUrlData($value, 'ReviewCommentUrl');
- $review = <<<EOF
- <a href="javascript:void(0);" data-url="{$ReviewCommentUrl}" onclick="Review(this, '{$value['answer_id']}', '{$comment_type}');" style="color: red;" title="该回答未审核,可点击审核,仅创始人可操作">审核</a>
- EOF;
- } else if (empty($value['is_review'])) {
- // 其他人查询数据,去除未审核评论,跳过这条数据拼装
- unset($value); continue;
- }
-
- // 是否允许删除
- $del_comment = '';
- if ((isset($parent_id) && 0 == $parent_id) || ($users_id == $value['users_id'])) {
- // 删除评论回答URL
- $DelCommentUrl = $this->GetUrlData($value, 'DelCommentUrl');
- $del_comment = <<<EOF
- <a href="javascript:void(0);" data-url="{$DelCommentUrl}" onclick="DataDel(this, '{$value['answer_id']}', 3, '{$value['answer_pid']}');" style="cursor: pointer; color:red;">删除</a>
- EOF;
- }
-
- /*拼装html代码*/
- if (!empty($value['at_users_id'])) {
- $value['content'] = '回复 @'.$value['at_usersname'].': '.$value['content'];
- }
-
- // 提交评论回复URL
- $AddAnswerUrl = $this->GetUrlData($value, 'AddAnswerUrl');
- // 提交点赞URL
- $ClickLikeUrl = $this->GetUrlData($value, 'ClickLikeUrl');
- // 拼装html
- $ReplyHtml .= <<<EOF
- <div class="ask-comment-item" id="reply_comment_div_{$value['answer_id']}">
- <div class="user-info">
- <a class="user-box" href="javascript:void(0);">
- <img src="{$value['head_pic']}">
- <span class="name">{$value['username']}</span>
- </a>
- <span class="time">{$value['add_time']}</span>
- </div>
- <div class="txt-con mt10">{$value['content']}</div>
- <div class="tool mt10">
- <div class="tool-l">
- <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>
- <span class="btn btn-reply" id="show_reply_frame_{$value['answer_id']}" onclick="ShowReplyFrame(this, '{$value['answer_id']}');">回复</span>
- </div>
- <div class="tool-r">
- {$review}
- {$del_comment}
- </div>
- </div>
- <form id="reply_comment_form_{$value['answer_id']}">
- <input type="hidden" name="answer_id" value="{$value['answer_pid']}">
- <input type="hidden" name="type_id" value="{$value['type_id']}">
- <input type="hidden" name="at_users_id" value="{$value['users_id']}">
- <input type="hidden" name="at_answer_id" value="{$value['answer_id']}">
- <div class="reply-form" id="reply_comment_{$value['answer_id']}">
- <input type="text" name="content" id="reply_comment_input_{$value['answer_id']}" placeholder="回复用户 chenfy ...">
- <span class="btn-comment" data-url="{$AddAnswerUrl}" onclick="SubmitReplyData(this, '{$value['answer_id']}');">回复</span>
- </div>
- </form>
- </div>
- EOF;
- }
-
- // 返回html
- $ReturnHtml = ['review' => false, 'htmlcode' => $ReplyHtml];
- return $ReturnHtml;
- }
-
- /**
- * 获取SEO信息
- * @param string $inc_type [description]
- */
- public function GetSeoData($type_id = 0)
- {
- $inc_type = !empty($type_id) ? 'lists' : 'index';
-
- $seoInfo = [
- 'seo_title' => '问答中心',
- 'seo_keywords' => '',
- 'seo_description' => '',
- ];
-
- $arctypeInfo = Db::name('arctype')->field('typename,seo_title,seo_keywords,seo_description')->where(['current_channel'=>51, 'lang'=>get_home_lang()])->order('id desc')->find();
- if ('index' == $inc_type) {
- $seoInfo['seo_title'] = !empty($arctypeInfo['seo_title']) ? $arctypeInfo['seo_title'] : $arctypeInfo['typename'];
- $seoInfo['seo_keywords'] = !empty($arctypeInfo['seo_keywords']) ? $arctypeInfo['seo_keywords'] : '';
- $seoInfo['seo_description'] = !empty($arctypeInfo['seo_description']) ? $arctypeInfo['seo_description'] : '';
- } else if ('lists' == $inc_type) {
- $result = Db::name('ask_type')->field('*')->where(['type_id'=>$type_id])->find();
- $seoInfo['seo_title'] = !empty($result['seo_title']) ? $result['seo_title'] : $result['type_name'] . ' - ' . $arctypeInfo['typename'];
- $seoInfo['seo_keywords'] = !empty($result['seo_keywords']) ? $result['seo_keywords'] : '';
- $seoInfo['seo_description'] = !empty($result['seo_description']) ? $result['seo_description'] : '';
- }
-
- return $seoInfo;
- }
- }
|