AdminStarEcologyController.php
11.0 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
<?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: 小夏 < 449134904@qq.com>
// +----------------------------------------------------------------------
namespace app\portal\controller;
use cmf\controller\AdminBaseController;
use app\portal\model\PortalPostModel;
use app\portal\service\PostService;
use app\portal\model\PortalCategoryModel;
use app\portal\model\CityCategoryModel;
use think\Db;
use app\admin\model\ThemeModel;
//星球奇境->活力生态
class AdminStarEcologyController extends AdminBaseController
{
//文章列表
public function index()
{
$content = hook_one('portal_admin_article_index_view');
if (!empty($content)) {
return $content;
}
$param = $this->request->param();
$param['category'] = CityCategoryModel::hlst;
// $categoryId = $this->request->param('category', 0, 'intval');
$categoryId = $param['category'];
$postService = new PostService();
$data = $postService->AdminArticleList($param);
$data->appends($param);
$articles = $data->items();
if($articles){
$articles = json_encode($articles,true);
$articles = json_decode($articles,true);
foreach($articles as &$value){
$value['city_name'] = $this->getCityCategory($value['city_id']);
}
}
$portalCategoryModel = new PortalCategoryModel();
$categoryTree = $portalCategoryModel->adminCategoryTree($categoryId);
$this->assign('start_time', isset($param['start_time']) ? $param['start_time'] : '');
$this->assign('end_time', isset($param['end_time']) ? $param['end_time'] : '');
$this->assign('keyword', isset($param['keyword']) ? $param['keyword'] : '');
$this->assign('articles', $articles);
$this->assign('category_tree', $categoryTree);
$this->assign('category', $categoryId);
$this->assign('page', $data->render());
//城市分类
$city_list = $this->category();
$this->assign('city_list', $city_list);
$city_id = empty($param['city_id']) ? 0 : intval($param['city_id']);
$this->assign('city_id', $city_id);
return $this->fetch();
}
//获取城市分类
private function getCityCategory($id){
$city_name = Db::table('cmf_city_category')
->where('id',$id)
->field('name')
->find();
return $city_name['name'];
}
//添加文章
public function add()
{
$content = hook_one('portal_admin_article_add_view');
if (!empty($content)) {
return $content;
}
$themeModel = new ThemeModel();
$articleThemeFiles = $themeModel->getActionThemeFiles('portal/Article/index');
$this->assign('article_theme_files', $articleThemeFiles);
//城市分类
$arr = $this->category();
$this->assign('list', $arr);
//分类
$categories = CityCategoryModel::hlst;
$this->assign('categories', $categories);
return $this->fetch();
}
//城市分类
private function category(){
//城市分类
$portalCategoryModel = new CityCategoryModel();
$parentList = $portalCategoryModel->where(['delete_time'=>0,'pid'=>0])->select()->toArray();
$list = $portalCategoryModel->where(['delete_time'=>0])->select()->toArray();
$arr = [];
foreach($parentList as &$item) {
$arr[] = $item;
foreach ($list as $list_value) {
if ($list_value['pid'] == $item['id']) {
$list_value['name'] = ' ├─' . $list_value['name'];
$arr[] = $list_value;
}
}
}
return $arr;
}
//添加文章提交
public function addPost()
{
if ($this->request->isPost()) {
$data = $this->request->param();
//状态只能设置默认值。未发布、未置顶、未推荐
$data['post']['post_status'] = 0;
$data['post']['is_top'] = 0;
$data['post']['recommended'] = 0;
$post = $data['post'];
$result = $this->validate($post, 'AdminStarEcology');
if ($result !== true) {
$this->error($result);
}
$portalPostModel = new PortalPostModel();
if (!empty($data['photo_names']) && !empty($data['photo_urls'])) {
$data['post']['more']['photos'] = [];
foreach ($data['photo_urls'] as $key => $url) {
$photoUrl = cmf_asset_relative_url($url);
array_push($data['post']['more']['photos'], ["url" => $photoUrl, "name" => $data['photo_names'][$key]]);
}
}
if (!empty($data['file_names']) && !empty($data['file_urls'])) {
$data['post']['more']['files'] = [];
foreach ($data['file_urls'] as $key => $url) {
$fileUrl = cmf_asset_relative_url($url);
array_push($data['post']['more']['files'], ["url" => $fileUrl, "name" => $data['file_names'][$key]]);
}
}
$portalPostModel->adminAddArticle($data['post'], $data['post']['categories']);
$data['post']['id'] = $portalPostModel->id;
$hookParam = [
'is_add' => true,
'article' => $data['post']
];
hook('portal_admin_after_save_article', $hookParam);
$this->success('添加成功!', url('AdminStarEcology/edit', ['id' => $portalPostModel->id]));
}
}
//编辑文章
public function edit()
{
$content = hook_one('portal_admin_article_edit_view');
if (!empty($content)) {
return $content;
}
$id = $this->request->param('id', 0, 'intval');
$portalPostModel = new PortalPostModel();
$post = $portalPostModel->where('id', $id)->find();
$postCategories = $post->categories()->alias('a')->column('a.name', 'a.id');
$postCategoryIds = implode(',', array_keys($postCategories));
$themeModel = new ThemeModel();
$articleThemeFiles = $themeModel->getActionThemeFiles('portal/Article/index');
$this->assign('article_theme_files', $articleThemeFiles);
$this->assign('post', $post);
$this->assign('post_categories', $postCategories);
$this->assign('post_category_ids', $postCategoryIds);
//城市分类
$arr = $this->category();
$this->assign('list', $arr);
//分类
$categories = CityCategoryModel::hlst;
$this->assign('categories', $categories);
return $this->fetch();
}
//编辑文章提交
public function editPost()
{
if ($this->request->isPost()) {
$data = $this->request->param();
//需要抹除发布、置顶、推荐的修改。
unset($data['post']['post_status']);
unset($data['post']['is_top']);
unset($data['post']['recommended']);
$post = $data['post'];
$result = $this->validate($post, 'AdminStarEcology');
if ($result !== true) {
$this->error($result);
}
$portalPostModel = new PortalPostModel();
if (!empty($data['photo_names']) && !empty($data['photo_urls'])) {
$data['post']['more']['photos'] = [];
foreach ($data['photo_urls'] as $key => $url) {
$photoUrl = cmf_asset_relative_url($url);
array_push($data['post']['more']['photos'], ["url" => $photoUrl, "name" => $data['photo_names'][$key]]);
}
}
if (!empty($data['file_names']) && !empty($data['file_urls'])) {
$data['post']['more']['files'] = [];
foreach ($data['file_urls'] as $key => $url) {
$fileUrl = cmf_asset_relative_url($url);
array_push($data['post']['more']['files'], ["url" => $fileUrl, "name" => $data['file_names'][$key]]);
}
}
$portalPostModel->adminEditArticle($data['post'], $data['post']['categories']);
$hookParam = [
'is_add' => false,
'article' => $data['post']
];
hook('portal_admin_after_save_article', $hookParam);
$this->success('保存成功!');
}
}
//文章删除
public function delete()
{
$param = $this->request->param();
$portalPostModel = new PortalPostModel();
if (isset($param['id'])) {
$id = $this->request->param('id', 0, 'intval');
$result = $portalPostModel->where('id', $id)->find();
$data = [
'object_id' => $result['id'],
'create_time' => time(),
'table_name' => 'portal_post',
'name' => $result['post_title'],
'user_id' => cmf_get_current_admin_id()
];
$resultPortal = $portalPostModel
->where('id', $id)
->update(['delete_time' => time()]);
if ($resultPortal) {
Db::name('portal_category_post')->where('post_id', $id)->update(['status' => 0]);
Db::name('portal_tag_post')->where('post_id', $id)->update(['status' => 0]);
Db::name('recycleBin')->insert($data);
}
$this->success("删除成功!", '');
}
if (isset($param['ids'])) {
$ids = $this->request->param('ids/a');
$recycle = $portalPostModel->where('id', 'in', $ids)->select();
$result = $portalPostModel->where('id', 'in', $ids)->update(['delete_time' => time()]);
if ($result) {
Db::name('portal_category_post')->where('post_id', 'in', $ids)->update(['status' => 0]);
Db::name('portal_tag_post')->where('post_id', 'in', $ids)->update(['status' => 0]);
foreach ($recycle as $value) {
$data = [
'object_id' => $value['id'],
'create_time' => time(),
'table_name' => 'portal_post',
'name' => $value['post_title'],
'user_id' => cmf_get_current_admin_id()
];
Db::name('recycleBin')->insert($data);
}
$this->success("删除成功!", '');
}
}
}
}