123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146 |
- <?php
- namespace app\api\controller;
- use app\common\controller\Api;
- use app\common\library\Common;
- use app\common\model\Config;
- use app\common\model\Icon;
- use think\facade\Validate;
- use think\Request;
- use app\common\model\SearchHistory;
- use OSS\OssClient;
- use app\common\model\User;
- use OSS\Core\OssException;
- /**
- * 公共类
- */
- class Publics extends Api
- {
- /**
- * uploadLocality图片上传至本地&压缩
- */
- public function uploadLocality(){
- $file = request()->file('file');
- $dir = dirname(realpath(dirname($_SERVER['SCRIPT_FILENAME']))) . '/public/upload';
- if(!file_exists($dir)){
- //检查是否有该文件夹,如果没有就创建,并给予最高权限
- mkdir($dir, 0700,true);
- }
- $array = array();
- $ossClient = new OssClient(Config::get_values('storage_oss_keyid'), Config::get_values('storage_oss_secret'), Config::get_values('storage_oss_endpoint'));
- foreach ($file as $file){
- $wx_check = $this->wx_check($file,1);
- if ($wx_check['errcode']=='87014'){
- $this->error('含有违规图片');
- }
- $info = $file->move($dir);
- if($info){
- $newName = $info->getSaveName();
- $storage_type = Config::get_values('storage_type');
- if ($storage_type == 'oss'){
- $file_path = dirname($_SERVER['SCRIPT_FILENAME']) . "/upload/".$newName;
- $result = $ossClient->uploadFile(Config::get_values('storage_oss_bucket'), $newName, $file_path);
- array_push($array,$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);
- $url = 'http://'.$_SERVER['SERVER_NAME']."/upload/{$newName}";
- array_push($array,$url);
- }
- }else{
- echo $file->getError();
- }
- }
- $this->success('上传成功',$array);
- }
- /**
- * 获取分类列表
- */
- public function category_list(){
- $list = Category::get_list(1);
- $this->success('成功',$list);
- }
- /**
- * 获取搜索历史
- */
- public function search_history(){
- $Search = SearchHistory::getHistoryData();
- $searchKeyword = [];
- if (count($Search)){
- foreach ($Search as $key=>&$item){
- array_push($searchKeyword, $item['keywords']);
- }
- }
- $this->success('成功',$searchKeyword);
- }
- /**
- * 清空用户搜索的关键词
- */
- public function del_user_key(){
- if(SearchHistory::delUserHistory())
- $this->success('成功');
- else
- $this->error('失败');
- }
- /**
- * 获取系统配置
- */
- public function config_info(){
- $array['education'] = explode(',',Config::get_values('education'));
- $array['label'] = explode(',',Config::get_values('label'));
- $array['share_applet_count_day'] = Config::get_values('share_applet_count_day');
- $array['share_applet_integral'] = Config::get_values('share_applet_integral');
- $array['share_pool_count_day'] = Config::get_values('share_pool_count_day');
- $array['share_pool_integral'] = Config::get_values('share_pool_integral');
- $array['share_myinfo_count_day'] = Config::get_values('share_myinfo_count_day');
- $array['share_myinfo_integral'] = Config::get_values('share_myinfo_integral');
- $array['share_others_count_day'] = Config::get_values('share_others_count_day');
- $array['share_others_integral'] = Config::get_values('share_others_integral');
- $array['wechat_id'] = Config::get_values('wechat_id');
- $array['integral_share_img'] = Config::get_values('integral_share_img');
- $array['integral_share_reminder'] = Config::get_values('integral_share_reminder');
- $array['share_applet_title'] = Config::get_values('share_applet_title');
- $array['share_pool_title'] = Config::get_values('share_pool_title');
- $array['share_myinfo_title'] = Config::get_values('share_myinfo_title');
- $array['share_others_title'] = Config::get_values('share_others_title');
- $array['audit'] = Config::get_values('audit');
- $array['uihide'] = Config::get_values('audit');
- $array['introduce_title'] = Config::get_values('introduce_title');
- $array['family_title'] = Config::get_values('family_title');
- $array['hobbies_title'] = Config::get_values('hobbies_title');
- $array['love_title'] = Config::get_values('love_title');
- $array['partner_title'] = Config::get_values('partner_title');
- $array['single_title'] = Config::get_values('single_title');
- $array['what_life_title'] = Config::get_values('what_life_title');
- $array['cardiac_area_title'] = Config::get_values('cardiac_area_title');
- $array['each_district_title'] = Config::get_values('each_district_title');
- $array['integral_get_contact_switch'] = Config::get_values('integral_get_contact_switch');
- $array['want_to_know_switch'] = Config::get_values('want_to_know_switch');
- $array['professional'] = explode(',',Config::get_values('professional'));
- $array['want_know_integral'] = Config::get_values('want_know_integral');
- $array['integral_contact'] = Config::get_values('integral_contact');
- $array['report_content'] = explode(',',Config::get_values('report_content'));
- $array['reasons_inadequacy'] = explode(',',Config::get_values('reasons_inadequacy'));
- $array['report_user_content'] = explode(',',Config::get_values('report_user_content'));
- $array['greet'] = Config::get_values('greet') ? explode(',',Config::get_values('greet')) : [];
- $array['chatting'] = Config::get_values('chatting') ? explode(',',Config::get_values('chatting')) : [];
- $array['talk_past'] = Config::get_values('talk_past') ? explode(',',Config::get_values('talk_past')) : [];
- //聊天小图标
- $array['icon_list'] = Icon::where('status',1)
- ->where('is_del',1)
- ->column('img');
- $this->success('成功',$array);
- }
- }
|