252 lines
8.8 KiB
PHP
252 lines
8.8 KiB
PHP
<?php namespace Gdoo\Wechat\Controllers;
|
||
|
||
use Cache;
|
||
use DB;
|
||
use Log;
|
||
|
||
use Gdoo\Wechat\Models\WechatUser;
|
||
use Gdoo\Wechat\Services\WechatService;
|
||
|
||
use Gdoo\Index\Controllers\Controller;
|
||
|
||
use Gdoo\System\Models\Setting;
|
||
|
||
use EasyWeChat\Factory;
|
||
use EasyWeChat\Kernel\Messages\News;
|
||
use EasyWeChat\Kernel\Messages\NewsItem;
|
||
use EasyWeChat\Kernel\Messages\Text;
|
||
|
||
class EchoController extends Controller
|
||
{
|
||
private $wechat = null;
|
||
private $openid = null;
|
||
|
||
public function __construct() {
|
||
parent::__construct();
|
||
}
|
||
|
||
public function indexAction()
|
||
{
|
||
if (empty($_GET['echostr']) && empty($_GET["signature"]) && empty($_GET["nonce"])) {
|
||
exit('Access denied');
|
||
}
|
||
|
||
$app = WechatService::getApp();
|
||
$app->server->push(function ($msg) {
|
||
|
||
$config = WechatService::getConfig();
|
||
$this->openid = $msg['FromUserName'];
|
||
|
||
// $fc = new \GdooWord('igb', database_path().'/dict.igb');
|
||
// $arr = $fc->getAutoWord($msg['Content']);
|
||
// Log::info('anc', $arr);
|
||
/*
|
||
$items = [
|
||
new NewsItem([
|
||
'title' => '某某某公司发货提醒',
|
||
'description' => "单据编号:123456\n发货时间:2020-01-12",
|
||
'url' => "http://israel.sinaapp.com/cet/index.php?openid=".$this->openid,
|
||
'image' => '',
|
||
]),
|
||
];
|
||
*/
|
||
|
||
/*
|
||
$items = [
|
||
new NewsItem([
|
||
'title' => '流程[办公用品采购]审核提醒',
|
||
'description' => "转交人:李先生\n时间:2020-01-12",
|
||
'url' => "http://shenghua.test/index.php?openid=".$this->openid,
|
||
'image' => '',
|
||
]),
|
||
];
|
||
|
||
$news = new News($items);
|
||
return $news;
|
||
|
||
$msg = new Text("订单发货最新三条\n1.单据编号:123456,发货时间:2020-01-12,件数:123,金额:100\n2.单据编号:123456,发货时间:2020-01-12,件数:123,金额:100\n2.单据编号:123456,发货时间:2020-01-12,件数:123,金额:100");
|
||
$msg = new Text("促销最新三条\n1.单据编号:123456,发货时间:2020-01-12,件数:123,金额:100\n2.单据编号:123456,发货时间:2020-01-12,件数:123,金额:100\n2.单据编号:123456,发货时间:2020-01-12,件数:123,金额:100");
|
||
$msg = new Text("进店最新三条\n1.单据编号:123456,发货时间:2020-01-12,件数:123,金额:100\n2.单据编号:123456,发货时间:2020-01-12,件数:123,金额:100\n2.单据编号:123456,发货时间:2020-01-12,件数:123,金额:100");
|
||
|
||
return $msg;
|
||
*/
|
||
//print_R($arr);
|
||
//exit;
|
||
|
||
if ($config['status'] == 0) {
|
||
return '服务关闭中,请稍后再试。';
|
||
}
|
||
|
||
switch ($msg['MsgType']) {
|
||
case 'text':
|
||
return $msg['Content'];
|
||
break;
|
||
case 'image':
|
||
//$this->special('image', $msg);
|
||
break;
|
||
case 'voice':
|
||
return $msg['Content'];
|
||
//$this->special('voice', $msg);
|
||
break;
|
||
case 'video':
|
||
return '收到视频消息';
|
||
break;
|
||
case 'location':
|
||
return '收到坐标消息';
|
||
break;
|
||
case 'link':
|
||
return '收到链接消息';
|
||
break;
|
||
case 'file':
|
||
return '收到文件消息';
|
||
break;
|
||
case 'event':
|
||
switch (strtolower($msg['Event'])) {
|
||
// 关注
|
||
case 'subscribe':
|
||
//$this->subscribe($msg);
|
||
break;
|
||
// 取消关注
|
||
case 'unsubscribe':
|
||
//$this->subscribe($msg, 'unsubscribe');
|
||
break;
|
||
// 用户扫码已关注时的事件推送
|
||
case 'scan':
|
||
//$this->scan($msg);
|
||
break;
|
||
// 上报地理位置事件 event_location
|
||
case 'location':
|
||
//$this->special('event_location', $msg);
|
||
break;
|
||
// 自定义菜单事件
|
||
case 'click':
|
||
//$this->keyword($msg['EventKey'], $msg);
|
||
break;
|
||
// 点击菜单跳转链接时的事件推送
|
||
case 'view':
|
||
//$this->special('view', $msg);
|
||
break;
|
||
default:
|
||
break;
|
||
break;
|
||
}
|
||
// 其它消息
|
||
default:
|
||
// return '收到其它消息';
|
||
break;
|
||
}
|
||
});
|
||
|
||
return $app->server->serve();
|
||
}
|
||
|
||
/**
|
||
* 文件消息处理
|
||
*/
|
||
protected function api()
|
||
{
|
||
return $this->keys("wechat_keys#keys#{$this->receive['content']}", false, $this->forceCustom);
|
||
}
|
||
|
||
/**
|
||
* 文件消息处理
|
||
*/
|
||
protected function text()
|
||
{
|
||
return $this->keys("wechat_keys#keys#{$this->receive['content']}", false, $this->forceCustom);
|
||
}
|
||
|
||
/**
|
||
* 粉丝关注\取消关注
|
||
*/
|
||
public function subscribe($msg, $type = 'subscribe')
|
||
{
|
||
$friendInfo = $this->api->get_user_info($this->openid);
|
||
$friendInfo = (array)$friendInfo[1];
|
||
$model = WechatUser::firstOrNew(['openid' => $this->openid]);
|
||
// 公众号没有权限获取用户基本信息 可按需求扩展
|
||
if (empty($friendInfo)) {
|
||
if ($type == 'subscribe') {
|
||
} elseif ($type == 'unsubscribe') {
|
||
}
|
||
} else {
|
||
if ($type == 'subscribe') {
|
||
$model->avatar = $friendInfo['headimgurl'];
|
||
$model->openid = $friendInfo['openid'];
|
||
$model->gender = $friendInfo['sex'];
|
||
$model->name = $friendInfo['nickname'];
|
||
$model->address = $friendInfo['country']."\n".$friendInfo['province']."\n".$friendInfo['city'];
|
||
$model->subscribe = 1;
|
||
$model->created_at = time();
|
||
$model->status = 1;
|
||
|
||
// 有场景参数
|
||
if (isset($msg['Ticket'])) {
|
||
$recommend = WechatUser::where('ticket', $msg['Ticket'])->first();
|
||
$model->parent_id = $recommend['id'];
|
||
}
|
||
// 关注成功后发送消息
|
||
|
||
} elseif ($type == 'unsubscribe') {
|
||
$model->subscribe = 0;
|
||
$model->unsubscribe_time = time();
|
||
$model->status = 0;
|
||
}
|
||
|
||
$model->save();
|
||
}
|
||
|
||
if (isset($msg['Ticket'])) {
|
||
$this->replyNews($msg);
|
||
} else {
|
||
$rule = Db::table('wx_mp_rule')
|
||
->where('mpid', $this->mid)
|
||
->where('event', 'subscribe')
|
||
->first();
|
||
|
||
if ($rule) {
|
||
$reply = DB::table('wx_mp_reply')->where('reply_id', $rule['reply_id'])->first();
|
||
$this->we->reply($reply['content']);
|
||
}
|
||
}
|
||
}
|
||
|
||
public function replyNews($msg) {
|
||
$temple = DB::table('house_temple')->where('ticket', $msg['Ticket'])->first();
|
||
$this->we->reply([
|
||
'type' => 'news',
|
||
'articles' => [[
|
||
'title' => $temple['name'],
|
||
'description' => $temple['remark'],
|
||
'picurl' => url('uploads/'.$temple['image']),
|
||
'url' => url('wap/index/info', ['id' => $temple['id']]),
|
||
],[
|
||
'title' => '立即供灯',
|
||
'description' => '立即供灯',
|
||
'picurl' => '',
|
||
'url' => url('wap/light/index', ['temple_id' => $temple['id']]),
|
||
]
|
||
]
|
||
]);
|
||
}
|
||
|
||
/**
|
||
* 扫描二维码事件
|
||
*/
|
||
public function scan($msg)
|
||
{
|
||
// 有场景参数
|
||
if (isset($msg['Ticket'])) {
|
||
$this->replyNews($msg);
|
||
}
|
||
}
|
||
|
||
public function json($data, $status = false)
|
||
{
|
||
$json = [
|
||
'data' => $data,
|
||
'status' => $status,
|
||
];
|
||
return response()->json($json)->setEncodingOptions(JSON_UNESCAPED_UNICODE);
|
||
}
|
||
} |