You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
77 lines
2.6 KiB
77 lines
2.6 KiB
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
|
|
// +----------------------------------------------------------------------
|
|
// | Copyright (c) 2016~2023 https://www.crmeb.com All rights reserved.
|
|
// +----------------------------------------------------------------------
|
|
// | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
|
|
// +----------------------------------------------------------------------
|
|
// | Author: CRMEB Team <admin@crmeb.com>
|
|
// +----------------------------------------------------------------------
|
|
|
|
namespace app\services\wechat;
|
|
|
|
|
|
use app\dao\wechat\WechatMenuDao;
|
|
use app\services\BaseServices;
|
|
use crmeb\exceptions\AdminException;
|
|
use crmeb\services\app\WechatService;
|
|
|
|
/**
|
|
* 微信菜单
|
|
* Class WechatMenuServices
|
|
* @package app\services\wechat
|
|
*/
|
|
class WechatMenuServices extends BaseServices
|
|
{
|
|
/**
|
|
* 构造方法
|
|
* WechatMenuServices constructor.
|
|
* @param WechatMenuDao $dao
|
|
*/
|
|
public function __construct(WechatMenuDao $dao)
|
|
{
|
|
$this->dao = $dao;
|
|
}
|
|
|
|
/**
|
|
* 获取微信菜单
|
|
* @return array|mixed
|
|
*/
|
|
public function getWechatMenu()
|
|
{
|
|
$menus = $this->dao->value(['key' => 'wechat_menus'], 'result');
|
|
return $menus ? json_decode($menus, true) : [];
|
|
}
|
|
|
|
/**
|
|
* 保存微信菜单
|
|
* @param array $buttons
|
|
* @return bool
|
|
*/
|
|
public function saveMenu(array $buttons)
|
|
{
|
|
try {
|
|
WechatService::menuService()->add($buttons);
|
|
if ($this->dao->count(['key' => 'wechat_menus'])) {
|
|
$this->dao->update('wechat_menus', ['result' => json_encode($buttons), 'add_time' => time()], 'key');
|
|
} else {
|
|
$this->dao->save(['key' => 'wechat_menus', 'result' => json_encode($buttons), 'add_time' => time()]);
|
|
}
|
|
return true;
|
|
} catch (\Exception $e) {
|
|
if (strstr($e->getMessage(), 'Request AccessToken fail. response')) {
|
|
$msgData = str_replace('Request AccessToken fail. response: ', '', $e->getMessage());
|
|
$msgData = json_decode($msgData, true);
|
|
$errcode = $msgData['errcode'] ?? 0;
|
|
if ($errcode == 40164) {
|
|
throw new AdminException(400704);
|
|
}
|
|
}
|
|
if (strstr($e->getMessage(), 'invalid weapp appid')) {
|
|
throw new AdminException(400705);
|
|
}
|
|
throw new AdminException(WechatService::getMessage($e->getMessage()));
|
|
}
|
|
}
|
|
}
|
|
|