2014-10-08 22:29:18 +00:00
|
|
|
// Copyright 2014 The Gogs Authors. All rights reserved.
|
2020-08-18 04:23:45 +00:00
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
2014-10-08 22:29:18 +00:00
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package models
|
|
|
|
|
|
|
|
import (
|
2016-02-05 19:11:53 +00:00
|
|
|
"fmt"
|
2014-10-08 22:29:18 +00:00
|
|
|
|
2017-03-29 02:05:23 +00:00
|
|
|
"code.gitea.io/gitea/modules/log"
|
2020-08-18 04:23:45 +00:00
|
|
|
"code.gitea.io/gitea/modules/storage"
|
2019-08-15 14:46:21 +00:00
|
|
|
"code.gitea.io/gitea/modules/timeutil"
|
2020-08-11 20:05:34 +00:00
|
|
|
"code.gitea.io/gitea/modules/util"
|
2014-10-08 22:29:18 +00:00
|
|
|
)
|
|
|
|
|
2016-11-24 20:54:00 +00:00
|
|
|
//NoticeType describes the notice type
|
2014-10-08 22:29:18 +00:00
|
|
|
type NoticeType int
|
|
|
|
|
|
|
|
const (
|
2016-11-24 20:54:00 +00:00
|
|
|
//NoticeRepository type
|
2016-11-07 16:24:59 +00:00
|
|
|
NoticeRepository NoticeType = iota + 1
|
2020-05-16 23:31:38 +00:00
|
|
|
// NoticeTask type
|
|
|
|
NoticeTask
|
2014-10-08 22:29:18 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// Notice represents a system notice for admin.
|
|
|
|
type Notice struct {
|
2015-12-05 06:09:14 +00:00
|
|
|
ID int64 `xorm:"pk autoincr"`
|
2014-10-08 22:29:18 +00:00
|
|
|
Type NoticeType
|
2019-08-15 14:46:21 +00:00
|
|
|
Description string `xorm:"TEXT"`
|
|
|
|
CreatedUnix timeutil.TimeStamp `xorm:"INDEX created"`
|
2014-10-08 22:29:18 +00: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 22:29:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// CreateNotice creates new system notice.
|
2020-05-16 23:31:38 +00:00
|
|
|
func CreateNotice(tp NoticeType, desc string, args ...interface{}) error {
|
|
|
|
return createNotice(x, tp, desc, args...)
|
2017-02-24 15:19:13 +00:00
|
|
|
}
|
2016-05-06 19:48:18 +00:00
|
|
|
|
2020-05-16 23:31:38 +00:00
|
|
|
func createNotice(e Engine, tp NoticeType, desc string, args ...interface{}) error {
|
|
|
|
if len(args) > 0 {
|
|
|
|
desc = fmt.Sprintf(desc, args...)
|
|
|
|
}
|
2014-10-08 22:29:18 +00:00
|
|
|
n := &Notice{
|
|
|
|
Type: tp,
|
|
|
|
Description: desc,
|
|
|
|
}
|
2017-02-24 15:19:13 +00:00
|
|
|
_, err := e.Insert(n)
|
2014-10-08 22:29:18 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2016-11-07 16:24:59 +00:00
|
|
|
// CreateRepositoryNotice creates new system notice with type NoticeRepository.
|
2020-05-16 23:31:38 +00:00
|
|
|
func CreateRepositoryNotice(desc string, args ...interface{}) error {
|
|
|
|
return createNotice(x, NoticeRepository, desc, args...)
|
2014-10-08 22:29:18 +00:00
|
|
|
}
|
|
|
|
|
2016-02-05 19:11:53 +00:00
|
|
|
// RemoveAllWithNotice removes all directories in given path and
|
|
|
|
// creates a system notice when error occurs.
|
|
|
|
func RemoveAllWithNotice(title, path string) {
|
2017-02-24 15:19:13 +00:00
|
|
|
removeAllWithNotice(x, title, path)
|
|
|
|
}
|
|
|
|
|
2020-08-18 04:23:45 +00:00
|
|
|
// RemoveStorageWithNotice removes a file from the storage and
|
|
|
|
// creates a system notice when error occurs.
|
|
|
|
func RemoveStorageWithNotice(bucket storage.ObjectStorage, title, path string) {
|
2020-09-29 09:05:13 +00:00
|
|
|
removeStorageWithNotice(x, bucket, title, path)
|
|
|
|
}
|
|
|
|
|
|
|
|
func removeStorageWithNotice(e Engine, bucket storage.ObjectStorage, title, path string) {
|
2020-08-18 04:23:45 +00:00
|
|
|
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(x, NoticeRepository, desc); err != nil {
|
|
|
|
log.Error("CreateRepositoryNotice: %v", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-24 15:19:13 +00:00
|
|
|
func removeAllWithNotice(e Engine, title, path string) {
|
2020-08-11 20:05:34 +00:00
|
|
|
if err := util.RemoveAll(path); err != nil {
|
2016-02-05 19:11:53 +00:00
|
|
|
desc := fmt.Sprintf("%s [%s]: %v", title, path, err)
|
2019-06-15 22:20:29 +00:00
|
|
|
log.Warn(title+" [%s]: %v", path, err)
|
2017-02-24 15:19:13 +00:00
|
|
|
if err = createNotice(e, NoticeRepository, desc); err != nil {
|
2019-04-02 07:48:31 +00:00
|
|
|
log.Error("CreateRepositoryNotice: %v", err)
|
2016-02-05 19:11:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-08 22:29:18 +00:00
|
|
|
// CountNotices returns number of notices.
|
|
|
|
func CountNotices() int64 {
|
|
|
|
count, _ := x.Count(new(Notice))
|
|
|
|
return count
|
|
|
|
}
|
|
|
|
|
2017-01-09 18:26:05 +00:00
|
|
|
// Notices returns notices in given page.
|
2015-09-25 16:13:38 +00:00
|
|
|
func Notices(page, pageSize int) ([]*Notice, error) {
|
|
|
|
notices := make([]*Notice, 0, pageSize)
|
2016-11-10 15:16:32 +00:00
|
|
|
return notices, x.
|
|
|
|
Limit(pageSize, (page-1)*pageSize).
|
|
|
|
Desc("id").
|
|
|
|
Find(¬ices)
|
2014-10-08 22:29:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// DeleteNotice deletes a system notice by given ID.
|
|
|
|
func DeleteNotice(id int64) error {
|
2017-10-05 04:43:04 +00:00
|
|
|
_, err := x.ID(id).Delete(new(Notice))
|
2014-10-08 22:29:18 +00:00
|
|
|
return err
|
|
|
|
}
|
2015-12-02 04:33:08 +00:00
|
|
|
|
|
|
|
// DeleteNotices deletes all notices with ID from start to end (inclusive).
|
|
|
|
func DeleteNotices(start, end int64) error {
|
|
|
|
sess := x.Where("id >= ?", start)
|
|
|
|
if end > 0 {
|
|
|
|
sess.And("id <= ?", end)
|
|
|
|
}
|
|
|
|
_, err := sess.Delete(new(Notice))
|
|
|
|
return err
|
|
|
|
}
|
2015-12-05 06:09:14 +00:00
|
|
|
|
|
|
|
// DeleteNoticesByIDs deletes notices by given IDs.
|
|
|
|
func DeleteNoticesByIDs(ids []int64) error {
|
|
|
|
if len(ids) == 0 {
|
|
|
|
return nil
|
|
|
|
}
|
2016-11-10 15:16:32 +00:00
|
|
|
_, err := x.
|
2016-11-12 08:29:18 +00:00
|
|
|
In("id", ids).
|
2016-11-10 15:16:32 +00:00
|
|
|
Delete(new(Notice))
|
2015-12-05 06:09:14 +00:00
|
|
|
return err
|
|
|
|
}
|
2020-12-27 03:34:19 +00:00
|
|
|
|
|
|
|
// GetAdminUser returns the first administrator
|
|
|
|
func GetAdminUser() (*User, error) {
|
|
|
|
var admin User
|
|
|
|
has, err := x.Where("is_admin=?", true).Get(&admin)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
} else if !has {
|
|
|
|
return nil, ErrUserNotExist{}
|
|
|
|
}
|
|
|
|
|
|
|
|
return &admin, nil
|
|
|
|
}
|