-
Notifications
You must be signed in to change notification settings - Fork 143
/
processor.php
executable file
·150 lines (134 loc) · 4.51 KB
/
processor.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
<?php
/*=============================================================================
# FileName: processor.php
# Desc:
# Author: Yunzhong - http://www.yunzshop.com
# Email: 913768135@qq.com
# HomePage: http://www.yunzshop.com
# Version: 0.0.1
# LastChange: 2016-02-05 02:08:51
# History:
=============================================================================*/
if (!defined('IN_IA')) {
exit('Access Denied');
}
define('IS_API', true);
class Yun_shopModuleProcessor extends WeModuleProcessor
{
public function __construct()
{
parent::__construct();
}
/**
* 预定义的操作, 构造返回文本消息结构
* @param string $content 回复的消息内容
* @return array 返回统一响应消息结构
*/
public function text($content)
{
return parent::respText($content);
}
/**
* 预定义的操作, 构造返回转接多客服结构
* @return array 返回的消息数组结构
*/
public function custom(array $message = array())
{
return parent::respCustom($message);
}
/**
* 预定义的操作, 构造返回图像消息结构
* @param string $mid 回复的图像资源ID
* @return array 返回的消息数组结构
*/
public function image($mid)
{
return parent::respImage($mid);
}
/**
* 预定义的操作, 构造返回音乐消息结构
* @param string $music 回复的音乐定义(包含元素
* title - string: 音乐标题,
* description - string: 音乐描述,
* musicurl - string: 音乐地址,
* hqhqmusicurl - string: 高品质音乐地址,
* thumb - string: 音乐封面资源ID)
* @return array 返回的消息数组结构
*/
public function music(array $music)
{
return parent::respMusic($music);
}
/**
* 预定义的操作, 构造返回图文消息结构, 一条图文消息不能超过 10 条内容
* @param array $news 回复的图文定义,定义为元素集合
* array(
'title' => '', // string: 新闻标题
'picurl' => '', // string: 图片链接
'url' => '', // string: 原文链接
'description' => '' //string: 新闻描述
);
* @return array 返回的消息数组结构
*/
public function news(array $news)
{
return parent::respNews($news);
}
/**
* 预定义的操作, 构造返回视频消息结构
* @param array $video 回复的视频定义(包含两个元素
* video - string: 视频资源ID,
* thumb - string: 视频缩略图资源ID)
* @return array 返回的消息数组结构
*/
public function video(array $video)
{
return parent::respVideo($video);
}
/**
* 预定义的操作, 构造返回声音消息结构
* @param string $mid 回复的音频资源ID
* @return array 返回的消息数组结构
*/
public function voice($mid)
{
return parent::respVoice($mid);
}
public function respond()
{
$rule = pdo_fetch('select * from ' . tablename('rule') . ' where id=:id limit 1', array(
':id' => $this->rule
));
if (empty($rule)) {
return false;
}
$names = explode(':', $rule['name']);
$plugin = isset($names[1]) ? $names[1] : '';
if (!empty($plugin)) {
//引入laravel
require_once __DIR__.'/bootstrap/autoload.php';
$app = require_once __DIR__.'/bootstrap/app.php';
$kernel = $app->make(Illuminate\Contracts\Http\Kernel::class);
$kernel->handle(
$request = \app\framework\Http\Request::capture()
);
//扫海报事件队列
/*
$msg = $this->message;
$msgType = strtolower($msg['msgtype']);
$msgEvent = strtolower($msg['event']);
if ($msgType == 'event' && ($msgEvent == 'scan' || $msgEvent == 'subscribe')) {
$job = (new \app\Jobs\scanPostConcernQueueJob(YunShop::app()->uniacid, $this))
->delay(\Carbon\Carbon::now()->addMinutes(5));
dispatch($job);
\Log::debug('------poster queue job start-----');
}
*/
//微信接口事件
$response = '';
event(new \app\common\events\WechatProcessor($this,$plugin,$response));
return $response;
}
return false;
}
}