mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-03 15:39:40 +00:00
4276a04f0c
Completely switch to zerolog (Remove usage of logrus and std logger) Signed-off-by: jolheiser <john.olheiser@gmail.com> Co-authored-by: 6543 <6543@obermui.de>
141 lines
3.7 KiB
Go
141 lines
3.7 KiB
Go
// Copyright 2018 Drone.IO Inc.
|
|
//
|
|
// 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/gin-gonic/gin"
|
|
|
|
"github.com/woodpecker-ci/woodpecker/server"
|
|
"github.com/woodpecker-ci/woodpecker/server/model"
|
|
"github.com/woodpecker-ci/woodpecker/server/router/middleware/session"
|
|
)
|
|
|
|
// GetRegistry gets the name registry from the database and writes
|
|
// to the response in json format.
|
|
func GetRegistry(c *gin.Context) {
|
|
var (
|
|
repo = session.Repo(c)
|
|
name = c.Param("registry")
|
|
)
|
|
registry, err := server.Config.Services.Registries.RegistryFind(repo, name)
|
|
if err != nil {
|
|
c.String(404, "Error getting registry %q. %s", name, err)
|
|
return
|
|
}
|
|
c.JSON(200, registry.Copy())
|
|
}
|
|
|
|
// PostRegistry persists the registry to the database.
|
|
func PostRegistry(c *gin.Context) {
|
|
repo := session.Repo(c)
|
|
|
|
in := new(model.Registry)
|
|
if err := c.Bind(in); err != nil {
|
|
c.String(http.StatusBadRequest, "Error parsing request. %s", err)
|
|
return
|
|
}
|
|
registry := &model.Registry{
|
|
RepoID: repo.ID,
|
|
Address: in.Address,
|
|
Username: in.Username,
|
|
Password: in.Password,
|
|
Token: in.Token,
|
|
Email: in.Email,
|
|
}
|
|
if err := registry.Validate(); err != nil {
|
|
c.String(400, "Error inserting registry. %s", err)
|
|
return
|
|
}
|
|
if err := server.Config.Services.Registries.RegistryCreate(repo, registry); err != nil {
|
|
c.String(500, "Error inserting registry %q. %s", in.Address, err)
|
|
return
|
|
}
|
|
c.JSON(200, in.Copy())
|
|
}
|
|
|
|
// PatchRegistry updates the registry in the database.
|
|
func PatchRegistry(c *gin.Context) {
|
|
var (
|
|
repo = session.Repo(c)
|
|
name = c.Param("registry")
|
|
)
|
|
|
|
in := new(model.Registry)
|
|
err := c.Bind(in)
|
|
if err != nil {
|
|
c.String(http.StatusBadRequest, "Error parsing request. %s", err)
|
|
return
|
|
}
|
|
|
|
registry, err := server.Config.Services.Registries.RegistryFind(repo, name)
|
|
if err != nil {
|
|
c.String(404, "Error getting registry %q. %s", name, err)
|
|
return
|
|
}
|
|
if in.Username != "" {
|
|
registry.Username = in.Username
|
|
}
|
|
if in.Password != "" {
|
|
registry.Password = in.Password
|
|
}
|
|
if in.Token != "" {
|
|
registry.Token = in.Token
|
|
}
|
|
if in.Email != "" {
|
|
registry.Email = in.Email
|
|
}
|
|
|
|
if err := registry.Validate(); err != nil {
|
|
c.String(400, "Error updating registry. %s", err)
|
|
return
|
|
}
|
|
if err := server.Config.Services.Registries.RegistryUpdate(repo, registry); err != nil {
|
|
c.String(500, "Error updating registry %q. %s", in.Address, err)
|
|
return
|
|
}
|
|
c.JSON(200, in.Copy())
|
|
}
|
|
|
|
// GetRegistryList gets the registry list from the database and writes
|
|
// to the response in json format.
|
|
func GetRegistryList(c *gin.Context) {
|
|
repo := session.Repo(c)
|
|
list, err := server.Config.Services.Registries.RegistryList(repo)
|
|
if err != nil {
|
|
c.String(500, "Error getting registry list. %s", err)
|
|
return
|
|
}
|
|
// copy the registry detail to remove the sensitive
|
|
// password and token fields.
|
|
for i, registry := range list {
|
|
list[i] = registry.Copy()
|
|
}
|
|
c.JSON(200, list)
|
|
}
|
|
|
|
// DeleteRegistry deletes the named registry from the database.
|
|
func DeleteRegistry(c *gin.Context) {
|
|
var (
|
|
repo = session.Repo(c)
|
|
name = c.Param("registry")
|
|
)
|
|
if err := server.Config.Services.Registries.RegistryDelete(repo, name); err != nil {
|
|
c.String(500, "Error deleting registry %q. %s", name, err)
|
|
return
|
|
}
|
|
c.String(204, "")
|
|
}
|