Publics.php 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. <?php
  2. namespace app\api\controller;
  3. use app\common\controller\Api;
  4. use app\common\library\Common;
  5. use app\common\model\Config;
  6. use app\common\model\Icon;
  7. use think\facade\Validate;
  8. use think\Request;
  9. use app\common\model\SearchHistory;
  10. use OSS\OssClient;
  11. use app\common\model\User;
  12. use OSS\Core\OssException;
  13. /**
  14. * 公共类
  15. */
  16. class Publics extends Api
  17. {
  18. /**
  19. * uploadLocality图片上传至本地&压缩
  20. */
  21. public function uploadLocality(){
  22. $file = request()->file('file');
  23. $dir = dirname(realpath(dirname($_SERVER['SCRIPT_FILENAME']))) . '/public/upload';
  24. if(!file_exists($dir)){
  25. //检查是否有该文件夹,如果没有就创建,并给予最高权限
  26. mkdir($dir, 0700,true);
  27. }
  28. $array = array();
  29. $ossClient = new OssClient(Config::get_values('storage_oss_keyid'), Config::get_values('storage_oss_secret'), Config::get_values('storage_oss_endpoint'));
  30. foreach ($file as $file){
  31. $wx_check = $this->wx_check($file,1);
  32. if ($wx_check['errcode']=='87014'){
  33. $this->error('含有违规图片');
  34. }
  35. $info = $file->move($dir);
  36. if($info){
  37. $newName = $info->getSaveName();
  38. $storage_type = Config::get_values('storage_type');
  39. if ($storage_type == 'oss'){
  40. $file_path = dirname($_SERVER['SCRIPT_FILENAME']) . "/upload/".$newName;
  41. $result = $ossClient->uploadFile(Config::get_values('storage_oss_bucket'), $newName, $file_path);
  42. array_push($array,$result['info']['url']);
  43. unlink($file_path);
  44. }elseif ($storage_type=='local'){
  45. //压缩图片
  46. //image_png_size_add(ROOT_PATH . 'public' . DS . 'uploads/images/'.$newName,ROOT_PATH . 'public' . DS . 'uploads/images/'.$newName);
  47. $url = 'http://'.$_SERVER['SERVER_NAME']."/upload/{$newName}";
  48. array_push($array,$url);
  49. }
  50. }else{
  51. echo $file->getError();
  52. }
  53. }
  54. $this->success('上传成功',$array);
  55. }
  56. /**
  57. * 获取分类列表
  58. */
  59. public function category_list(){
  60. $list = Category::get_list(1);
  61. $this->success('成功',$list);
  62. }
  63. /**
  64. * 获取搜索历史
  65. */
  66. public function search_history(){
  67. $Search = SearchHistory::getHistoryData();
  68. $searchKeyword = [];
  69. if (count($Search)){
  70. foreach ($Search as $key=>&$item){
  71. array_push($searchKeyword, $item['keywords']);
  72. }
  73. }
  74. $this->success('成功',$searchKeyword);
  75. }
  76. /**
  77. * 清空用户搜索的关键词
  78. */
  79. public function del_user_key(){
  80. if(SearchHistory::delUserHistory())
  81. $this->success('成功');
  82. else
  83. $this->error('失败');
  84. }
  85. /**
  86. * 获取系统配置
  87. */
  88. public function config_info(){
  89. $array['education'] = explode(',',Config::get_values('education'));
  90. $array['label'] = explode(',',Config::get_values('label'));
  91. $array['share_applet_count_day'] = Config::get_values('share_applet_count_day');
  92. $array['share_applet_integral'] = Config::get_values('share_applet_integral');
  93. $array['share_pool_count_day'] = Config::get_values('share_pool_count_day');
  94. $array['share_pool_integral'] = Config::get_values('share_pool_integral');
  95. $array['share_myinfo_count_day'] = Config::get_values('share_myinfo_count_day');
  96. $array['share_myinfo_integral'] = Config::get_values('share_myinfo_integral');
  97. $array['share_others_count_day'] = Config::get_values('share_others_count_day');
  98. $array['share_others_integral'] = Config::get_values('share_others_integral');
  99. $array['wechat_id'] = Config::get_values('wechat_id');
  100. $array['integral_share_img'] = Config::get_values('integral_share_img');
  101. $array['integral_share_reminder'] = Config::get_values('integral_share_reminder');
  102. $array['share_applet_title'] = Config::get_values('share_applet_title');
  103. $array['share_pool_title'] = Config::get_values('share_pool_title');
  104. $array['share_myinfo_title'] = Config::get_values('share_myinfo_title');
  105. $array['share_others_title'] = Config::get_values('share_others_title');
  106. $array['audit'] = Config::get_values('audit');
  107. $array['uihide'] = Config::get_values('audit');
  108. $array['introduce_title'] = Config::get_values('introduce_title');
  109. $array['family_title'] = Config::get_values('family_title');
  110. $array['hobbies_title'] = Config::get_values('hobbies_title');
  111. $array['love_title'] = Config::get_values('love_title');
  112. $array['partner_title'] = Config::get_values('partner_title');
  113. $array['single_title'] = Config::get_values('single_title');
  114. $array['what_life_title'] = Config::get_values('what_life_title');
  115. $array['cardiac_area_title'] = Config::get_values('cardiac_area_title');
  116. $array['each_district_title'] = Config::get_values('each_district_title');
  117. $array['integral_get_contact_switch'] = Config::get_values('integral_get_contact_switch');
  118. $array['want_to_know_switch'] = Config::get_values('want_to_know_switch');
  119. $array['professional'] = explode(',',Config::get_values('professional'));
  120. $array['want_know_integral'] = Config::get_values('want_know_integral');
  121. $array['integral_contact'] = Config::get_values('integral_contact');
  122. $array['report_content'] = explode(',',Config::get_values('report_content'));
  123. $array['reasons_inadequacy'] = explode(',',Config::get_values('reasons_inadequacy'));
  124. $array['report_user_content'] = explode(',',Config::get_values('report_user_content'));
  125. $array['greet'] = Config::get_values('greet') ? explode(',',Config::get_values('greet')) : [];
  126. $array['chatting'] = Config::get_values('chatting') ? explode(',',Config::get_values('chatting')) : [];
  127. $array['talk_past'] = Config::get_values('talk_past') ? explode(',',Config::get_values('talk_past')) : [];
  128. //聊天小图标
  129. $array['icon_list'] = Icon::where('status',1)
  130. ->where('is_del',1)
  131. ->column('img');
  132. $this->success('成功',$array);
  133. }
  134. }