forked from zzdboy/GoCMS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
category.go
434 lines (360 loc) · 10.8 KB
/
category.go
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
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
// +----------------------------------------------------------------------
// | GoCMS 0.1
// +----------------------------------------------------------------------
// | Copyright (c) 2013-2014 http://www.6574.com.cn All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// | Author: zzdboy <zzdboy1616@163.com>
// +----------------------------------------------------------------------
package controllers
//内容管理--栏目管理
import "strconv"
import "encoding/json"
import "github.com/revel/revel"
import "github.com/blackmady/NoneCMS/app/models"
import "github.com/blackmady/NoneCMS/utils"
type Category struct {
*revel.Controller
}
func (c Category) Index(category *models.Category) revel.Result {
title := "栏目管理--GoCMS管理系统"
UserID := utils.GetSession("UserID", c.Session)
if len(UserID) > 0 {
UserID, err := strconv.ParseInt(UserID, 10, 64)
if err != nil {
revel.WARN.Println(err)
}
admin := new(models.Admin)
admin_info := admin.GetById(UserID)
categorys := category.GetCateGoryHtml(admin_info)
c.Render(title, categorys)
} else {
c.Render(title)
}
return c.RenderTemplate("Content/Category/Index.html")
}
//添加栏目
func (c Category) Add(category *models.Category) revel.Result {
if c.Request.Method == "GET" {
title := "添加栏目--GoCMS管理系统"
var id string = c.Params.Get("id")
if len(id) > 0 {
Id, err := strconv.ParseInt(id, 10, 64)
if err != nil {
revel.WARN.Println(err)
}
//返回菜单Option的HTML
categorys := category.GetCateGoryOptionHtml(Id)
c.Render(title, categorys, Id)
} else {
//返回菜单Option的HTML
categorys := category.GetCateGoryOptionHtml(0)
c.Render(title, categorys)
}
return c.RenderTemplate("Content/Category/Add.html")
} else {
//栏目类型
var cate_type string = c.Params.Get("type")
if len(cate_type) > 0 {
Type, err := strconv.ParseInt(cate_type, 10, 64)
if err != nil {
revel.WARN.Println(err)
}
category.Type = Type
} else {
c.Flash.Error("请选择栏目类型!")
c.Flash.Out["url"] = "/Category/Add/"
return c.Redirect("/Message/")
}
//上级栏目
var pid string = c.Params.Get("pid")
if len(pid) > 0 {
Pid, err := strconv.ParseInt(pid, 10, 64)
if err != nil {
revel.WARN.Println(err)
}
category.Pid = Pid
} else {
c.Flash.Error("请选择父栏目!")
c.Flash.Out["url"] = "/Category/Add/"
return c.Redirect("/Message/")
}
//栏目名称
var name string = c.Params.Get("name")
if len(name) > 0 {
category.Name = name
} else {
c.Flash.Error("请输入栏目名称!")
c.Flash.Out["url"] = "/Category/Add/"
return c.Redirect("/Message/")
}
var enname string = c.Params.Get("enname")
if len(enname) > 0 {
category.Enname = enname
} else {
c.Flash.Error("请输入英文栏目名称!")
c.Flash.Out["url"] = "/Category/Add/"
return c.Redirect("/Message/")
}
//栏目地址
var url string = c.Params.Get("url")
if len(url) > 0 {
category.Url = url
} else {
c.Flash.Error("请输入栏目地址!")
c.Flash.Out["url"] = "/Category/Add/"
return c.Redirect("/Message/")
}
//描述
var desc string = c.Params.Get("desc")
if len(desc) > 0 {
category.Desc = desc
} else {
c.Flash.Error("请输入描述!")
c.Flash.Out["url"] = "/Category/Add/"
return c.Redirect("/Message/")
}
//是否在导航显示
var ismenu string = c.Params.Get("ismenu")
if len(ismenu) > 0 {
IsMenu, err := strconv.ParseInt(ismenu, 10, 64)
if err != nil {
revel.WARN.Println(err)
}
category.Ismenu = IsMenu
} else {
c.Flash.Error("请选择是否在导航显示!")
c.Flash.Out["url"] = "/Category/Add/"
return c.Redirect("/Message/")
}
Setting := make(map[string]interface{})
//栏目生成Html
var ishtml string = c.Params.Get("ishtml")
Setting["ishtml"] = ishtml
var content_ishtml string = c.Params.Get("content_ishtml")
Setting["content_ishtml"] = content_ishtml
var meta_title string = c.Params.Get("meta_title")
Setting["meta_title"] = meta_title
var meta_keywords string = c.Params.Get("meta_keywords")
Setting["meta_keywords"] = meta_keywords
var meta_desc string = c.Params.Get("meta_desc")
Setting["meta_desc"] = meta_desc
//栏目设置
Setting_Text, err := json.Marshal(Setting)
if err != nil {
revel.WARN.Println(err)
}
category.SettingText = Setting
category.Setting = string(Setting_Text)
if category.Save() {
//******************************************
//管理员日志
if UserID, ok := c.Session["UserID"]; ok {
UserID, err := strconv.ParseInt(UserID, 10, 64)
if err != nil {
revel.WARN.Println(err)
}
admin := new(models.Admin)
admin_info := admin.GetById(UserID)
logs := new(models.Logs)
desc := "添加栏目:" + name + "|^|栏目管理"
logs.Save(admin_info, c.Controller, desc)
}
//*****************************************
c.Flash.Success("添加栏目成功")
c.Flash.Out["url"] = "/Category/"
return c.Redirect("/Message/")
} else {
c.Flash.Error("添加栏目失败")
c.Flash.Out["url"] = "/Category/Add/"
return c.Redirect("/Message/")
}
}
}
//编辑栏目
func (c Category) Edit(category *models.Category) revel.Result {
if c.Request.Method == "GET" {
title := "编辑栏目--GoCMS管理系统"
var id string = c.Params.Get("id")
if len(id) > 0 {
Id, err := strconv.ParseInt(id, 10, 64)
if err != nil {
revel.WARN.Println(err)
}
//获取菜单信息
category_info := category.GetById(Id)
//返回菜单Option的HTML
categorys := category.GetCateGoryOptionHtml(category_info.Pid)
c.Render(title, categorys, category_info)
} else {
//返回菜单Option的HTML
categorys := category.GetCateGoryOptionHtml(0)
c.Render(title, categorys)
}
return c.RenderTemplate("Content/Category/Edit.html")
} else {
var id string = c.Params.Get("id")
if len(id) > 0 {
Id, err := strconv.ParseInt(id, 10, 64)
if err != nil {
revel.WARN.Println(err)
}
//栏目类型
var cate_type string = c.Params.Get("type")
if len(cate_type) > 0 {
Type, err := strconv.ParseInt(cate_type, 10, 64)
if err != nil {
revel.WARN.Println(err)
}
category.Type = Type
} else {
c.Flash.Error("请选择栏目类型!")
c.Flash.Out["url"] = "/Category/Edit/" + id + "/"
return c.Redirect("/Message/")
}
//上级栏目
var pid string = c.Params.Get("pid")
if len(pid) > 0 {
Pid, err := strconv.ParseInt(pid, 10, 64)
if err != nil {
revel.WARN.Println(err)
}
category.Pid = Pid
} else {
c.Flash.Error("请选择父栏目!")
c.Flash.Out["url"] = "/Category/Edit/" + id + "/"
return c.Redirect("/Message/")
}
//栏目名称
var name string = c.Params.Get("name")
if len(name) > 0 {
category.Name = name
} else {
c.Flash.Error("请输入栏目名称!")
c.Flash.Out["url"] = "/Category/Edit/" + id + "/"
return c.Redirect("/Message/")
}
var enname string = c.Params.Get("enname")
if len(enname) > 0 {
category.Enname = enname
} else {
c.Flash.Error("请输入英文栏目名称!")
c.Flash.Out["url"] = "/Category/Edit/" + id + "/"
return c.Redirect("/Message/")
}
//栏目地址
var url string = c.Params.Get("url")
if len(url) > 0 {
category.Url = url
} else {
c.Flash.Error("请输入栏目地址!")
c.Flash.Out["url"] = "/Category/Edit/" + id + "/"
return c.Redirect("/Message/")
}
//描述
var desc string = c.Params.Get("desc")
if len(desc) > 0 {
category.Desc = desc
} else {
c.Flash.Error("请输入描述!")
c.Flash.Out["url"] = "/Category/Edit/" + id + "/"
return c.Redirect("/Message/")
}
//是否在导航显示
var ismenu string = c.Params.Get("ismenu")
if len(ismenu) > 0 {
IsMenu, err := strconv.ParseInt(ismenu, 10, 64)
if err != nil {
revel.WARN.Println(err)
}
category.Ismenu = IsMenu
} else {
c.Flash.Error("请选择是否在导航显示!")
c.Flash.Out["url"] = "/Category/Edit/" + id + "/"
return c.Redirect("/Message/")
}
Setting := make(map[string]interface{})
//栏目生成Html
var ishtml string = c.Params.Get("ishtml")
Setting["ishtml"] = ishtml
var content_ishtml string = c.Params.Get("content_ishtml")
Setting["content_ishtml"] = content_ishtml
var meta_title string = c.Params.Get("meta_title")
Setting["meta_title"] = meta_title
var meta_keywords string = c.Params.Get("meta_keywords")
Setting["meta_keywords"] = meta_keywords
var meta_desc string = c.Params.Get("meta_desc")
Setting["meta_desc"] = meta_desc
//栏目设置
Setting_Text, err := json.Marshal(Setting)
if err != nil {
revel.WARN.Println(err)
}
category.SettingText = Setting
category.Setting = string(Setting_Text)
if category.Edit(Id) {
//******************************************
//管理员日志
if UserID, ok := c.Session["UserID"]; ok {
UserID, err := strconv.ParseInt(UserID, 10, 64)
if err != nil {
revel.WARN.Println(err)
}
admin := new(models.Admin)
admin_info := admin.GetById(UserID)
logs := new(models.Logs)
desc := "编辑栏目:" + name + "|^|栏目管理|^|ID:" + id
logs.Save(admin_info, c.Controller, desc)
}
//*****************************************
c.Flash.Success("编辑栏目成功")
c.Flash.Out["url"] = "/Category/"
return c.Redirect("/Message/")
} else {
c.Flash.Error("编辑栏目失败")
c.Flash.Out["url"] = "/Category/Edit/" + id + "/"
return c.Redirect("/Message/")
}
} else {
c.Flash.Error("编辑菜单失败")
c.Flash.Out["url"] = "/Category/Edit/" + id + "/"
return c.Redirect("/Message/")
}
}
}
//删除栏目
func (c Category) Delete(category *models.Category) revel.Result {
var id string = c.Params.Get("id")
data := make(map[string]string)
if len(id) <= 0 {
data["status"] = "0"
data["message"] = "参数错误!"
}
Id, err := strconv.ParseInt(id, 10, 64)
if err != nil {
revel.WARN.Println(err)
}
if category.DelByID(Id) {
//******************************************
//管理员日志
if UserID, ok := c.Session["UserID"]; ok {
UserID, err := strconv.ParseInt(UserID, 10, 64)
if err != nil {
revel.WARN.Println(err)
}
admin := new(models.Admin)
admin_info := admin.GetById(UserID)
logs := new(models.Logs)
desc := "删除栏目|^|ID:" + id
logs.Save(admin_info, c.Controller, desc)
}
//*****************************************
data["status"] = "1"
data["message"] = "删除成功!"
} else {
data["status"] = "0"
data["message"] = "删除失败!"
}
return c.RenderJson(data)
}