Files
Atay-Makhzan/routers/admin/admin.go
T

282 lines
8.9 KiB
Go
Raw Normal View History

2014-03-20 07:50:26 -04:00
// 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 07:42:24 -04:00
"fmt"
"os"
2014-03-22 07:42:24 -04:00
"runtime"
2014-03-21 03:27:59 -04:00
"strings"
2014-03-22 07:42:24 -04:00
"time"
2014-03-21 03:27:59 -04:00
2014-07-26 00:24:27 -04:00
"github.com/Unknwon/com"
2015-10-15 21:28:12 -04:00
"gopkg.in/macaron.v1"
2014-03-21 03:27:59 -04:00
"code.gitea.io/gitea/models"
"code.gitea.io/gitea/modules/base"
"code.gitea.io/gitea/modules/context"
"code.gitea.io/gitea/modules/cron"
"code.gitea.io/gitea/modules/process"
"code.gitea.io/gitea/modules/setting"
2014-03-20 07:50:26 -04:00
)
2014-06-22 13:14:03 -04:00
const (
2016-11-21 11:21:24 +08:00
tplDashboard base.TplName = "admin/dashboard"
tplConfig base.TplName = "admin/config"
tplMonitor base.TplName = "admin/monitor"
2014-06-22 13:14:03 -04:00
)
2014-07-07 04:15:08 -04:00
var (
startTime = time.Now()
)
2014-03-22 09:21:57 -04:00
2014-03-22 07:42:24 -04:00
var sysStatus struct {
2014-03-22 09:21:57 -04:00
Uptime string
2014-03-22 07:42:24 -04:00
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() {
2017-06-28 08:43:28 +03:00
sysStatus.Uptime = base.TimeSincePro(startTime, "en")
2014-03-22 09:21:57 -04:00
2014-03-22 07:42:24 -04:00
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 09:21:57 -04:00
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 07:42:24 -04:00
sysStatus.NumGC = m.NumGC
}
2016-11-21 11:21:24 +08:00
// Operation Operation types.
type Operation int
2014-06-21 00:51:41 -04:00
2014-05-06 13:47:47 -04:00
const (
2016-11-21 11:21:24 +08:00
cleanInactivateUser Operation = iota + 1
cleanRepoArchives
cleanMissingRepos
gitGCRepos
syncSSHAuthorizedKey
syncRepositoryUpdateHook
reinitMissingRepository
2017-05-10 16:10:18 +03:00
syncExternalUsers
gitFsck
2014-05-06 13:47:47 -04:00
)
2016-11-21 11:21:24 +08:00
// Dashboard show admin panel dashboard
2016-03-11 11:56:52 -05:00
func Dashboard(ctx *context.Context) {
2014-08-28 22:29:00 +08:00
ctx.Data["Title"] = ctx.Tr("admin.dashboard")
ctx.Data["PageIsAdmin"] = true
ctx.Data["PageIsAdminDashboard"] = true
2014-05-06 13:47:47 -04:00
// Run operation.
2014-07-26 00:24:27 -04:00
op, _ := com.StrTo(ctx.Query("op")).Int()
2014-05-06 13:47:47 -04:00
if op > 0 {
var err error
var success string
2016-11-21 11:21:24 +08:00
switch Operation(op) {
case cleanInactivateUser:
2014-11-18 19:05:33 -05:00
success = ctx.Tr("admin.dashboard.delete_inactivate_accounts_success")
2014-06-21 00:51:41 -04:00
err = models.DeleteInactivateUsers()
2016-11-21 11:21:24 +08:00
case cleanRepoArchives:
2014-11-18 19:05:33 -05:00
success = ctx.Tr("admin.dashboard.delete_repo_archives_success")
err = models.DeleteRepositoryArchives()
2016-11-21 11:21:24 +08:00
case cleanMissingRepos:
2015-11-18 15:37:48 -05:00
success = ctx.Tr("admin.dashboard.delete_missing_repos_success")
2017-09-03 01:20:24 -07:00
err = models.DeleteMissingRepositories(ctx.User)
2016-11-21 11:21:24 +08:00
case gitGCRepos:
2014-11-30 02:26:29 -05:00
success = ctx.Tr("admin.dashboard.git_gc_repos_success")
err = models.GitGcRepos()
2016-11-21 11:21:24 +08:00
case syncSSHAuthorizedKey:
success = ctx.Tr("admin.dashboard.resync_all_sshkeys_success")
err = models.RewriteAllPublicKeys()
2016-11-21 11:21:24 +08:00
case syncRepositoryUpdateHook:
2017-02-23 11:40:44 +08:00
success = ctx.Tr("admin.dashboard.resync_all_hooks_success")
err = models.SyncRepositoryHooks()
2016-11-21 11:21:24 +08:00
case reinitMissingRepository:
2016-02-04 12:51:00 -05:00
success = ctx.Tr("admin.dashboard.reinit_missing_repos_success")
err = models.ReinitMissingRepositories()
2017-05-10 16:10:18 +03:00
case syncExternalUsers:
success = ctx.Tr("admin.dashboard.sync_external_users_started")
go models.SyncExternalUsers()
case gitFsck:
success = ctx.Tr("admin.dashboard.git_fsck_started")
go models.GitFsck()
2014-05-06 13:47:47 -04:00
}
if err != nil {
ctx.Flash.Error(err.Error())
} else {
ctx.Flash.Success(success)
}
2016-11-27 18:14:25 +08:00
ctx.Redirect(setting.AppSubURL + "/admin")
2014-05-06 13:47:47 -04:00
return
}
2014-03-20 16:04:56 -04:00
ctx.Data["Stats"] = models.GetStatistic()
2014-11-18 19:05:33 -05:00
// FIXME: update periodically
2014-03-22 07:42:24 -04:00
updateSystemStatus()
ctx.Data["SysStatus"] = sysStatus
2016-11-21 11:21:24 +08:00
ctx.HTML(200, tplDashboard)
2014-03-20 07:50:26 -04:00
}
2016-11-21 11:21:24 +08:00
// SendTestMail send test mail to confirm mail service is OK
2016-03-11 11:56:52 -05:00
func SendTestMail(ctx *context.Context) {
2016-02-24 23:59:17 -05:00
email := ctx.Query("email")
// Send a test email to the user's email address and redirect back to Config
if err := models.SendTestMail(email); err != nil {
2016-02-24 23:59:17 -05:00
ctx.Flash.Error(ctx.Tr("admin.config.test_mail_failed", email, err))
} else {
ctx.Flash.Info(ctx.Tr("admin.config.test_mail_sent", email))
}
2016-02-18 17:13:12 -05:00
2016-11-27 18:14:25 +08:00
ctx.Redirect(setting.AppSubURL + "/admin/config")
2016-02-18 17:13:12 -05:00
}
2016-11-21 11:21:24 +08:00
// Config show admin config page
2016-03-11 11:56:52 -05:00
func Config(ctx *context.Context) {
2015-09-12 09:21:09 -04:00
ctx.Data["Title"] = ctx.Tr("admin.config")
2014-08-30 20:49:51 +08:00
ctx.Data["PageIsAdmin"] = true
ctx.Data["PageIsAdminConfig"] = true
2014-03-21 03:27:59 -04:00
ctx.Data["CustomConf"] = setting.CustomConf
2016-11-27 18:14:25 +08:00
ctx.Data["AppUrl"] = setting.AppURL
2014-05-25 20:11:25 -04:00
ctx.Data["Domain"] = setting.Domain
ctx.Data["OfflineMode"] = setting.OfflineMode
ctx.Data["DisableRouterLog"] = setting.DisableRouterLog
ctx.Data["RunUser"] = setting.RunUser
2014-07-26 00:24:27 -04:00
ctx.Data["RunMode"] = strings.Title(macaron.Env)
ctx.Data["GitVersion"] = setting.Git.Version
2014-05-25 20:11:25 -04:00
ctx.Data["RepoRootPath"] = setting.RepoRootPath
ctx.Data["CustomRootPath"] = setting.CustomPath
2014-05-28 01:53:06 -04:00
ctx.Data["StaticRootPath"] = setting.StaticRootPath
ctx.Data["LogRootPath"] = setting.LogRootPath
2014-05-25 20:11:25 -04:00
ctx.Data["ScriptType"] = setting.ScriptType
2014-06-24 13:55:47 -04:00
ctx.Data["ReverseProxyAuthUser"] = setting.ReverseProxyAuthUser
ctx.Data["ReverseProxyAuthEmail"] = setting.ReverseProxyAuthEmail
2014-03-21 03:27:59 -04:00
2016-02-27 20:48:39 -05:00
ctx.Data["SSH"] = setting.SSH
2014-05-25 20:11:25 -04:00
ctx.Data["Service"] = setting.Service
2014-03-21 03:27:59 -04:00
ctx.Data["DbCfg"] = models.DbCfg
ctx.Data["Webhook"] = setting.Webhook
2014-06-08 04:45:34 -04:00
2014-03-21 04:13:32 -04:00
ctx.Data["MailerEnabled"] = false
2014-05-25 20:11:25 -04:00
if setting.MailService != nil {
2014-03-21 04:13:32 -04:00
ctx.Data["MailerEnabled"] = true
2014-05-25 20:11:25 -04:00
ctx.Data["Mailer"] = setting.MailService
2014-03-21 04:13:32 -04:00
}
2014-03-21 03:27:59 -04:00
2017-10-26 04:37:33 +03:00
ctx.Data["CacheAdapter"] = setting.CacheService.Adapter
ctx.Data["CacheInterval"] = setting.CacheService.Interval
ctx.Data["CacheConn"] = setting.CacheService.Conn
2014-03-21 10:09:57 -04:00
2014-05-25 20:11:25 -04:00
ctx.Data["SessionConfig"] = setting.SessionConfig
2014-03-22 09:21:57 -04:00
2014-05-25 20:11:25 -04:00
ctx.Data["DisableGravatar"] = setting.DisableGravatar
2016-08-07 19:27:38 +02:00
ctx.Data["EnableFederatedAvatar"] = setting.EnableFederatedAvatar
2014-03-22 06:42:19 -04:00
2016-08-10 11:01:42 -07:00
ctx.Data["Git"] = setting.Git
type envVar struct {
Name, Value string
}
envVars := map[string]*envVar{}
if len(os.Getenv("GITEA_WORK_DIR")) > 0 {
envVars["GITEA_WORK_DIR"] = &envVar{"GITEA_WORK_DIR", os.Getenv("GITEA_WORK_DIR")}
}
if len(os.Getenv("GITEA_CUSTOM")) > 0 {
envVars["GITEA_CUSTOM"] = &envVar{"GITEA_CUSTOM", os.Getenv("GITEA_CUSTOM")}
}
ctx.Data["EnvVars"] = envVars
2014-05-11 14:37:12 -04:00
type logger struct {
Mode, Config string
}
2019-04-02 08:48:31 +01:00
ctx.Data["Loggers"] = setting.LogDescriptions
ctx.Data["RedirectMacaronLog"] = setting.RedirectMacaronLog
ctx.Data["EnableAccessLog"] = setting.EnableAccessLog
ctx.Data["AccessLogTemplate"] = setting.AccessLogTemplate
ctx.Data["DisableRouterLog"] = setting.DisableRouterLog
ctx.Data["EnableXORMLog"] = setting.EnableXORMLog
ctx.Data["LogSQL"] = setting.LogSQL
2014-03-21 12:13:13 -04:00
2016-11-21 11:21:24 +08:00
ctx.HTML(200, tplConfig)
2014-03-21 01:48:10 -04:00
}
2014-06-13 13:01:52 -04:00
2016-11-21 11:21:24 +08:00
// Monitor show admin monitor page
2016-03-11 11:56:52 -05:00
func Monitor(ctx *context.Context) {
2014-08-30 20:49:51 +08:00
ctx.Data["Title"] = ctx.Tr("admin.monitor")
ctx.Data["PageIsAdmin"] = true
ctx.Data["PageIsAdminMonitor"] = true
ctx.Data["Processes"] = process.GetManager().Processes
2015-08-18 02:19:29 +08:00
ctx.Data["Entries"] = cron.ListTasks()
2016-11-21 11:21:24 +08:00
ctx.HTML(200, tplMonitor)
2014-06-13 13:01:52 -04:00
}