mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-11-03 08:02:36 +09:00 
			
		
		
		
	Backport #27245 by @yp05327 Only in org action settings, repo count is missing Before:    In other setting page:  After:    Co-authored-by: yp05327 <576951401@qq.com>
		
			
				
	
	
		
			126 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			126 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
// Copyright 2023 The Gitea Authors. All rights reserved.
 | 
						|
// SPDX-License-Identifier: MIT
 | 
						|
 | 
						|
package setting
 | 
						|
 | 
						|
import (
 | 
						|
	"errors"
 | 
						|
	"net/http"
 | 
						|
 | 
						|
	"code.gitea.io/gitea/modules/base"
 | 
						|
	"code.gitea.io/gitea/modules/context"
 | 
						|
	"code.gitea.io/gitea/modules/setting"
 | 
						|
	shared "code.gitea.io/gitea/routers/web/shared/actions"
 | 
						|
	shared_user "code.gitea.io/gitea/routers/web/shared/user"
 | 
						|
)
 | 
						|
 | 
						|
const (
 | 
						|
	tplRepoVariables base.TplName = "repo/settings/actions"
 | 
						|
	tplOrgVariables  base.TplName = "org/settings/actions"
 | 
						|
	tplUserVariables base.TplName = "user/settings/actions"
 | 
						|
)
 | 
						|
 | 
						|
type variablesCtx struct {
 | 
						|
	OwnerID           int64
 | 
						|
	RepoID            int64
 | 
						|
	IsRepo            bool
 | 
						|
	IsOrg             bool
 | 
						|
	IsUser            bool
 | 
						|
	VariablesTemplate base.TplName
 | 
						|
	RedirectLink      string
 | 
						|
}
 | 
						|
 | 
						|
func getVariablesCtx(ctx *context.Context) (*variablesCtx, error) {
 | 
						|
	if ctx.Data["PageIsRepoSettings"] == true {
 | 
						|
		return &variablesCtx{
 | 
						|
			RepoID:            ctx.Repo.Repository.ID,
 | 
						|
			IsRepo:            true,
 | 
						|
			VariablesTemplate: tplRepoVariables,
 | 
						|
			RedirectLink:      ctx.Repo.RepoLink + "/settings/actions/variables",
 | 
						|
		}, nil
 | 
						|
	}
 | 
						|
 | 
						|
	if ctx.Data["PageIsOrgSettings"] == true {
 | 
						|
		err := shared_user.LoadHeaderCount(ctx)
 | 
						|
		if err != nil {
 | 
						|
			ctx.ServerError("LoadHeaderCount", err)
 | 
						|
			return nil, nil
 | 
						|
		}
 | 
						|
		return &variablesCtx{
 | 
						|
			OwnerID:           ctx.ContextUser.ID,
 | 
						|
			IsOrg:             true,
 | 
						|
			VariablesTemplate: tplOrgVariables,
 | 
						|
			RedirectLink:      ctx.Org.OrgLink + "/settings/actions/variables",
 | 
						|
		}, nil
 | 
						|
	}
 | 
						|
 | 
						|
	if ctx.Data["PageIsUserSettings"] == true {
 | 
						|
		return &variablesCtx{
 | 
						|
			OwnerID:           ctx.Doer.ID,
 | 
						|
			IsUser:            true,
 | 
						|
			VariablesTemplate: tplUserVariables,
 | 
						|
			RedirectLink:      setting.AppSubURL + "/user/settings/actions/variables",
 | 
						|
		}, nil
 | 
						|
	}
 | 
						|
 | 
						|
	return nil, errors.New("unable to set Variables context")
 | 
						|
}
 | 
						|
 | 
						|
func Variables(ctx *context.Context) {
 | 
						|
	ctx.Data["Title"] = ctx.Tr("actions.variables")
 | 
						|
	ctx.Data["PageType"] = "variables"
 | 
						|
	ctx.Data["PageIsSharedSettingsVariables"] = true
 | 
						|
 | 
						|
	vCtx, err := getVariablesCtx(ctx)
 | 
						|
	if err != nil {
 | 
						|
		ctx.ServerError("getVariablesCtx", err)
 | 
						|
		return
 | 
						|
	}
 | 
						|
 | 
						|
	shared.SetVariablesContext(ctx, vCtx.OwnerID, vCtx.RepoID)
 | 
						|
	if ctx.Written() {
 | 
						|
		return
 | 
						|
	}
 | 
						|
 | 
						|
	ctx.HTML(http.StatusOK, vCtx.VariablesTemplate)
 | 
						|
}
 | 
						|
 | 
						|
func VariableCreate(ctx *context.Context) {
 | 
						|
	vCtx, err := getVariablesCtx(ctx)
 | 
						|
	if err != nil {
 | 
						|
		ctx.ServerError("getVariablesCtx", err)
 | 
						|
		return
 | 
						|
	}
 | 
						|
 | 
						|
	if ctx.HasError() { // form binding validation error
 | 
						|
		ctx.JSONError(ctx.GetErrMsg())
 | 
						|
		return
 | 
						|
	}
 | 
						|
 | 
						|
	shared.CreateVariable(ctx, vCtx.OwnerID, vCtx.RepoID, vCtx.RedirectLink)
 | 
						|
}
 | 
						|
 | 
						|
func VariableUpdate(ctx *context.Context) {
 | 
						|
	vCtx, err := getVariablesCtx(ctx)
 | 
						|
	if err != nil {
 | 
						|
		ctx.ServerError("getVariablesCtx", err)
 | 
						|
		return
 | 
						|
	}
 | 
						|
 | 
						|
	if ctx.HasError() { // form binding validation error
 | 
						|
		ctx.JSONError(ctx.GetErrMsg())
 | 
						|
		return
 | 
						|
	}
 | 
						|
 | 
						|
	shared.UpdateVariable(ctx, vCtx.RedirectLink)
 | 
						|
}
 | 
						|
 | 
						|
func VariableDelete(ctx *context.Context) {
 | 
						|
	vCtx, err := getVariablesCtx(ctx)
 | 
						|
	if err != nil {
 | 
						|
		ctx.ServerError("getVariablesCtx", err)
 | 
						|
		return
 | 
						|
	}
 | 
						|
	shared.DeleteVariable(ctx, vCtx.RedirectLink)
 | 
						|
}
 |