2014-03-20 17:20:26 +05:30
|
|
|
// Copyright 2014 The Gogs Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package admin
|
|
|
|
|
|
|
|
import (
|
2014-03-22 17:12:24 +05:30
|
|
|
"fmt"
|
|
|
|
"runtime"
|
2014-03-21 12:57:59 +05:30
|
|
|
"strings"
|
2014-03-22 17:12:24 +05:30
|
|
|
"time"
|
2014-03-21 12:57:59 +05:30
|
|
|
|
2014-07-26 09:54:27 +05:30
|
|
|
"github.com/Unknwon/com"
|
2015-10-16 06:58:12 +05:30
|
|
|
"gopkg.in/macaron.v1"
|
2014-03-21 12:57:59 +05:30
|
|
|
|
2014-03-21 01:34:56 +05:30
|
|
|
"github.com/gogits/gogs/models"
|
2015-08-17 23:49:29 +05:30
|
|
|
"github.com/gogits/gogs/models/cron"
|
2014-03-21 12:57:59 +05:30
|
|
|
"github.com/gogits/gogs/modules/base"
|
2014-03-20 17:20:26 +05:30
|
|
|
"github.com/gogits/gogs/modules/middleware"
|
2014-06-19 10:38:03 +05:30
|
|
|
"github.com/gogits/gogs/modules/process"
|
2014-05-26 05:41:25 +05:30
|
|
|
"github.com/gogits/gogs/modules/setting"
|
2014-03-20 17:20:26 +05:30
|
|
|
)
|
|
|
|
|
2014-06-22 22:44:03 +05:30
|
|
|
const (
|
2014-08-30 18:19:51 +05:30
|
|
|
DASHBOARD base.TplName = "admin/dashboard"
|
|
|
|
CONFIG base.TplName = "admin/config"
|
|
|
|
MONITOR base.TplName = "admin/monitor"
|
2014-06-22 22:44:03 +05:30
|
|
|
)
|
|
|
|
|
2014-07-07 13:45:08 +05:30
|
|
|
var (
|
|
|
|
startTime = time.Now()
|
|
|
|
)
|
2014-03-22 18:51:57 +05:30
|
|
|
|
2014-03-22 17:12:24 +05:30
|
|
|
var sysStatus struct {
|
2014-03-22 18:51:57 +05:30
|
|
|
Uptime string
|
2014-03-22 17:12:24 +05:30
|
|
|
NumGoroutine int
|
|
|
|
|
|
|
|
// General statistics.
|
|
|
|
MemAllocated string // bytes allocated and still in use
|
|
|
|
MemTotal string // bytes allocated (even if freed)
|
|
|
|
MemSys string // bytes obtained from system (sum of XxxSys below)
|
|
|
|
Lookups uint64 // number of pointer lookups
|
|
|
|
MemMallocs uint64 // number of mallocs
|
|
|
|
MemFrees uint64 // number of frees
|
|
|
|
|
|
|
|
// Main allocation heap statistics.
|
|
|
|
HeapAlloc string // bytes allocated and still in use
|
|
|
|
HeapSys string // bytes obtained from system
|
|
|
|
HeapIdle string // bytes in idle spans
|
|
|
|
HeapInuse string // bytes in non-idle span
|
|
|
|
HeapReleased string // bytes released to the OS
|
|
|
|
HeapObjects uint64 // total number of allocated objects
|
|
|
|
|
|
|
|
// Low-level fixed-size structure allocator statistics.
|
|
|
|
// Inuse is bytes used now.
|
|
|
|
// Sys is bytes obtained from system.
|
|
|
|
StackInuse string // bootstrap stacks
|
|
|
|
StackSys string
|
|
|
|
MSpanInuse string // mspan structures
|
|
|
|
MSpanSys string
|
|
|
|
MCacheInuse string // mcache structures
|
|
|
|
MCacheSys string
|
|
|
|
BuckHashSys string // profiling bucket hash table
|
|
|
|
GCSys string // GC metadata
|
|
|
|
OtherSys string // other system allocations
|
|
|
|
|
|
|
|
// Garbage collector statistics.
|
|
|
|
NextGC string // next run in HeapAlloc time (bytes)
|
|
|
|
LastGC string // last run in absolute time (ns)
|
|
|
|
PauseTotalNs string
|
|
|
|
PauseNs string // circular buffer of recent GC pause times, most recent at [(NumGC+255)%256]
|
|
|
|
NumGC uint32
|
|
|
|
}
|
|
|
|
|
|
|
|
func updateSystemStatus() {
|
2014-03-22 18:51:57 +05:30
|
|
|
sysStatus.Uptime = base.TimeSincePro(startTime)
|
|
|
|
|
2014-03-22 17:12:24 +05:30
|
|
|
m := new(runtime.MemStats)
|
|
|
|
runtime.ReadMemStats(m)
|
|
|
|
sysStatus.NumGoroutine = runtime.NumGoroutine()
|
|
|
|
|
|
|
|
sysStatus.MemAllocated = base.FileSize(int64(m.Alloc))
|
|
|
|
sysStatus.MemTotal = base.FileSize(int64(m.TotalAlloc))
|
|
|
|
sysStatus.MemSys = base.FileSize(int64(m.Sys))
|
|
|
|
sysStatus.Lookups = m.Lookups
|
|
|
|
sysStatus.MemMallocs = m.Mallocs
|
|
|
|
sysStatus.MemFrees = m.Frees
|
|
|
|
|
|
|
|
sysStatus.HeapAlloc = base.FileSize(int64(m.HeapAlloc))
|
|
|
|
sysStatus.HeapSys = base.FileSize(int64(m.HeapSys))
|
|
|
|
sysStatus.HeapIdle = base.FileSize(int64(m.HeapIdle))
|
|
|
|
sysStatus.HeapInuse = base.FileSize(int64(m.HeapInuse))
|
|
|
|
sysStatus.HeapReleased = base.FileSize(int64(m.HeapReleased))
|
|
|
|
sysStatus.HeapObjects = m.HeapObjects
|
|
|
|
|
|
|
|
sysStatus.StackInuse = base.FileSize(int64(m.StackInuse))
|
|
|
|
sysStatus.StackSys = base.FileSize(int64(m.StackSys))
|
|
|
|
sysStatus.MSpanInuse = base.FileSize(int64(m.MSpanInuse))
|
|
|
|
sysStatus.MSpanSys = base.FileSize(int64(m.MSpanSys))
|
|
|
|
sysStatus.MCacheInuse = base.FileSize(int64(m.MCacheInuse))
|
|
|
|
sysStatus.MCacheSys = base.FileSize(int64(m.MCacheSys))
|
|
|
|
sysStatus.BuckHashSys = base.FileSize(int64(m.BuckHashSys))
|
|
|
|
sysStatus.GCSys = base.FileSize(int64(m.GCSys))
|
|
|
|
sysStatus.OtherSys = base.FileSize(int64(m.OtherSys))
|
|
|
|
|
|
|
|
sysStatus.NextGC = base.FileSize(int64(m.NextGC))
|
|
|
|
sysStatus.LastGC = fmt.Sprintf("%.1fs", float64(time.Now().UnixNano()-int64(m.LastGC))/1000/1000/1000)
|
2014-03-22 18:51:57 +05:30
|
|
|
sysStatus.PauseTotalNs = fmt.Sprintf("%.1fs", float64(m.PauseTotalNs)/1000/1000/1000)
|
|
|
|
sysStatus.PauseNs = fmt.Sprintf("%.3fs", float64(m.PauseNs[(m.NumGC+255)%256])/1000/1000/1000)
|
2014-03-22 17:12:24 +05:30
|
|
|
sysStatus.NumGC = m.NumGC
|
|
|
|
}
|
|
|
|
|
2014-05-06 23:17:47 +05:30
|
|
|
// Operation types.
|
2014-06-21 10:21:41 +05:30
|
|
|
type AdminOperation int
|
|
|
|
|
2014-05-06 23:17:47 +05:30
|
|
|
const (
|
2015-09-18 01:41:44 +05:30
|
|
|
CLEAN_INACTIVATE_USER AdminOperation = iota + 1
|
2014-11-19 05:35:33 +05:30
|
|
|
CLEAN_REPO_ARCHIVES
|
2015-11-19 02:07:48 +05:30
|
|
|
CLEAN_MISSING_REPOS
|
2014-11-30 12:56:29 +05:30
|
|
|
GIT_GC_REPOS
|
2014-12-31 23:37:51 +05:30
|
|
|
SYNC_SSH_AUTHORIZED_KEY
|
2015-02-09 07:56:14 +05:30
|
|
|
SYNC_REPOSITORY_UPDATE_HOOK
|
2016-02-04 23:21:00 +05:30
|
|
|
REINIT_MISSING_REPOSITORY
|
2014-05-06 23:17:47 +05:30
|
|
|
)
|
|
|
|
|
2014-03-20 17:20:26 +05:30
|
|
|
func Dashboard(ctx *middleware.Context) {
|
2014-08-28 19:59:00 +05:30
|
|
|
ctx.Data["Title"] = ctx.Tr("admin.dashboard")
|
|
|
|
ctx.Data["PageIsAdmin"] = true
|
|
|
|
ctx.Data["PageIsAdminDashboard"] = true
|
2014-05-06 23:17:47 +05:30
|
|
|
|
|
|
|
// Run operation.
|
2014-07-26 09:54:27 +05:30
|
|
|
op, _ := com.StrTo(ctx.Query("op")).Int()
|
2014-05-06 23:17:47 +05:30
|
|
|
if op > 0 {
|
|
|
|
var err error
|
|
|
|
var success string
|
|
|
|
|
2014-06-21 10:21:41 +05:30
|
|
|
switch AdminOperation(op) {
|
|
|
|
case CLEAN_INACTIVATE_USER:
|
2014-11-19 05:35:33 +05:30
|
|
|
success = ctx.Tr("admin.dashboard.delete_inactivate_accounts_success")
|
2014-06-21 10:21:41 +05:30
|
|
|
err = models.DeleteInactivateUsers()
|
2014-11-19 05:35:33 +05:30
|
|
|
case CLEAN_REPO_ARCHIVES:
|
|
|
|
success = ctx.Tr("admin.dashboard.delete_repo_archives_success")
|
|
|
|
err = models.DeleteRepositoryArchives()
|
2015-11-19 02:07:48 +05:30
|
|
|
case CLEAN_MISSING_REPOS:
|
|
|
|
success = ctx.Tr("admin.dashboard.delete_missing_repos_success")
|
|
|
|
err = models.DeleteMissingRepositories()
|
2014-11-30 12:56:29 +05:30
|
|
|
case GIT_GC_REPOS:
|
|
|
|
success = ctx.Tr("admin.dashboard.git_gc_repos_success")
|
|
|
|
err = models.GitGcRepos()
|
2014-12-31 23:37:51 +05:30
|
|
|
case SYNC_SSH_AUTHORIZED_KEY:
|
|
|
|
success = ctx.Tr("admin.dashboard.resync_all_sshkeys_success")
|
|
|
|
err = models.RewriteAllPublicKeys()
|
2015-02-09 07:56:14 +05:30
|
|
|
case SYNC_REPOSITORY_UPDATE_HOOK:
|
|
|
|
success = ctx.Tr("admin.dashboard.resync_all_update_hooks_success")
|
|
|
|
err = models.RewriteRepositoryUpdateHook()
|
2016-02-04 23:21:00 +05:30
|
|
|
case REINIT_MISSING_REPOSITORY:
|
|
|
|
success = ctx.Tr("admin.dashboard.reinit_missing_repos_success")
|
|
|
|
err = models.ReinitMissingRepositories()
|
2014-05-06 23:17:47 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
ctx.Flash.Error(err.Error())
|
|
|
|
} else {
|
|
|
|
ctx.Flash.Success(success)
|
|
|
|
}
|
2014-09-20 05:41:34 +05:30
|
|
|
ctx.Redirect(setting.AppSubUrl + "/admin")
|
2014-05-06 23:17:47 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-03-21 01:34:56 +05:30
|
|
|
ctx.Data["Stats"] = models.GetStatistic()
|
2014-11-19 05:35:33 +05:30
|
|
|
// FIXME: update periodically
|
2014-03-22 17:12:24 +05:30
|
|
|
updateSystemStatus()
|
|
|
|
ctx.Data["SysStatus"] = sysStatus
|
2014-06-22 22:44:03 +05:30
|
|
|
ctx.HTML(200, DASHBOARD)
|
2014-03-20 17:20:26 +05:30
|
|
|
}
|
|
|
|
|
2014-03-21 11:18:10 +05:30
|
|
|
func Config(ctx *middleware.Context) {
|
2015-09-12 18:51:09 +05:30
|
|
|
ctx.Data["Title"] = ctx.Tr("admin.config")
|
2014-08-30 18:19:51 +05:30
|
|
|
ctx.Data["PageIsAdmin"] = true
|
|
|
|
ctx.Data["PageIsAdminConfig"] = true
|
2014-03-21 12:57:59 +05:30
|
|
|
|
2014-05-26 05:41:25 +05:30
|
|
|
ctx.Data["AppUrl"] = setting.AppUrl
|
|
|
|
ctx.Data["Domain"] = setting.Domain
|
|
|
|
ctx.Data["OfflineMode"] = setting.OfflineMode
|
|
|
|
ctx.Data["DisableRouterLog"] = setting.DisableRouterLog
|
|
|
|
ctx.Data["RunUser"] = setting.RunUser
|
2014-07-26 09:54:27 +05:30
|
|
|
ctx.Data["RunMode"] = strings.Title(macaron.Env)
|
2014-05-26 05:41:25 +05:30
|
|
|
ctx.Data["RepoRootPath"] = setting.RepoRootPath
|
2014-05-28 11:23:06 +05:30
|
|
|
ctx.Data["StaticRootPath"] = setting.StaticRootPath
|
|
|
|
ctx.Data["LogRootPath"] = setting.LogRootPath
|
2014-05-26 05:41:25 +05:30
|
|
|
ctx.Data["ScriptType"] = setting.ScriptType
|
2014-06-24 23:25:47 +05:30
|
|
|
ctx.Data["ReverseProxyAuthUser"] = setting.ReverseProxyAuthUser
|
2014-03-21 12:57:59 +05:30
|
|
|
|
2014-05-26 05:41:25 +05:30
|
|
|
ctx.Data["Service"] = setting.Service
|
2014-03-21 12:57:59 +05:30
|
|
|
ctx.Data["DbCfg"] = models.DbCfg
|
2015-02-11 07:36:59 +05:30
|
|
|
ctx.Data["Webhook"] = setting.Webhook
|
2014-06-08 14:15:34 +05:30
|
|
|
|
2014-03-21 13:43:32 +05:30
|
|
|
ctx.Data["MailerEnabled"] = false
|
2014-05-26 05:41:25 +05:30
|
|
|
if setting.MailService != nil {
|
2014-03-21 13:43:32 +05:30
|
|
|
ctx.Data["MailerEnabled"] = true
|
2014-05-26 05:41:25 +05:30
|
|
|
ctx.Data["Mailer"] = setting.MailService
|
2014-03-21 13:43:32 +05:30
|
|
|
}
|
2014-03-21 12:57:59 +05:30
|
|
|
|
2014-05-26 05:41:25 +05:30
|
|
|
ctx.Data["CacheAdapter"] = setting.CacheAdapter
|
2014-08-01 02:55:34 +05:30
|
|
|
ctx.Data["CacheInternal"] = setting.CacheInternal
|
|
|
|
ctx.Data["CacheConn"] = setting.CacheConn
|
2014-03-21 19:39:57 +05:30
|
|
|
|
2014-05-26 05:41:25 +05:30
|
|
|
ctx.Data["SessionConfig"] = setting.SessionConfig
|
2014-03-22 18:51:57 +05:30
|
|
|
|
2014-05-26 05:41:25 +05:30
|
|
|
ctx.Data["PictureService"] = setting.PictureService
|
|
|
|
ctx.Data["DisableGravatar"] = setting.DisableGravatar
|
2014-03-22 16:12:19 +05:30
|
|
|
|
2014-05-12 00:07:12 +05:30
|
|
|
type logger struct {
|
|
|
|
Mode, Config string
|
|
|
|
}
|
2014-05-26 05:41:25 +05:30
|
|
|
loggers := make([]*logger, len(setting.LogModes))
|
|
|
|
for i := range setting.LogModes {
|
|
|
|
loggers[i] = &logger{setting.LogModes[i], setting.LogConfigs[i]}
|
2014-05-12 00:07:12 +05:30
|
|
|
}
|
|
|
|
ctx.Data["Loggers"] = loggers
|
2014-03-21 21:43:13 +05:30
|
|
|
|
2014-06-22 22:44:03 +05:30
|
|
|
ctx.HTML(200, CONFIG)
|
2014-03-21 11:18:10 +05:30
|
|
|
}
|
2014-06-13 22:31:52 +05:30
|
|
|
|
|
|
|
func Monitor(ctx *middleware.Context) {
|
2014-08-30 18:19:51 +05:30
|
|
|
ctx.Data["Title"] = ctx.Tr("admin.monitor")
|
|
|
|
ctx.Data["PageIsAdmin"] = true
|
|
|
|
ctx.Data["PageIsAdminMonitor"] = true
|
|
|
|
ctx.Data["Processes"] = process.Processes
|
2015-08-17 23:49:29 +05:30
|
|
|
ctx.Data["Entries"] = cron.ListTasks()
|
2014-08-30 18:19:51 +05:30
|
|
|
ctx.HTML(200, MONITOR)
|
2014-06-13 22:31:52 +05:30
|
|
|
}
|