mirror of
https://github.com/go-gitea/gitea.git
synced 2025-07-26 11:04:27 -04:00
96 lines
2.8 KiB
Go
96 lines
2.8 KiB
Go
// Copyright 2014 The Gogs Authors. All rights reserved.
|
|
// Copyright 2020 The Gitea Authors.
|
|
// Use of this source code is governed by a MIT-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package admin
|
|
|
|
import (
|
|
"net/url"
|
|
|
|
bots_model "code.gitea.io/gitea/models/bots"
|
|
"code.gitea.io/gitea/models/db"
|
|
"code.gitea.io/gitea/modules/base"
|
|
"code.gitea.io/gitea/modules/context"
|
|
"code.gitea.io/gitea/modules/log"
|
|
"code.gitea.io/gitea/modules/setting"
|
|
"code.gitea.io/gitea/routers/common"
|
|
)
|
|
|
|
const (
|
|
tplRunners base.TplName = "admin/runners/base"
|
|
tplRunnerNew base.TplName = "admin/runners/new"
|
|
tplRunnerEdit base.TplName = "admin/runners/edit"
|
|
)
|
|
|
|
// Runners show all the runners
|
|
func Runners(ctx *context.Context) {
|
|
ctx.Data["Title"] = ctx.Tr("admin.runners")
|
|
ctx.Data["PageIsAdmin"] = true
|
|
ctx.Data["PageIsAdminRunners"] = true
|
|
|
|
page := ctx.FormInt("page")
|
|
if page <= 1 {
|
|
page = 1
|
|
}
|
|
|
|
opts := bots_model.FindRunnerOptions{
|
|
ListOptions: db.ListOptions{
|
|
Page: page,
|
|
PageSize: 100,
|
|
},
|
|
Sort: ctx.Req.URL.Query().Get("sort"),
|
|
Filter: ctx.Req.URL.Query().Get("q"),
|
|
WithDeleted: false,
|
|
RepoID: 0,
|
|
OwnerID: 0,
|
|
}
|
|
|
|
common.RunnersList(ctx, tplRunners, opts)
|
|
}
|
|
|
|
// EditRunner show editing runner page
|
|
func EditRunner(ctx *context.Context) {
|
|
ctx.Data["Title"] = ctx.Tr("admin.runners.edit_runner")
|
|
ctx.Data["PageIsAdmin"] = true
|
|
ctx.Data["PageIsAdminRunners"] = true
|
|
|
|
common.RunnerDetails(ctx, tplRunnerEdit, ctx.ParamsInt64(":runnerid"), 0, 0)
|
|
}
|
|
|
|
// EditRunnerPost response for editing runner
|
|
func EditRunnerPost(ctx *context.Context) {
|
|
ctx.Data["Title"] = ctx.Tr("admin.runners.edit")
|
|
ctx.Data["PageIsAdmin"] = true
|
|
ctx.Data["PageIsAdminRunners"] = true
|
|
common.RunnerDetailsEditPost(ctx, ctx.ParamsInt64(":runnerid"), 0, 0,
|
|
setting.AppSubURL+"/admin/runners/"+url.PathEscape(ctx.Params(":runnerid")))
|
|
}
|
|
|
|
// DeleteRunner response for deleting a runner
|
|
func DeleteRunnerPost(ctx *context.Context) {
|
|
runner, err := bots_model.GetRunnerByID(ctx.ParamsInt64(":runnerid"))
|
|
if err != nil {
|
|
log.Warn("DeleteRunnerPost.GetRunnerByID failed: %v, url: %s", err, ctx.Req.URL)
|
|
ctx.ServerError("DeleteRunnerPost.GetRunnerByID", err)
|
|
return
|
|
}
|
|
|
|
err = bots_model.DeleteRunner(ctx, runner)
|
|
if err != nil {
|
|
log.Warn("DeleteRunnerPost.UpdateRunner failed: %v, url: %s", err, ctx.Req.URL)
|
|
ctx.Flash.Warning(ctx.Tr("admin.runners.delete_runner_failed"))
|
|
ctx.Redirect(setting.AppSubURL + "/admin/runners/" + url.PathEscape(ctx.Params(":runnerid")))
|
|
return
|
|
}
|
|
|
|
log.Info("DeleteRunnerPost success: %s", ctx.Req.URL)
|
|
|
|
ctx.Flash.Success(ctx.Tr("admin.runners.delete_runner_success"))
|
|
ctx.Redirect(setting.AppSubURL + "/admin/runners/")
|
|
}
|
|
|
|
func ResetRunnerRegistrationToken(ctx *context.Context) {
|
|
common.RunnerResetRegistrationToken(ctx, 0, 0, setting.AppSubURL+"/admin/runners/")
|
|
}
|