_conf = $config;
}
public function valid() {
if($this->checkSignature()){
echo htmlspecialchars(strip_tags($_GET["echostr"]), ENT_QUOTES);
exit;
}
}
private function checkSignature()
{
$signature = $_GET["signature"];
$timestamp = $_GET["timestamp"];
$nonce = $_GET["nonce"];
$token = $this->_conf['token'];
$tmpArr = array($token, $timestamp, $nonce);
sort($tmpArr);
$tmpStr = implode( $tmpArr );
$tmpStr = sha1( $tmpStr );
if( $tmpStr == $signature ){
return true;
}else{
return false;
}
}
public function responseMsg() {
$postStr = @file_get_contents("php://input");
if (!empty($postStr)) {
libxml_disable_entity_loader(true);
$postObj = simplexml_load_string($postStr, 'SimpleXMLElement', LIBXML_NOCDATA);
$postType = trim($postObj->MsgType);
switch ($postType) {
case 'text':
$res = $this->receiveText($postObj);
break;
case 'image':
$res = $this->receiveImage($postObj);
break;
case 'location':
$res = $this->receiveLocation($postObj);
break;
case 'voice':
$res = $this->receiveVoice($postObj);
break;
case 'video':
$res = $this->receiveVideo($postObj);
break;
case 'link':
$res = $this->receiveLink($postObj);
break;
case 'event':
$res = $this->receiveEvent($postObj);
break;
default:
$res = 'unknow msg type: '.$postType;
break;
}
echo $res;
}
else{
echo 'other msg';
exit;
}
}
private function receiveLink($object) {
$msg = '你发送的是链接已收到,请等待处理';
$res = $this->transmitText($object, $msg);
return $res;
}
private function receiveText($object) {
$content = trim($object->Content);
$txt = '请点击下方链接:'. "\n";
if ($this->_conf['gjc1'] <> '' && strstr($content, $this->_conf['gjc1'])) {
$data = array();
$txt .= ''.$this->_conf['gjcm1'].'' . "\n";
$data[] = array('Title'=>$this->_conf['gjcm1'], 'Description'=>'', 'PicUrl'=>$this->_conf['gjci1'], 'Url'=>$this->_conf['gjcl1']);
}
elseif ($this->_conf['gjc2'] <> '' && strstr($content, $this->_conf['gjc2'])) {
$data = array();
$txt .= ''.$this->_conf['gjcm2'].'' . "\n";
$data[] = array('Title'=>$this->_conf['gjcm2'], 'Description'=>'', 'PicUrl'=>$this->_conf['gjci2'], 'Url'=>$this->_conf['gjcl2']);
}
elseif ($this->_conf['gjc3'] <> '' && strstr($content, $this->_conf['gjc3'])) {
$data = array();
$txt .= ''.$this->_conf['gjcm3'].'' . "\n";
$data[] = array('Title'=>$this->_conf['gjcm3'], 'Description'=>'', 'PicUrl'=>$this->_conf['gjci3'], 'Url'=>$this->_conf['gjcl3']);
}
elseif ($this->_conf['gjc4'] <> '' && strstr($content, $this->_conf['gjc4'])) {
$data = array();
$txt .= ''.$this->_conf['gjcm4'].'' . "\n";
$data[] = array('Title'=>$this->_conf['gjcm4'], 'Description'=>'', 'PicUrl'=>$this->_conf['gjci4'], 'Url'=>$this->_conf['gjcl4']);
}
else {
$param =[];
$param['wd'] = $content;
$param['num']=7;
if($this->_conf['msgtype'] !=1){
$param['num'] =1;
}
if (substr($this->_conf['sousuo'], 0, 4) != 'http') {
$this->_conf['sousuo'] = 'http://' . $this->_conf['sousuo'];
}
$res = model('Vod')->listCacheData($param);
$data = [];
if($res['code']>1 || empty($res['list'])){
$txt .= ''.$this->_conf['wuziyuan'].'' . "\n";
$data[] = array('Title'=>$this->_conf['wuziyuan'], 'Description'=>'', 'PicUrl'=>'', 'Url'=>$this->_conf['wuziyuanlink']);
}
else{
if($this->_conf['bofang'] ==2){
$search_url = $this->_conf['sousuo'] .mac_url('vod/search',['wd'=>$content]); //'/index.php/vod/search/wd/' . urlencode($content);
$txt .= '点击进入搜索页面查看' . "\n";
$data[] = array('Title'=>'点击进入搜索页面查看', 'Description'=>'恭喜您找到了相关资源,由于微信限制请进入搜索页查看', 'PicUrl'=>'', 'Url'=>$search_url );
}
else {
foreach ($res['list'] as $k => $v) {
$url = $this->_conf['sousuo'] . mac_url_vod_detail($v);
if ($this->_conf['bofang'] > 0) {
$url = $this->_conf['sousuo'] . mac_url_vod_play($v, ['sid' => 1, 'nid' => 1]);
}
if (substr($v['vod_pic'], 0, 4) == 'http' || substr($v['vod_pic'], 0, 4) == 'mac:') {
$picUrl = mac_url_img($v['vod_pic']);
} else {
$picUrl = $this->_conf['sousuo'] . "/" . $v['vod_pic'];
}
$txt .= '' . ($k + 1) . ',' . $v['vod_name'] . ' ' . $v['vod_remarks'] . '' . "\n";
$data[] = array('Title' => $v['vod_name'], 'Description' => mac_substring(strip_tags($v["vod_content"]), 20), 'PicUrl' => $picUrl, 'Url' => $url);
}
}
}
}
if (is_array($data)){
if ( $this->_conf['msgtype'] !=1 && isset($data[0])){
$r = $this->transmitNews($object, $data);
}
else{
$r = $this->transmitText($object, $txt);
}
}
return $r;
}
private function receiveEvent($object) {
$guanzhu = $this->_conf['guanzhu'];
$msg = '';
switch ($object->Event) {
case 'subscribe':
$msg = $guanzhu;
break;
case 'unsubscribe':
$msg = '拜拜了您内~';
break;
case 'CLICK':
switch ($object->EventKey) {
default:
$res = '你点击了: '.$object->EventKey;
break;
}
break;
default:
$msg = 'receive a new event: '.$object->Event;
break;
}
$res = $this->transmitText($object, $msg);
return $res;
}
private function transmitText($object, $content) {
$xmlTpl = '
%s
';
$res = sprintf($xmlTpl, $object->FromUserName, $object->ToUserName, time(), $content);
return $res;
}
private function transmitNews($object, $newsArray) {
if (!is_array($newsArray)) {
return;
}
$itemTpl = '-
';
$item_str = '';
foreach($newsArray as $item) {
$item_str.= sprintf($itemTpl, $item['Title'], $item['Description'], $item['PicUrl'], $item['Url']);
}
$xmlTpl = '
%s
%s
%s
';
$res = sprintf($xmlTpl, $object->FromUserName, $object->ToUserName, time(), count($newsArray),$item_str);
return $res;
}
private function transmitImage($object, $imageArray) {
$xmlTpl = '
%s
';
$res = sprintf($xmlTpl, $object->FromUserName, $object->ToUserName, time(), $imageArray['MediaId']);
return $res;
}
}