mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-26 03:41:01 +00:00
98d7b1b500
Co-authored-by: Anbraten <6918444+anbraten@users.noreply.github.com> Co-authored-by: Anbraten <anton@ju60.de>
86 lines
1.8 KiB
Go
86 lines
1.8 KiB
Go
// Copyright 2024 Woodpecker Authors
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package session
|
|
|
|
import (
|
|
"errors"
|
|
"net/http"
|
|
"strconv"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
|
|
"go.woodpecker-ci.org/woodpecker/v2/server/model"
|
|
"go.woodpecker-ci.org/woodpecker/v2/server/store"
|
|
"go.woodpecker-ci.org/woodpecker/v2/server/store/types"
|
|
)
|
|
|
|
func Org(c *gin.Context) *model.Org {
|
|
v, ok := c.Get("org")
|
|
if !ok {
|
|
return nil
|
|
}
|
|
r, ok := v.(*model.Org)
|
|
if !ok {
|
|
return nil
|
|
}
|
|
return r
|
|
}
|
|
|
|
func SetOrg() gin.HandlerFunc {
|
|
return func(c *gin.Context) {
|
|
var (
|
|
orgID int64
|
|
err error
|
|
)
|
|
|
|
orgParam := c.Param("org_id")
|
|
if orgParam != "" {
|
|
orgID, err = strconv.ParseInt(orgParam, 10, 64)
|
|
if err != nil {
|
|
c.String(http.StatusBadRequest, "Invalid organization ID")
|
|
c.Abort()
|
|
return
|
|
}
|
|
}
|
|
|
|
org, err := store.FromContext(c).OrgGet(orgID)
|
|
if err != nil && !errors.Is(err, types.RecordNotExist) {
|
|
_ = c.AbortWithError(http.StatusInternalServerError, err)
|
|
return
|
|
}
|
|
|
|
if org == nil {
|
|
c.String(http.StatusNotFound, "Organization not found")
|
|
c.Abort()
|
|
return
|
|
}
|
|
|
|
c.Set("org", org)
|
|
c.Next()
|
|
}
|
|
}
|
|
|
|
func MustOrg() gin.HandlerFunc {
|
|
return func(c *gin.Context) {
|
|
org := Org(c)
|
|
switch {
|
|
case org == nil:
|
|
c.String(http.StatusNotFound, "Organization not loaded")
|
|
c.Abort()
|
|
default:
|
|
c.Next()
|
|
}
|
|
}
|
|
}
|