Files
fastmovieai/fastmovie-admin/app/controller/WechatOfficialAccountController.php
T

33 lines
879 B
PHP
Raw Normal View History

<?php
namespace 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)
{
$OfficialAccount = new OfficialAccount();
$config = Config::get('wechat_official_account');
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);
}
}