Community.php 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280
  1. <?php
  2. namespace app\api\controller;
  3. use app\common\controller\Api;
  4. use app\common\model\CooperationConfiguration;
  5. use app\common\model\Document;
  6. use app\common\model\Cooperation;
  7. use app\common\model\DownloadLink;
  8. use app\common\model\Faq;
  9. use app\common\model\TeachingVideo;
  10. use app\common\model\VersionComparison;
  11. use app\common\model\VersionUpdating;
  12. use app\common\model\VersionUpdatingText;
  13. use app\common\model\Visit;
  14. use app\common\model\VisitConfiguration;
  15. /**
  16. * 社区接口
  17. */
  18. class Community extends Api
  19. {
  20. // protected $noNeedLogin = ['document,teaching_video'];
  21. protected $noNeedLogin = ['*'];
  22. /**
  23. * 教学视频列表
  24. */
  25. public function teaching_video(){
  26. $list = [];
  27. $classify = config('site.goodstype');
  28. foreach ($classify as $v){
  29. $data = TeachingVideo::all(function ($query) use ($v){
  30. $query->where('type',$v)->limit(3);
  31. });
  32. array_push($list,$data);
  33. }
  34. $this->success('成功',$list);
  35. }
  36. /**
  37. * 教学视频详情
  38. * @ApiParams (name="type",description="好柿购','多享柿','门柿购','海柿购','柿知识")
  39. */
  40. public function teaching_video_x(){
  41. $data = TeachingVideo::all(function ($query){
  42. $query->where('type',input('type'))->field('*,TIME_TO_SEC(duration) as total');
  43. });
  44. $total = 0;
  45. foreach ($data as $v){
  46. $total += $v['total'];
  47. unset($v['total']);
  48. }
  49. $total=$this->changeTimeType($total);
  50. $list = ['list'=>$data,'total'=>$total];
  51. $this->success('成功',$list);
  52. }
  53. /**
  54. * 计算视频总时长
  55. */
  56. public function changeTimeType($seconds){
  57. if ($seconds >3600){
  58. $hours =intval($seconds/3600);
  59. $minutes = $seconds % 3600;
  60. $time = $hours.":".gmstrftime('%M:%S',$minutes);
  61. }else{
  62. $time = gmstrftime('%H:%M:%S',$seconds);
  63. }
  64. return$time;
  65. }
  66. /**
  67. * 文档概览
  68. */
  69. public function document_list(){
  70. $data = Document::all(function ($query){
  71. $query->where(['pid'=>0,'ismenu'=>1])->order('belong sec');
  72. });
  73. $this->success('成功',$data);
  74. }
  75. /**
  76. * 文档列表
  77. * @ApiParams (name="type",description="0好柿购,1多享柿,2门柿购,3海柿购,4柿知识")
  78. */
  79. public function document(){
  80. switch (input('type')){
  81. case 0:
  82. $where = ['belong'=>0];
  83. break;
  84. case 1:
  85. $where = ['belong'=>1];
  86. break;
  87. case 2:
  88. $where = ['belong'=>2];
  89. break;
  90. case 3:
  91. $where = ['belong'=>3];
  92. break;
  93. case 4:
  94. $where = ['belong'=>4];
  95. }
  96. // $data = Document::where($where)
  97. // ->where(['ismenu'=>1,'pid'=>0])
  98. // ->with(['subset'=>function($query)use{
  99. //
  100. // }])
  101. // ->field('id,pid,title,weigh,ismenu')
  102. // ->order('weigh desc')
  103. // ->select();
  104. $data = Document::where($where)->field('id,pid,title,weigh,ismenu,belong')->order('weigh desc')->select();
  105. $res = [];
  106. foreach ($data as $k=>$v){
  107. array_push($res,$v->toarray());
  108. }
  109. $list = $this->getTree($res,'id','pid','children');
  110. $this->success('返回成功', $list);
  111. }
  112. /**
  113. * 树形化
  114. * @param $arr
  115. * @param $id
  116. * @param $fid
  117. * @param $child_name
  118. * @return array
  119. */
  120. function getTree($arr, $id = 'id', $fid = 'fid', $child_name = 'children'){
  121. $refer = array();
  122. $tree = array();
  123. foreach ($arr as $k => $v) {
  124. $refer[$v[$id]] = &$arr[$k]; //创建主键的数组引用
  125. }
  126. foreach ($arr as $k => $v) {
  127. $pid = $v[$fid]; //获取当前分类的父级id
  128. if ($pid == 0) {
  129. $tree[] = &$arr[$k]; //顶级栏目
  130. } else {
  131. if (isset($refer[$pid])) {
  132. $refer[$pid][$child_name][] = &$arr[$k]; //如果存在父级栏目,则添加进父级栏目的子栏目数组中
  133. }
  134. }
  135. }
  136. return $tree;
  137. }
  138. /**
  139. * 文档详情
  140. * @ApiParams (name="id",description="")
  141. */
  142. public function document_details(){
  143. $this->success('成功',Document::where(['id'=>$this->request->post('id')])->value('content'));
  144. }
  145. /**
  146. * 成为合作伙伴
  147. * @ApiParams (name="token")
  148. * @ApiParams (name="name",description="姓名")
  149. * @ApiParams (name="phone",description="联系方式")
  150. * @ApiParams (name="company",description="公司名称")
  151. */
  152. public function become_cooperation(){
  153. $rule = [
  154. 'name|姓名'=>'require',
  155. 'phone|联系方式'=>'require',
  156. 'company|公司名称'=>'require',
  157. ];
  158. $data = $this->_validate($rule);
  159. $data['uid'] = $this->auth->id;
  160. Cooperation::create($data)?$this->success('提交成功'):$this->error('提交失败');
  161. }
  162. /**
  163. * 预约参观公司
  164. * @ApiParams (name="token")
  165. * @ApiParams (name="name",description="称呼")
  166. * @ApiParams (name="phone",description="手机号")
  167. * @ApiParams (name="visit_time",description="参观时间")
  168. */
  169. public function visit(){
  170. $rule = [
  171. 'name|称呼'=>'require',
  172. 'phone|手机号'=>'require',
  173. 'visit_time|参观时间'=>'require',
  174. ];
  175. $data = $this->_validate($rule);
  176. $data['uid'] = $this->auth->id;
  177. Visit::insert($data)?$this->success('提交成功'):$this->error('提交失败');
  178. }
  179. /**
  180. * 下载地址
  181. */
  182. public function download_link(){
  183. $link = DownloadLink::all();
  184. foreach ($link as &$value){
  185. $value['image'] = explode(',',$value['image']);
  186. }
  187. $this->success('请求成功',$link);
  188. }
  189. /**
  190. * 版本对比
  191. */
  192. public function version_comparison(){
  193. $link = VersionComparison::all();
  194. foreach ($link as &$value){
  195. $value['image'] = explode(',',$value['image']);
  196. }
  197. $this->success('请求成功',$link);
  198. }
  199. /**
  200. * 版本更新列表
  201. */
  202. public function version_updating(){
  203. $data = VersionUpdating::all();
  204. $res = [];
  205. foreach ($data as $k=>$v){
  206. array_push($res,$v->toarray());
  207. }
  208. $list = $this->getTree($res,'id','pid','children');
  209. $this->success('请求成功',$list);
  210. }
  211. /**
  212. * 版本更新内容
  213. * @ApiParams(name='id')
  214. */
  215. public function version_updating_content(){
  216. $data = VersionUpdatingText::all(['classify_id'=>input('id')]);
  217. $this->success('请求成功',$data);
  218. }
  219. /**
  220. * 版本更新分类(3级)
  221. * @ApiParams (name="id")
  222. */
  223. public function version_updating_three(){
  224. $data = VersionUpdating::all(['pid'=>input('id'),'ismenu'=>0]);
  225. $this->success('请求成功',$data);
  226. }
  227. /**
  228. * 论坛
  229. */
  230. public function luntan(){
  231. }
  232. /**
  233. * 成为合作伙伴
  234. */
  235. public function cooperation_configuration(){
  236. $res = CooperationConfiguration::all();
  237. foreach ($res as $k=>&$v){
  238. $v['image'] = explode(',',$v['image']);
  239. }
  240. $this->success('请求成功',$res);
  241. }
  242. /**
  243. * 参观公司
  244. */
  245. public function visit_configuration(){
  246. $res = VisitConfiguration::all();
  247. foreach ($res as $k=>&$v){
  248. $v['image'] = explode(',',$v['image']);
  249. }
  250. $this->success('请求成功',$res);
  251. }
  252. /**
  253. * 常见问题
  254. */
  255. public function faq(){
  256. $res = Faq::all();
  257. $this->success('请求成功',$res);
  258. }
  259. /**
  260. * 常见问题浏览
  261. */
  262. public function browse_faq(){
  263. $res = Faq::all();
  264. foreach ($res as $v){
  265. $v->getQuery()->where('id',$v['id'])->inc('browse')->update();
  266. }
  267. $this->success('请求成功');
  268. }
  269. }