143 lines
3.7 KiB
Go
143 lines
3.7 KiB
Go
// Copyright 2019 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 repos
|
|
|
|
import (
|
|
"encoding/json"
|
|
"net/http"
|
|
|
|
"github.com/drone/drone/core"
|
|
"github.com/drone/drone/handler/api/render"
|
|
"github.com/drone/drone/handler/api/request"
|
|
"github.com/drone/drone/logger"
|
|
|
|
"github.com/go-chi/chi"
|
|
)
|
|
|
|
type (
|
|
repositoryInput struct {
|
|
Visibility *string `json:"visibility"`
|
|
Config *string `json:"config_path"`
|
|
Trusted *bool `json:"trusted"`
|
|
Protected *bool `json:"protected"`
|
|
IgnoreForks *bool `json:"ignore_forks"`
|
|
IgnorePulls *bool `json:"ignore_pull_requests"`
|
|
CancelPulls *bool `json:"auto_cancel_pull_requests"`
|
|
CancelPush *bool `json:"auto_cancel_pushes"`
|
|
CancelRunning *bool `json:"auto_cancel_running"`
|
|
Timeout *int64 `json:"timeout"`
|
|
Throttle *int64 `json:"throttle"`
|
|
Counter *int64 `json:"counter"`
|
|
}
|
|
)
|
|
|
|
// HandleUpdate returns an http.HandlerFunc that processes http
|
|
// requests to update the repository details.
|
|
func HandleUpdate(repos core.RepositoryStore) http.HandlerFunc {
|
|
return func(w http.ResponseWriter, r *http.Request) {
|
|
var (
|
|
owner = chi.URLParam(r, "owner")
|
|
name = chi.URLParam(r, "name")
|
|
slug = owner + "/" + name
|
|
)
|
|
user, _ := request.UserFrom(r.Context())
|
|
|
|
repo, err := repos.FindName(r.Context(), owner, name)
|
|
if err != nil {
|
|
render.NotFound(w, err)
|
|
logger.FromRequest(r).
|
|
WithError(err).
|
|
WithField("repository", slug).
|
|
Debugln("api: repository not found")
|
|
return
|
|
}
|
|
|
|
in := new(repositoryInput)
|
|
err = json.NewDecoder(r.Body).Decode(in)
|
|
if err != nil {
|
|
render.BadRequest(w, err)
|
|
logger.FromRequest(r).
|
|
WithError(err).
|
|
WithField("repository", slug).
|
|
Debugln("api: cannot unmarshal json input")
|
|
return
|
|
}
|
|
|
|
if in.Visibility != nil {
|
|
repo.Visibility = *in.Visibility
|
|
}
|
|
if in.Config != nil {
|
|
repo.Config = *in.Config
|
|
}
|
|
if in.Protected != nil {
|
|
repo.Protected = *in.Protected
|
|
}
|
|
if in.IgnoreForks != nil {
|
|
repo.IgnoreForks = *in.IgnoreForks
|
|
}
|
|
if in.IgnorePulls != nil {
|
|
repo.IgnorePulls = *in.IgnorePulls
|
|
}
|
|
if in.CancelPulls != nil {
|
|
repo.CancelPulls = *in.CancelPulls
|
|
}
|
|
if in.CancelPush != nil {
|
|
repo.CancelPush = *in.CancelPush
|
|
}
|
|
if in.CancelRunning != nil {
|
|
repo.CancelRunning = *in.CancelRunning
|
|
}
|
|
|
|
//
|
|
// system administrator only
|
|
//
|
|
if user != nil && user.Admin {
|
|
if in.Trusted != nil {
|
|
repo.Trusted = *in.Trusted
|
|
}
|
|
if in.Timeout != nil {
|
|
repo.Timeout = *in.Timeout
|
|
}
|
|
if in.Throttle != nil {
|
|
repo.Throttle = *in.Throttle
|
|
}
|
|
if in.Counter != nil {
|
|
repo.Counter = *in.Counter
|
|
}
|
|
}
|
|
|
|
// // right now the only repository field that a user
|
|
// // can update is the visibility field.
|
|
// if govalidator.IsIn(in.Visibility,
|
|
// core.VisibilityInternal,
|
|
// core.VisibilityPrivate,
|
|
// core.VisibilityPublic,
|
|
// ) {
|
|
// repo.Visibility = in.Visibility
|
|
// }
|
|
|
|
err = repos.Update(r.Context(), repo)
|
|
if err != nil {
|
|
render.InternalError(w, err)
|
|
logger.FromRequest(r).
|
|
WithError(err).
|
|
WithField("repository", slug).
|
|
Warnln("api: cannot update repository")
|
|
return
|
|
}
|
|
|
|
render.JSON(w, repo, 200)
|
|
}
|
|
}
|