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.

221 lines
6.7 KiB

10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
  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 admin
  5. import (
  6. "fmt"
  7. "runtime"
  8. "strings"
  9. "time"
  10. "github.com/Unknwon/com"
  11. "github.com/Unknwon/macaron"
  12. "github.com/gogits/gogs/models"
  13. "github.com/gogits/gogs/modules/base"
  14. "github.com/gogits/gogs/modules/cron"
  15. "github.com/gogits/gogs/modules/middleware"
  16. "github.com/gogits/gogs/modules/process"
  17. "github.com/gogits/gogs/modules/setting"
  18. )
  19. const (
  20. DASHBOARD base.TplName = "admin/dashboard"
  21. CONFIG base.TplName = "admin/config"
  22. MONITOR base.TplName = "admin/monitor"
  23. )
  24. var (
  25. startTime = time.Now()
  26. )
  27. var sysStatus struct {
  28. Uptime string
  29. NumGoroutine int
  30. // General statistics.
  31. MemAllocated string // bytes allocated and still in use
  32. MemTotal string // bytes allocated (even if freed)
  33. MemSys string // bytes obtained from system (sum of XxxSys below)
  34. Lookups uint64 // number of pointer lookups
  35. MemMallocs uint64 // number of mallocs
  36. MemFrees uint64 // number of frees
  37. // Main allocation heap statistics.
  38. HeapAlloc string // bytes allocated and still in use
  39. HeapSys string // bytes obtained from system
  40. HeapIdle string // bytes in idle spans
  41. HeapInuse string // bytes in non-idle span
  42. HeapReleased string // bytes released to the OS
  43. HeapObjects uint64 // total number of allocated objects
  44. // Low-level fixed-size structure allocator statistics.
  45. // Inuse is bytes used now.
  46. // Sys is bytes obtained from system.
  47. StackInuse string // bootstrap stacks
  48. StackSys string
  49. MSpanInuse string // mspan structures
  50. MSpanSys string
  51. MCacheInuse string // mcache structures
  52. MCacheSys string
  53. BuckHashSys string // profiling bucket hash table
  54. GCSys string // GC metadata
  55. OtherSys string // other system allocations
  56. // Garbage collector statistics.
  57. NextGC string // next run in HeapAlloc time (bytes)
  58. LastGC string // last run in absolute time (ns)
  59. PauseTotalNs string
  60. PauseNs string // circular buffer of recent GC pause times, most recent at [(NumGC+255)%256]
  61. NumGC uint32
  62. }
  63. func updateSystemStatus() {
  64. sysStatus.Uptime = base.TimeSincePro(startTime)
  65. m := new(runtime.MemStats)
  66. runtime.ReadMemStats(m)
  67. sysStatus.NumGoroutine = runtime.NumGoroutine()
  68. sysStatus.MemAllocated = base.FileSize(int64(m.Alloc))
  69. sysStatus.MemTotal = base.FileSize(int64(m.TotalAlloc))
  70. sysStatus.MemSys = base.FileSize(int64(m.Sys))
  71. sysStatus.Lookups = m.Lookups
  72. sysStatus.MemMallocs = m.Mallocs
  73. sysStatus.MemFrees = m.Frees
  74. sysStatus.HeapAlloc = base.FileSize(int64(m.HeapAlloc))
  75. sysStatus.HeapSys = base.FileSize(int64(m.HeapSys))
  76. sysStatus.HeapIdle = base.FileSize(int64(m.HeapIdle))
  77. sysStatus.HeapInuse = base.FileSize(int64(m.HeapInuse))
  78. sysStatus.HeapReleased = base.FileSize(int64(m.HeapReleased))
  79. sysStatus.HeapObjects = m.HeapObjects
  80. sysStatus.StackInuse = base.FileSize(int64(m.StackInuse))
  81. sysStatus.StackSys = base.FileSize(int64(m.StackSys))
  82. sysStatus.MSpanInuse = base.FileSize(int64(m.MSpanInuse))
  83. sysStatus.MSpanSys = base.FileSize(int64(m.MSpanSys))
  84. sysStatus.MCacheInuse = base.FileSize(int64(m.MCacheInuse))
  85. sysStatus.MCacheSys = base.FileSize(int64(m.MCacheSys))
  86. sysStatus.BuckHashSys = base.FileSize(int64(m.BuckHashSys))
  87. sysStatus.GCSys = base.FileSize(int64(m.GCSys))
  88. sysStatus.OtherSys = base.FileSize(int64(m.OtherSys))
  89. sysStatus.NextGC = base.FileSize(int64(m.NextGC))
  90. sysStatus.LastGC = fmt.Sprintf("%.1fs", float64(time.Now().UnixNano()-int64(m.LastGC))/1000/1000/1000)
  91. sysStatus.PauseTotalNs = fmt.Sprintf("%.1fs", float64(m.PauseTotalNs)/1000/1000/1000)
  92. sysStatus.PauseNs = fmt.Sprintf("%.3fs", float64(m.PauseNs[(m.NumGC+255)%256])/1000/1000/1000)
  93. sysStatus.NumGC = m.NumGC
  94. }
  95. // Operation types.
  96. type AdminOperation int
  97. const (
  98. CLEAN_UNBIND_OAUTH AdminOperation = iota + 1
  99. CLEAN_INACTIVATE_USER
  100. )
  101. func Dashboard(ctx *middleware.Context) {
  102. ctx.Data["Title"] = ctx.Tr("admin.dashboard")
  103. ctx.Data["PageIsAdmin"] = true
  104. ctx.Data["PageIsAdminDashboard"] = true
  105. // Run operation.
  106. op, _ := com.StrTo(ctx.Query("op")).Int()
  107. if op > 0 {
  108. var err error
  109. var success string
  110. switch AdminOperation(op) {
  111. case CLEAN_UNBIND_OAUTH:
  112. success = "All unbind OAuthes have been deleted."
  113. err = models.CleanUnbindOauth()
  114. case CLEAN_INACTIVATE_USER:
  115. success = "All inactivate accounts have been deleted."
  116. err = models.DeleteInactivateUsers()
  117. }
  118. if err != nil {
  119. ctx.Flash.Error(err.Error())
  120. } else {
  121. ctx.Flash.Success(success)
  122. }
  123. ctx.Redirect("/admin")
  124. return
  125. }
  126. ctx.Data["Stats"] = models.GetStatistic()
  127. updateSystemStatus()
  128. ctx.Data["SysStatus"] = sysStatus
  129. ctx.HTML(200, DASHBOARD)
  130. }
  131. func Config(ctx *middleware.Context) {
  132. ctx.Data["Title"] = ctx.Tr("admin.users")
  133. ctx.Data["PageIsAdmin"] = true
  134. ctx.Data["PageIsAdminConfig"] = true
  135. ctx.Data["AppUrl"] = setting.AppUrl
  136. ctx.Data["Domain"] = setting.Domain
  137. ctx.Data["OfflineMode"] = setting.OfflineMode
  138. ctx.Data["DisableRouterLog"] = setting.DisableRouterLog
  139. ctx.Data["RunUser"] = setting.RunUser
  140. ctx.Data["RunMode"] = strings.Title(macaron.Env)
  141. ctx.Data["RepoRootPath"] = setting.RepoRootPath
  142. ctx.Data["StaticRootPath"] = setting.StaticRootPath
  143. ctx.Data["LogRootPath"] = setting.LogRootPath
  144. ctx.Data["ScriptType"] = setting.ScriptType
  145. ctx.Data["ReverseProxyAuthUser"] = setting.ReverseProxyAuthUser
  146. ctx.Data["Service"] = setting.Service
  147. ctx.Data["DbCfg"] = models.DbCfg
  148. ctx.Data["WebhookTaskInterval"] = setting.WebhookTaskInterval
  149. ctx.Data["WebhookDeliverTimeout"] = setting.WebhookDeliverTimeout
  150. ctx.Data["MailerEnabled"] = false
  151. if setting.MailService != nil {
  152. ctx.Data["MailerEnabled"] = true
  153. ctx.Data["Mailer"] = setting.MailService
  154. }
  155. ctx.Data["OauthEnabled"] = false
  156. if setting.OauthService != nil {
  157. ctx.Data["OauthEnabled"] = true
  158. ctx.Data["Oauther"] = setting.OauthService
  159. }
  160. ctx.Data["CacheAdapter"] = setting.CacheAdapter
  161. ctx.Data["CacheInternal"] = setting.CacheInternal
  162. ctx.Data["CacheConn"] = setting.CacheConn
  163. ctx.Data["SessionProvider"] = setting.SessionProvider
  164. ctx.Data["SessionConfig"] = setting.SessionConfig
  165. ctx.Data["PictureService"] = setting.PictureService
  166. ctx.Data["DisableGravatar"] = setting.DisableGravatar
  167. type logger struct {
  168. Mode, Config string
  169. }
  170. loggers := make([]*logger, len(setting.LogModes))
  171. for i := range setting.LogModes {
  172. loggers[i] = &logger{setting.LogModes[i], setting.LogConfigs[i]}
  173. }
  174. ctx.Data["Loggers"] = loggers
  175. ctx.HTML(200, CONFIG)
  176. }
  177. func Monitor(ctx *middleware.Context) {
  178. ctx.Data["Title"] = ctx.Tr("admin.monitor")
  179. ctx.Data["PageIsAdmin"] = true
  180. ctx.Data["PageIsAdminMonitor"] = true
  181. ctx.Data["Processes"] = process.Processes
  182. ctx.Data["Entries"] = cron.ListEntries()
  183. ctx.HTML(200, MONITOR)
  184. }