| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166 | <?phpnamespace app\admin\controller\unishop;use app\common\controller\Backend;use \app\admin\model\unishop\Config as ConfigModel;use think\Exception;/** * 系统配置 * * @icon fa fa-circle-o */class Config extends Backend{    /**     * Config模型对象     * @var \app\admin\model\unishop\Config     */    protected $model = null;    public function _initialize()    {        parent::_initialize();        $this->model = new ConfigModel;    }    /**     * 查看     */    public function index()    {        $siteList = [];        $groupList = ConfigModel::getGroupList();        foreach ($groupList as $k => $v) {            $siteList[$k]['name'] = $k;            $siteList[$k]['title'] = $v;            $siteList[$k]['list'] = [];        }        foreach ($this->model->all() as $k => $v) {            if (!isset($siteList[$v['group']])) {                continue;            }            $value = $v->toArray();            $value['title'] = __($value['title']);            if (in_array($value['type'], ['select', 'selects', 'checkbox', 'radio'])) {                $value['value'] = explode(',', $value['value']);            }            $value['content'] = json_decode($value['content'], TRUE);            $value['tip'] = htmlspecialchars($value['tip']);            $siteList[$v['group']]['list'][] = $value;        }        $index = 0;        foreach ($siteList as $k => &$v) {            $v['active'] = !$index ? true : false;            $index++;        }        $this->view->assign('siteList', $siteList);        $this->view->assign('typeList', ConfigModel::getTypeList());        $this->view->assign('groupList', ConfigModel::getGroupList());        return $this->view->fetch();    }    /**     * 添加     */    public function add()    {        if ($this->request->isPost()) {            $params = $this->request->post("row/a");            if ($params) {                foreach ($params as $k => &$v) {                    $v = is_array($v) ? implode(',', $v) : $v;                }                try {                    if (in_array($params['type'], ['select', 'selects', 'checkbox', 'radio', 'array'])) {                        $params['content'] = json_encode(ConfigModel::decode($params['content']), JSON_UNESCAPED_UNICODE);                    } else {                        $params['content'] = '';                    }                    $result = $this->model->create($params);                    if ($result !== false) {                        $this->success();                    } else {                        $this->error($this->model->getError());                    }                } catch (Exception $e) {                    $this->error($e->getMessage());                }            }            $this->error(__('Parameter %s can not be empty', ''));        }        return $this->view->fetch();    }    /**     * 编辑     * @param null $ids     */    public function edit($ids = NULL)    {        if ($this->request->isPost()) {            $row = $this->request->post("row/a");            if ($row) {                $configList = [];                foreach ($this->model->all() as $v) {                    if (isset($row[$v['name']])) {                        $value = $row[$v['name']];                        if (is_array($value) && isset($value['field'])) {                            $value = json_encode(ConfigModel::getArrayData($value), JSON_UNESCAPED_UNICODE);                        } else {                            $value = is_array($value) ? implode(',', $value) : $value;                        }                        $v['value'] = $value;                        $configList[] = $v->toArray();                    }                }                $this->model->allowField(true)->saveAll($configList);                $this->success();            }            $this->error(__('Parameter %s can not be empty', ''));        }    }    public function del($ids = "")    {        $name = $this->request->request('name');        $config = ConfigModel::getByName($name);        if ($config) {            try {                $config->delete();            } catch (Exception $e) {                $this->error($e->getMessage());            }            $this->success();        } else {            $this->error(__('Invalid parameters'));        }    }    /**     * 检测配置项是否存在     * @internal     */    public function check()    {        $params = $this->request->post("row/a");        if ($params) {            $config = $this->model->get($params);            if (!$config) {                return $this->success();            } else {                return $this->error(__('Name already exist'));            }        } else {            return $this->error(__('Invalid parameters'));        }    }}
 |