| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183 | 
							- <?php
 
- defined('IN_PHPCMS') or exit('No permission resources.'); 
 
- class index {
 
- 	protected  $commentid, $modules, $siteid, $format;
 
- 	function __construct() {
 
- 		pc_base::load_app_func('global');
 
- 		pc_base::load_sys_class('format', '', 0);
 
- 		$this->commentid = isset($_GET['commentid']) && trim(urldecode($_GET['commentid'])) ? trim(urldecode($_GET['commentid'])) : $this->_show_msg(L('illegal_parameters'));
 
- 		if(!preg_match("/^[a-z0-9_\-]+$/i",$this->commentid)) $this->_show_msg(L('illegal_parameters'));
 
- 		$this->format = isset($_GET['format']) ? $_GET['format'] : '';
 
- 		list($this->modules, $this->contentid, $this->siteid) = decode_commentid($this->commentid);
 
- 		define('SITEID', $this->siteid);
 
- 		$this->callback = isset($_GET['callback']) ? safe_replace($_GET['callback']) : '';
 
- 	}
 
- 	
 
- 	public function init() {
 
- 		$hot = isset($_GET['hot']) && intval($_GET['hot']) ? intval($_GET['hot']) : 0;
 
- 		
 
- 		pc_base::load_sys_class('form');
 
- 		$commentid =& $this->commentid;
 
- 		$modules =& $this->modules;
 
- 		$contentid =& $this->contentid;
 
- 		$siteid =& $this->siteid;
 
- 		$username = param::get_cookie('_username',L('phpcms_friends'));
 
- 		$userid = param::get_cookie('_userid');
 
- 		
 
- 		$comment_setting_db = pc_base::load_model('comment_setting_model');
 
- 		$setting = $comment_setting_db->get_one(array('siteid'=>$this->siteid));
 
- 		//SEO
 
- 		$SEO = seo($siteid, '', $title);
 
- 		
 
- 		//通过API接口调用数据的标题、URL地址
 
- 		if (!$data = get_comment_api($commentid)) {
 
- 			$this->_show_msg(L('illegal_parameters'));
 
- 		} else {
 
- 			$title = $data['title'];
 
- 			$url = $data['url'];
 
- 			if (isset($data['allow_comment']) && empty($data['allow_comment'])) {
 
- 				showmessage(L('canot_allow_comment'));
 
- 			}
 
- 			unset($data);
 
- 		} 		
 
- 		
 
- 		if (isset($_GET['iframe'])) {
 
- 			if (strpos($url,APP_PATH) === 0) {
 
- 				$domain = APP_PATH;
 
- 			} else {
 
- 				$urls = parse_url($url);
 
- 				$domain = $urls['scheme'].'://'.$urls['host'].(isset($urls['port']) && !empty($urls['port']) ? ":".$urls['port'] : '').'/';
 
- 			}
 
- 			include template('comment', 'show_list');
 
- 		} else {
 
- 			include template('comment', 'list');
 
- 		}
 
- 	}
 
- 	
 
- 	public function post() {
 
- 		$comment = pc_base::load_app_class('comment');
 
- 		$id = isset($_GET['id']) && intval($_GET['id']) ? intval($_GET['id']) : '';
 
- 		$SITE = siteinfo($this->siteid);
 
- 		$username = param::get_cookie('_username',$SITE['name'].L('phpcms_friends'));
 
- 		$userid = param::get_cookie('_userid');
 
- 		$comment_setting_db = pc_base::load_model('comment_setting_model');
 
- 		$setting = $comment_setting_db->get_one(array('siteid'=>$this->siteid));
 
- 		if (!empty($setting)) {
 
- 			//是否允许游客
 
- 			if (!$setting['guest']) {
 
- 				if (!$username || !$userid) {
 
- 					$this->_show_msg(L('landing_users_to_comment'), HTTP_REFERER);
 
- 				}
 
- 			}
 
- 			if ($setting['code']) {
 
- 				$session_storage = 'session_'.pc_base::load_config('system','session_storage');
 
- 				pc_base::load_sys_class($session_storage);
 
- 				session_start();
 
- 				$code = isset($_POST['code']) && trim($_POST['code']) ? strtolower(trim($_POST['code'])) : $this->_show_msg(L('please_enter_code'), HTTP_REFERER);
 
- 				if ($code != $_SESSION['code']) {
 
- 					$this->_show_msg(L('code_error'), HTTP_REFERER);
 
- 				}
 
- 			}
 
- 		}
 
- 		
 
- 		//通过API接口调用数据的标题、URL地址
 
- 		if (!$data = get_comment_api($this->commentid)) {
 
- 			$this->_show_msg(L('illegal_parameters'));
 
- 		} else {
 
- 			$title = $data['title'];
 
- 			$url = $data['url'];
 
- 			unset($data);
 
- 		} 
 
- 		if (strpos($url,APP_PATH) === 0) {
 
- 			$domain = APP_PATH;
 
- 		} else {
 
- 			$urls = parse_url($url);
 
- 			$domain = $urls['scheme'].'://'.$urls['host'].(isset($urls['port']) && !empty($urls['port']) ? ":".$urls['port'] : '').'/';
 
- 		}
 
- 		
 
- 		$content = isset($_POST['content']) && trim($_POST['content']) ? trim($_POST['content']) : $this->_show_msg(L('please_enter_content'), HTTP_REFERER);
 
- 		$direction = isset($_POST['direction']) && intval($_POST['direction']) ? intval($_POST['direction']) : '';
 
- 		$data = array('userid'=>$userid, 'username'=>$username, 'content'=>$content, 'direction'=>$direction);
 
- 		$comment->add($this->commentid, $this->siteid, $data, $id, $title, $url);
 
- 		$this->_show_msg($comment->get_error()."<iframe width='0' id='top_src' height='0' src='$domain/js.html?200'></iframe>", (in_array($comment->msg_code, array(0,7)) ? HTTP_REFERER : ''), (in_array($comment->msg_code, array(0,7)) ? 1 : 0));
 
- 	}
 
- 	
 
- 	public function support() {
 
- 		$id = isset($_GET['id']) && intval($_GET['id']) ? intval($_GET['id']) : $this->_show_msg(L('illegal_parameters'), HTTP_REFERER);
 
- 		unset($_GET);
 
- 		if (param::get_cookie('comment_'.$id)) {
 
- 			$this->_show_msg(L('dragonforce'), HTTP_REFERER);
 
- 		}
 
- 		$comment = pc_base::load_app_class('comment');
 
- 		if ($comment->support($this->commentid, $id)) {
 
- 			param::set_cookie('comment_'.$id, $id, SYS_TIME+3600);
 
- 		}
 
- 		$this->_show_msg($comment->get_error(), ($comment->msg_code == 0 ? HTTP_REFERER : ''), ($comment->msg_code == 0 ? 1 : 0));
 
- 	}
 
- 	
 
- 	public function ajax() {
 
- 		$commentid =& $this->commentid;
 
- 		$siteid =& $this->siteid;
 
- 		$num = isset($_GET['num']) && intval($_GET['num']) ? intval($_GET['num']) : 20;
 
- 		$direction = isset($_GET['direction']) && intval($_GET['direction']) ? intval($_GET['direction']) : 0;
 
- 		$pc_tag = pc_base::load_app_class('comment_tag');
 
- 		$comment = array();
 
- 		if ($comment = $pc_tag->get_comment(array('commentid'=>$commentid))) {
 
- 			$page = isset($_GET['page']) && intval($_GET['page']) ? intval($_GET['page']) : 1;
 
- 			$offset = ($page-1)*$num;
 
- 			$data = array('commentid'=>$commentid, 'site'=>$siteid, 'limit'=>$offset.','.$num, 'direction'=>$direction);
 
- 			$comment['data'] = $pc_tag->lists($data);
 
- 			pc_base::load_sys_class('format', '', 0);
 
- 			foreach ($comment['data'] as $k=>$v) {
 
- 				$comment['data'][$k]['format_time'] = format::date($v['creat_at'], 1);
 
- 			}
 
- 			switch ($direction) {
 
- 				case '1'://正
 
- 					$total = $comment['square'];
 
- 					break;
 
- 					
 
- 				case '2'://反
 
- 					$total = $comment['anti'];
 
- 					break;
 
- 					
 
- 				case '3'://中
 
- 					$total = $comment['neutral'];
 
- 					break;
 
- 					
 
- 				default:
 
- 					$total = $comment['total'];
 
- 					break;
 
- 			}
 
- 			$comment['pages'] = pages($total, $page, $num, 'javascript:comment_next_page({$page})');
 
- 			if (pc_base::load_config('system', 'charset') == 'gbk') {
 
- 				$comment = array_iconv($comment, 'gbk', 'utf-8');
 
- 			}
 
- 			echo json_encode($comment);
 
- 		} else {
 
- 			exit('0');
 
- 		}
 
- 	}
 
- 	
 
- 	//提示信息处理
 
- 	protected function _show_msg($msg, $url = '', $status = 0) {
 
- 		
 
- 		switch ($this->format) {
 
- 			case 'json':
 
- 				$msg = pc_base::load_config('system', 'charset') == 'gbk' ? iconv('gbk', 'utf-8', $msg) : $msg;
 
- 				echo json_encode(array('msg'=>$msg, 'status'=>$status));
 
- 				exit;
 
- 			break;
 
- 			
 
- 			case 'jsonp':
 
- 				$msg = pc_base::load_config('system', 'charset') == 'gbk' ? iconv('gbk', 'utf-8', $msg) : $msg;
 
- 				echo strip_tags($this->callback).'('.json_encode(array('msg'=>$msg, 'status'=>$status)).')';
 
- 				exit;
 
- 			break;
 
- 			
 
- 			default:
 
- 				showmessage($msg, $url);
 
- 			break;
 
- 		}
 
- 	}
 
- }
 
 
  |