2014-10-09 03:59:18 +05:30
|
|
|
// 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 models
|
|
|
|
|
|
|
|
import (
|
2016-02-06 00:41:53 +05:30
|
|
|
"fmt"
|
2014-10-09 03:59:18 +05:30
|
|
|
"time"
|
|
|
|
|
2017-03-29 07:35:23 +05:30
|
|
|
"code.gitea.io/gitea/modules/log"
|
|
|
|
"code.gitea.io/gitea/modules/util"
|
|
|
|
|
2014-10-09 03:59:18 +05:30
|
|
|
"github.com/Unknwon/com"
|
2016-03-10 06:23:30 +05:30
|
|
|
"github.com/go-xorm/xorm"
|
2014-10-09 03:59:18 +05:30
|
|
|
)
|
|
|
|
|
2016-11-25 02:24:00 +05:30
|
|
|
//NoticeType describes the notice type
|
2014-10-09 03:59:18 +05:30
|
|
|
type NoticeType int
|
|
|
|
|
|
|
|
const (
|
2016-11-25 02:24:00 +05:30
|
|
|
//NoticeRepository type
|
2016-11-07 21:54:59 +05:30
|
|
|
NoticeRepository NoticeType = iota + 1
|
2014-10-09 03:59:18 +05:30
|
|
|
)
|
|
|
|
|
|
|
|
// Notice represents a system notice for admin.
|
|
|
|
type Notice struct {
|
2015-12-05 11:39:14 +05:30
|
|
|
ID int64 `xorm:"pk autoincr"`
|
2014-10-09 03:59:18 +05:30
|
|
|
Type NoticeType
|
|
|
|
Description string `xorm:"TEXT"`
|
2016-03-10 06:23:30 +05:30
|
|
|
Created time.Time `xorm:"-"`
|
2017-01-06 20:44:33 +05:30
|
|
|
CreatedUnix int64 `xorm:"INDEX"`
|
2016-03-10 06:23:30 +05:30
|
|
|
}
|
|
|
|
|
2016-11-25 02:24:00 +05:30
|
|
|
// BeforeInsert is invoked from XORM before inserting an object of this type.
|
2016-03-10 06:23:30 +05:30
|
|
|
func (n *Notice) BeforeInsert() {
|
2016-07-23 17:54:44 +05:30
|
|
|
n.CreatedUnix = time.Now().Unix()
|
2016-03-10 06:23:30 +05:30
|
|
|
}
|
|
|
|
|
2016-11-25 02:24:00 +05:30
|
|
|
// AfterSet is invoked from XORM after setting the value of a field of this object.
|
2016-03-10 06:23:30 +05:30
|
|
|
func (n *Notice) AfterSet(colName string, _ xorm.Cell) {
|
|
|
|
switch colName {
|
|
|
|
case "created_unix":
|
|
|
|
n.Created = time.Unix(n.CreatedUnix, 0).Local()
|
|
|
|
}
|
2014-10-09 03:59:18 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
// TrStr returns a translation format string.
|
|
|
|
func (n *Notice) TrStr() string {
|
|
|
|
return "admin.notices.type_" + com.ToStr(n.Type)
|
|
|
|
}
|
|
|
|
|
|
|
|
// CreateNotice creates new system notice.
|
|
|
|
func CreateNotice(tp NoticeType, desc string) error {
|
2017-02-24 20:49:13 +05:30
|
|
|
return createNotice(x, tp, desc)
|
|
|
|
}
|
2016-05-07 01:18:18 +05:30
|
|
|
|
2017-02-24 20:49:13 +05:30
|
|
|
func createNotice(e Engine, tp NoticeType, desc string) error {
|
2014-10-09 03:59:18 +05:30
|
|
|
n := &Notice{
|
|
|
|
Type: tp,
|
|
|
|
Description: desc,
|
|
|
|
}
|
2017-02-24 20:49:13 +05:30
|
|
|
_, err := e.Insert(n)
|
2014-10-09 03:59:18 +05:30
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2016-11-07 21:54:59 +05:30
|
|
|
// CreateRepositoryNotice creates new system notice with type NoticeRepository.
|
2014-10-09 03:59:18 +05:30
|
|
|
func CreateRepositoryNotice(desc string) error {
|
2017-02-24 20:49:13 +05:30
|
|
|
return createNotice(x, NoticeRepository, desc)
|
2014-10-09 03:59:18 +05:30
|
|
|
}
|
|
|
|
|
2016-02-06 00:41:53 +05:30
|
|
|
// RemoveAllWithNotice removes all directories in given path and
|
|
|
|
// creates a system notice when error occurs.
|
|
|
|
func RemoveAllWithNotice(title, path string) {
|
2017-02-24 20:49:13 +05:30
|
|
|
removeAllWithNotice(x, title, path)
|
|
|
|
}
|
|
|
|
|
|
|
|
func removeAllWithNotice(e Engine, title, path string) {
|
2017-03-29 07:35:23 +05:30
|
|
|
if err := util.RemoveAll(path); err != nil {
|
2016-02-06 00:41:53 +05:30
|
|
|
desc := fmt.Sprintf("%s [%s]: %v", title, path, err)
|
|
|
|
log.Warn(desc)
|
2017-02-24 20:49:13 +05:30
|
|
|
if err = createNotice(e, NoticeRepository, desc); err != nil {
|
2016-02-06 00:41:53 +05:30
|
|
|
log.Error(4, "CreateRepositoryNotice: %v", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-09 03:59:18 +05:30
|
|
|
// CountNotices returns number of notices.
|
|
|
|
func CountNotices() int64 {
|
|
|
|
count, _ := x.Count(new(Notice))
|
|
|
|
return count
|
|
|
|
}
|
|
|
|
|
2017-01-09 23:56:05 +05:30
|
|
|
// Notices returns notices in given page.
|
2015-09-25 21:43:38 +05:30
|
|
|
func Notices(page, pageSize int) ([]*Notice, error) {
|
|
|
|
notices := make([]*Notice, 0, pageSize)
|
2016-11-10 20:46:32 +05:30
|
|
|
return notices, x.
|
|
|
|
Limit(pageSize, (page-1)*pageSize).
|
|
|
|
Desc("id").
|
|
|
|
Find(¬ices)
|
2014-10-09 03:59:18 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
// DeleteNotice deletes a system notice by given ID.
|
|
|
|
func DeleteNotice(id int64) error {
|
|
|
|
_, err := x.Id(id).Delete(new(Notice))
|
|
|
|
return err
|
|
|
|
}
|
2015-12-02 10:03:08 +05:30
|
|
|
|
|
|
|
// 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 11:39:14 +05:30
|
|
|
|
|
|
|
// DeleteNoticesByIDs deletes notices by given IDs.
|
|
|
|
func DeleteNoticesByIDs(ids []int64) error {
|
|
|
|
if len(ids) == 0 {
|
|
|
|
return nil
|
|
|
|
}
|
2016-11-10 20:46:32 +05:30
|
|
|
_, err := x.
|
2016-11-12 13:59:18 +05:30
|
|
|
In("id", ids).
|
2016-11-10 20:46:32 +05:30
|
|
|
Delete(new(Notice))
|
2015-12-05 11:39:14 +05:30
|
|
|
return err
|
|
|
|
}
|