Files

127 lines
3.5 KiB
Go
Raw Permalink Normal View History

2021-11-18 13:58:42 +08:00
// Copyright 2021 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT
2014-10-08 18:29:18 -04:00
package system
2014-10-08 18:29:18 -04:00
import (
2021-11-18 13:58:42 +08:00
"context"
"fmt"
"time"
2014-10-08 18:29:18 -04:00
"code.gitea.io/gitea/models/db"
"code.gitea.io/gitea/modules/graceful"
"code.gitea.io/gitea/modules/log"
"code.gitea.io/gitea/modules/storage"
"code.gitea.io/gitea/modules/timeutil"
"code.gitea.io/gitea/modules/util"
2014-10-08 18:29:18 -04:00
)
// NoticeType describes the notice type
2014-10-08 18:29:18 -04:00
type NoticeType int
const (
// NoticeRepository type
2016-11-07 17:24:59 +01:00
NoticeRepository NoticeType = iota + 1
// NoticeTask type
NoticeTask
2014-10-08 18:29:18 -04:00
)
// Notice represents a system notice for admin.
type Notice struct {
ID int64 `xorm:"pk autoincr"`
2014-10-08 18:29:18 -04:00
Type NoticeType
Description string `xorm:"LONGTEXT"`
CreatedUnix timeutil.TimeStamp `xorm:"INDEX created"`
2014-10-08 18:29:18 -04:00
}
func init() {
db.RegisterModel(new(Notice))
}
2014-10-08 18:29:18 -04:00
// TrStr returns a translation format string.
func (n *Notice) TrStr() string {
2020-12-25 09:59:32 +00:00
return fmt.Sprintf("admin.notices.type_%d", n.Type)
2014-10-08 18:29:18 -04:00
}
// CreateNotice creates new system notice.
2023-07-04 20:36:08 +02:00
func CreateNotice(ctx context.Context, tp NoticeType, desc string, args ...any) error {
if len(args) > 0 {
desc = fmt.Sprintf(desc, args...)
}
2014-10-08 18:29:18 -04:00
n := &Notice{
Type: tp,
Description: desc,
}
2021-11-18 13:58:42 +08:00
return db.Insert(ctx, n)
2014-10-08 18:29:18 -04:00
}
2016-11-07 17:24:59 +01:00
// CreateRepositoryNotice creates new system notice with type NoticeRepository.
2023-07-04 20:36:08 +02:00
func CreateRepositoryNotice(desc string, args ...any) error {
return CreateNotice(graceful.GetManager().ShutdownContext(), NoticeRepository, desc, args...)
2014-10-08 18:29:18 -04:00
}
// RemoveAllWithNotice removes all directories in given path and
// creates a system notice when error occurs.
2021-11-18 18:42:27 +01:00
func RemoveAllWithNotice(ctx context.Context, title, path string) {
if err := util.RemoveAll(path); err != nil {
desc := fmt.Sprintf("%s [%s]: %v", title, path, err)
log.Warn(title+" [%s]: %v", path, err)
if err = CreateNotice(graceful.GetManager().ShutdownContext(), NoticeRepository, desc); err != nil {
log.Error("CreateRepositoryNotice: %v", err)
}
}
}
2021-11-18 18:42:27 +01:00
// RemoveStorageWithNotice removes a file from the storage and
2021-11-18 13:58:42 +08:00
// creates a system notice when error occurs.
2021-11-18 18:42:27 +01:00
func RemoveStorageWithNotice(ctx context.Context, bucket storage.ObjectStorage, title, path string) {
if err := bucket.Delete(path); err != nil {
desc := fmt.Sprintf("%s [%s]: %v", title, path, err)
log.Warn(title+" [%s]: %v", path, err)
if err = CreateNotice(graceful.GetManager().ShutdownContext(), NoticeRepository, desc); err != nil {
2019-04-02 08:48:31 +01:00
log.Error("CreateRepositoryNotice: %v", err)
}
}
}
2014-10-08 18:29:18 -04:00
// CountNotices returns number of notices.
func CountNotices(ctx context.Context) int64 {
count, _ := db.GetEngine(ctx).Count(new(Notice))
2014-10-08 18:29:18 -04:00
return count
}
2017-01-09 13:26:05 -05:00
// Notices returns notices in given page.
func Notices(ctx context.Context, page, pageSize int) ([]*Notice, error) {
notices := make([]*Notice, 0, pageSize)
return notices, db.GetEngine(ctx).
2016-11-10 16:16:32 +01:00
Limit(pageSize, (page-1)*pageSize).
Desc("created_unix").
2016-11-10 16:16:32 +01:00
Find(&notices)
2014-10-08 18:29:18 -04:00
}
// DeleteNotices deletes all notices with ID from start to end (inclusive).
func DeleteNotices(ctx context.Context, start, end int64) error {
2021-05-16 19:58:26 +08:00
if start == 0 && end == 0 {
_, err := db.GetEngine(ctx).Exec("DELETE FROM notice")
2021-05-16 19:58:26 +08:00
return err
}
sess := db.GetEngine(ctx).Where("id >= ?", start)
if end > 0 {
sess.And("id <= ?", end)
}
_, err := sess.Delete(new(Notice))
return err
}
// DeleteOldSystemNotices deletes all old system notices from database.
func DeleteOldSystemNotices(ctx context.Context, olderThan time.Duration) (err error) {
if olderThan <= 0 {
return nil
}
_, err = db.GetEngine(ctx).Where("created_unix < ?", time.Now().Add(-olderThan).Unix()).Delete(&Notice{})
return err
}