Publics.php 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. <?php
  2. namespace app\api\controller;
  3. use app\common\controller\Api;
  4. use app\common\model\Config;
  5. use app\common\model\Industry;
  6. use think\Db;
  7. use think\facade\Validate;
  8. use think\Request;
  9. use app\common\model\Category;
  10. use app\common\model\SearchHistory;
  11. use OSS\OssClient;
  12. use app\common\model\User;
  13. use OSS\Core\OssException;
  14. use app\common\model\Order;
  15. /**
  16. * @title 公共类
  17. * @controller Publics
  18. */
  19. class Publics extends Api
  20. {
  21. /**
  22. * @title 上传图片
  23. * @desc 上传图片
  24. * @url /api/Publics/uploadLocality
  25. * @method POST
  26. * @tag 基础
  27. *
  28. * @param name:file type:file require:1 desc:上传
  29. * @return name:data@url type:string desc:图片地址
  30. **/
  31. public function uploadLocality(){
  32. $file = request()->file('file');
  33. $dir = dirname(realpath(dirname($_SERVER['SCRIPT_FILENAME']))) . '/public/upload';
  34. if(!file_exists($dir)){
  35. //检查是否有该文件夹,如果没有就创建,并给予最高权限
  36. mkdir($dir, 0700,true);
  37. }
  38. // $ossClient = new OssClient(self::getOneValues('storage_oss_keyid'), self::getOneValues('storage_oss_secret'), self::getOneValues('storage_oss_endpoint'));
  39. $info = $file->move($dir);
  40. $newName = $info->getSaveName();
  41. $storage_type = self::getOneValues('storage_type');
  42. if ($storage_type == 'oss'){
  43. $file_path = dirname($_SERVER['SCRIPT_FILENAME']) . "/upload/".$newName;
  44. $result = $ossClient->uploadFile(self::getOneValues('storage_oss_bucket'), $newName, $file_path);
  45. $data['url'] = $result['info']['url'];
  46. unlink($file_path);
  47. }elseif ($storage_type=='local'){
  48. //压缩图片
  49. //image_png_size_add(ROOT_PATH . 'public' . DS . 'uploads/images/'.$newName,ROOT_PATH . 'public' . DS . 'uploads/images/'.$newName);
  50. $data['url'] = 'http://'.$_SERVER['SERVER_NAME']."/upload/{$newName}";
  51. }
  52. $this->success('上传成功',$data);
  53. }
  54. /**
  55. * @title 获取系统配置
  56. * @desc 获取系统配置
  57. * @url /api/Publics/config_info
  58. * @method POST
  59. * @tag 基础
  60. *
  61. **/
  62. public function config_info(){
  63. $name = input('name');
  64. if(!empty($name)){
  65. $nameArray = [
  66. $name
  67. ];
  68. }
  69. else {
  70. $nameArray = [
  71. 'about_us',
  72. 'introduction_to',
  73. 'registration',
  74. 'poster'
  75. ];
  76. }
  77. $array = getConfig($nameArray);
  78. $this->success('成功',$array);
  79. }
  80. /**
  81. * @return void
  82. * @throws \think\db\exception\DataNotFoundException
  83. * @throws \think\db\exception\ModelNotFoundException
  84. * @throws \think\exception\DbException
  85. * 工会单位
  86. */
  87. public function working(){
  88. $list = Db::name('store_company')->where('is_deleted',0)->field('id,name')->select();
  89. $this->success('工会单位',$list);
  90. }
  91. /**
  92. * @return void
  93. * @throws \think\db\exception\DataNotFoundException
  94. * @throws \think\db\exception\ModelNotFoundException
  95. * @throws \think\exception\DbException
  96. * 工作性质
  97. */
  98. public function work_nature(){
  99. $list = Db::name('store_work_nature')->where('is_deleted',0)->field('id,name')->select();
  100. $this->success('工作性质',$list);
  101. }
  102. /**
  103. * @return void
  104. * @throws \think\db\exception\DataNotFoundException
  105. * @throws \think\db\exception\ModelNotFoundException
  106. * @throws \think\exception\DbException
  107. * 三级地址
  108. */
  109. public function area(){
  110. $field=['id','pid','shortname','name'];
  111. $list=Db::table('store_area')->where('pid',0)->field($field)->select();
  112. foreach ($list as $k=>&$v){
  113. $v['children']= Db::table('store_area')->where('pid',$v['id'])->field($field)->select();
  114. if(!empty($v['children'])){
  115. foreach ($v['children'] as $kk=>&$vv){
  116. $vv['children']=Db::table('store_area')->where('pid',$vv['id'])->field($field)->select();
  117. }
  118. }
  119. }
  120. $this->success('省级数据',$list);
  121. }
  122. }