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.

248 lines
7.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
9 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
Add support for federated avatars (#3320) * Add support for federated avatars Fixes #3105 Removes avatar fetching duplication code Adds an "Enable Federated Avatar" checkbox in user settings (defaults to unchecked) Moves avatar settings all in the same form, making local and remote avatars mutually exclusive Renames UploadAvatarForm to AvatarForm as it's not anymore only for uploading * Run gofmt on all modified files * Move Avatar form in its own page * Add go-libravatar dependency to vendor/ dir Hopefully helps with accepting the contribution. See also #3214 * Revert "Add go-libravatar dependency to vendor/ dir" This reverts commit a8cb93ae640bbb90f7d25012fc257bda9fae9b82. * Make federated avatar setting a global configuration Removes the per-user setting * Move avatar handling back to base tool, disable federated avatar in offline mode * Format, handle error * Properly set fallback host * Use unsupported github.com mirror for importing go-libravatar * Remove comment showing life exists outside of github.com ... pity, but contribution would not be accepted otherwise * Use Combo for Get and Post methods over /avatar * FEDERATED_AVATAR -> ENABLE_FEDERATED_AVATAR * Fix persistance of federated avatar lookup checkbox at install time * Federated Avatars -> Enable Federated Avatars * Use len(string) == 0 instead of string == "" * Move import line where it belong See https://github.com/Unknwon/go-code-convention/blob/master/en-US/import_packages.md Pity the import url is still the unofficial one, but oh well... * Save a line (and waste much more expensive time) * Remove redundant parens * Remove an empty line * Remove empty lines * Reorder lines to make diff smaller * Remove another newline Unknwon review got me start a fight against newlines * Move DISABLE_GRAVATAR and ENABLE_FEDERATED_AVATAR after OFFLINE_MODE On re-reading the diff I figured what Unknwon meant here: https://github.com/gogits/gogs/pull/3320/files#r73741106 * Remove newlines that weren't there before my intervention
8 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. "gopkg.in/macaron.v1"
  12. "github.com/gogits/gogs/models"
  13. "github.com/gogits/gogs/modules/base"
  14. "github.com/gogits/gogs/modules/context"
  15. "github.com/gogits/gogs/modules/cron"
  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_INACTIVATE_USER AdminOperation = iota + 1
  99. CLEAN_REPO_ARCHIVES
  100. CLEAN_MISSING_REPOS
  101. GIT_GC_REPOS
  102. SYNC_SSH_AUTHORIZED_KEY
  103. SYNC_REPOSITORY_UPDATE_HOOK
  104. REINIT_MISSING_REPOSITORY
  105. )
  106. func Dashboard(ctx *context.Context) {
  107. ctx.Data["Title"] = ctx.Tr("admin.dashboard")
  108. ctx.Data["PageIsAdmin"] = true
  109. ctx.Data["PageIsAdminDashboard"] = true
  110. // Run operation.
  111. op, _ := com.StrTo(ctx.Query("op")).Int()
  112. if op > 0 {
  113. var err error
  114. var success string
  115. switch AdminOperation(op) {
  116. case CLEAN_INACTIVATE_USER:
  117. success = ctx.Tr("admin.dashboard.delete_inactivate_accounts_success")
  118. err = models.DeleteInactivateUsers()
  119. case CLEAN_REPO_ARCHIVES:
  120. success = ctx.Tr("admin.dashboard.delete_repo_archives_success")
  121. err = models.DeleteRepositoryArchives()
  122. case CLEAN_MISSING_REPOS:
  123. success = ctx.Tr("admin.dashboard.delete_missing_repos_success")
  124. err = models.DeleteMissingRepositories()
  125. case GIT_GC_REPOS:
  126. success = ctx.Tr("admin.dashboard.git_gc_repos_success")
  127. err = models.GitGcRepos()
  128. case SYNC_SSH_AUTHORIZED_KEY:
  129. success = ctx.Tr("admin.dashboard.resync_all_sshkeys_success")
  130. err = models.RewriteAllPublicKeys()
  131. case SYNC_REPOSITORY_UPDATE_HOOK:
  132. success = ctx.Tr("admin.dashboard.resync_all_update_hooks_success")
  133. err = models.RewriteRepositoryUpdateHook()
  134. case REINIT_MISSING_REPOSITORY:
  135. success = ctx.Tr("admin.dashboard.reinit_missing_repos_success")
  136. err = models.ReinitMissingRepositories()
  137. }
  138. if err != nil {
  139. ctx.Flash.Error(err.Error())
  140. } else {
  141. ctx.Flash.Success(success)
  142. }
  143. ctx.Redirect(setting.AppSubUrl + "/admin")
  144. return
  145. }
  146. ctx.Data["Stats"] = models.GetStatistic()
  147. // FIXME: update periodically
  148. updateSystemStatus()
  149. ctx.Data["SysStatus"] = sysStatus
  150. ctx.HTML(200, DASHBOARD)
  151. }
  152. func SendTestMail(ctx *context.Context) {
  153. email := ctx.Query("email")
  154. // Send a test email to the user's email address and redirect back to Config
  155. if err := models.SendTestMail(email); err != nil {
  156. ctx.Flash.Error(ctx.Tr("admin.config.test_mail_failed", email, err))
  157. } else {
  158. ctx.Flash.Info(ctx.Tr("admin.config.test_mail_sent", email))
  159. }
  160. ctx.Redirect(setting.AppSubUrl + "/admin/config")
  161. }
  162. func Config(ctx *context.Context) {
  163. ctx.Data["Title"] = ctx.Tr("admin.config")
  164. ctx.Data["PageIsAdmin"] = true
  165. ctx.Data["PageIsAdminConfig"] = true
  166. ctx.Data["AppUrl"] = setting.AppUrl
  167. ctx.Data["Domain"] = setting.Domain
  168. ctx.Data["OfflineMode"] = setting.OfflineMode
  169. ctx.Data["DisableRouterLog"] = setting.DisableRouterLog
  170. ctx.Data["RunUser"] = setting.RunUser
  171. ctx.Data["RunMode"] = strings.Title(macaron.Env)
  172. ctx.Data["RepoRootPath"] = setting.RepoRootPath
  173. ctx.Data["StaticRootPath"] = setting.StaticRootPath
  174. ctx.Data["LogRootPath"] = setting.LogRootPath
  175. ctx.Data["ScriptType"] = setting.ScriptType
  176. ctx.Data["ReverseProxyAuthUser"] = setting.ReverseProxyAuthUser
  177. ctx.Data["SSH"] = setting.SSH
  178. ctx.Data["Service"] = setting.Service
  179. ctx.Data["DbCfg"] = models.DbCfg
  180. ctx.Data["Webhook"] = setting.Webhook
  181. ctx.Data["MailerEnabled"] = false
  182. if setting.MailService != nil {
  183. ctx.Data["MailerEnabled"] = true
  184. ctx.Data["Mailer"] = setting.MailService
  185. }
  186. ctx.Data["CacheAdapter"] = setting.CacheAdapter
  187. ctx.Data["CacheInterval"] = setting.CacheInterval
  188. ctx.Data["CacheConn"] = setting.CacheConn
  189. ctx.Data["SessionConfig"] = setting.SessionConfig
  190. ctx.Data["DisableGravatar"] = setting.DisableGravatar
  191. ctx.Data["EnableFederatedAvatar"] = setting.EnableFederatedAvatar
  192. ctx.Data["Git"] = setting.Git
  193. type logger struct {
  194. Mode, Config string
  195. }
  196. loggers := make([]*logger, len(setting.LogModes))
  197. for i := range setting.LogModes {
  198. loggers[i] = &logger{setting.LogModes[i], setting.LogConfigs[i]}
  199. }
  200. ctx.Data["Loggers"] = loggers
  201. ctx.HTML(200, CONFIG)
  202. }
  203. func Monitor(ctx *context.Context) {
  204. ctx.Data["Title"] = ctx.Tr("admin.monitor")
  205. ctx.Data["PageIsAdmin"] = true
  206. ctx.Data["PageIsAdminMonitor"] = true
  207. ctx.Data["Processes"] = process.Processes
  208. ctx.Data["Entries"] = cron.ListTasks()
  209. ctx.HTML(200, MONITOR)
  210. }