120 lines
		
	
	
		
			4.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			120 lines
		
	
	
		
			4.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace app\services\system\lang;
 | 
						|
 | 
						|
use app\dao\system\lang\LangCountryDao;
 | 
						|
use app\services\BaseServices;
 | 
						|
use crmeb\exceptions\AdminException;
 | 
						|
use crmeb\services\CacheService;
 | 
						|
use crmeb\services\FormBuilder as Form;
 | 
						|
use think\facade\Route as Url;
 | 
						|
 | 
						|
class LangCountryServices extends BaseServices
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * @param LangCountryDao $dao
 | 
						|
     */
 | 
						|
    public function __construct(LangCountryDao $dao)
 | 
						|
    {
 | 
						|
        $this->dao = $dao;
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * 地区语言列表
 | 
						|
     * @param array $where
 | 
						|
     * @return array
 | 
						|
     * @throws \think\db\exception\DataNotFoundException
 | 
						|
     * @throws \think\db\exception\DbException
 | 
						|
     * @throws \think\db\exception\ModelNotFoundException
 | 
						|
     */
 | 
						|
    public function LangCountryList(array $where = []): array
 | 
						|
    {
 | 
						|
        [$page, $limit] = $this->getPageValue();
 | 
						|
        $list = $this->dao->selectList($where, '*', $page, $limit, 'id desc', [], true)->toArray();
 | 
						|
        /** @var LangTypeServices $langTypeServices */
 | 
						|
        $langTypeServices = app()->make(LangTypeServices::class);
 | 
						|
        $langTypeList = $langTypeServices->getColumn([], 'language_name,file_name,id', 'id');
 | 
						|
        foreach ($list as &$item) {
 | 
						|
            if (isset($langTypeList[$item['type_id']])) {
 | 
						|
                $item['link_lang'] = $langTypeList[$item['type_id']]['language_name'] . '(' . $langTypeList[$item['type_id']]['file_name'] . ')';
 | 
						|
            } else {
 | 
						|
                $item['link_lang'] = '暂无';
 | 
						|
            }
 | 
						|
        }
 | 
						|
        $count = $this->dao->count($where);
 | 
						|
        return compact('list', 'count');
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * 添加语言地区表单
 | 
						|
     * @param $id
 | 
						|
     * @return array
 | 
						|
     * @throws \FormBuilder\Exception\FormBuilderException
 | 
						|
     * @throws \think\db\exception\DataNotFoundException
 | 
						|
     * @throws \think\db\exception\DbException
 | 
						|
     * @throws \think\db\exception\ModelNotFoundException
 | 
						|
     */
 | 
						|
    public function langCountryForm($id)
 | 
						|
    {
 | 
						|
        if ($id) $info = $this->dao->get($id);
 | 
						|
        $field = [];
 | 
						|
        $field[] = Form::input('name', '所属地区', $info['name'] ?? '')->required('请填写所属地区')->appendRule('suffix', [
 | 
						|
            'type' => 'div',
 | 
						|
            'class' => 'tips-info',
 | 
						|
            'domProps' => ['innerHTML' => '例如:中国、香港、德国']
 | 
						|
        ]);
 | 
						|
        $field[] = Form::input('code', '语言识别码', $info['code'] ?? '')->required('请填写浏览器语言识别码')->appendRule('suffix', [
 | 
						|
            'type' => 'div',
 | 
						|
            'class' => 'tips-info',
 | 
						|
            'domProps' => ['innerHTML' => '浏览器语言识别码']
 | 
						|
        ]);
 | 
						|
        /** @var LangTypeServices $langTypeServices */
 | 
						|
        $langTypeServices = app()->make(LangTypeServices::class);
 | 
						|
        $list = $langTypeServices->getColumn(['is_del' => 0, 'status' => 1], 'language_name,file_name,id', 'id');
 | 
						|
        $setOption = function () use ($list) {
 | 
						|
            $menus = [];
 | 
						|
            foreach ($list as $item) {
 | 
						|
                $menus[] = ['value' => $item['id'], 'label' => $item['language_name'] . '(' . $item['file_name'] . ')'];
 | 
						|
            }
 | 
						|
            return $menus;
 | 
						|
        };
 | 
						|
        $field[] = Form::select('type_id', '关联语言', $info['type_id'] ?? 0)->setOptions(Form::setOptions($setOption))->filterable(true)->appendRule('suffix', [
 | 
						|
            'type' => 'div',
 | 
						|
            'class' => 'tips-info',
 | 
						|
            'domProps' => ['innerHTML' => '请选择关联语言,语言类型是由您自行添加的']
 | 
						|
        ]);
 | 
						|
        return create_form($id ? '修改语言地区' : '新增语言地区', $field, Url::buildUrl('/setting/lang_country/save/' . $id), 'POST');
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * 保存语言地区
 | 
						|
     * @param $id
 | 
						|
     * @param $typeId
 | 
						|
     * @return bool
 | 
						|
     */
 | 
						|
    public function LangCountrySave($id, $data)
 | 
						|
    {
 | 
						|
        if ($id) {
 | 
						|
            $res = $this->dao->update(['id' => $id], $data);
 | 
						|
        } else {
 | 
						|
            $res = $this->dao->save($data);
 | 
						|
        }
 | 
						|
        if (!$res) throw new AdminException(100007);
 | 
						|
        CacheService::clear();
 | 
						|
        return true;
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * 删除语言地区
 | 
						|
     * @param $id
 | 
						|
     * @return bool
 | 
						|
     */
 | 
						|
    public function langCountryDel($id)
 | 
						|
    {
 | 
						|
        $res = $this->dao->delete($id);
 | 
						|
        if (!$res) throw new AdminException(100008);
 | 
						|
        CacheService::clear();
 | 
						|
        return true;
 | 
						|
    }
 | 
						|
}
 |