1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- <?php
- namespace app\api\controller;
- use app\common\controller\Api;
- use app\common\model\Config;
- 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 基础
- *
- * @return name:designclassifi type:string desc:设计分类
- * @return name:skillslabel type:string desc:技能标签
- * @return name:goodtype type:string desc:擅长类型
- * @return name:goodstyle type:string desc:擅长风格
- * @return name:service_start_time type:string desc:服务时间开始
- * @return name:service_end_time type:string desc:服务时间结束
- **/
- public function config_info(){
- $array['designclassifi'] = explode(',',Config::get_values('designclassifi'));
- $array['skillslabel'] = explode(',',Config::get_values('skillslabel'));
- $array['goodtype'] = explode(',',Config::get_values('goodtype'));
- $array['goodstyle'] = explode(',',Config::get_values('goodstyle'));
- $array['service_start_time'] = Config::get_values('service_start_time');
- $array['service_end_time'] = Config::get_values('service_end_time');
- $this->success('成功',$array);
- }
- }
|