mirror of https://gitee.com/karson/fastadmin.git
90 lines
2.0 KiB
PHP
90 lines
2.0 KiB
PHP
<?php
|
|
|
|
namespace app\admin\controller\wechat;
|
|
|
|
use app\admin\model\AdminLog;
|
|
use app\common\controller\Backend;
|
|
use app\common\model\Configvalue;
|
|
use app\common\model\WechatResponse;
|
|
use EasyWeChat\Foundation\Application;
|
|
use think\Config;
|
|
use think\Exception;
|
|
|
|
/**
|
|
* 菜单管理
|
|
*
|
|
* @icon fa fa-list-alt
|
|
*/
|
|
class Menu extends Backend
|
|
{
|
|
|
|
protected $wechatcfg = NULL;
|
|
|
|
public function _initialize()
|
|
{
|
|
parent::_initialize();
|
|
$this->wechatcfg = Configvalue::get('wechat');
|
|
}
|
|
|
|
/**
|
|
* 查看
|
|
*/
|
|
public function index()
|
|
{
|
|
$responselist = array();
|
|
$all = WechatResponse::all();
|
|
foreach ($all as $k => $v)
|
|
{
|
|
$responselist[$v['eventkey']] = $v['title'];
|
|
}
|
|
$this->view->assign('responselist', $responselist);
|
|
$this->view->assign('menu', $this->wechatcfg->content['menu']);
|
|
return $this->view->fetch();
|
|
}
|
|
|
|
/**
|
|
* 修改
|
|
*/
|
|
public function edit($ids = NULL)
|
|
{
|
|
$menu = $this->request->post("menu");
|
|
$menu = (array) json_decode($menu, TRUE);
|
|
$content = $this->wechatcfg->content;
|
|
$content['menu'] = $menu;
|
|
$this->wechatcfg->content = $content;
|
|
$this->wechatcfg->save();
|
|
AdminLog::record(__('Edit'), $ids);
|
|
$this->code = 1;
|
|
return;
|
|
}
|
|
|
|
/**
|
|
* 同步
|
|
*/
|
|
public function sync($ids = NULL)
|
|
{
|
|
$this->code = -1;
|
|
$app = new Application(Config::get('wechat')->toArray());
|
|
|
|
try
|
|
{
|
|
$ret = $app->menu->add($this->wechatcfg->content['menu']);
|
|
if ($ret->errcode == 0)
|
|
{
|
|
AdminLog::record(__('Sync'), $this->wechatcfg->content['menu']);
|
|
$this->code = 1;
|
|
}
|
|
else
|
|
{
|
|
$this->content = $ret->errmsg;
|
|
}
|
|
}
|
|
catch (Exception $e)
|
|
{
|
|
$this->content = $e->getMessage();
|
|
}
|
|
return;
|
|
}
|
|
|
|
}
|