StarController.php
12.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
<?php
// +----------------------------------------------------------------------
// | ThinkCMF [ WE CAN DO IT MORE SIMPLE ]
// +----------------------------------------------------------------------
// | Copyright (c) 2013-2019 http://www.thinkcmf.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// | Author: 老猫 <thinkcmf@126.com>
// +----------------------------------------------------------------------
namespace app\portal\controller;
use app\portal\model\CommentModel;
use cmf\controller\HomeBaseController;
use app\portal\model\CityCategoryModel;
use app\portal\validate\CommentValidate;
use app\portal\model\PortalPostModel;
use think\Db;
//星球奇境
class StarController extends HomeBaseController
{
private $index_limit = 16;//首页分页
private $more_limit = 8;//更多列表分页
public function index(){
//按照城市查询
$city_id = $this->request->param('city_id');
//查询城市名称
$city_name = $this->getCityName($city_id);
$this->assign('city_name',$city_name);
$this->assign('city_id',$city_id);
$position['city_id'] = $city_id;
//星球故事
$position['category_id'] = CityCategoryModel::xqgs;
$field = 'id,thumbnail,post_excerpt,more';
$res_xqgs = $this->getChildArticle($position,$field,1);
foreach($res_xqgs as &$value){
$more = json_decode($value['more'],true);
if(isset($more['audio']) && !empty($more['audio'])){
$value['audio'] = $more['audio'];
}
}
if($res_xqgs){
$res_xqgs = $res_xqgs[0];
}
$this->assign('res_xqgs',$res_xqgs);
//网红美景
$position['category_id'] = CityCategoryModel::whmj;
$field = 'id,thumbnail,post_title,post_hits,post_favorites';
$res_whmj = $this->getChildArticle($position,$field,$this->index_limit);
$this->assign('res_whmj',$res_whmj);
//异域珍馐
$position['category_id'] = CityCategoryModel::yyzx;
$field = 'id,thumbnail,post_title';
$res_yyzx = $this->getChildArticle($position,$field,$this->index_limit);
$this->assign('res_yyzx',$res_yyzx);
//良宿美寝
$position['category_id'] = CityCategoryModel::lsmq;
$field = 'id,thumbnail,post_title';
$res_lsmq = $this->getChildArticle($position,$field,$this->index_limit);
$this->assign('res_lsmq',$res_lsmq);
//活力生态
$position['category_id'] = CityCategoryModel::hlst;
$field = 'id,thumbnail,post_title,post_excerpt';
$res_hlst = $this->getChildArticle($position,$field,$this->index_limit);
$this->assign('res_hlst',$res_hlst);
//便利出行
$position['category_id'] = CityCategoryModel::blcx;
$field = 'id,thumbnail';
$res_blcx = $this->getChildArticle($position,$field,$this->index_limit);
$this->assign('res_blcx',$res_blcx);
return $this->fetch();
}
//获取城市名称
public function getCityName($city_id){
$city_name = Db::name('city_category')
->where('id',$city_id)
->field('id,name')
->find();
$city_name = empty($city_name)?'':$city_name['name'];
return $city_name;
}
//根据子类获取文章
public function getChildArticle($position,$field,$limit=''){
$pre = CityCategoryModel::pre;
$limit = empty($limit)?0:$limit;
$post_id = Db::table($pre.'portal_category_post')
->where('category_id',$position['category_id'])
->field('post_id')
->select()
->toArray();
$post_id = array_column($post_id,'post_id');
//查询文章
$res = Db::table($pre.'portal_post')
->whereIn('id',$post_id)
->where('city_id',$position['city_id'])
->where('delete_time', 0)
->field($field)
->limit($limit)
->order('weigh desc')
->select()
->toArray();
return $res;
}
//根据子类获取文章分页
public function getChildArticlePage($position,$field,$limit = ''){
$pre = CityCategoryModel::pre;
$limit = empty($limit)?$this->more_limit:$limit;
$post_id = Db::table($pre.'portal_category_post')
->whereIn('category_id',$position['category_id'])
->field('post_id')
->select()
->toArray();
$post_id = array_column($post_id,'post_id');
//查询文章
$res = Db::table($pre.'portal_post')
->whereIn('id',$post_id)
->where('city_id',$position['city_id'])
->where('delete_time', 0)
->field($field)
->order('weigh desc')
->paginate($limit,false,['query'=>request()->param()]);
$res['data'] = $res->toArray();
$res['page'] = $res->render();
return $res;
}
//网红美景更多
public function getMoreScenery(){
$city_id = $this->request->param('city_id',0,'intval');
//查询城市名称
$city_name = $this->getCityName($city_id);
$this->assign('city_name',$city_name);
$position['category_id'] = CityCategoryModel::whmj;
$position['city_id'] = $city_id;
$field = 'id,thumbnail,post_title,post_hits,post_favorites';
$res = $this->getChildArticlePage($position,$field);
$this->assign('res',$res['data']);
$this->assign('page',$res['page']);
return $this->fetch();
}
//网红美景详情
public function getSceneryDetail(){
$id = $this->request->param('id',0,'intval');
$field = 'id,thumbnail,post_title,post_excerpt,create_time,post_content,more';
$res = $this->getDetail($id,$field);
if($res){
$more = json_decode($res['more'],true);
$res['image_url'] = isset($more['photos']) && !empty($more['photos'])?$more['photos'][0]['url']:'';
}
$this->assign('res',$res);
return $this->fetch();
}
//异域珍馐更多
public function getMoreFood(){
$city_id = $this->request->param('city_id',0,'intval');
//查询城市名称
$city_name = $this->getCityName($city_id);
$this->assign('city_name',$city_name);
$position['category_id'] = CityCategoryModel::yyzx;
$position['city_id'] = $city_id;
$field = 'id,thumbnail,post_title,post_hits,post_favorites';
$res = $this->getChildArticlePage($position,$field,10);
$this->assign('res',$res['data']);
$this->assign('page',$res['page']);
return $this->fetch();
}
//异域珍馐详情
public function getFoodDetail(){
$id = $this->request->param('id',0,'intval');
$field = 'id,thumbnail,post_title,post_excerpt,create_time,post_content,more';
$res = $this->getDetail($id,$field);
if($res){
$more = json_decode($res['more'],true);
$res['image_url'] = isset($more['photos']) && !empty($more['photos'])?$more['photos'][0]['url']:'';
}
$this->assign('res',$res);
return $this->fetch();
}
//良宿美寝更多
public function getMoreHotel(){
$city_id = $this->request->param('city_id',0,'intval');
//查询城市名称
$city_name = $this->getCityName($city_id);
$this->assign('city_name',$city_name);
$position['category_id'] = CityCategoryModel::lsmq;
$position['city_id'] = $city_id;
$field = 'id,thumbnail,post_title,post_excerpt';
$res = $this->getChildArticlePage($position,$field);
$this->assign('res',$res['data']);
$this->assign('page',$res['page']);
return $this->fetch();
}
//良宿美寝详情
public function getHotelDetail(){
$id = $this->request->param('id',0,'intval');
$field = 'id,thumbnail,post_title,tel,url,address,post_excerpt,create_time,post_content,more';
$res = $this->getDetail($id,$field);
if($res){
$more = json_decode($res['more'],true);
$res['image_one'] = isset($more['photos']) && !empty($more['photos'])?$more['photos'][0]['url']:'';
$res['image_url'] = isset($more['photos']) && !empty($more['photos'])?$more['photos']:'';
}
$this->assign('res',$res);
return $this->fetch();
}
//活力生态更多
public function getMoreEcology(){
$city_id = $this->request->param('city_id',0,'intval');
//查询城市名称
$city_name = $this->getCityName($city_id);
$this->assign('city_name',$city_name);
$position['category_id'] = CityCategoryModel::hlst;
$position['city_id'] = $city_id;
$field = 'id,thumbnail,post_title,post_excerpt';
$res = $this->getChildArticlePage($position,$field);
$this->assign('res',$res['data']);
$this->assign('page',$res['page']);
return $this->fetch();
}
//活力生态详情
public function getEcologyDetail(){
$id = $this->request->param('id',0,'intval');
$field = 'id,thumbnail,post_title,post_excerpt,create_time,post_content,more';
$res = $this->getDetail($id,$field);
if($res){
$more = json_decode($res['more'],true);
$res['image_url'] = isset($more['photos']) && !empty($more['photos'])?$more['photos'][0]['url']:'';
}
$this->assign('res',$res);
return $this->fetch();
}
//便利出行更多
public function getMoreTravel(){
$city_id = $this->request->param('city_id',0,'intval');
//查询城市名称
$city_name = $this->getCityName($city_id);
$this->assign('city_name',$city_name);
$position['category_id'] = CityCategoryModel::blcx;
$position['city_id'] = $city_id;
$field = 'id,thumbnail,post_title,post_excerpt';
$res = $this->getChildArticlePage($position,$field);
$this->assign('res',$res['data']);
$this->assign('page',$res['page']);
return $this->fetch();
}
//便利出行详情
public function getTravelDetail(){
$id = $this->request->param('id',0,'intval');
$field = 'id,thumbnail,post_title,post_excerpt,create_time,post_content,more';
$res = $this->getDetail($id,$field);
if($res){
$more = json_decode($res['more'],true);
$res['image_url'] = isset($more['photos']) && !empty($more['photos'])?$more['photos'][0]['url']:'';
}
$this->assign('res',$res);
return $this->fetch();
}
//获取文章详情(评论列表)
public function getDetail($id,$field){
$pre = CityCategoryModel::pre;
$res = Db::table($pre.'portal_post')
->where(['id'=>$id,'delete_time'=>0])
->field($field)
->find();
$contentModel = new PortalPostModel();
$res['post_content'] = $contentModel->getPostContentAttr($res['post_content']);
//查看数+1
$postModel = new PortalPostModel();
$postModel->where('id',$id)->setInc('post_hits', 1);
return $res;
}
//星球故事详情
public function getStoryDetail(){
$id = $this->request->param('id',0,'intval');
$field = 'id,thumbnail,post_title,post_excerpt,create_time,post_content,more';
$res = $this->getDetail($id,$field);
if($res){
$more = json_decode($res['more'],true);
$res['audio'] = isset($more['audio']) && !empty($more['audio'])?$more['audio']:'';
}
$this->assign('res',$res);
return $this->fetch();
}
//用户评论
public function comment(){
//判断是否登录
$login = cmf_is_user_login();
$article_id = $this->request->param('article_id');//文章id
$content = $this->request->param('content');//评论内容
$url = $this->request->param('url');//评论文章链接
if($login){
$data['user_id'] = cmf_get_current_user_id();
$data['post_id'] = $article_id;
$data['content'] = $content;
$data['url'] = $url;
$data['create_time'] = time();
$validate = new CommentValidate();
if(!$validate->check($data)){
$this->apiResponse(0,$validate->getError());
}
$commentModel = new CommentModel();
$res = $commentModel->allowField(true)->save($data);
if($res){
$this->apiResponse(1,'评论成功!');
}else{
$this->apiResponse(0,'评论失败!');
}
}else{
$this->apiResponse(0,'请登录后评论!');
}
}
}