51 lines
1 KiB
Go
51 lines
1 KiB
Go
// Copyright 2019 Drone.IO Inc. All rights reserved.
|
|
// Use of this source code is governed by the Drone Non-Commercial License
|
|
// that can be found in the LICENSE file.
|
|
|
|
// +build !oss
|
|
|
|
package template
|
|
|
|
import (
|
|
"encoding/json"
|
|
"github.com/drone/drone/core"
|
|
"github.com/drone/drone/handler/api/render"
|
|
"net/http"
|
|
)
|
|
|
|
type templateInput struct {
|
|
Name string `json:"name"`
|
|
Data []byte `json:"data"`
|
|
}
|
|
|
|
// HandleCreate returns an http.HandlerFunc that processes http
|
|
// requests to create a new template.
|
|
func HandleCreate(secrets core.TemplateStore) http.HandlerFunc {
|
|
return func(w http.ResponseWriter, r *http.Request) {
|
|
in := new(templateInput)
|
|
err := json.NewDecoder(r.Body).Decode(in)
|
|
if err != nil {
|
|
render.BadRequest(w, err)
|
|
return
|
|
}
|
|
|
|
t := &core.Template{
|
|
Name: in.Name,
|
|
Data: in.Data,
|
|
}
|
|
|
|
err = t.Validate()
|
|
if err != nil {
|
|
render.BadRequest(w, err)
|
|
return
|
|
}
|
|
|
|
err = secrets.Create(r.Context(), t)
|
|
if err != nil {
|
|
render.InternalError(w, err)
|
|
return
|
|
}
|
|
|
|
render.JSON(w, t, 200)
|
|
}
|
|
}
|