Nav apraksta
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

Ask.php 26KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618
  1. <?php
  2. /**
  3. * 易优CMS
  4. * ============================================================================
  5. * 版权所有 2016-2028 海口快推科技有限公司,并保留所有权利。
  6. * 网站地址: http://www.eyoucms.com
  7. * ----------------------------------------------------------------------------
  8. * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
  9. * ============================================================================
  10. * Author: 小虎哥 <1105415366@qq.com>
  11. * Date: 2018-4-3
  12. */
  13. namespace app\api\model\v1;
  14. use think\Db;
  15. use think\Cache;
  16. use app\api\logic\v1\AskLogic;
  17. load_trait('controller/Jump');
  18. class Ask extends Base
  19. {
  20. use \traits\controller\Jump;
  21. public $weapp_ask_db;
  22. public $weapp_ask_answer_db;
  23. public $weapp_ask_answer_like_db;
  24. public $weapp_ask_users_level_db;
  25. public $weapp_ask_type_db;
  26. public $users = [];
  27. public $users_id = 0;
  28. public $AskLogic;
  29. //初始化
  30. protected function initialize()
  31. {
  32. // 需要调用`Model`的`initialize`方法
  33. parent::initialize();
  34. $this->weapp_ask_db = Db::name('weapp_ask');
  35. $this->weapp_ask_answer_db = Db::name('weapp_ask_answer');
  36. $this->weapp_ask_answer_like_db = Db::name('weapp_ask_answer_like');
  37. $this->weapp_ask_users_level_db = Db::name('weapp_ask_users_level');
  38. $this->weapp_ask_type_db = Db::name('weapp_ask_type');
  39. $this->AskLogic = new AskLogic;
  40. }
  41. //获取栏目
  42. public function getTypeList(){
  43. $TypeData = $this->weapp_ask_type_db->order('sort_order asc, type_id asc')->select();
  44. $TypeData = array_merge([["type_id"=>0,"type_name"=>"全部"]],$TypeData);
  45. return $TypeData;
  46. }
  47. public function getAskList()
  48. {
  49. $param = input('param.');
  50. $limit = !empty($param['limit']) ? $param['limit'] : 15;
  51. $page = !empty($param['page']) ? $param['page'] : 1;
  52. $field = !empty($param['field']) ? $param['field'] : "";
  53. // 查询条件
  54. $where = [
  55. 'a.status' => ['IN', [0, 1]],// 0未解决,1已解决
  56. // 问题是否审核,1是,0否
  57. 'a.is_review' => 1,
  58. ];
  59. //未回答
  60. if (1 == $param['replies']) {
  61. $where['a.replies'] = 0;
  62. }
  63. if (!empty($param['type_id'])) {
  64. $where['a.type_id'] = $param['type_id'];
  65. }
  66. // 返回参数
  67. $result = [];
  68. // 没有传入则默认查询这些字段
  69. if (empty($field)) {
  70. $field = 'a.*, b.username, b.nickname, b.head_pic, b.sex, b.level, b.scores, c.type_name';
  71. }
  72. $paginate = ['page' => $page];
  73. $pages = $this->weapp_ask_db->field($field)
  74. ->alias('a')
  75. ->join('users b', 'a.users_id = b.users_id', 'LEFT')
  76. ->join('__WEAPP_ASK_TYPE__ c', 'a.type_id = c.type_id', 'LEFT')
  77. ->where($where)
  78. ->order('a.is_top desc, a.add_time desc')
  79. ->paginate($limit, false, $paginate);
  80. $res = $pages->toArray();
  81. $askData = $res['data'];
  82. $ask_ids = get_arr_column($askData, 'ask_id');
  83. //问题回答人查询
  84. $RepliesData = $this->weapp_ask_answer_db->field('a.ask_id, a.users_id, b.head_pic, b.nickname, b.username, b.sex')
  85. ->alias('a')
  86. ->join('__USERS__ b', 'a.users_id = b.users_id', 'LEFT')
  87. ->where('ask_id', 'IN', $ask_ids)
  88. ->select();
  89. $RepliesDataNew = [];
  90. foreach ($RepliesData as $key => $value) {
  91. // 将二维数组以ask_id值作为键,并归类数组,效果同等group_same_key
  92. $RepliesDataNew[$value['ask_id']][] = $value;
  93. }
  94. foreach ($askData as $key => $value) {
  95. /*头像处理*/
  96. $value['head_pic'] = handle_subdir_pic(get_head_pic($value['head_pic'], false, $value['sex']));
  97. $askData[$key]['head_pic'] = get_absolute_url($value['head_pic'],'default',true);
  98. /* END */
  99. // 时间友好显示处理
  100. $askData[$key]['add_time'] = friend_date($value['add_time']);
  101. $content = htmlspecialchars_decode($value['content']);
  102. $askData[$key]['no_format_content'] = checkStrHtml($content);
  103. // $askData[$key]['no_format_content'] = @msubstr(checkStrHtml($value['content']), 0, config('global.arc_seo_description_length'), false);
  104. }
  105. $res['data'] = $askData;
  106. $typeList = $this->getTypeList();
  107. $res['typeList'] = $typeList;
  108. return $res;
  109. }
  110. //问题详情
  111. public function GetAskDetails($users = [])
  112. {
  113. $param = input('param.');
  114. $users_id = !empty($users['users_id']) ? intval($users['users_id']) : 0;
  115. $info = $this->weapp_ask_db
  116. ->field('a.*,b.username, b.nickname, b.head_pic, b.sex, b.level, b.scores, c.type_name')
  117. ->alias('a')
  118. ->join('__WEAPP_ASK_TYPE__ c', 'c.type_id = a.type_id', 'LEFT')
  119. ->join('__USERS__ b', 'a.users_id = b.users_id', 'LEFT')
  120. ->where('ask_id', $param['ask_id'])
  121. ->find();
  122. if (empty($info)) $this->error('浏览的问题不存在!');
  123. if (0 == $info['is_review'] && $info['users_id'] !== $users_id) $this->error('问题未审核通过,暂时不可浏览!');
  124. //如果是小程序端发布的,要看看有没有单独发布问题图片
  125. if (!empty($info['is_minipro'])) {
  126. $img_url = Db::name('weapp_ask_img')->where('ask_id', $param['ask_id'])->column('url');
  127. if (!empty($img_url)) {
  128. foreach ($img_url as $k => $v) {
  129. $img_url[$k] = get_absolute_url($v,"url",true);
  130. }
  131. $info['img_url'] = $img_url;
  132. }
  133. }
  134. // 头像处理
  135. $info['head_pic'] = get_absolute_url(get_head_pic($info['head_pic'], false, $info['sex']),'default',true);
  136. // 时间友好显示处理
  137. $info['add_time'] = friend_date($info['add_time']);
  138. // 处理格式
  139. $info['content'] = stripslashes($info['content']);
  140. $info['content'] = htmlspecialchars_decode(handle_subdir_pic($info['content'], 'html'));
  141. // seo信息
  142. $info['seo_title'] = $info['ask_title'] . ' - ' . $info['type_name'];
  143. $info['seo_keywords'] = $info['ask_title'];
  144. $info['seo_description'] = @msubstr(checkStrHtml($info['content']), 0, config('global.arc_seo_description_length'), false);
  145. $info['answer'] = $this->GetAskReplyData($param);
  146. return $info;
  147. }
  148. // 问题回答数据
  149. public function GetAskReplyData($param = array())
  150. {
  151. /*查询条件*/
  152. $bestanswer_id = $this->weapp_ask_db->where('ask_id', $param['ask_id'])->getField('bestanswer_id');
  153. $RepliesWhere = ['ask_id' => $param['ask_id'], 'is_review' => 1];
  154. $WhereOr = [];
  155. if (!empty($param['answer_id'])) {
  156. $RepliesWhere = ['answer_id' => $param['answer_id'], 'is_review' => 1];
  157. $WhereOr = ['answer_pid' => $param['answer_id']];
  158. }
  159. /*评论读取条数*/
  160. $firstRow = !empty($param['firstRow']) ? $param['firstRow'] : 0;
  161. $listRows = !empty($param['listRows']) ? $param['listRows'] : 5;
  162. $result['firstRow'] = $firstRow;
  163. $result['listRows'] = $listRows;
  164. /* END */
  165. /*排序*/
  166. // 按点赞量排序
  167. if (!empty($param['click_like'])) {
  168. $OrderBy = "a.click_like {$param['click_like']}, a.answer_id asc";
  169. $result['likeSortOrder'] = 'desc' == $param['click_like'] ? 'asc' : 'desc';
  170. } else if (!empty($param['new_answer'])) {
  171. $OrderBy = "a.answer_id {$param['new_answer']}";
  172. $result['newSortOrder'] = 'desc' == $param['new_answer'] ? 'asc' : 'desc';
  173. } else {
  174. $OrderBy = 'a.answer_id asc';
  175. }
  176. /* END */
  177. /*评论回答*/
  178. $RepliesData = $this->weapp_ask_answer_db->field('a.*, b.head_pic, b.nickname, b.username as u_username, b.sex,c.nickname as `at_usersname`')
  179. ->alias('a')
  180. ->join('__USERS__ b', 'a.users_id = b.users_id', 'LEFT')
  181. ->join('__USERS__ c', 'a.at_users_id = c.users_id', 'LEFT')
  182. ->order($OrderBy)
  183. ->where($RepliesWhere)
  184. ->WhereOr($WhereOr)
  185. ->select();
  186. if (empty($RepliesData)) return [];
  187. /* END */
  188. /*点赞数据*/
  189. $AnswerIds = get_arr_column($RepliesData, 'answer_id');
  190. $AnswerLikeData = $this->weapp_ask_answer_like_db->field('a.*, b.nickname, b.username')
  191. ->alias('a')
  192. ->join('__USERS__ b', 'a.users_id = b.users_id', 'LEFT')
  193. ->order('like_id desc')
  194. ->where('answer_id', 'IN', $AnswerIds)
  195. ->select();
  196. $AnswerLikeData = group_same_key($AnswerLikeData, 'answer_id');
  197. /* END */
  198. /*回答处理*/
  199. $PidData = $AnswerData = [];
  200. foreach ($RepliesData as $key => $value) {
  201. // 友好显示时间
  202. $value['add_time'] = friend_date($value['add_time']);
  203. // 处理格式
  204. $value['content'] = stripslashes($value['content']);
  205. $value['content'] = htmlspecialchars_decode(handle_subdir_pic($value['content'], 'html'));
  206. // 头像处理
  207. $value['head_pic'] = get_absolute_url(get_head_pic($value['head_pic'], false, $value['sex']),'default',true);
  208. if (!is_http_url($value['head_pic'])) $value['head_pic'] = get_absolute_url(handle_subdir_pic($value['head_pic'], 'img', true),'default',true);
  209. // 会员昵称
  210. $value['nickname'] = !empty($value['nickname']) ? $value['nickname'] : $value['u_username'];
  211. // 是否上一级回答
  212. if ($value['answer_pid'] == 0) {
  213. $PidData[] = $value;
  214. } else {
  215. $AnswerData[] = $value;
  216. }
  217. }
  218. /* END */
  219. /*一级回答*/
  220. foreach ($PidData as $key => $PidValue) {
  221. $result['AnswerData'][] = $PidValue;
  222. // 子回答
  223. $result['AnswerData'][$key]['AnswerSubData'] = [];
  224. // 点赞数据
  225. $result['AnswerData'][$key]['AnswerLike'] = [];
  226. /*所属子回答处理*/
  227. foreach ($AnswerData as $AnswerValue) {
  228. if ($AnswerValue['answer_pid'] == $PidValue['answer_id']) {
  229. array_push($result['AnswerData'][$key]['AnswerSubData'], $AnswerValue);
  230. }
  231. }
  232. /* END */
  233. /*读取指定数据*/
  234. // 以是否审核排序,审核的优先
  235. array_multisort(get_arr_column($result['AnswerData'][$key]['AnswerSubData'], 'is_review'), SORT_DESC, $result['AnswerData'][$key]['AnswerSubData']);
  236. // 读取指定条数
  237. $result['AnswerData'][$key]['AnswerSubData'] = array_slice($result['AnswerData'][$key]['AnswerSubData'], $firstRow, $listRows);
  238. /* END */
  239. $result['AnswerData'][$key]['AnswerLike']['LikeNum'] = null;
  240. $result['AnswerData'][$key]['AnswerLike']['LikeName'] = null;
  241. /*点赞处理*/
  242. foreach ($AnswerLikeData as $LikeKey => $LikeValue) {
  243. if ($PidValue['answer_id'] == $LikeKey) {
  244. // 点赞总数
  245. $LikeNum = count($LikeValue);
  246. $result['AnswerData'][$key]['AnswerLike']['LikeNum'] = $LikeNum;
  247. for ($i = 0; $i < $LikeNum; $i++) {
  248. // 获取前三个点赞人处理后退出本次for
  249. if ($i > 2) break;
  250. // 点赞人用户名\昵称
  251. $LikeName = $LikeValue[$i]['nickname'];
  252. // 在第二个数据前加入顿号,拼装a链接
  253. // if ($i != 0) {
  254. // $LikeName = ' 、<a href="' . diy_useridhomeurl($LikeValue[$i]['users_id']) . '" target="_blank">' . $LikeName . '</a>';
  255. // } else {
  256. // $LikeName = '<a href="' . diy_useridhomeurl($LikeValue[$i]['users_id']) . '" target="_blank">' . $LikeName . '</a>';
  257. // }
  258. $result['AnswerData'][$key]['AnswerLike']['LikeName'] .= $LikeName;
  259. }
  260. }
  261. }
  262. /* END */
  263. }
  264. /* END */
  265. /*最佳答案数据*/
  266. foreach ($result['AnswerData'] as $key => $value) {
  267. if ($bestanswer_id == $value['answer_id']) {
  268. $result['BestAnswer'][$key] = $value;
  269. unset($result['AnswerData'][$key]);
  270. }
  271. }
  272. $result['AnswerData'] = array_merge($result['AnswerData']);
  273. /* NED */
  274. // 统计回答数
  275. $result['AnswerCount'] = count($RepliesData);
  276. return $result;
  277. }
  278. /**
  279. * 清除页面缓存
  280. * @return [type] [description]
  281. */
  282. private function clear_htmlcache()
  283. {
  284. delFile(HTML_PATH . 'plugins/ask/');
  285. }
  286. // 点赞
  287. public function askLike($users = [])
  288. {
  289. if (IS_AJAX_POST) {
  290. $ask_id = input('param.ask_id/d');
  291. $answer_id = input('param.answer_id/d');
  292. if (empty($answer_id) || empty($ask_id)) $this->error('请选择点赞信息!');
  293. $Where = [
  294. 'ask_id' => $ask_id,
  295. 'users_id' => $users['users_id'],
  296. 'answer_id' => $answer_id,
  297. ];
  298. $IsCount = $this->weapp_ask_answer_like_db->where($Where)->count();
  299. if (!empty($IsCount)) {
  300. $this->error('您已赞过!');
  301. }else{
  302. // 添加新的点赞记录
  303. $AddData = [
  304. 'click_like' => 1,
  305. 'users_ip' => clientIP(),
  306. 'add_time' => getTime(),
  307. 'update_time' => getTime(),
  308. ];
  309. $AddData = array_merge($Where, $AddData);
  310. $ResultId = $this->weapp_ask_answer_like_db->add($AddData);
  311. if (!empty($ResultId)) {
  312. unset($Where['users_id']);
  313. // 点赞数
  314. $LikeCount = $this->weapp_ask_answer_like_db->where($Where)->count();
  315. // 同步点赞次数到答案表
  316. $UpdataNew = [
  317. 'click_like' => $LikeCount,
  318. 'update_time' => getTime(),
  319. ];
  320. $this->weapp_ask_answer_db->where($Where)->update($UpdataNew);
  321. $this->success('点赞成功!', null, $LikeCount);
  322. }
  323. }
  324. }
  325. $this->error('请求失败,请刷新重试!');
  326. }
  327. //添加回答
  328. public function addAnswer($users = [])
  329. {
  330. if (IS_POST) {
  331. $param = input('param.');
  332. $this->users = $users;
  333. $this->users_id = $users['users_id'];
  334. // 是否登录、是否允许发布问题、数据判断及处理,返回内容数据
  335. $content = $this->AnswerDealWith($param, true);
  336. /*添加数据*/
  337. $AddAnswer = [
  338. 'ask_id' => $param['ask_id'],
  339. // 如果这个会员组属于需要审核的,则追加。 默认1为已审核
  340. 'is_review' => 1 == $this->users['ask_is_review'] ? 0 : 1,
  341. 'type_id' => $param['type_id'],
  342. 'users_id' => $this->users_id,
  343. 'username' => $this->users['username'],
  344. 'users_ip' => clientIP(),
  345. 'content' => $content,
  346. // 若是回答答案则追加数据
  347. 'answer_pid' => !empty($param['answer_id']) ? $param['answer_id'] : 0,
  348. // 用户则追加数据
  349. 'at_users_id' => !empty($param['at_users_id']) ? $param['at_users_id'] : 0,
  350. 'at_answer_id'=> !empty($param['at_answer_id']) ? $param['at_answer_id'] : 0,
  351. 'add_time' => getTime(),
  352. 'update_time' => getTime(),
  353. ];
  354. $ResultId = $this->weapp_ask_answer_db->add($AddAnswer);
  355. /* END */
  356. if (!empty($ResultId)) {
  357. // 增加问题回复数
  358. $this->UpdateAskReplies($param['ask_id'], true);
  359. if (1 == $this->users['ask_is_review']) {
  360. $this->success('回答成功,但你的回答需要管理员审核!', null, ['review' => true]);
  361. }else{
  362. $AddAnswer['answer_id'] = $ResultId;
  363. $AddAnswer['head_pic'] = $this->users['head_pic'];
  364. $AddAnswer['at_usersname'] = '';
  365. if (!empty($AddAnswer['at_users_id'])) {
  366. $FindData = Db::name('users')->field('nickname, username')->where('users_id', $AddAnswer['at_users_id'])->find();
  367. $AddAnswer['at_usersname'] = empty($FindData['nickname']) ? $FindData['username'] : $FindData['nickname'];
  368. }
  369. $ResultData = $this->AskLogic->GetReplyHtml($AddAnswer);
  370. $this->success('回答成功!', null, $ResultData);
  371. }
  372. }else{
  373. $this->error('提交信息有误,请刷新重试!');
  374. }
  375. }
  376. $this->error('请求失败,请刷新重试!');
  377. }
  378. // 评论回复数据处理,返回评论回复内容数据
  379. private function AnswerDealWith($param = [], $is_add = true)
  380. {
  381. // 是否允许发布、编辑
  382. $this->IsAnswer($is_add);
  383. //限制提交频率
  384. $rate = $this->AskLogic->GetRateData();
  385. if (!empty($rate['is_open']) && !empty($rate['duration'])){
  386. $map = [
  387. 'users_id' => $this->users_id,
  388. 'update_time' => array('gt', getTime() - $rate['duration']),
  389. ];
  390. $have = $this->weapp_ask_answer_db->where($map)->find();
  391. if($have){
  392. $this->error('您提交得太频繁了,请歇会再发布!');
  393. }
  394. }
  395. if (!empty($is_add)) { /*数据判断*/
  396. //统计回答次数
  397. $count = Db::name('weapp_ask_answer')->where(['users_id'=>$this->users_id])->whereTime('add_time','today')->count();
  398. if (!empty($this->users['answer_count']) && $count >= $this->users['answer_count']) {
  399. $this->error("【{$this->users['level_name']}】每天最多回答{$this->users['answer_count']}次");
  400. }
  401. // 添加时执行判断
  402. if (empty($param) || empty($param['ask_id']) ) $this->error('提交信息有误,请刷新重试!');
  403. }else{
  404. // 编辑时执行判断
  405. if (empty($is_add) && empty($param['ask_id'])) $this->error('请确认编辑问题!');
  406. }
  407. $content = '';
  408. $content = $this->AskLogic->ContentDealWith($param);
  409. if (empty($content)) $this->error('请写下你的回答!');
  410. /* END */
  411. $content = $this->check_sensitive($content);
  412. return $content;
  413. }
  414. //敏感词过滤
  415. private function check_sensitive($content){
  416. $sensitive = $this->AskLogic->GetSensitiveData();
  417. if (!empty($sensitive['sensitive_switch']) && !empty($sensitive['sensitive_data'])){
  418. list($count,$sensitiveWord,$content) = $this->AskLogic->sensitive($sensitive['sensitive_data'],$content);
  419. if ($count > 0 && !empty($sensitiveWord)){ //存在敏感词
  420. switch ($sensitive['sensitive_switch']){
  421. case "1": //替换敏感词为 *** , 已经替换过,不需要做其他任何处理
  422. break;
  423. case "2": //进入审核
  424. $this->users['ask_is_review'] = 1;
  425. break;
  426. case "3": //禁止发帖
  427. $this->users['is_lock'] = -1;
  428. session('users',$this->users);
  429. Db::name("users")->where(['users_id'=>$this->users_id])->update(["is_lock"=>-1]);
  430. $this->error('您发布的内容存在敏感词,暂停发布信息权限!');
  431. break;
  432. case "4": //自动拉黑用户
  433. $this->users['is_lock'] = -99;
  434. session('users',$this->users);
  435. Db::name("users")->where(['users_id'=>$this->users_id])->update(["is_lock"=>-99]);
  436. $this->error('您发布的内容存在敏感词!');
  437. break;
  438. }
  439. }
  440. }
  441. return $content;
  442. }
  443. // 是否允许发布、编辑评论回复
  444. private function IsAnswer($is_add = true)
  445. {
  446. if (empty($this->users['ask_is_release'])) {
  447. if (!empty($is_add)) {
  448. $this->error($this->users['level_name'].'不允许回复答案!');
  449. }else{
  450. $this->error($this->users['level_name'].'不允许编辑答案!');
  451. }
  452. }
  453. }
  454. // 操作问题表回复数
  455. public function UpdateAskReplies($ask_id = null, $IsAdd = true, $DelNum = 0)
  456. {
  457. if (empty($ask_id)) return false;
  458. if (!empty($IsAdd)) {
  459. $Updata = [
  460. 'replies' => Db::raw('replies+1'),
  461. 'update_time' => getTime(),
  462. ];
  463. }else{
  464. $Updata = [
  465. 'replies' => Db::raw('replies-1'),
  466. 'update_time' => getTime(),
  467. ];
  468. if ($DelNum > 0) $Updata['replies'] = Db::raw('replies-'.$DelNum);
  469. }
  470. $this->weapp_ask_db->where('ask_id', $ask_id)->update($Updata);
  471. }
  472. // 提交问题
  473. public function addAsk($users = [])
  474. {
  475. if (IS_POST) {
  476. $param = input('param.');
  477. $this->users = $users;
  478. $this->users_id = $users['users_id'];
  479. // 是否登录、是否允许发布问题、数据判断及处理,返回内容数据
  480. $content = $this->ParamDealWith($param, $this->users);
  481. $param['title'] = $this->check_sensitive($param['title']);
  482. /*添加数据*/
  483. $AddAsk = [
  484. 'type_id' => $param['ask_type_id'],
  485. 'users_id' => $this->users_id,
  486. 'ask_title' => $param['title'],
  487. 'content' => $content,
  488. 'users_ip' => clientIP(),
  489. 'add_time' => getTime(),
  490. 'update_time' => getTime(),
  491. 'money' => !empty($param['money']) ? $param['money'] : 0,
  492. ];
  493. // 如果这个会员组属于需要审核的,则追加
  494. if (1 == $this->users['ask_is_review']) $AddAsk['is_review'] = 0;
  495. /* END */
  496. $ResultId = $this->weapp_ask_db->add($AddAsk);
  497. if (!empty($ResultId)) {
  498. if (0 < $param['money'] && $this->reward_switch == 1){
  499. //悬赏 扣余额/积分并插入记录
  500. $this->AskModel->setUb($this->reward_type,$this->users_id,$ResultId,$param['money']);
  501. }
  502. $url = $this->AskLogic->GetUrlData($param, 'NewDateUrl');
  503. if (1 == $this->users['ask_is_review']) {
  504. $this->success('回答成功,但你的回答需要管理员审核!', $url, ['review' => true]);
  505. }else{
  506. $this->success('发布成功!', $url);
  507. }
  508. }else{
  509. $this->error('发布的信息有误,请检查!');
  510. }
  511. }
  512. $this->error('请求错误');
  513. }
  514. // 问题数据判断及处理,返回问题内容数据
  515. private function ParamDealWith($param = [], $users = [], $is_add = true)
  516. {
  517. // 是否允许该发布、编辑
  518. $this->IsRelease($users, $is_add);
  519. //限制提交频率
  520. $rate = $this->AskLogic->GetRateData();
  521. if (!empty($rate['is_open']) && !empty($rate['duration'])){
  522. $map = [
  523. 'users_id' => $users['users_id'],
  524. 'update_time' => array('gt', getTime() - $rate['duration']),
  525. ];
  526. $have = $this->weapp_ask_db->where($map)->find();
  527. if($have){
  528. $this->error('您提交得太频繁了,请歇会再发布!');
  529. }
  530. }
  531. if($is_add){
  532. //统计提问次数
  533. $count = $this->weapp_ask_db->where(['users_id'=>$this->users_id])->whereTime('add_time','today')->count();
  534. if (!empty($users['ask_count']) && $count >= $users['ask_count']) {
  535. $this->error("【{$users['level_name']}】每天最多提问{$users['ask_count']}次");
  536. }
  537. }
  538. /*数据判断*/
  539. $content = '';
  540. if (empty($param)) $this->error('请提交完整信息!');
  541. if (empty($param['title'])) $this->error('请填写问题标题!');
  542. if (empty($param['ask_type_id'])) $this->error('请选择问题分类!');
  543. $content = $this->AskLogic->ContentDealWith($param);
  544. if (empty($content)) $this->error('请填写问题描述!');
  545. // 编辑时执行判断
  546. if (empty($is_add) && empty($param['ask_id'])) $this->error('请确认编辑问题!');
  547. /* END */
  548. //敏感词过滤规则
  549. $content = $this->check_sensitive($content);
  550. return $content;
  551. }
  552. // 是否允许发布、编辑问题
  553. private function IsRelease($users = [], $is_add = true)
  554. {
  555. if (empty($users['ask_is_release'])) {
  556. if (!empty($is_add)) {
  557. $this->error($users['level_name'].'不允许发布问题!');
  558. }else{
  559. $this->error($users['level_name'].'不允许编辑问题!');
  560. }
  561. }
  562. }
  563. }