feedback.php 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330
  1. <?php
  2. /**
  3. *
  4. * 评论
  5. *
  6. * @version $Id: feedback.php 2 15:56 2012年10月30日Z tianya $
  7. * @package DedeCMS.Site
  8. * @copyright Copyright (c) 2007 - 2010, DesDev, Inc.
  9. * @license http://help.dedecms.com/usersguide/license.html
  10. * @link http://www.dedecms.com
  11. */
  12. require_once(dirname(__FILE__)."/../include/common.inc.php");
  13. if($cfg_feedback_forbid=='Y') exit('系统已经禁止评论功能!');
  14. require_once(DEDEINC."/filter.inc.php");
  15. if(!isset($action))
  16. {
  17. $action = '';
  18. }
  19. //兼容旧的JS代码
  20. if($action == 'good' || $action == 'bad')
  21. {
  22. if(!empty($aid)) $id = $aid;
  23. require_once(dirname(__FILE__).'/digg_ajax.php');
  24. exit();
  25. }
  26. $cfg_formmember = isset($cfg_formmember) ? true : false;
  27. $ischeck = $cfg_feedbackcheck=='Y' ? 0 : 1;
  28. $aid = (isset($aid) && is_numeric($aid)) ? $aid : 0;
  29. $fid = (isset($fid) && is_numeric($fid)) ? $fid : 0;
  30. if(empty($aid) && empty($fid))
  31. {
  32. ShowMsg('文档id不能为空!','-1');
  33. exit();
  34. }
  35. include_once(DEDEINC."/memberlogin.class.php");
  36. $cfg_ml = new MemberLogin();
  37. if($action=='goodfb')
  38. {
  39. AjaxHead();
  40. $fid = intval($fid);
  41. $dsql->ExecuteNoneQuery("UPDATE `#@__feedback` SET good = good+1 WHERE id='$fid' ");
  42. $row = $dsql->GetOne("SELECT good FROM `#@__feedback` WHERE id='$fid' ");
  43. echo "<a onclick=\"postBadGood('goodfb',{$aid})\">支持</a>[{$row['good']}]";
  44. exit();
  45. }
  46. else if($action=='badfb')
  47. {
  48. AjaxHead();
  49. $fid = intval($fid);
  50. $dsql->ExecuteNoneQuery("UPDATE `#@__feedback` SET bad = bad+1 WHERE id='$fid' ");
  51. $row = $dsql->GetOne("SELECT bad FROM `#@__feedback` WHERE id='$fid' ");
  52. echo "<a onclick=\"postBadGood('badfb',{$aid})\">反对</a>[{$row['bad']}]";
  53. exit();
  54. }
  55. //查看评论
  56. /*
  57. function __ViewFeedback(){ }
  58. */
  59. //-----------------------------------
  60. else if($action=='' || $action=='show')
  61. {
  62. //读取文档信息
  63. $arcRow = GetOneArchive($aid);
  64. if(empty($arcRow['aid']))
  65. {
  66. ShowMsg('无法查看未知文档的评论!','-1');
  67. exit();
  68. }
  69. extract($arcRow, EXTR_SKIP);
  70. include_once(DEDEINC.'/datalistcp.class.php');
  71. $dlist = new DataListCP();
  72. $dlist->pageSize = 20;
  73. if(empty($ftype) || ($ftype!='good' && $ftype!='bad' && $ftype!='feedback'))
  74. {
  75. $ftype = '';
  76. }
  77. $wquery = $ftype!='' ? " And ftype like '$ftype' " : '';
  78. helper('smiley');
  79. //评论内容列表
  80. $querystring = "SELECT fb.*,mb.userid,mb.face as mface,mb.spacesta,mb.scores,mb.sex FROM `#@__feedback` fb
  81. LEFT JOIN `#@__member` mb on mb.mid = fb.mid
  82. WHERE fb.aid='$aid' AND fb.ischeck='1' $wquery ORDER BY fb.id desc";
  83. $dlist->SetParameter('aid',$aid);
  84. $dlist->SetParameter('action','show');
  85. $dlist->SetTemplate(DEDETEMPLATE.'/plus/feedback_templet.htm');
  86. $dlist->SetSource($querystring);
  87. $dlist->Display();
  88. exit();
  89. }
  90. //引用评论
  91. //------------------------------------
  92. /*
  93. function __Quote(){ }
  94. */
  95. else if($action=='quote')
  96. {
  97. $type = empty($type)? '' : 'ajax';
  98. if($type == 'ajax')
  99. {
  100. AjaxHead();
  101. }
  102. $row = $dsql->GetOne("SELECT * FROM `#@__feedback` WHERE id ='$fid'");
  103. require_once(DEDEINC.'/dedetemplate.class.php');
  104. $dtp = new DedeTemplate();
  105. $tplfile = $type == ''? DEDETEMPLATE.'/plus/feedback_quote.htm' : DEDETEMPLATE.'/plus/feedback_quote_ajax.htm';
  106. $dtp->LoadTemplate($tplfile);
  107. $dtp->Display();
  108. exit();
  109. }
  110. //发表评论
  111. //------------------------------------
  112. /*
  113. function __SendFeedback(){ }
  114. */
  115. else if($action=='send')
  116. {
  117. //读取文档信息
  118. $arcRow = GetOneArchive($aid);
  119. if((empty($arcRow['aid']) || $arcRow['notpost']=='1') && empty($fid))
  120. {
  121. ShowMsg('无法对该文档发表评论!','-1');
  122. exit();
  123. }
  124. //是否加验证码重确认
  125. if(empty($isconfirm))
  126. {
  127. $isconfirm = '';
  128. }
  129. if($isconfirm!='yes' && $cfg_feedback_ck=='Y')
  130. {
  131. extract($arcRow, EXTR_SKIP);
  132. require_once(DEDEINC.'/dedetemplate.class.php');
  133. $dtp = new DedeTemplate();
  134. $dtp->LoadTemplate(DEDETEMPLATE.'/plus/feedback_confirm.htm');
  135. $dtp->Display();
  136. exit();
  137. }
  138. //检查验证码
  139. if(preg_match("/4/",$safe_gdopen)){
  140. $validate = isset($validate) ? strtolower(trim($validate)) : '';
  141. $svali = GetCkVdValue();
  142. if(strtolower($validate)!=$svali || $svali=='')
  143. {
  144. ResetVdValue();
  145. ShowMsg('验证码错误!', '-1');
  146. exit();
  147. }
  148. }
  149. //检查用户登录
  150. if(empty($notuser))
  151. {
  152. $notuser=0;
  153. }
  154. if($cfg_feedback_guest == 'N' && $cfg_ml->M_ID < 1)
  155. {
  156. ShowMsg('管理员禁用了游客评论!','-1');
  157. exit();
  158. }
  159. //匿名发表评论
  160. if($notuser==1)
  161. {
  162. $username = $cfg_ml->M_ID > 0 ? '匿名' : '游客';
  163. }
  164. //已登录的用户
  165. else if($cfg_ml->M_ID > 0)
  166. {
  167. $username = $cfg_ml->M_UserName;
  168. }
  169. //用户身份验证
  170. else
  171. {
  172. if($username!='' && $pwd!='')
  173. {
  174. $rs = $cfg_ml->CheckUser($username,$pwd);
  175. if($rs==1)
  176. {
  177. $dsql->ExecuteNoneQuery("UPDATE `#@__member` SET logintime='".time()."',loginip='".GetIP()."' WHERE mid='{$cfg_ml->M_ID}'; ");
  178. }
  179. else
  180. {
  181. $username = '游客';
  182. }
  183. }
  184. else
  185. {
  186. $username = '游客';
  187. }
  188. }
  189. $ip = GetIP();
  190. $dtime = time();
  191. //检查评论间隔时间;
  192. if(!empty($cfg_feedback_time))
  193. {
  194. //检查最后发表评论时间,如果未登陆判断当前IP最后评论时间
  195. if($cfg_ml->M_ID > 0)
  196. {
  197. $where = "WHERE `mid` = '$cfg_ml->M_ID'";
  198. }
  199. else
  200. {
  201. $where = "WHERE `ip` = '$ip'";
  202. }
  203. $row = $dsql->GetOne("SELECT dtime FROM `#@__feedback` $where ORDER BY `id` DESC ");
  204. if(is_array($row) && $dtime - $row['dtime'] < $cfg_feedback_time)
  205. {
  206. ResetVdValue();
  207. ShowMsg('管理员设置了评论间隔时间,请稍等休息一下!','-1');
  208. exit();
  209. }
  210. }
  211. if(empty($face))
  212. {
  213. $face = 0;
  214. }
  215. $face = intval($face);
  216. $typeid = (isset($typeid) && is_numeric($typeid)) ? intval($typeid) : 0;
  217. extract($arcRow, EXTR_SKIP);
  218. $msg = cn_substrR(TrimMsg($msg), 1000);
  219. $username = cn_substrR(HtmlReplace($username, 2), 20);
  220. if(empty($feedbacktype) || ($feedbacktype!='good' && $feedbacktype!='bad'))
  221. {
  222. $feedbacktype = 'feedback';
  223. }
  224. //保存评论内容
  225. if($comtype == 'comments')
  226. {
  227. $arctitle = addslashes($title);
  228. $typeid = intval($typeid);
  229. $ischeck = intval($ischeck);
  230. $feedbacktype = preg_replace("#[^0-9a-z]#i", "", $feedbacktype);
  231. if($msg!='')
  232. {
  233. $inquery = "INSERT INTO `#@__feedback`(`aid`,`typeid`,`username`,`arctitle`,`ip`,`ischeck`,`dtime`, `mid`,`bad`,`good`,`ftype`,`face`,`msg`)
  234. VALUES ('$aid','$typeid','$username','$arctitle','$ip','$ischeck','$dtime', '{$cfg_ml->M_ID}','0','0','$feedbacktype','$face','$msg'); ";
  235. $rs = $dsql->ExecuteNoneQuery($inquery);
  236. if(!$rs)
  237. {
  238. ShowMsg(' 发表评论错误! ', '-1');
  239. //echo $dsql->GetError();
  240. exit();
  241. }
  242. }
  243. }
  244. //引用回复
  245. elseif ($comtype == 'reply')
  246. {
  247. $row = $dsql->GetOne("SELECT * FROM `#@__feedback` WHERE id ='$fid'");
  248. $arctitle = addslashes($row['arctitle']);
  249. $aid =$row['aid'];
  250. $msg = $quotemsg.$msg;
  251. $msg = HtmlReplace($msg, 2);
  252. $inquery = "INSERT INTO `#@__feedback`(`aid`,`typeid`,`username`,`arctitle`,`ip`,`ischeck`,`dtime`,`mid`,`bad`,`good`,`ftype`,`face`,`msg`)
  253. VALUES ('$aid','$typeid','$username','$arctitle','$ip','$ischeck','$dtime','{$cfg_ml->M_ID}','0','0','$feedbacktype','$face','$msg')";
  254. $dsql->ExecuteNoneQuery($inquery);
  255. }
  256. if($feedbacktype=='bad')
  257. {
  258. $dsql->ExecuteNoneQuery("UPDATE `#@__archives` SET scores=scores-{cfg_feedback_sub},badpost=badpost+1,lastpost='$dtime' WHERE id='$aid' ");
  259. }
  260. else if($feedbacktype=='good')
  261. {
  262. $dsql->ExecuteNoneQuery("UPDATE `#@__archives` SET scores=scores+{$cfg_feedback_add},goodpost=goodpost+1,lastpost='$dtime' WHERE id='$aid' ");
  263. }
  264. else
  265. {
  266. $dsql->ExecuteNoneQuery("UPDATE `#@__archives` SET scores=scores+1,lastpost='$dtime' WHERE id='$aid' ");
  267. }
  268. if($cfg_ml->M_ID > 0)
  269. {
  270. $dsql->ExecuteNoneQuery("UPDATE `#@__member` SET scores=scores+{$cfg_sendfb_scores} WHERE mid='{$cfg_ml->M_ID}' ");
  271. }
  272. //统计用户发出的评论
  273. if($cfg_ml->M_ID > 0)
  274. {
  275. #api{{
  276. if(defined('UC_API') && @include_once DEDEROOT.'/api/uc.func.php')
  277. {
  278. //同步积分
  279. uc_credit_note($cfg_ml->M_LoginID, $cfg_sendfb_scores);
  280. //推送事件
  281. $arcRow = GetOneArchive($aid);
  282. $feed['icon'] = 'thread';
  283. $feed['title_template'] = '<b>{username} 在网站发表了评论</b>';
  284. $feed['title_data'] = array('username' => $cfg_ml->M_UserName);
  285. $feed['body_template'] = '<b>{subject}</b><br>{message}';
  286. $url = !strstr($arcRow['arcurl'],'http://') ? ($cfg_basehost.$arcRow['arcurl']) : $arcRow['arcurl'];
  287. $feed['body_data'] = array('subject' => "<a href=\"".$url."\">$arcRow[arctitle]</a>", 'message' => cn_substr(strip_tags(preg_replace("/\[.+?\]/is", '', $msg)), 150));
  288. $feed['images'][] = array('url' => $cfg_basehost.'/images/scores.gif', 'link'=> $cfg_basehost);
  289. uc_feed_note($cfg_ml->M_LoginID,$feed); unset($arcRow);
  290. }
  291. #/aip}}
  292. $row = $dsql->GetOne("SELECT COUNT(*) AS nums FROM `#@__feedback` WHERE `mid`='".$cfg_ml->M_ID."'");
  293. $dsql->ExecuteNoneQuery("UPDATE `#@__member_tj` SET `feedback`='$row[nums]' WHERE `mid`='".$cfg_ml->M_ID."'");
  294. }
  295. //会员动态记录
  296. $cfg_ml->RecordFeeds('feedback', $arctitle, $msg, $aid);
  297. $_SESSION['sedtime'] = time();
  298. if(empty($uid) && isset($cmtuser)) $uid = $cmtuser;
  299. $backurl = $cfg_formmember ? "index.php?uid={$uid}&action=viewarchives&aid={$aid}" : "feedback.php?aid={$aid}";
  300. if($ischeck==0)
  301. {
  302. ShowMsg('成功发表评论,但需审核后才会显示你的评论!', $backurl);
  303. }
  304. else
  305. {
  306. ShowMsg('成功发表评论,现在转到评论页面!', $backurl);
  307. }
  308. exit();
  309. }