// Copyright 2022 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 api import ( "net/http" "github.com/woodpecker-ci/woodpecker/server" "github.com/woodpecker-ci/woodpecker/server/model" "github.com/gin-gonic/gin" ) // GetGlobalSecretList gets the global secret list from // the database and writes to the response in json format. func GetGlobalSecretList(c *gin.Context) { list, err := server.Config.Services.Secrets.GlobalSecretList() if err != nil { c.String(http.StatusInternalServerError, "Error getting global secret list. %s", err) return } // copy the secret detail to remove the sensitive // password and token fields. for i, secret := range list { list[i] = secret.Copy() } c.JSON(http.StatusOK, list) } // GetGlobalSecret gets the named global secret from the database // and writes to the response in json format. func GetGlobalSecret(c *gin.Context) { name := c.Param("secret") secret, err := server.Config.Services.Secrets.GlobalSecretFind(name) if err != nil { c.String(404, "Error getting global secret %q. %s", name, err) return } c.JSON(200, secret.Copy()) } // PostGlobalSecret persists a global secret to the database. func PostGlobalSecret(c *gin.Context) { in := new(model.Secret) if err := c.Bind(in); err != nil { c.String(http.StatusBadRequest, "Error parsing global secret. %s", err) return } secret := &model.Secret{ Name: in.Name, Value: in.Value, Events: in.Events, Images: in.Images, PluginsOnly: in.PluginsOnly, } if err := secret.Validate(); err != nil { c.String(400, "Error inserting global secret. %s", err) return } if err := server.Config.Services.Secrets.GlobalSecretCreate(secret); err != nil { c.String(500, "Error inserting global secret %q. %s", in.Name, err) return } c.JSON(200, secret.Copy()) } // PatchGlobalSecret updates a global secret in the database. func PatchGlobalSecret(c *gin.Context) { name := c.Param("secret") in := new(model.Secret) err := c.Bind(in) if err != nil { c.String(http.StatusBadRequest, "Error parsing secret. %s", err) return } secret, err := server.Config.Services.Secrets.GlobalSecretFind(name) if err != nil { c.String(404, "Error getting global secret %q. %s", name, err) return } if in.Value != "" { secret.Value = in.Value } if in.Events != nil { secret.Events = in.Events } if in.Images != nil { secret.Images = in.Images } secret.PluginsOnly = in.PluginsOnly if err := secret.Validate(); err != nil { c.String(400, "Error updating global secret. %s", err) return } if err := server.Config.Services.Secrets.GlobalSecretUpdate(secret); err != nil { c.String(500, "Error updating global secret %q. %s", in.Name, err) return } c.JSON(200, secret.Copy()) } // DeleteGlobalSecret deletes the named global secret from the database. func DeleteGlobalSecret(c *gin.Context) { name := c.Param("secret") if err := server.Config.Services.Secrets.GlobalSecretDelete(name); err != nil { c.String(500, "Error deleting global secret %q. %s", name, err) return } c.String(204, "") }