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.

237 lines
7.3 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/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. 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["WebhookTaskInterval"] = setting.WebhookTaskInterval
  166. ctx.Data["WebhookDeliverTimeout"] = setting.WebhookDeliverTimeout
  167. ctx.Data["MailerEnabled"] = false
  168. if setting.MailService != nil {
  169. ctx.Data["MailerEnabled"] = true
  170. ctx.Data["Mailer"] = setting.MailService
  171. }
  172. ctx.Data["OauthEnabled"] = false
  173. if setting.OauthService != nil {
  174. ctx.Data["OauthEnabled"] = true
  175. ctx.Data["Oauther"] = setting.OauthService
  176. }
  177. ctx.Data["CacheAdapter"] = setting.CacheAdapter
  178. ctx.Data["CacheInternal"] = setting.CacheInternal
  179. ctx.Data["CacheConn"] = setting.CacheConn
  180. ctx.Data["SessionConfig"] = setting.SessionConfig
  181. ctx.Data["PictureService"] = setting.PictureService
  182. ctx.Data["DisableGravatar"] = setting.DisableGravatar
  183. type logger struct {
  184. Mode, Config string
  185. }
  186. loggers := make([]*logger, len(setting.LogModes))
  187. for i := range setting.LogModes {
  188. loggers[i] = &logger{setting.LogModes[i], setting.LogConfigs[i]}
  189. }
  190. ctx.Data["Loggers"] = loggers
  191. ctx.HTML(200, CONFIG)
  192. }
  193. func Monitor(ctx *middleware.Context) {
  194. ctx.Data["Title"] = ctx.Tr("admin.monitor")
  195. ctx.Data["PageIsAdmin"] = true
  196. ctx.Data["PageIsAdminMonitor"] = true
  197. ctx.Data["Processes"] = process.Processes
  198. ctx.Data["Entries"] = cron.ListEntries()
  199. ctx.HTML(200, MONITOR)
  200. }