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.

234 lines
7.2 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
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/models/cron"
  14. "github.com/gogits/gogs/modules/base"
  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. CLEAN_REPO_ARCHIVES
  101. GIT_GC_REPOS
  102. SYNC_SSH_AUTHORIZED_KEY
  103. SYNC_REPOSITORY_UPDATE_HOOK
  104. )
  105. func Dashboard(ctx *middleware.Context) {
  106. ctx.Data["Title"] = ctx.Tr("admin.dashboard")
  107. ctx.Data["PageIsAdmin"] = true
  108. ctx.Data["PageIsAdminDashboard"] = true
  109. // Run operation.
  110. op, _ := com.StrTo(ctx.Query("op")).Int()
  111. if op > 0 {
  112. var err error
  113. var success string
  114. switch AdminOperation(op) {
  115. case CLEAN_UNBIND_OAUTH:
  116. success = ctx.Tr("admin.dashboard.clean_unbind_oauth_success")
  117. err = models.CleanUnbindOauth()
  118. case CLEAN_INACTIVATE_USER:
  119. success = ctx.Tr("admin.dashboard.delete_inactivate_accounts_success")
  120. err = models.DeleteInactivateUsers()
  121. case CLEAN_REPO_ARCHIVES:
  122. success = ctx.Tr("admin.dashboard.delete_repo_archives_success")
  123. err = models.DeleteRepositoryArchives()
  124. case GIT_GC_REPOS:
  125. success = ctx.Tr("admin.dashboard.git_gc_repos_success")
  126. err = models.GitGcRepos()
  127. case SYNC_SSH_AUTHORIZED_KEY:
  128. success = ctx.Tr("admin.dashboard.resync_all_sshkeys_success")
  129. err = models.RewriteAllPublicKeys()
  130. case SYNC_REPOSITORY_UPDATE_HOOK:
  131. success = ctx.Tr("admin.dashboard.resync_all_update_hooks_success")
  132. err = models.RewriteRepositoryUpdateHook()
  133. }
  134. if err != nil {
  135. ctx.Flash.Error(err.Error())
  136. } else {
  137. ctx.Flash.Success(success)
  138. }
  139. ctx.Redirect(setting.AppSubUrl + "/admin")
  140. return
  141. }
  142. ctx.Data["Stats"] = models.GetStatistic()
  143. // FIXME: update periodically
  144. updateSystemStatus()
  145. ctx.Data["SysStatus"] = sysStatus
  146. ctx.HTML(200, DASHBOARD)
  147. }
  148. func Config(ctx *middleware.Context) {
  149. ctx.Data["Title"] = ctx.Tr("admin.users")
  150. ctx.Data["PageIsAdmin"] = true
  151. ctx.Data["PageIsAdminConfig"] = true
  152. ctx.Data["AppUrl"] = setting.AppUrl
  153. ctx.Data["Domain"] = setting.Domain
  154. ctx.Data["OfflineMode"] = setting.OfflineMode
  155. ctx.Data["DisableRouterLog"] = setting.DisableRouterLog
  156. ctx.Data["RunUser"] = setting.RunUser
  157. ctx.Data["RunMode"] = strings.Title(macaron.Env)
  158. ctx.Data["RepoRootPath"] = setting.RepoRootPath
  159. ctx.Data["StaticRootPath"] = setting.StaticRootPath
  160. ctx.Data["LogRootPath"] = setting.LogRootPath
  161. ctx.Data["ScriptType"] = setting.ScriptType
  162. ctx.Data["ReverseProxyAuthUser"] = setting.ReverseProxyAuthUser
  163. ctx.Data["Service"] = setting.Service
  164. ctx.Data["DbCfg"] = models.DbCfg
  165. ctx.Data["Webhook"] = setting.Webhook
  166. ctx.Data["MailerEnabled"] = false
  167. if setting.MailService != nil {
  168. ctx.Data["MailerEnabled"] = true
  169. ctx.Data["Mailer"] = setting.MailService
  170. }
  171. ctx.Data["OauthEnabled"] = false
  172. if setting.OauthService != nil {
  173. ctx.Data["OauthEnabled"] = true
  174. ctx.Data["Oauther"] = setting.OauthService
  175. }
  176. ctx.Data["CacheAdapter"] = setting.CacheAdapter
  177. ctx.Data["CacheInternal"] = setting.CacheInternal
  178. ctx.Data["CacheConn"] = setting.CacheConn
  179. ctx.Data["SessionConfig"] = setting.SessionConfig
  180. ctx.Data["PictureService"] = setting.PictureService
  181. ctx.Data["DisableGravatar"] = setting.DisableGravatar
  182. type logger struct {
  183. Mode, Config string
  184. }
  185. loggers := make([]*logger, len(setting.LogModes))
  186. for i := range setting.LogModes {
  187. loggers[i] = &logger{setting.LogModes[i], setting.LogConfigs[i]}
  188. }
  189. ctx.Data["Loggers"] = loggers
  190. ctx.HTML(200, CONFIG)
  191. }
  192. func Monitor(ctx *middleware.Context) {
  193. ctx.Data["Title"] = ctx.Tr("admin.monitor")
  194. ctx.Data["PageIsAdmin"] = true
  195. ctx.Data["PageIsAdminMonitor"] = true
  196. ctx.Data["Processes"] = process.Processes
  197. ctx.Data["Entries"] = cron.ListTasks()
  198. ctx.HTML(200, MONITOR)
  199. }