123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131 |
- <?php
- namespace app\api\controller;
- use app\common\controller\Api;
- use app\common\model\Config;
- use app\common\model\Industry;
- use think\Db;
- use think\facade\Validate;
- use think\Request;
- use app\common\model\Category;
- use app\common\model\SearchHistory;
- use OSS\OssClient;
- use app\common\model\User;
- use OSS\Core\OssException;
- use app\common\model\Order;
- /**
- * @title 公共类
- * @controller Publics
- */
- class Publics extends Api
- {
- /**
- * @title 上传图片
- * @desc 上传图片
- * @url /api/Publics/uploadLocality
- * @method POST
- * @tag 基础
- *
- * @param name:file type:file require:1 desc:上传
- * @return name:data@url type:string desc:图片地址
- **/
- public function uploadLocality(){
- $file = request()->file('file');
- $dir = dirname(realpath(dirname($_SERVER['SCRIPT_FILENAME']))) . '/public/upload';
- if(!file_exists($dir)){
- //检查是否有该文件夹,如果没有就创建,并给予最高权限
- mkdir($dir, 0700,true);
- }
- // $ossClient = new OssClient(self::getOneValues('storage_oss_keyid'), self::getOneValues('storage_oss_secret'), self::getOneValues('storage_oss_endpoint'));
- $info = $file->move($dir);
- $newName = $info->getSaveName();
- $storage_type = self::getOneValues('storage_type');
- if ($storage_type == 'oss'){
- $file_path = dirname($_SERVER['SCRIPT_FILENAME']) . "/upload/".$newName;
- $result = $ossClient->uploadFile(self::getOneValues('storage_oss_bucket'), $newName, $file_path);
- $data['url'] = $result['info']['url'];
- unlink($file_path);
- }elseif ($storage_type=='local'){
- //压缩图片
- //image_png_size_add(ROOT_PATH . 'public' . DS . 'uploads/images/'.$newName,ROOT_PATH . 'public' . DS . 'uploads/images/'.$newName);
- $data['url'] = 'http://'.$_SERVER['SERVER_NAME']."/upload/{$newName}";
- }
- $this->success('上传成功',$data);
- }
- /**
- * @title 获取系统配置
- * @desc 获取系统配置
- * @url /api/Publics/config_info
- * @method POST
- * @tag 基础
- *
- **/
- public function config_info(){
- $name = input('name');
- if(!empty($name)){
- $nameArray = [
- $name
- ];
- }
- else {
- $nameArray = [
- 'about_us',
- 'introduction_to',
- 'registration',
- 'poster'
- ];
- }
- $array = getConfig($nameArray);
- $this->success('成功',$array);
- }
- /**
- * @return void
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- * 工会单位
- */
- public function working(){
- $list = Db::name('store_company')->where('is_deleted',0)->field('id,name')->select();
- $this->success('工会单位',$list);
- }
- /**
- * @return void
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- * 工作性质
- */
- public function work_nature(){
- $list = Db::name('store_work_nature')->where('is_deleted',0)->field('id,name')->select();
- $this->success('工作性质',$list);
- }
- /**
- * @return void
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- * 三级地址
- */
- public function area(){
- $field=['id','pid','shortname','name'];
- $list=Db::table('store_area')->where('pid',0)->field($field)->select();
- foreach ($list as $k=>&$v){
- $v['children']= Db::table('store_area')->where('pid',$v['id'])->field($field)->select();
- if(!empty($v['children'])){
- foreach ($v['children'] as $kk=>&$vv){
- $vv['children']=Db::table('store_area')->where('pid',$vv['id'])->field($field)->select();
- }
- }
- }
- $this->success('省级数据',$list);
- }
- }
|