Ingen beskrivning
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.

Ask.php 44KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109
  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\controller;
  14. use think\Db;
  15. use think\Config;
  16. use app\plugins\logic\AskLogic;
  17. use weapp\Ask\model\AskTypeModel;
  18. class Ask extends Base
  19. {
  20. public $users = [
  21. 'users_id' => 0,
  22. 'admin_id' => 0,
  23. 'nickname' => '游客',
  24. ];
  25. public $users_id = 0;
  26. public $nickname = '游客';
  27. public $parent_id = -1;
  28. public $reward_switch = 0;
  29. public $reward_type = 'scores';
  30. public function _initialize() {
  31. parent::_initialize();
  32. $this->users['head_pic'] = $this->root_dir.'/template/plugins/ask/pc/skin/images/kong_pic2.png';
  33. /*问答本身的URL模式*/
  34. static $askConfData = null;
  35. if (null === $askConfData) {
  36. $askTypeModel = new AskTypeModel;
  37. $askConfData = $askTypeModel->getWeappData();
  38. }
  39. $ask_seo_pseudo = 1;
  40. if (!empty($askConfData['data']['seo_pseudo'])) {
  41. $ask_seo_pseudo = intval($askConfData['data']['seo_pseudo']);
  42. }
  43. Config::set('ey_config.seo_pseudo', $ask_seo_pseudo);
  44. /*end*/
  45. $this->reward_switch = $askConfData['data']['reward_switch'];
  46. $this->reward_type = $askConfData['data']['reward_type'];
  47. /*切换伪静态之后,动态URL跳到伪静态问答首页*/
  48. if ('index' == $this->request->action()) {
  49. $url = $this->request->url();
  50. if (3 == $ask_seo_pseudo && stristr($url, '&c=') && stristr($url, '&a=')) {
  51. $url = url('plugins/Ask/index');
  52. $this->redirect($url);
  53. }
  54. }
  55. /*end*/
  56. // 头像处理
  57. $this->users['head_pic'] = get_head_pic();
  58. // 问题表
  59. $this->weapp_ask_db = Db::name('weapp_ask');
  60. // 答案表
  61. $this->weapp_ask_answer_db = Db::name('weapp_ask_answer');
  62. // 问题回答点赞表
  63. $this->weapp_ask_answer_like_db = Db::name('weapp_ask_answer_like');
  64. // 问答业务层
  65. $this->AskLogic = new AskLogic;
  66. // 问答数据层
  67. $this->AskModel = model('Ask');
  68. // 问答标识
  69. $this->Code = 'ask/';
  70. /*获取最新的会员信息*/
  71. $LatestData = $this->GetUsersLatestData();
  72. if (!empty($LatestData)) {
  73. // 会员全部信息
  74. $this->users = $LatestData;
  75. // 会员ID
  76. $this->users_id = $LatestData['users_id'];
  77. // 会员昵称
  78. $this->nickname = $LatestData['nickname'];
  79. // 后台管理员信息
  80. $parent_id = session('admin_info.parent_id');
  81. !empty($parent_id) && $this->parent_id = $parent_id;
  82. } else {
  83. //过滤不需要登陆的行为
  84. $ctl_act = CONTROLLER_NAME.'@'.ACTION_NAME;
  85. $ctl_all = CONTROLLER_NAME.'@*';
  86. $filter_login_action = [
  87. 'Ask@index', // 问答内容列表
  88. 'Ask@details', // 问答详情
  89. ];
  90. if (!in_array($ctl_act, $filter_login_action) && !in_array($ctl_all, $filter_login_action)) {
  91. if (IS_AJAX) {
  92. if (empty($this->users)) {
  93. $this->error('请先登录!');
  94. }
  95. } else {
  96. if (isWeixin()) {
  97. //微信端
  98. $this->redirect('user/Users/users_select_login');
  99. exit;
  100. }else{
  101. // 其他端
  102. $this->redirect('user/Users/login');
  103. exit;
  104. }
  105. }
  106. }
  107. }
  108. /* END */
  109. /*加载到模板*/
  110. $this->assign('users', $this->users);
  111. $this->assign('nickname', $this->nickname);
  112. $this->assign('AdminParentId', $this->parent_id);
  113. /* END */
  114. /*会员功能是否开启*/
  115. $logut_redirect_url = '';
  116. $msg = '';
  117. $this->usersConfig = getUsersConfigData('all');
  118. $web_users_switch = tpCache('web.web_users_switch');
  119. if (empty($web_users_switch) || isset($this->usersConfig['users_open_register']) && $this->usersConfig['users_open_register'] == 1) {
  120. // 前台会员中心已关闭
  121. $logut_redirect_url = ROOT_DIR.'/';
  122. $msg = '会员中心尚未开启!';
  123. } else if (session('?users_id') && empty($this->users)) {
  124. // 登录的会员被后台删除,立马退出会员中心
  125. $logut_redirect_url = url('user/Users/centre');
  126. $msg = '当前用户名不存在!';
  127. }
  128. if (!empty($logut_redirect_url)) {
  129. // 清理session并回到首页
  130. session('users_id', null);
  131. session('users', null);
  132. $this->error($msg, $logut_redirect_url);
  133. exit;
  134. }
  135. /* END */
  136. }
  137. /**
  138. * 问答首页
  139. */
  140. public function index()
  141. {
  142. $param = input('param.');
  143. // 查询条件处理
  144. $Where = $this->AskLogic->GetAskWhere($param, $this->parent_id);
  145. // Url处理
  146. $UrlData = $this->AskLogic->GetUrlData($param);
  147. // 最新问题,默认读取20条,可传入条数及字段名称进行获取
  148. $ResultAsk = $this->AskModel->GetNewAskData($Where);
  149. // 栏目处理
  150. $TypeData = $this->AskModel->GetAskTypeData($param);
  151. // 热门帖子,周榜
  152. $WeekList = $this->AskModel->GetAskWeekListData();
  153. // 热门帖子,总榜
  154. $TotalList = $this->AskModel->GetAskTotalListData();
  155. // 主页SEO信息
  156. $type_id = !empty($param['type_id']) ? intval($param['type_id']) : 0;
  157. $SeoData = $this->AskLogic->GetSeoData($type_id);
  158. // 数组合并加载到模板
  159. $result = array_merge($ResultAsk, $UrlData, $TypeData, $WeekList, $TotalList, $SeoData);
  160. $result['conf']['reward_switch'] = $this->reward_switch;
  161. $result['conf']['reward_type'] = $this->reward_type;
  162. $eyou = array(
  163. 'field' => $result,
  164. );
  165. $this->assign('eyou', $eyou);
  166. return $this->fetch($this->Code.THEME_STYLE.'/index');
  167. }
  168. /**
  169. * 问题详情页
  170. */
  171. public function details()
  172. {
  173. $param = input('param.');
  174. if (empty($param['ask_id'])) $this->error('请选择浏览的问题');
  175. // 增加问题浏览点击量
  176. $this->AskModel->UpdateAskClick($param['ask_id']);
  177. // 问题详情数据
  178. $AskDetails = $this->AskModel->GetAskDetailsData($param, $this->parent_id, $this->users_id);
  179. if (0 == $AskDetails['code']) $this->error($AskDetails['msg']);
  180. // 问题回答数据,包含最佳答案
  181. $AskReplyData = $this->AskModel->GetAskReplyData($param, $this->parent_id);
  182. // 栏目处理
  183. $TypeData = $this->AskModel->GetAskTypeData($param);
  184. // 热门帖子,周榜
  185. $WeekList = $this->AskModel->GetAskWeekListData();
  186. // 热门帖子,总榜
  187. $TotalList = $this->AskModel->GetAskTotalListData();
  188. // Url处理
  189. $UrlData = $this->AskLogic->GetUrlData($param);
  190. // 数组合并加载到模板
  191. $result = array_merge($AskDetails, $AskReplyData, $TypeData, $WeekList, $TotalList, $UrlData);
  192. $eyou = array(
  193. 'field' => $result,
  194. );
  195. $this->assign('eyou', $eyou);
  196. return $this->fetch($this->Code.THEME_STYLE.'/details');
  197. }
  198. // 提交问题
  199. public function add_ask()
  200. {
  201. if (IS_AJAX_POST || IS_POST) {
  202. $param = input('param.');
  203. // 是否登录、是否允许发布问题、数据判断及处理,返回内容数据
  204. $content = $this->ParamDealWith($param);
  205. $param['title'] = $this->check_sensitive($param['title']);
  206. /*添加数据*/
  207. $AddAsk = [
  208. 'type_id' => $param['ask_type_id'],
  209. 'users_id' => $this->users_id,
  210. 'ask_title' => $param['title'],
  211. 'content' => $content,
  212. 'users_ip' => clientIP(),
  213. 'add_time' => getTime(),
  214. 'update_time' => getTime(),
  215. 'money' => !empty($param['money']) ? $param['money'] : 0,
  216. ];
  217. // 如果这个会员组属于需要审核的,则追加
  218. if (1 == $this->users['ask_is_review']) $AddAsk['is_review'] = 0;
  219. /* END */
  220. $ResultId = $this->weapp_ask_db->add($AddAsk);
  221. if (!empty($ResultId)) {
  222. if (0 < $param['money'] && $this->reward_switch == 1){
  223. //悬赏 扣余额/积分并插入记录
  224. $this->AskModel->setUb($this->reward_type,$this->users_id,$ResultId,$param['money']);
  225. }
  226. $url = $this->AskLogic->GetUrlData($param, 'NewDateUrl');
  227. if (1 == $this->users['ask_is_review']) {
  228. $this->success('回答成功,但你的回答需要管理员审核!', $url, ['review' => true]);
  229. }else{
  230. $this->success('发布成功!', $url);
  231. }
  232. }else{
  233. $this->error('发布的信息有误,请检查!');
  234. }
  235. }
  236. // 是否允许发布问题
  237. $this->IsRelease();
  238. // 栏目处理
  239. $result = $this->AskModel->GetAskTypeData(null, 'add_ask');
  240. $result['SubmitAddAsk'] = $this->AskLogic->GetUrlData(null, 'SubmitAddAsk');
  241. $eyou = array(
  242. 'field' => $result,
  243. );
  244. $eyou['conf']['reward_switch'] = $this->reward_switch;
  245. $eyou['conf']['reward_type'] = $this->reward_type;
  246. if (1 == $eyou['conf']['reward_switch']){
  247. $eyou['field']['reward_money'] = Db::name('users')->where('users_id',$this->users_id)->value($eyou['conf']['reward_type']);
  248. $eyou['field']['reward_desc'] = $eyou['conf']['reward_type'] == 'scores' ? '积分' : '元';
  249. }
  250. $this->assign('eyou', $eyou);
  251. return $this->fetch($this->Code.THEME_STYLE.'/add_ask');
  252. }
  253. // 编辑问题
  254. public function edit_ask()
  255. {
  256. if (IS_AJAX_POST || IS_POST) {
  257. $param = input('param.');
  258. // 是否登录、是否允许发布问题、数据判断及处理,返回内容数据
  259. $content = $this->ParamDealWith($param, false);
  260. $param['title'] = $this->check_sensitive($param['title']);
  261. /*添加数据*/
  262. $UpAsk = [
  263. 'type_id' => $param['ask_type_id'],
  264. 'ask_title' => $param['title'],
  265. 'content' => $content,
  266. 'users_ip' => clientIP(),
  267. 'update_time' => getTime(),
  268. ];
  269. if (!empty($param['money'])) $UpAsk['money'] = $param['money'];
  270. // 如果这个会员组属于需要审核的,则追加
  271. if (1 == $this->users['ask_is_review']) $UpAsk['is_review'] = 0;
  272. /* END */
  273. /*条件处理*/
  274. $where['ask_id'] = $param['ask_id'];
  275. $ori_money = $this->weapp_ask_db->where('ask_id',$param['ask_id'])->getField('money');
  276. if ($ori_money > $param['money']){
  277. $msg = '悬赏积分不能少于'.$ori_money.'!';
  278. if ($this->reward_type == 'users_money'){
  279. $msg = '悬赏金额不能小于'.$ori_money.'元!';
  280. }
  281. $this->error($msg);
  282. }
  283. // 不是后台管理则只能修改自己的问题
  284. if (empty($this->users['admin_id'])) $where['users_id'] = $this->users_id;
  285. /* END */
  286. $ResultId = $this->weapp_ask_db->where($where)->update($UpAsk);
  287. if (!empty($ResultId)) {
  288. if ($ori_money < $param['money'] && $this->reward_switch == 1){
  289. $this->AskModel->setUb($this->reward_type,$this->users_id,$param['ask_id'],$param['money'],'edit',$ori_money);
  290. }
  291. $url = $this->AskLogic->GetUrlData($param, 'AskDetailsUrl');
  292. $this->success('编辑成功!', $url);
  293. }else{
  294. $this->error('编辑的信息有误,请检查!');
  295. }
  296. }
  297. // 是否允许发布问题
  298. $this->IsRelease(false);
  299. $ask_id = input('ask_id/d');
  300. $where['ask_id'] = $ask_id;
  301. // 不是后台管理则只能修改自己的问题
  302. if (empty($this->users['admin_id'])) $where['users_id'] = $this->users_id;
  303. $Info = $this->weapp_ask_db->where($where)->find();
  304. if (empty($Info)) $this->error('请选择编辑的问题!');
  305. // 栏目处理
  306. $result = $this->AskModel->GetAskTypeData($Info, 'edit_ask');
  307. $result['Info'] = $Info;
  308. $result['EditAskUrl'] = $this->AskLogic->GetUrlData(['ask_id'=>$ask_id], 'EditAskUrl');
  309. $eyou = array(
  310. 'field' => $result,
  311. );
  312. $eyou['conf']['reward_switch'] = $this->reward_switch;
  313. $eyou['conf']['reward_type'] = $this->reward_type;
  314. if (1 == $eyou['conf']['reward_switch']){
  315. $eyou['field']['reward_money'] = Db::name('users')->where('users_id',$this->users_id)->value($eyou['conf']['reward_type']);
  316. $eyou['field']['reward_desc'] = $eyou['conf']['reward_type'] == 'scores' ? '积分' : '元';
  317. }
  318. $this->assign('eyou', $eyou);
  319. return $this->fetch($this->Code.THEME_STYLE.'/edit_ask');
  320. }
  321. // 会员中心--我的问答--我的问题\回复
  322. public function ask_index()
  323. {
  324. $method = input('param.method');
  325. // 加载会员中心所需数据
  326. $this->AssignData(input('param.'));
  327. /*数据查询处理*/
  328. if (!empty($method)) {
  329. // 回答数据
  330. $result['Method'] = $method;
  331. $ResultData = $this->AskModel->GetUsersAskDataNew($this->users_id, false,10);
  332. }else{
  333. // 提问数据
  334. $result['Method'] = '';
  335. $ResultData = $this->AskModel->GetUsersAskDataNew($this->users_id, true,10);
  336. }
  337. $eyou = array(
  338. 'field' => $ResultData,
  339. );
  340. /* END */
  341. $this->assign('eyou', $eyou);
  342. $viewfile = 'ask_index';
  343. $usersTplVersion = getUsersTplVersion();
  344. if ($usersTplVersion != 'v1') {
  345. $viewfile .= '_'.$usersTplVersion;
  346. }
  347. $this->assign('usersTplVersion', $usersTplVersion);
  348. //会员中心相关信息begin
  349. $php_servicemeal = tpCache('php.php_servicemeal');
  350. $this->assign('php_servicemeal', $php_servicemeal);
  351. // 未读消息数
  352. $unread_num = Db::name('users')->where(['users_id' => $this->users_id])->value("unread_notice_num");
  353. $this->assign('unread_num',$unread_num);
  354. //会员中心相关信息end
  355. return $this->fetch($this->Code.THEME_STYLE.'/'.$viewfile);
  356. }
  357. // 用户首页--我的问题--我的回答(暂时停用)
  358. public function users_index()
  359. {
  360. // 是否传入用户ID
  361. $view_uid = input('view_uid/d');
  362. if (empty($view_uid)) $this->error('访问的会员不存在!');
  363. // 用户是否存在
  364. $result = $this->AskModel->GetUsersAskCount($view_uid);
  365. if (empty($result)) $this->error('访问的会员不存在!');
  366. // 不为空则默认回答页
  367. $method = input('param.method');
  368. if (!empty($method)) {
  369. $result['Method'] = $method;
  370. $ResultData = $this->AskModel->GetUsersAskData($view_uid, false,10);
  371. }else{
  372. $result['Method'] = '';
  373. $ResultData = $this->AskModel->GetUsersAskData($view_uid, true,10);
  374. }
  375. if (!empty($ResultData)) {
  376. $result['AskData'] = $ResultData['AskData'];
  377. $result['pageStr'] = $ResultData['pageStr'];
  378. }
  379. $eyou = array(
  380. 'field' => $result,
  381. );
  382. $this->assign('eyou', $eyou);
  383. return $this->fetch($this->Code.THEME_STYLE.'/users_index');
  384. }
  385. // 采纳最佳答案
  386. public function ajax_best_answer()
  387. {
  388. if (IS_AJAX_POST) {
  389. if (!empty($this->users['admin_id']) || $this->users_id = input('post.users_id/d')) {
  390. $param = input('param.');
  391. // 数据判断处理
  392. if (empty($param['answer_id']) || empty($param['ask_id']) ) $this->error('请选择采纳的回答!');
  393. // 更新问题数据表
  394. $Updata = [
  395. 'ask_id' => $param['ask_id'],
  396. 'status' => 1,
  397. 'solve_time' => getTime(),
  398. 'bestanswer_id' => $param['answer_id'],
  399. 'update_time' => getTime(),
  400. ];
  401. $ResultId = $this->weapp_ask_db->update($Updata);
  402. if (!empty($ResultId)) {
  403. $money = $this->weapp_ask_db->where('ask_id',$param['ask_id'])->value('money');
  404. if (0 < $money && $this->reward_switch == 1){
  405. $answer_user_id = $this->weapp_ask_answer_db->where('answer_id', $param['answer_id'])->value('users_id');
  406. //悬赏金额插入记录
  407. $this->AskModel->setUb($this->reward_type,$answer_user_id,$param['ask_id'],$money,'answer',0,$param['answer_id']);
  408. }
  409. // 将这个问题下的所有答案设置为非最佳答案
  410. $this->weapp_ask_answer_db->where('ask_id', $param['ask_id'])->update(['is_bestanswer'=>0]);
  411. // 设置当前问题为最佳答案
  412. $this->weapp_ask_answer_db->where('answer_id', $param['answer_id'])->update(['is_bestanswer'=>1]);
  413. $this->success('已采纳!');
  414. }else{
  415. $this->error('请选择采纳的回答!');
  416. }
  417. }else{
  418. $this->error('无操作权限!');
  419. }
  420. }
  421. }
  422. // 添加回答
  423. public function ajax_add_answer()
  424. {
  425. if (IS_AJAX_POST || IS_POST) {
  426. $param = input('param.');
  427. // 是否登录、是否允许发布问题、数据判断及处理,返回内容数据
  428. $content = $this->AnswerDealWith($param, true);
  429. /*添加数据*/
  430. $AddAnswer = [
  431. 'ask_id' => $param['ask_id'],
  432. // 如果这个会员组属于需要审核的,则追加。 默认1为已审核
  433. 'is_review' => 1 == $this->users['ask_is_review'] ? 0 : 1,
  434. 'type_id' => $param['type_id'],
  435. 'users_id' => $this->users_id,
  436. 'username' => $this->users['username'],
  437. 'users_ip' => clientIP(),
  438. 'content' => $content,
  439. // 若是回答答案则追加数据
  440. 'answer_pid' => !empty($param['answer_id']) ? $param['answer_id'] : 0,
  441. // 用户则追加数据
  442. 'at_users_id' => !empty($param['at_users_id']) ? $param['at_users_id'] : 0,
  443. 'at_answer_id'=> !empty($param['at_answer_id']) ? $param['at_answer_id'] : 0,
  444. 'add_time' => getTime(),
  445. 'update_time' => getTime(),
  446. ];
  447. $ResultId = $this->weapp_ask_answer_db->add($AddAnswer);
  448. /* END */
  449. if (!empty($ResultId)) {
  450. // 增加问题回复数
  451. $this->AskModel->UpdateAskReplies($param['ask_id'], true);
  452. if (1 == $this->users['ask_is_review']) {
  453. $this->success('回答成功,但你的回答需要管理员审核!', null, ['review' => true]);
  454. }else{
  455. $AddAnswer['answer_id'] = $ResultId;
  456. $AddAnswer['head_pic'] = $this->users['head_pic'];
  457. $AddAnswer['at_usersname'] = '';
  458. if (!empty($AddAnswer['at_users_id'])) {
  459. $FindData = Db::name('users')->field('nickname, username')->where('users_id', $AddAnswer['at_users_id'])->find();
  460. $AddAnswer['at_usersname'] = empty($FindData['nickname']) ? $FindData['username'] : $FindData['nickname'];
  461. }
  462. $ResultData = $this->AskLogic->GetReplyHtml($AddAnswer);
  463. $this->success('回答成功!', null, $ResultData);
  464. }
  465. }else{
  466. $this->error('提交信息有误,请刷新重试!');
  467. }
  468. }
  469. }
  470. // 编辑回答
  471. public function ajax_edit_answer()
  472. {
  473. if (IS_AJAX_POST || IS_POST) {
  474. $param = input('param.');
  475. // 是否登录、是否允许发布问题、数据判断及处理,返回内容数据
  476. $content = $this->AnswerDealWith($param, false);
  477. /*编辑数据*/
  478. $UpAnswerData = [
  479. 'content' => $content,
  480. 'users_ip' => clientIP(),
  481. 'update_time' => getTime(),
  482. ];
  483. // 如果这个会员组属于需要审核的,则追加
  484. if (1 == $this->users['ask_is_review']) $UpAnswerData['is_review'] = 0;
  485. /* END */
  486. // 更新条件
  487. $where = [
  488. 'answer_id' => $param['answer_id'],
  489. 'ask_id' => $param['ask_id'],
  490. ];
  491. if (empty($this->users['admin_id'])) $where['users_id'] = $this->users_id;
  492. // 更新数据
  493. $ResultId = $this->weapp_ask_answer_db->where($where)->update($UpAnswerData);
  494. if (!empty($ResultId)) {
  495. $url = $this->AskLogic->GetUrlData($param, 'AskDetailsUrl');
  496. if (1 == $this->users['ask_is_review']) {
  497. $this->success('编辑成功,但你的回答需要管理员审核!', $url, ['review' => true]);
  498. }else{
  499. $this->success('编辑成功!', $url);
  500. }
  501. } else {
  502. $this->error('编辑的信息有误,请检查!');
  503. }
  504. }
  505. // 是否允许发布问题
  506. $this->IsAnswer(false);
  507. $answer_id = input('param.answer_id/d');
  508. $where = [
  509. 'a.answer_id' => $answer_id,
  510. ];
  511. if (empty($this->users['admin_id'])) {
  512. $where['a.users_id'] = $this->users_id;
  513. }
  514. $AnswerData = $this->weapp_ask_answer_db->field('a.answer_id, a.ask_id, a.content, b.ask_title')
  515. ->alias('a')
  516. ->join('__WEAPP_ASK__ b', 'a.ask_id = b.ask_id', 'LEFT')
  517. ->where($where)
  518. ->find();
  519. if (empty($AnswerData)) $this->error('要修改的回答不存在!');
  520. // 更新人
  521. $AnswerData['nickname'] = $this->nickname;
  522. $result['Info'] = $AnswerData;
  523. $result['EditAnswerUrl'] = $this->AskLogic->GetUrlData(['answer_id'=>$answer_id], 'EditAnswer');
  524. $eyou = array(
  525. 'field' => $result,
  526. );
  527. $this->assign('eyou', $eyou);
  528. return $this->fetch($this->Code.THEME_STYLE.'/edit_answer');
  529. }
  530. // 删除问题、回答
  531. public function ajax_del_answer()
  532. {
  533. if (IS_AJAX_POST) {
  534. // 是否登录
  535. $this->UsersIsLogin();
  536. /*数据判断*/
  537. $type = input('param.type/d');
  538. $ask_id = input('param.ask_id/d');
  539. $answer_id = input('param.answer_id/d');
  540. if (isset($type) && 3 == $type) {
  541. // 删除整条回复内容
  542. $answer_id = input('param.id/d');
  543. }else if (isset($type) && 1 == $type) {
  544. // 删除整个提问问题则执行
  545. $this->DelAsk(input('param.'));
  546. }
  547. if (empty($answer_id) || empty($ask_id)) $this->error('请选择删除信息!');
  548. /* END */
  549. /*删除条件*/
  550. $Where = [
  551. 'ask_id' => $ask_id,
  552. 'answer_id' => $answer_id,
  553. ];
  554. // 若操作人为后台管理员则允许删除所有人的评论回答
  555. if (empty($this->users['admin_id'])) $where['users_id'] = $this->users_id;
  556. /* END */
  557. /*执行删除*/
  558. if (isset($type) && 3 == $type) {
  559. // 整条评论回答,算计整个评论有多少条数量
  560. $CountWhere['answer_pid'] = $answer_id;
  561. // 查询整条回答的评论数量
  562. $DelNum = $this->weapp_ask_answer_db->where($Where)->whereOr($CountWhere)->count();
  563. // 删除
  564. $ResultId = $this->weapp_ask_answer_db->where($Where)->whereOr($CountWhere)->delete();
  565. }else{
  566. $DelNum = 0;
  567. // 删除
  568. $ResultId = $this->weapp_ask_answer_db->where($Where)->delete();
  569. }
  570. /* END */
  571. if (!empty($ResultId)) {
  572. // 减少问题回复数
  573. $this->AskModel->UpdateAskReplies($ask_id, false, $DelNum);
  574. $this->success('删除成功!');
  575. }else{
  576. $this->error('删除信息错误,请刷新重试!');
  577. }
  578. }
  579. }
  580. // 删除整个提问问题
  581. public function DelAsk($param = array())
  582. {
  583. if (empty($param['ask_id']) || empty($param['id'])) $this->error('请选择要删除的提问问题!');
  584. if (empty($this->users['admin_id'])) $this->error('无操作权限!');
  585. /*执行删除*/
  586. $Where['ask_id'] = $param['ask_id'];
  587. $ResultId = $this->weapp_ask_db->where($Where)->delete();
  588. if (!empty($ResultId)) {
  589. // 同步删除对应问题下所有回答
  590. $this->weapp_ask_answer_db->where($Where)->delete();
  591. // 同步删除对应问题下所有点赞
  592. $this->weapp_ask_answer_like_db->where($Where)->delete();
  593. $url = $this->AskLogic->GetUrlData($param, 'NewDateUrl');
  594. $this->success('删除成功!', $url);
  595. }else{
  596. $this->error('删除信息错误,请刷新重试!');
  597. }
  598. /* END */
  599. }
  600. // 点赞
  601. public function ajax_click_like()
  602. {
  603. if (IS_AJAX_POST) {
  604. // 是否登录
  605. $this->UsersIsLogin();
  606. $ask_id = input('param.ask_id/d');
  607. $answer_id = input('param.answer_id/d');
  608. if (empty($answer_id) || empty($ask_id)) $this->error('请选择点赞信息!');
  609. $Where = [
  610. 'ask_id' => $ask_id,
  611. 'users_id' => $this->users_id,
  612. 'answer_id' => $answer_id,
  613. ];
  614. $IsCount = $this->weapp_ask_answer_like_db->where($Where)->count();
  615. if (!empty($IsCount)) {
  616. $this->error('您已赞过!');
  617. }else{
  618. // 添加新的点赞记录
  619. $AddData = [
  620. 'click_like' => 1,
  621. 'users_ip' => clientIP(),
  622. 'add_time' => getTime(),
  623. 'update_time' => getTime(),
  624. ];
  625. $AddData = array_merge($Where, $AddData);
  626. $ResultId = $this->weapp_ask_answer_like_db->add($AddData);
  627. if (!empty($ResultId)) {
  628. unset($Where['users_id']);
  629. $LikeCount = $this->weapp_ask_answer_like_db->where($Where)->count();
  630. if (1 == $LikeCount) {
  631. $LikeName = '<a href="javascript:void(0);">'.$this->nickname.'</a>';
  632. }else{
  633. $LikeName = '<a href="javascript:void(0);">'.$this->nickname.'</a>、 ';
  634. }
  635. $data = [
  636. // 点赞数
  637. 'LikeCount' => $LikeCount,
  638. // 点赞人
  639. 'LikeName' => $LikeName,
  640. ];
  641. // 同步点赞次数到答案表
  642. $UpdataNew = [
  643. 'click_like' => $LikeCount,
  644. 'update_time' => getTime(),
  645. ];
  646. $this->weapp_ask_answer_db->where($Where)->update($UpdataNew);
  647. $this->success('点赞成功!', null, $data);
  648. }
  649. }
  650. }
  651. }
  652. // 审核问题,仅创始人有权限
  653. public function ajax_review_ask()
  654. {
  655. if (IS_AJAX_POST) {
  656. // 创始人才有权限在前台审核评论
  657. if (0 == $this->parent_id) {
  658. $this->UsersIsLogin();
  659. $param = input('param.');
  660. if (empty($param['ask_id'])) $this->error('请选择需要审核的问题!');
  661. // 更新审核问题
  662. $UpAakData = [
  663. 'is_review' => 1,
  664. 'update_time' => getTime(),
  665. ];
  666. $ResultId = $this->weapp_ask_db->where('ask_id', $param['ask_id'])->update($UpAakData);
  667. if (!empty($ResultId)) $this->success('审核成功!');
  668. $this->error('审核失败!');
  669. }else{
  670. $this->error('没有操作权限!');
  671. }
  672. }
  673. }
  674. // 审核评论,仅管理员有权限
  675. public function ajax_review_comment()
  676. {
  677. if (IS_AJAX_POST) {
  678. // 创始人才有权限在前台审核评论
  679. if (0 == $this->parent_id) {
  680. $this->UsersIsLogin();
  681. $param = input('param.');
  682. if (empty($param['ask_id']) || empty($param['answer_id'])) $this->error('提交信息有误,请刷新重试!');
  683. // 更新审核评论
  684. $where = [
  685. 'ask_id' => $param['ask_id'],
  686. 'answer_id' => $param['answer_id'],
  687. ];
  688. $UpAnswerData = [
  689. 'is_review' => 1,
  690. 'update_time' => getTime(),
  691. ];
  692. $ResultId = $this->weapp_ask_answer_db->where($where)->update($UpAnswerData);
  693. if (!empty($ResultId)) $this->success('审核成功!');
  694. $this->error('审核失败!');
  695. }else{
  696. $this->error('没有操作权限!');
  697. }
  698. }
  699. }
  700. // 获取指定数量的评论数据(分页)
  701. public function ajax_show_comment()
  702. {
  703. if (IS_AJAX_POST) {
  704. $param = input('param.');
  705. $Comment = $this->AskModel->GetAskReplyData($param, $this->parent_id);
  706. $Data = !empty($param['is_comment']) ? $Comment['AnswerData'][0]['AnswerSubData'] : $Comment['BestAnswer'][0]['AnswerSubData'];
  707. if (!empty($Data)) {
  708. $ResultData = $this->AskLogic->ForeachReplyHtml($Data, $this->parent_id);
  709. if (empty($ResultData['htmlcode'])) $this->error('没有更多数据');
  710. $this->success('查询成功!', null, $ResultData);
  711. }else{
  712. $this->error('没有更多数据');
  713. }
  714. }
  715. }
  716. // 加载会员中心所需数据
  717. private function AssignData($param = array())
  718. {
  719. // 是否登录
  720. $this->UsersIsLogin();
  721. // 主题颜色
  722. $this->assign('usersConfig', $this->usersConfig);
  723. $this->usersConfig['theme_color'] = $theme_color = !empty($this->usersConfig['theme_color']) ? $this->usersConfig['theme_color'] : '#ff6565'; // 默认主题颜色
  724. $this->assign('theme_color', $theme_color);
  725. // 是否为手机端
  726. $is_mobile = isMobile() ? 1 : 2;
  727. $this->assign('is_mobile',$is_mobile);
  728. // 是否为端微信
  729. $is_wechat = isWeixin() ? 1 : 2;
  730. $this->assign('is_wechat',$is_wechat);
  731. // 是否为微信端小程序
  732. $is_wechat_applets = isWeixinApplets() ? 1 : 0;
  733. $this->assign('is_wechat_applets',$is_wechat_applets);
  734. // 焦点
  735. $Focus = empty($param['method']) ? 1 : 2;
  736. $this->assign('Focus',$Focus);
  737. // 菜单名称
  738. $this->MenuTitle = Db::name('users_menu')->where([
  739. 'mca' => 'plugins/Ask/ask_index',
  740. 'lang' => $this->home_lang,
  741. ])->getField('title');
  742. $this->assign('MenuTitle',$this->MenuTitle);
  743. }
  744. // 是否登录
  745. private function UsersIsLogin()
  746. {
  747. if (empty($this->users) || empty($this->users_id)) $this->error('请先登录!');
  748. }
  749. // 是否允许发布、编辑问题
  750. private function IsRelease($is_add = true)
  751. {
  752. if (empty($this->users['ask_is_release'])) {
  753. if (!empty($is_add)) {
  754. $this->error($this->users['level_name'].'不允许发布问题!');
  755. }else{
  756. $this->error($this->users['level_name'].'不允许编辑问题!');
  757. }
  758. }
  759. }
  760. // 问题数据判断及处理,返回问题内容数据
  761. private function ParamDealWith($param = [], $is_add = true)
  762. {
  763. //token验证
  764. $this->checkToken($param);
  765. // 是否登录
  766. $this->UsersIsLogin();
  767. // 是否允许该发布、编辑
  768. $this->IsRelease($is_add);
  769. //限制提交频率
  770. $rate = $this->AskLogic->GetRateData();
  771. if (!empty($rate['is_open']) && !empty($rate['duration'])){
  772. $map = [
  773. 'users_id' => $this->users_id,
  774. 'update_time' => array('gt', getTime() - $rate['duration']),
  775. ];
  776. $have = $this->weapp_ask_db->where($map)->find();
  777. if($have){
  778. $this->error('您提交得太频繁了,请歇会再发布!');
  779. }
  780. }
  781. if($is_add){
  782. //统计提问次数
  783. $count = $this->weapp_ask_db->where(['users_id'=>$this->users_id])->whereTime('add_time','today')->count();
  784. if ($count >= $this->users['ask_count']) {
  785. $this->error("【{$this->users['level_name']}】每天最多提问{$this->users['ask_count']}次");
  786. }
  787. }
  788. /*数据判断*/
  789. $content = '';
  790. if (empty($param)) $this->error('请提交完整信息!');
  791. if (empty($param['title'])) $this->error('请填写问题标题!');
  792. if (empty($param['ask_type_id'])) $this->error('请选择问题分类!');
  793. $content = $this->AskLogic->ContentDealWith($param);
  794. if (empty($content)) $this->error('请填写问题描述!');
  795. // 编辑时执行判断
  796. if (empty($is_add) && empty($param['ask_id'])) $this->error('请确认编辑问题!');
  797. /* END */
  798. //敏感词过滤规则
  799. $content = $this->check_sensitive($content);
  800. return $content;
  801. }
  802. //敏感词过滤
  803. private function check_sensitive($content){
  804. $sensitive = $this->AskLogic->GetSensitiveData();
  805. if (!empty($sensitive['sensitive_switch']) && !empty($sensitive['sensitive_data'])){
  806. list($count,$sensitiveWord,$content) = $this->AskLogic->sensitive($sensitive['sensitive_data'],$content);
  807. if ($count > 0 && !empty($sensitiveWord)){ //存在敏感词
  808. switch ($sensitive['sensitive_switch']){
  809. case "1": //替换敏感词为 *** , 已经替换过,不需要做其他任何处理
  810. break;
  811. case "2": //进入审核
  812. $this->users['ask_is_review'] = 1;
  813. break;
  814. case "3": //禁止发帖
  815. $this->users['is_lock'] = -1;
  816. session('users',$this->users);
  817. Db::name("users")->where(['users_id'=>$this->users_id])->update(["is_lock"=>-1]);
  818. $this->error('您发布的内容存在敏感词,暂停发布信息权限!');
  819. break;
  820. case "4": //自动拉黑用户
  821. $this->users['is_lock'] = -99;
  822. session('users',$this->users);
  823. Db::name("users")->where(['users_id'=>$this->users_id])->update(["is_lock"=>-99]);
  824. $this->error('您发布的内容存在敏感词!');
  825. break;
  826. }
  827. }
  828. }
  829. return $content;
  830. }
  831. // 是否允许发布、编辑评论回复
  832. private function IsAnswer($is_add = true)
  833. {
  834. if (empty($this->users['ask_is_release'])) {
  835. if (!empty($is_add)) {
  836. $this->error($this->users['level_name'].'不允许回复答案!');
  837. }else{
  838. $this->error($this->users['level_name'].'不允许编辑答案!');
  839. }
  840. }
  841. }
  842. //token验证
  843. private function checkToken($param){
  844. // token数据验证
  845. $token = '__token__';
  846. foreach ($param as $key => $val) {
  847. if (preg_match('/^__token__/i', $key)) {
  848. $token = $key;
  849. break;
  850. }
  851. }
  852. $rule = [
  853. 'form_id' => 'require|token:'.$token,
  854. ];
  855. $message = [
  856. 'form_id.require' => '数据验证错误,请重新提交',
  857. ];
  858. $validate = new \think\Validate($rule, $message);
  859. if(!$validate->batch()->check($param))
  860. {
  861. $error = $validate->getError();
  862. $error_msg = array_values($error);
  863. $this->error($error_msg[0]);
  864. }
  865. }
  866. // 评论回复数据处理,返回评论回复内容数据
  867. private function AnswerDealWith($param = [], $is_add = true)
  868. {
  869. //token验证
  870. $this->checkToken($param);
  871. // 是否登录
  872. $this->UsersIsLogin();
  873. // 是否允许发布、编辑
  874. $this->IsAnswer($is_add);
  875. //限制提交频率
  876. $rate = $this->AskLogic->GetRateData();
  877. if (!empty($rate['is_open']) && !empty($rate['duration'])){
  878. $map = [
  879. 'users_id' => $this->users_id,
  880. 'update_time' => array('gt', getTime() - $rate['duration']),
  881. ];
  882. $have = $this->weapp_ask_answer_db->where($map)->find();
  883. if($have){
  884. $this->error('您提交得太频繁了,请歇会再发布!');
  885. }
  886. }
  887. if (!empty($is_add)) { /*数据判断*/
  888. //统计回答次数
  889. $count = Db::name('weapp_ask_answer')->where(['users_id'=>$this->users_id])->whereTime('add_time','today')->count();
  890. if ($count >= $this->users['answer_count']) {
  891. $this->error("【{$this->users['level_name']}】每天最多回答{$this->users['answer_count']}次");
  892. }
  893. // 添加时执行判断
  894. if (empty($param) || empty($param['ask_id']) ) $this->error('提交信息有误,请刷新重试!');
  895. }else{
  896. // 编辑时执行判断
  897. if (empty($is_add) && empty($param['ask_id'])) $this->error('请确认编辑问题!');
  898. }
  899. $content = '';
  900. $content = $this->AskLogic->ContentDealWith($param);
  901. if (empty($content)) $this->error('请写下你的回答!');
  902. /* END */
  903. $content = $this->check_sensitive($content);
  904. return $content;
  905. }
  906. /**
  907. * 获取登录的会员最新数据
  908. */
  909. private function GetUsersLatestData($users_id = null) {
  910. $users_id = empty($users_id) ? session('users_id') : $users_id;
  911. if(!empty($users_id)) {
  912. /*读取的字段*/
  913. $field = 'a.*, b.*, b.discount as level_discount';
  914. /* END */
  915. /*查询数据*/
  916. $users = \think\Db::name('users')->field($field)
  917. ->alias('a')
  918. ->join('__USERS_LEVEL__ b', 'a.level = b.level_id', 'LEFT')
  919. ->where([
  920. 'a.users_id' => $users_id,
  921. 'a.lang' => get_home_lang(),
  922. 'a.is_activation' => 1,
  923. 'a.is_del' => 0,
  924. ])->find();
  925. // 会员不存在则返回空
  926. if (empty($users)) return false;
  927. /* END */
  928. $ask_users_level_lsit = Db::name('weapp_ask_users_level')->where(['level_id'=>$users['level_id']])->find();
  929. $users['ask_count'] = !empty($ask_users_level_lsit['ask_count']) ? intval($ask_users_level_lsit['ask_count']) : 5;
  930. $users['answer_count'] = !empty($ask_users_level_lsit['answer_count']) ? intval($ask_users_level_lsit['answer_count']) : 5;
  931. $users['ask_is_release'] = !empty($ask_users_level_lsit['ask_is_release']) ? intval($ask_users_level_lsit['ask_is_release']) : 0;
  932. $users['ask_is_review'] = !empty($ask_users_level_lsit['ask_is_review']) ? intval($ask_users_level_lsit['ask_is_review']) : 0;
  933. /*会员数据处理*/
  934. // 头像处理
  935. $users['head_pic'] = get_head_pic($users['head_pic']);
  936. // 昵称处理
  937. $users['nickname'] = empty($users['nickname']) ? $users['username'] : $users['nickname'];
  938. // 密码为空并且存在openid则表示微信注册登录,密码字段更新为0,可重置密码一次。
  939. $users['password'] = empty($users['password']) && !empty($users['open_id']) ? 0 : 1;
  940. // 删除登录密码及支付密码
  941. unset($users['paypwd']);
  942. // 级别处理
  943. $LevelData = [];
  944. if (intval($users['level_maturity_days']) >= 36600) {
  945. $users['maturity_code'] = 1;
  946. $users['maturity_date'] = '终身';
  947. }else if (0 == $users['open_level_time'] && 0 == $users['level_maturity_days']) {
  948. $users['maturity_code'] = 0;
  949. $users['maturity_date'] = '';// 没有升级会员,置空
  950. }else{
  951. /*计算剩余天数*/
  952. $days = $users['open_level_time'] + ($users['level_maturity_days'] * 86400);
  953. // 取整
  954. $days = ceil(($days - getTime()) / 86400);
  955. if (0 >= $days) {
  956. /*更新会员的级别*/
  957. $LevelData = model('EyouUsers')->UpUsersLevelData($users_id);
  958. /* END */
  959. $users['maturity_code'] = 2;
  960. $users['maturity_date'] = '';// 会员过期,置空
  961. }else{
  962. $users['maturity_code'] = 3;
  963. $users['maturity_date'] = $days.' 天';
  964. }
  965. /* END */
  966. }
  967. /* END */
  968. // 合并数据
  969. $LatestData = array_merge($users, $LevelData);
  970. /*更新session*/
  971. session('users', $LatestData);
  972. // session('open_id', $LatestData['open_id']);
  973. session('users_id', $LatestData['users_id']);
  974. setcookie('users_id', $LatestData['users_id'], null);
  975. /* END */
  976. // 返回数据
  977. return $LatestData;
  978. }else{
  979. // session中不存在会员ID则返回空
  980. return false;
  981. }
  982. }
  983. public function ajax_list()
  984. {
  985. if (IS_AJAX_POST){
  986. $param = input('param.');
  987. $page = $param['page'];
  988. // 查询条件处理
  989. $where = $this->AskLogic->GetAskWhere($param, $this->parent_id);
  990. $return = $this->AskModel->GetAjaxAskPage($page,$where);
  991. $return['conf']['reward_switch'] = $this->reward_switch;
  992. $return['conf']['reward_type'] = $this->reward_type;
  993. $this->assign('eyou',$return);
  994. $html = $this->fetch($this->Code.THEME_STYLE.'/page');
  995. $return['html'] = $html;
  996. $this->success('success','',$return);
  997. }
  998. }
  999. }