33 lines
933 B
PHP
33 lines
933 B
PHP
<?php
|
|||
|
|
|
||
|
|
namespace plugin\control\app\controller;
|
||
|
|
|
||
|
|
use app\expose\helper\Config;
|
||
|
|
use app\expose\utils\wechat\OfficialAccount;
|
||
|
|
use support\Log;
|
||
|
|
use support\Request;
|
||
|
|
|
||
|
|
class WechatOfficialAccountController
|
||
|
|
{
|
||
|
|
public function message(Request $request, $channels_uid)
|
||
|
|
{
|
||
|
|
$OfficialAccount = new OfficialAccount();
|
||
|
|
$config = new Config('wechat_official_account', 'control', $channels_uid);
|
||
|
|
if (!$config->state) {
|
||
|
|
return 'wechat official account is not enabled';
|
||
|
|
}
|
||
|
|
try {
|
||
|
|
$OfficialAccount->checkSignature($request, $config);
|
||
|
|
if ($request->method() === 'GET') {
|
||
|
|
return $request->get('echostr');
|
||
|
|
}
|
||
|
|
} catch (\Throwable $th) {
|
||
|
|
if ($request->method() === 'GET') {
|
||
|
|
return $th->getMessage();
|
||
|
|
} else {
|
||
|
|
}
|
||
|
|
}
|
||
|
|
return $OfficialAccount->handle($request, $config);
|
||
|
|
}
|
||
|
|
}
|