mirror of
https://github.com/jc21/nginx-proxy-manager.git
synced 2024-08-30 18:22:48 +00:00
131 lines
3.8 KiB
Go
131 lines
3.8 KiB
Go
|
package handler
|
||
|
|
||
|
import (
|
||
|
"encoding/json"
|
||
|
"fmt"
|
||
|
"net/http"
|
||
|
|
||
|
c "npm/internal/api/context"
|
||
|
h "npm/internal/api/http"
|
||
|
"npm/internal/api/middleware"
|
||
|
"npm/internal/entity/host"
|
||
|
"npm/internal/entity/hosttemplate"
|
||
|
)
|
||
|
|
||
|
// GetHostTemplates will return a list of Host Templates
|
||
|
// Route: GET /host-templates
|
||
|
func GetHostTemplates() func(http.ResponseWriter, *http.Request) {
|
||
|
return func(w http.ResponseWriter, r *http.Request) {
|
||
|
pageInfo, err := getPageInfoFromRequest(r)
|
||
|
if err != nil {
|
||
|
h.ResultErrorJSON(w, r, http.StatusBadRequest, err.Error(), nil)
|
||
|
return
|
||
|
}
|
||
|
|
||
|
hosts, err := hosttemplate.List(pageInfo, middleware.GetFiltersFromContext(r))
|
||
|
if err != nil {
|
||
|
h.ResultErrorJSON(w, r, http.StatusBadRequest, err.Error(), nil)
|
||
|
} else {
|
||
|
h.ResultResponseJSON(w, r, http.StatusOK, hosts)
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// GetHostTemplate will return a single Host Template
|
||
|
// Route: GET /host-templates/{templateID}
|
||
|
func GetHostTemplate() func(http.ResponseWriter, *http.Request) {
|
||
|
return func(w http.ResponseWriter, r *http.Request) {
|
||
|
var err error
|
||
|
var templateID int
|
||
|
if templateID, err = getURLParamInt(r, "templateID"); err != nil {
|
||
|
h.ResultErrorJSON(w, r, http.StatusBadRequest, err.Error(), nil)
|
||
|
return
|
||
|
}
|
||
|
|
||
|
host, err := hosttemplate.GetByID(templateID)
|
||
|
if err != nil {
|
||
|
h.ResultErrorJSON(w, r, http.StatusBadRequest, err.Error(), nil)
|
||
|
} else {
|
||
|
h.ResultResponseJSON(w, r, http.StatusOK, host)
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// CreateHostTemplate will create a Host Template
|
||
|
// Route: POST /host-templates
|
||
|
func CreateHostTemplate() func(http.ResponseWriter, *http.Request) {
|
||
|
return func(w http.ResponseWriter, r *http.Request) {
|
||
|
bodyBytes, _ := r.Context().Value(c.BodyCtxKey).([]byte)
|
||
|
|
||
|
var newHostTemplate hosttemplate.Model
|
||
|
err := json.Unmarshal(bodyBytes, &newHostTemplate)
|
||
|
if err != nil {
|
||
|
h.ResultErrorJSON(w, r, http.StatusBadRequest, h.ErrInvalidPayload.Error(), nil)
|
||
|
return
|
||
|
}
|
||
|
|
||
|
// Get userID from token
|
||
|
userID, _ := r.Context().Value(c.UserIDCtxKey).(int)
|
||
|
newHostTemplate.UserID = userID
|
||
|
|
||
|
if err = newHostTemplate.Save(); err != nil {
|
||
|
h.ResultErrorJSON(w, r, http.StatusBadRequest, fmt.Sprintf("Unable to save Host Template: %s", err.Error()), nil)
|
||
|
return
|
||
|
}
|
||
|
|
||
|
h.ResultResponseJSON(w, r, http.StatusOK, newHostTemplate)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// UpdateHostTemplate updates a host template
|
||
|
// Route: PUT /host-templates/{templateID}
|
||
|
func UpdateHostTemplate() func(http.ResponseWriter, *http.Request) {
|
||
|
return func(w http.ResponseWriter, r *http.Request) {
|
||
|
var err error
|
||
|
var templateID int
|
||
|
if templateID, err = getURLParamInt(r, "templateID"); err != nil {
|
||
|
h.ResultErrorJSON(w, r, http.StatusBadRequest, err.Error(), nil)
|
||
|
return
|
||
|
}
|
||
|
|
||
|
hostTemplate, err := hosttemplate.GetByID(templateID)
|
||
|
if err != nil {
|
||
|
h.ResultErrorJSON(w, r, http.StatusBadRequest, err.Error(), nil)
|
||
|
} else {
|
||
|
bodyBytes, _ := r.Context().Value(c.BodyCtxKey).([]byte)
|
||
|
err := json.Unmarshal(bodyBytes, &hostTemplate)
|
||
|
if err != nil {
|
||
|
h.ResultErrorJSON(w, r, http.StatusBadRequest, h.ErrInvalidPayload.Error(), nil)
|
||
|
return
|
||
|
}
|
||
|
|
||
|
if err = hostTemplate.Save(); err != nil {
|
||
|
h.ResultErrorJSON(w, r, http.StatusBadRequest, err.Error(), nil)
|
||
|
return
|
||
|
}
|
||
|
|
||
|
h.ResultResponseJSON(w, r, http.StatusOK, hostTemplate)
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// DeleteHostTemplate removes a host template
|
||
|
// Route: DELETE /host-templates/{templateID}
|
||
|
func DeleteHostTemplate() func(http.ResponseWriter, *http.Request) {
|
||
|
return func(w http.ResponseWriter, r *http.Request) {
|
||
|
var err error
|
||
|
var templateID int
|
||
|
if templateID, err = getURLParamInt(r, "templateID"); err != nil {
|
||
|
h.ResultErrorJSON(w, r, http.StatusBadRequest, err.Error(), nil)
|
||
|
return
|
||
|
}
|
||
|
|
||
|
hostTemplate, err := host.GetByID(templateID)
|
||
|
if err != nil {
|
||
|
h.ResultErrorJSON(w, r, http.StatusBadRequest, err.Error(), nil)
|
||
|
} else {
|
||
|
h.ResultResponseJSON(w, r, http.StatusOK, hostTemplate.Delete())
|
||
|
}
|
||
|
}
|
||
|
}
|