2021-11-18 06:58:42 +01:00
|
|
|
// Copyright 2021 The Gitea Authors. All rights reserved.
|
2022-11-27 19:20:29 +01:00
|
|
|
// SPDX-License-Identifier: MIT
|
2014-10-09 00:29:18 +02:00
|
|
|
|
2022-10-17 01:29:26 +02:00
|
|
|
package system
|
2014-10-09 00:29:18 +02:00
|
|
|
|
|
|
|
import (
|
2021-11-18 06:58:42 +01:00
|
|
|
"context"
|
2016-02-05 20:11:53 +01:00
|
|
|
"fmt"
|
2022-03-28 14:54:59 +02:00
|
|
|
"time"
|
2014-10-09 00:29:18 +02:00
|
|
|
|
2021-09-19 13:49:59 +02:00
|
|
|
"code.gitea.io/gitea/models/db"
|
2017-03-29 04:05:23 +02:00
|
|
|
"code.gitea.io/gitea/modules/log"
|
2020-08-18 06:23:45 +02:00
|
|
|
"code.gitea.io/gitea/modules/storage"
|
2019-08-15 16:46:21 +02:00
|
|
|
"code.gitea.io/gitea/modules/timeutil"
|
2020-08-11 22:05:34 +02:00
|
|
|
"code.gitea.io/gitea/modules/util"
|
2014-10-09 00:29:18 +02:00
|
|
|
)
|
|
|
|
|
2021-03-14 19:52:12 +01:00
|
|
|
// NoticeType describes the notice type
|
2014-10-09 00:29:18 +02:00
|
|
|
type NoticeType int
|
|
|
|
|
|
|
|
const (
|
2021-03-14 19:52:12 +01:00
|
|
|
// NoticeRepository type
|
2016-11-07 17:24:59 +01:00
|
|
|
NoticeRepository NoticeType = iota + 1
|
2020-05-17 01:31:38 +02:00
|
|
|
// NoticeTask type
|
|
|
|
NoticeTask
|
2014-10-09 00:29:18 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
// Notice represents a system notice for admin.
|
|
|
|
type Notice struct {
|
2015-12-05 07:09:14 +01:00
|
|
|
ID int64 `xorm:"pk autoincr"`
|
2014-10-09 00:29:18 +02:00
|
|
|
Type NoticeType
|
2019-08-15 16:46:21 +02:00
|
|
|
Description string `xorm:"TEXT"`
|
|
|
|
CreatedUnix timeutil.TimeStamp `xorm:"INDEX created"`
|
2014-10-09 00:29:18 +02:00
|
|
|
}
|
|
|
|
|
2021-09-19 13:49:59 +02:00
|
|
|
func init() {
|
|
|
|
db.RegisterModel(new(Notice))
|
|
|
|
}
|
|
|
|
|
2014-10-09 00:29:18 +02:00
|
|
|
// TrStr returns a translation format string.
|
|
|
|
func (n *Notice) TrStr() string {
|
2020-12-25 10:59:32 +01:00
|
|
|
return fmt.Sprintf("admin.notices.type_%d", n.Type)
|
2014-10-09 00:29:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// CreateNotice creates new system notice.
|
2023-07-05 05:41:32 +02:00
|
|
|
func CreateNotice(ctx context.Context, tp NoticeType, desc string, args ...any) error {
|
2020-05-17 01:31:38 +02:00
|
|
|
if len(args) > 0 {
|
|
|
|
desc = fmt.Sprintf(desc, args...)
|
|
|
|
}
|
2014-10-09 00:29:18 +02:00
|
|
|
n := &Notice{
|
|
|
|
Type: tp,
|
|
|
|
Description: desc,
|
|
|
|
}
|
2021-11-18 06:58:42 +01:00
|
|
|
return db.Insert(ctx, n)
|
2014-10-09 00:29:18 +02:00
|
|
|
}
|
|
|
|
|
2016-11-07 17:24:59 +01:00
|
|
|
// CreateRepositoryNotice creates new system notice with type NoticeRepository.
|
2023-07-05 05:41:32 +02:00
|
|
|
func CreateRepositoryNotice(desc string, args ...any) error {
|
2022-01-20 00:26:57 +01:00
|
|
|
// Note we use the db.DefaultContext here rather than passing in a context as the context may be cancelled
|
2021-11-18 18:42:27 +01:00
|
|
|
return CreateNotice(db.DefaultContext, NoticeRepository, desc, args...)
|
2014-10-09 00:29:18 +02:00
|
|
|
}
|
|
|
|
|
2016-02-05 20:11:53 +01: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 {
|
2020-08-18 06:23:45 +02:00
|
|
|
desc := fmt.Sprintf("%s [%s]: %v", title, path, err)
|
|
|
|
log.Warn(title+" [%s]: %v", path, err)
|
2022-01-20 00:26:57 +01:00
|
|
|
// Note we use the db.DefaultContext here rather than passing in a context as the context may be cancelled
|
|
|
|
if err = CreateNotice(db.DefaultContext, NoticeRepository, desc); err != nil {
|
2020-08-18 06:23:45 +02:00
|
|
|
log.Error("CreateRepositoryNotice: %v", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-18 18:42:27 +01:00
|
|
|
// RemoveStorageWithNotice removes a file from the storage and
|
2021-11-18 06:58:42 +01: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 {
|
2016-02-05 20:11:53 +01:00
|
|
|
desc := fmt.Sprintf("%s [%s]: %v", title, path, err)
|
2019-06-16 00:20:29 +02:00
|
|
|
log.Warn(title+" [%s]: %v", path, err)
|
2022-01-20 00:26:57 +01:00
|
|
|
|
|
|
|
// Note we use the db.DefaultContext here rather than passing in a context as the context may be cancelled
|
|
|
|
if err = CreateNotice(db.DefaultContext, NoticeRepository, desc); err != nil {
|
2019-04-02 09:48:31 +02:00
|
|
|
log.Error("CreateRepositoryNotice: %v", err)
|
2016-02-05 20:11:53 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-09 00:29:18 +02:00
|
|
|
// CountNotices returns number of notices.
|
|
|
|
func CountNotices() int64 {
|
2021-09-23 17:45:36 +02:00
|
|
|
count, _ := db.GetEngine(db.DefaultContext).Count(new(Notice))
|
2014-10-09 00:29:18 +02:00
|
|
|
return count
|
|
|
|
}
|
|
|
|
|
2017-01-09 19:26:05 +01:00
|
|
|
// Notices returns notices in given page.
|
2015-09-25 18:13:38 +02:00
|
|
|
func Notices(page, pageSize int) ([]*Notice, error) {
|
|
|
|
notices := make([]*Notice, 0, pageSize)
|
2021-09-23 17:45:36 +02:00
|
|
|
return notices, db.GetEngine(db.DefaultContext).
|
2016-11-10 16:16:32 +01:00
|
|
|
Limit(pageSize, (page-1)*pageSize).
|
2021-10-06 22:36:24 +02:00
|
|
|
Desc("created_unix").
|
2016-11-10 16:16:32 +01:00
|
|
|
Find(¬ices)
|
2014-10-09 00:29:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// DeleteNotice deletes a system notice by given ID.
|
|
|
|
func DeleteNotice(id int64) error {
|
2021-09-23 17:45:36 +02:00
|
|
|
_, err := db.GetEngine(db.DefaultContext).ID(id).Delete(new(Notice))
|
2014-10-09 00:29:18 +02:00
|
|
|
return err
|
|
|
|
}
|
2015-12-02 05:33:08 +01:00
|
|
|
|
|
|
|
// DeleteNotices deletes all notices with ID from start to end (inclusive).
|
|
|
|
func DeleteNotices(start, end int64) error {
|
2021-05-16 13:58:26 +02:00
|
|
|
if start == 0 && end == 0 {
|
2021-09-23 17:45:36 +02:00
|
|
|
_, err := db.GetEngine(db.DefaultContext).Exec("DELETE FROM notice")
|
2021-05-16 13:58:26 +02:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2021-09-23 17:45:36 +02:00
|
|
|
sess := db.GetEngine(db.DefaultContext).Where("id >= ?", start)
|
2015-12-02 05:33:08 +01:00
|
|
|
if end > 0 {
|
|
|
|
sess.And("id <= ?", end)
|
|
|
|
}
|
|
|
|
_, err := sess.Delete(new(Notice))
|
|
|
|
return err
|
|
|
|
}
|
2015-12-05 07:09:14 +01:00
|
|
|
|
|
|
|
// DeleteNoticesByIDs deletes notices by given IDs.
|
|
|
|
func DeleteNoticesByIDs(ids []int64) error {
|
|
|
|
if len(ids) == 0 {
|
|
|
|
return nil
|
|
|
|
}
|
2021-09-23 17:45:36 +02:00
|
|
|
_, err := db.GetEngine(db.DefaultContext).
|
2016-11-12 09:29:18 +01:00
|
|
|
In("id", ids).
|
2016-11-10 16:16:32 +01:00
|
|
|
Delete(new(Notice))
|
2015-12-05 07:09:14 +01:00
|
|
|
return err
|
|
|
|
}
|
2022-03-28 14:54:59 +02:00
|
|
|
|
|
|
|
// DeleteOldSystemNotices deletes all old system notices from database.
|
|
|
|
func DeleteOldSystemNotices(olderThan time.Duration) (err error) {
|
|
|
|
if olderThan <= 0 {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
_, err = db.GetEngine(db.DefaultContext).Where("created_unix < ?", time.Now().Add(-olderThan).Unix()).Delete(&Notice{})
|
2022-06-20 12:02:49 +02:00
|
|
|
return err
|
2022-03-28 14:54:59 +02:00
|
|
|
}
|