You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

admin.go 2.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. // Copyright 2014 The Gogs Authors. All rights reserved.
  2. // Use of this source code is governed by a MIT-style
  3. // license that can be found in the LICENSE file.
  4. package models
  5. import (
  6. "fmt"
  7. "os"
  8. "code.gitea.io/gitea/modules/log"
  9. "code.gitea.io/gitea/modules/timeutil"
  10. "github.com/unknwon/com"
  11. )
  12. //NoticeType describes the notice type
  13. type NoticeType int
  14. const (
  15. //NoticeRepository type
  16. NoticeRepository NoticeType = iota + 1
  17. // NoticeTask type
  18. NoticeTask
  19. )
  20. // Notice represents a system notice for admin.
  21. type Notice struct {
  22. ID int64 `xorm:"pk autoincr"`
  23. Type NoticeType
  24. Description string `xorm:"TEXT"`
  25. CreatedUnix timeutil.TimeStamp `xorm:"INDEX created"`
  26. }
  27. // TrStr returns a translation format string.
  28. func (n *Notice) TrStr() string {
  29. return "admin.notices.type_" + com.ToStr(n.Type)
  30. }
  31. // CreateNotice creates new system notice.
  32. func CreateNotice(tp NoticeType, desc string, args ...interface{}) error {
  33. return createNotice(x, tp, desc, args...)
  34. }
  35. func createNotice(e Engine, tp NoticeType, desc string, args ...interface{}) error {
  36. if len(args) > 0 {
  37. desc = fmt.Sprintf(desc, args...)
  38. }
  39. n := &Notice{
  40. Type: tp,
  41. Description: desc,
  42. }
  43. _, err := e.Insert(n)
  44. return err
  45. }
  46. // CreateRepositoryNotice creates new system notice with type NoticeRepository.
  47. func CreateRepositoryNotice(desc string, args ...interface{}) error {
  48. return createNotice(x, NoticeRepository, desc, args...)
  49. }
  50. // RemoveAllWithNotice removes all directories in given path and
  51. // creates a system notice when error occurs.
  52. func RemoveAllWithNotice(title, path string) {
  53. removeAllWithNotice(x, title, path)
  54. }
  55. func removeAllWithNotice(e Engine, title, path string) {
  56. if err := os.RemoveAll(path); err != nil {
  57. desc := fmt.Sprintf("%s [%s]: %v", title, path, err)
  58. log.Warn(title+" [%s]: %v", path, err)
  59. if err = createNotice(e, NoticeRepository, desc); err != nil {
  60. log.Error("CreateRepositoryNotice: %v", err)
  61. }
  62. }
  63. }
  64. // CountNotices returns number of notices.
  65. func CountNotices() int64 {
  66. count, _ := x.Count(new(Notice))
  67. return count
  68. }
  69. // Notices returns notices in given page.
  70. func Notices(page, pageSize int) ([]*Notice, error) {
  71. notices := make([]*Notice, 0, pageSize)
  72. return notices, x.
  73. Limit(pageSize, (page-1)*pageSize).
  74. Desc("id").
  75. Find(&notices)
  76. }
  77. // DeleteNotice deletes a system notice by given ID.
  78. func DeleteNotice(id int64) error {
  79. _, err := x.ID(id).Delete(new(Notice))
  80. return err
  81. }
  82. // DeleteNotices deletes all notices with ID from start to end (inclusive).
  83. func DeleteNotices(start, end int64) error {
  84. sess := x.Where("id >= ?", start)
  85. if end > 0 {
  86. sess.And("id <= ?", end)
  87. }
  88. _, err := sess.Delete(new(Notice))
  89. return err
  90. }
  91. // DeleteNoticesByIDs deletes notices by given IDs.
  92. func DeleteNoticesByIDs(ids []int64) error {
  93. if len(ids) == 0 {
  94. return nil
  95. }
  96. _, err := x.
  97. In("id", ids).
  98. Delete(new(Notice))
  99. return err
  100. }