Files

76 lines
2.0 KiB
Go
Raw Permalink Normal View History

2014-10-08 18:29:18 -04:00
// Copyright 2014 The Gogs Authors. All rights reserved.
// Copyright 2019 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT
2014-10-08 18:29:18 -04:00
package admin
import (
"net/http"
2020-12-25 09:59:32 +00:00
"strconv"
2023-12-25 21:25:29 +01:00
"code.gitea.io/gitea/models/db"
system_model "code.gitea.io/gitea/models/system"
"code.gitea.io/gitea/modules/log"
"code.gitea.io/gitea/modules/setting"
"code.gitea.io/gitea/modules/templates"
"code.gitea.io/gitea/services/context"
2014-10-08 18:29:18 -04:00
)
const (
tplNotices templates.TplName = "admin/notice"
2014-10-08 18:29:18 -04:00
)
2016-11-21 11:21:24 +08:00
// Notices show notices for admin
2016-03-11 11:56:52 -05:00
func Notices(ctx *context.Context) {
2014-10-08 18:29:18 -04:00
ctx.Data["Title"] = ctx.Tr("admin.notices")
ctx.Data["PageIsAdminNotices"] = true
total := system_model.CountNotices(ctx)
2025-06-18 03:48:09 +02:00
page := max(ctx.FormInt("page"), 1)
2015-09-25 12:58:39 -04:00
notices, err := system_model.Notices(ctx, page, setting.UI.Admin.NoticePagingNum)
2014-10-08 18:29:18 -04:00
if err != nil {
2018-01-10 22:34:17 +01:00
ctx.ServerError("Notices", err)
2014-10-08 18:29:18 -04:00
return
}
ctx.Data["Notices"] = notices
2015-09-25 12:58:39 -04:00
ctx.Data["Total"] = total
2026-03-08 15:35:50 +01:00
ctx.Data["Page"] = context.NewPagination(total, setting.UI.Admin.NoticePagingNum, page, 5)
ctx.HTML(http.StatusOK, tplNotices)
2014-10-08 18:29:18 -04:00
}
2016-11-21 11:21:24 +08:00
// DeleteNotices delete the specific notices
2016-03-11 11:56:52 -05:00
func DeleteNotices(ctx *context.Context) {
strs := ctx.FormStrings("ids[]")
ids := make([]int64, 0, len(strs))
for i := range strs {
2020-12-25 09:59:32 +00:00
id, _ := strconv.ParseInt(strs[i], 10, 64)
if id > 0 {
ids = append(ids, id)
}
}
2023-12-25 21:25:29 +01:00
if err := db.DeleteByIDs[system_model.Notice](ctx, ids...); err != nil {
ctx.Flash.Error("DeleteNoticesByIDs: " + err.Error())
ctx.Status(http.StatusInternalServerError)
} else {
ctx.Flash.Success(ctx.Tr("admin.notices.delete_success"))
ctx.Status(http.StatusOK)
2014-10-08 18:29:18 -04:00
}
}
2016-11-21 11:21:24 +08:00
// EmptyNotices delete all the notices
2016-03-11 11:56:52 -05:00
func EmptyNotices(ctx *context.Context) {
if err := system_model.DeleteNotices(ctx, 0, 0); err != nil {
2018-01-10 22:34:17 +01:00
ctx.ServerError("DeleteNotices", err)
return
}
2022-03-22 08:03:22 +01:00
log.Trace("System notices deleted by admin (%s): [start: %d]", ctx.Doer.Name, 0)
2014-10-08 18:29:18 -04:00
ctx.Flash.Success(ctx.Tr("admin.notices.delete_success"))
ctx.Redirect(setting.AppSubURL + "/-/admin/notices")
2014-10-08 18:29:18 -04:00
}