CommentController.php 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330
  1. <?php
  2. namespace app\api\controller;
  3. use app\admin\model\Agreement;
  4. use app\common\controller\Api;
  5. use app\common\exception\UploadException;
  6. use app\common\library\Upload;
  7. use app\common\model\Ad;
  8. use app\common\model\Area;
  9. use app\common\model\Feedback;
  10. use app\common\model\FeedbackBusiness;
  11. use app\common\service\SmsSend;
  12. use think\Cache;
  13. use think\Config;
  14. use think\File;
  15. /**
  16. * 公共接口
  17. */
  18. class Common extends Api
  19. {
  20. protected $noNeedLogin = ['agreement','ads','area','area_sort','area_tree','config','get_area','upload','feedback','business_form'];
  21. protected $noNeedRight="*";
  22. /**
  23. * 获取各种协议
  24. * @param int id 1入网许可协议2个人信息收集证明3查询订单说明4商务合作说明5隐私权政策6法律责任风险提示告知书
  25. * @ApiReturnParams(name=title,type=string,description=标题)
  26. * @ApiReturnParams(name=content,type=string,description=内容)
  27. */
  28. public function agreement(){
  29. $data=input();
  30. $this->validate($data,[
  31. 'id'=>['require'],
  32. ]);
  33. $agreement=Agreement::where('id',$data['id'])->value('content','');
  34. $agreement=$this->_($agreement);
  35. $this->success('',$agreement);
  36. }
  37. /**
  38. * 获取轮播图
  39. * @param string pos 位置index首页
  40. * @ApiReturnParams (name=img,description=图片地址)
  41. * @ApiReturnParams (name=link,description=链接)
  42. */
  43. public function ads(){
  44. $data=input();
  45. $this->validate($data,[
  46. 'pos'=>'require',
  47. ]);
  48. $chanId=getChanId();
  49. $ads=Ad::getAd($data['pos'],$chanId);
  50. $this->success('',$ads);
  51. }
  52. /**
  53. * 上传文件
  54. * @ApiMethod (POST)
  55. * @param File $file 文件流
  56. */
  57. public function upload()
  58. {
  59. Config::set('default_return_type', 'json');
  60. //必须设定cdnurl为空,否则cdnurl函数计算错误
  61. Config::set('upload.cdnurl', '');
  62. $chunkid = $this->request->post("chunkid");
  63. if ($chunkid) {
  64. if (!Config::get('upload.chunking')) {
  65. $this->error(__('Chunk file disabled'));
  66. }
  67. $action = $this->request->post("action");
  68. $chunkindex = $this->request->post("chunkindex/d");
  69. $chunkcount = $this->request->post("chunkcount/d");
  70. $filename = $this->request->post("filename");
  71. $method = $this->request->method(true);
  72. if ($action == 'merge') {
  73. $attachment = null;
  74. //合并分片文件
  75. try {
  76. $upload = new Upload();
  77. $attachment = $upload->merge($chunkid, $chunkcount, $filename);
  78. } catch (UploadException $e) {
  79. $this->error($e->getMessage());
  80. }
  81. $this->success(__('Uploaded successful'), ['url' => $attachment->url, 'fullurl' => cdnurl($attachment->url, true)]);
  82. } elseif ($method == 'clean') {
  83. //删除冗余的分片文件
  84. try {
  85. $upload = new Upload();
  86. $upload->clean($chunkid);
  87. } catch (UploadException $e) {
  88. $this->error($e->getMessage());
  89. }
  90. $this->success();
  91. } else {
  92. //上传分片文件
  93. //默认普通上传文件
  94. $file = $this->request->file('file');
  95. try {
  96. $upload = new Upload($file);
  97. $upload->chunk($chunkid, $chunkindex, $chunkcount);
  98. } catch (UploadException $e) {
  99. $this->error($e->getMessage());
  100. }
  101. $this->success();
  102. }
  103. } else {
  104. $attachment = null;
  105. //默认普通上传文件
  106. $file = $this->request->file('file');
  107. try {
  108. $upload = new Upload($file);
  109. $attachment = $upload->upload();
  110. } catch (UploadException $e) {
  111. $this->error($e->getMessage());
  112. }
  113. $this->success(__('Uploaded successful'), ['url' => $attachment->url, 'fullurl' => cdnurl($attachment->url, true)]);
  114. }
  115. }
  116. /**
  117. * 意见反馈
  118. * @ApiParams (name=name,description="称呼")
  119. * @ApiParams (name=phone,description=电话)
  120. * @ApiParams (name=sms_code,description=验证码)
  121. * @ApiParams (name=title,description=标题)
  122. * @ApiParams (name=content,description=内容)
  123. * @ApiParams (name=images,description=图片数组)
  124. */
  125. public function feedback(){
  126. $data=input();
  127. $this->validate($data,[
  128. 'name|姓名'=>['require','max:10'],
  129. 'phone|手机号'=>['require','integer','length:11'],
  130. 'title|标题'=>['require','max:10'],
  131. 'content|内容'=>['require','max:120'],
  132. 'images|图片'=>['require','array','max:3','min:1'],
  133. 'images.0'=>['require','url'],
  134. ]);
  135. SmsSend::setMobile($data['phone'])->setCode($data['sms_code']??'')->check();
  136. $feedback=new Feedback();
  137. $feedback->allowField(true)->save($data);
  138. $this->success('',$feedback);
  139. }
  140. /**
  141. * 商务合作
  142. * @ApiParams (name=type,description="1个人2公司")
  143. * @ApiParams (name=name,description="名称")
  144. * @ApiParams (name=for,description="方向1直播合作2学习直播3卡商合作")
  145. * @ApiParams (name=has_exp,description="1有0无经验")
  146. * @ApiParams (name=phone,description="手机号")
  147. * @ApiParams (name=sms_code,description="验证码")
  148. *
  149. */
  150. public function business_form(){
  151. $data=$this->_validate([
  152. 'type|类型'=>['require','in:1,2'],
  153. 'name|名称'=>['require','max:50'],
  154. 'for|方向'=>['require','in:1,2,3'],
  155. 'has_exp'=>['require','in:1,0'],
  156. 'phone|手机号'=>['require','integer','length:11'],
  157. ]);
  158. SmsSend::setMobile($data['phone'])->setCode($data['sms_code']??'')->check();
  159. $feedback=new FeedbackBusiness;
  160. $feedback->allowField(true)->save($data);
  161. $this->success('',$feedback);
  162. }
  163. /**
  164. * 获取地区信息
  165. * @ApiParams (name=level,description=1省2市3区)
  166. * @ApiParams (name=pid,description=上级区域ID)
  167. */
  168. public function area(){
  169. $data=$this->_validate([
  170. 'level'=>['require'],
  171. 'pid'=>['require'],
  172. ]);
  173. $this->success(
  174. '',
  175. Area::where('level',$data['level'])
  176. ->where('pid',$data['pid'])
  177. ->order('pinyin')
  178. ->select()
  179. );
  180. }
  181. /**
  182. * 获取地区信息(按字母排序)
  183. */
  184. public function area_sort(){
  185. $citys=Area::area()->field(['id','name','first'])->select();
  186. $a=[];
  187. for ($i=65;$i<91;$i++) {
  188. $one=[
  189. 'index'=>chr($i),
  190. 'child'=>[]
  191. ];
  192. foreach ($citys as $key=>&$city) {
  193. if($city['first']==$one['index']){
  194. $one['child'][]=[
  195. 'title'=>$city['name'],
  196. 'weight'=>$city['id'],
  197. 'id' =>$city['id'],
  198. ];
  199. unset($citys[$key]);
  200. }
  201. }
  202. $a[]=$one;
  203. }
  204. $this->success('',$a);
  205. }
  206. /**
  207. * 地区递归三级联动
  208. */
  209. public function area_tree(){
  210. function area(&$data,$areas,$first=false){
  211. foreach ($areas as $k=>$area){
  212. if($first){
  213. if($area['pid']==0) {
  214. area($area, $areas);
  215. unset($area['pid']);
  216. $data[] = $area;
  217. unset($areas[$k]);
  218. }
  219. }else{
  220. if($data['value']==$area['pid']){
  221. area($area, $areas);
  222. unset($area['pid']);
  223. $data['children'][]=$area;
  224. unset($areas[$k]);
  225. }
  226. }
  227. }
  228. }
  229. $fromCache=Cache::get('app_area');
  230. if(!$fromCache){
  231. $fina=[];
  232. $areas=Area::where('level','<=',3)->field('id as value,name as label,pid')->select()->toArray();
  233. area($fina,$areas,true);
  234. $fromCache=$fina;
  235. Cache::remember('app_area',$fina,0);
  236. }
  237. $this->success('',$fromCache);
  238. }
  239. /**
  240. * 根据名称获取信息
  241. * @ApiParams (name="name",description="城市名")
  242. * @ApiReturnParams (name="id",description="城市ID")
  243. */
  244. public function get_area(){
  245. $rs=null;
  246. if($name=input('name')){
  247. $cacheName="area_name_".$name;
  248. $rs=Cache::get($cacheName,null);
  249. if(!$rs){
  250. $rs=Area::where('name|shortname',$name)->find();
  251. Cache::set($cacheName,$rs);
  252. }
  253. }
  254. $this->success('',$rs);
  255. }
  256. /**
  257. * 获取系统配置
  258. * @ApiReturnParams (name="site_name",description="站点名称")
  259. * @ApiReturnParams (name="com_name",description="公司名称")
  260. * @ApiReturnParams (name="wxp_name",description="微信公众号名称")
  261. * @ApiReturnParams (name="wxp_qrcode",description="微信公众号二维码")
  262. * @ApiReturnParams (name="service_mobile",description="客服手机号")
  263. * @ApiReturnParams (name="system_service_mobile_show",description="是否展示客服手机号")
  264. * @ApiReturnParams (name="service_work_time",description="客服工作时间")
  265. * @ApiReturnParams (name="system_sms_open",description="短信验证码开关")
  266. * @ApiReturnParams (name="disable_send_province",description="禁止发货地区")
  267. * @ApiReturnParams (name="system_index_tr",description="首页右上角展示1投诉2商务合作")
  268. * @ApiReturnParams (name="system_index_m1",description="首页特价号1流量卡2号码定制3特价号")
  269. * @ApiReturnParams (name="system_id_form_open",description="身份证开关")
  270. * @ApiReturnParams (name="flow_main_logo",description="流量卡上方图片")
  271. * @ApiReturnParams (name="flow_main_link",description="流量卡上方图片链接")
  272. * @ApiReturnParams (name="flow_order_bg",description="流量卡订单查询背景图")
  273. * @ApiReturnParams (name="bussiness_contact_mobile",description="商务合作电话")
  274. * @ApiReturnParams (name="beauti_no_detail_bg",description="详情页背景图")
  275. * @ApiReturnParams (name="beauti_no_detail_text",description="详情页详情文本")
  276. * @ApiReturnParams (name="index_no_type",description="首页进入展示列表all全部local本地")
  277. * @ApiReturnParams (name="copy_btn_title",description="靓号详情复制按钮显示字符")
  278. * @ApiReturnParams (name="click_pop_content",description="复制按钮点击后弹窗内容")
  279. */
  280. public function config(){
  281. $chanId=getChanId();
  282. $data=[
  283. 'site_name'=>\config('site.name'),
  284. 'com_name'=>\config('site.base_company_name'),
  285. 'wxp_name'=>\config('site.system_wxp_name'),
  286. 'wxp_qrcode'=>\config('site.system_wxp_qrcode'),
  287. 'service_mobile'=>\config('site.system_service_mobile'),
  288. 'system_service_mobile_show'=>\config('site.system_service_mobile_show')?true:false,
  289. 'service_work_time'=>\config('site.service_work_time'),
  290. 'system_sms_open'=>\config('site.system_sms_open')?true:false,
  291. 'disable_send_province'=>Area::whereIn('id',\config('site.disable_send_province')?:0)->field('id,name')->select(),
  292. 'system_index_tr'=>config('site.system_index_tr')?:1,
  293. 'system_index_m1'=>config('site.system_index_m1')?:1,
  294. 'system_id_form_open'=>config('site.system_id_form_open')?1:0,
  295. 'flow_main_logo'=>config('site.flow_main_logo'),
  296. 'flow_main_link'=>config('site.flow_main_link'),
  297. 'flow_order_bg'=>config('site.flow_order_bg'),
  298. 'bussiness_contact_mobile'=>config('site.bussiness_contact_mobile'),
  299. 'beauti_no_detail_bg'=>config('site.beauti_no_detail_bg'),
  300. 'beauti_no_detail_text'=>\config('site.beauti_no_detail_text'),
  301. 'index_no_type'=>config('site.index_no_type')?:'all',
  302. 'copy_btn_title'=>config('site.copy_btn_title')?:'申请优惠',
  303. 'click_pop_content'=>config('site.click_pop_content'),
  304. ];
  305. if($chanId){
  306. if(getSub()->getAdmin('wx_qr')){
  307. $data['wxp_qrcode']=getSub()->getAdmin('wx_qr');
  308. }
  309. if(getSub()->getAdmin('wxp_name')){
  310. $data['wxp_name']=getSub()->getAdmin('wxp_name');
  311. }
  312. }
  313. $data['beauti_no_detail_text']=$this->_($data['beauti_no_detail_text']);
  314. $this->success('',$data);
  315. }
  316. protected function _($agreement){
  317. $agreement=str_replace('<p','<div',$agreement);
  318. $agreement=str_replace('</p','</div',$agreement);
  319. $agreement=str_replace("\r",'',$agreement);
  320. $agreement=str_replace("\n",'',$agreement);
  321. return $agreement;
  322. }
  323. }