2014-10-09 00:29:18 +02:00
|
|
|
// Copyright 2014 The Gogs Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package admin
|
|
|
|
|
|
|
|
import (
|
2015-12-05 07:09:14 +01:00
|
|
|
"github.com/Unknwon/com"
|
2015-09-25 18:39:31 +02:00
|
|
|
"github.com/Unknwon/paginater"
|
2014-10-09 00:29:18 +02:00
|
|
|
|
2016-11-10 17:24:48 +01:00
|
|
|
"code.gitea.io/gitea/models"
|
|
|
|
"code.gitea.io/gitea/modules/base"
|
|
|
|
"code.gitea.io/gitea/modules/context"
|
|
|
|
"code.gitea.io/gitea/modules/log"
|
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2014-10-09 00:29:18 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2016-11-21 04:21:24 +01:00
|
|
|
tplNotices base.TplName = "admin/notice"
|
2014-10-09 00:29:18 +02:00
|
|
|
)
|
|
|
|
|
2016-11-21 04:21:24 +01:00
|
|
|
// Notices show notices for admin
|
2016-03-11 17:56:52 +01:00
|
|
|
func Notices(ctx *context.Context) {
|
2014-10-09 00:29:18 +02:00
|
|
|
ctx.Data["Title"] = ctx.Tr("admin.notices")
|
|
|
|
ctx.Data["PageIsAdmin"] = true
|
|
|
|
ctx.Data["PageIsAdminNotices"] = true
|
|
|
|
|
2015-09-25 18:58:39 +02:00
|
|
|
total := models.CountNotices()
|
2015-09-25 18:13:38 +02:00
|
|
|
page := ctx.QueryInt("page")
|
|
|
|
if page <= 1 {
|
|
|
|
page = 1
|
|
|
|
}
|
2016-07-23 18:23:54 +02:00
|
|
|
ctx.Data["Page"] = paginater.New(int(total), setting.UI.Admin.NoticePagingNum, page, 5)
|
2015-09-25 18:58:39 +02:00
|
|
|
|
2016-07-23 18:23:54 +02:00
|
|
|
notices, err := models.Notices(page, setting.UI.Admin.NoticePagingNum)
|
2014-10-09 00:29:18 +02:00
|
|
|
if err != nil {
|
2015-09-25 18:13:38 +02:00
|
|
|
ctx.Handle(500, "Notices", err)
|
2014-10-09 00:29:18 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Data["Notices"] = notices
|
2015-09-25 18:58:39 +02:00
|
|
|
|
2015-09-25 18:13:38 +02:00
|
|
|
ctx.Data["Total"] = total
|
2016-11-21 04:21:24 +01:00
|
|
|
ctx.HTML(200, tplNotices)
|
2014-10-09 00:29:18 +02:00
|
|
|
}
|
|
|
|
|
2016-11-21 04:21:24 +01:00
|
|
|
// DeleteNotices delete the specific notices
|
2016-03-11 17:56:52 +01:00
|
|
|
func DeleteNotices(ctx *context.Context) {
|
2015-12-05 07:09:14 +01:00
|
|
|
strs := ctx.QueryStrings("ids[]")
|
|
|
|
ids := make([]int64, 0, len(strs))
|
|
|
|
for i := range strs {
|
|
|
|
id := com.StrTo(strs[i]).MustInt64()
|
|
|
|
if id > 0 {
|
|
|
|
ids = append(ids, id)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := models.DeleteNoticesByIDs(ids); err != nil {
|
|
|
|
ctx.Flash.Error("DeleteNoticesByIDs: " + err.Error())
|
|
|
|
ctx.Status(500)
|
|
|
|
} else {
|
|
|
|
ctx.Flash.Success(ctx.Tr("admin.notices.delete_success"))
|
|
|
|
ctx.Status(200)
|
2014-10-09 00:29:18 +02:00
|
|
|
}
|
2015-12-02 05:33:08 +01:00
|
|
|
}
|
|
|
|
|
2016-11-21 04:21:24 +01:00
|
|
|
// EmptyNotices delete all the notices
|
2016-03-11 17:56:52 +01:00
|
|
|
func EmptyNotices(ctx *context.Context) {
|
2015-12-02 05:33:08 +01:00
|
|
|
if err := models.DeleteNotices(0, 0); err != nil {
|
|
|
|
ctx.Handle(500, "DeleteNotices", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Trace("System notices deleted by admin (%s): [start: %d]", ctx.User.Name, 0)
|
2014-10-09 00:29:18 +02:00
|
|
|
ctx.Flash.Success(ctx.Tr("admin.notices.delete_success"))
|
2016-11-27 11:14:25 +01:00
|
|
|
ctx.Redirect(setting.AppSubURL + "/admin/notices")
|
2014-10-09 00:29:18 +02:00
|
|
|
}
|