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.
63 lines
1.9 KiB
63 lines
1.9 KiB
<?php
|
|
|
|
// +----------------------------------------------------------------------
|
|
// | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
|
|
// +----------------------------------------------------------------------
|
|
// | Copyright (c) 2016~2022 https://www.crmeb.com All rights reserved.
|
|
// +----------------------------------------------------------------------
|
|
// | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
|
|
// +----------------------------------------------------------------------
|
|
// | Author: CRMEB Team <admin@crmeb.com>
|
|
// +----------------------------------------------------------------------
|
|
|
|
|
|
namespace app\controller\admin\wechat;
|
|
|
|
|
|
use crmeb\basic\BaseController;
|
|
use app\common\repositories\system\CacheRepository;
|
|
use crmeb\services\WechatService;
|
|
use Exception;
|
|
use think\db\exception\DbException;
|
|
|
|
/**
|
|
* Class WechatMenu
|
|
* @package app\controller\admin\wechat
|
|
* @author xaboy
|
|
* @day 2020-04-24
|
|
*/
|
|
class WechatMenu extends BaseController
|
|
{
|
|
/**
|
|
* @param CacheRepository $repository
|
|
* @return mixed
|
|
* @author xaboy
|
|
* @day 2020-04-24
|
|
*/
|
|
public function info(CacheRepository $repository)
|
|
{
|
|
$data['wechat_menus'] = $repository->getResultByKey('wechat_menus') ?? [];
|
|
return app('json')->success($data);
|
|
}
|
|
|
|
/**
|
|
* @param CacheRepository $repository
|
|
* @return mixed
|
|
* @throws DbException
|
|
* @author xaboy
|
|
* @day 2020-04-24
|
|
*/
|
|
public function save(CacheRepository $repository)
|
|
{
|
|
$buttons = (array)$this->request->param('button', []);
|
|
if (!count($buttons)) return app('json')->fail('请添加至少一个按钮');
|
|
|
|
try {
|
|
WechatService::create()->getApplication()->menu->add($buttons);
|
|
} catch (Exception $e) {
|
|
return app('json')->fail('设置失败:' . $e->getMessage());
|
|
}
|
|
$repository->save('wechat_menus', $buttons);
|
|
return app('json')->success('设置成功');
|
|
}
|
|
}
|
|
|