You've already forked nginx-proxy-manager
							
							
				mirror of
				https://github.com/NginxProxyManager/nginx-proxy-manager.git
				synced 2025-10-30 18:05:34 +03:00 
			
		
		
		
	- Renamed host templates to nginx templates - Generate upstream templates - Better nginx error reporting when reloading - Use tparse for golang test reporting
		
			
				
	
	
		
			139 lines
		
	
	
		
			4.1 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			139 lines
		
	
	
		
			4.1 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| package handler
 | |
| 
 | |
| import (
 | |
| 	"database/sql"
 | |
| 	"encoding/json"
 | |
| 	"fmt"
 | |
| 	"net/http"
 | |
| 
 | |
| 	c "npm/internal/api/context"
 | |
| 	h "npm/internal/api/http"
 | |
| 	"npm/internal/api/middleware"
 | |
| 	"npm/internal/entity/nginxtemplate"
 | |
| )
 | |
| 
 | |
| // GetNginxTemplates will return a list of Nginx Templates
 | |
| // Route: GET /nginx-templates
 | |
| func GetNginxTemplates() 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
 | |
| 		}
 | |
| 
 | |
| 		items, err := nginxtemplate.List(pageInfo, middleware.GetFiltersFromContext(r))
 | |
| 		if err != nil {
 | |
| 			h.ResultErrorJSON(w, r, http.StatusBadRequest, err.Error(), nil)
 | |
| 		} else {
 | |
| 			h.ResultResponseJSON(w, r, http.StatusOK, items)
 | |
| 		}
 | |
| 	}
 | |
| }
 | |
| 
 | |
| // GetNginxTemplate will return a single Nginx Template
 | |
| // Route: GET /nginx-templates/{templateID}
 | |
| func GetNginxTemplate() 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
 | |
| 		}
 | |
| 
 | |
| 		item, err := nginxtemplate.GetByID(templateID)
 | |
| 		switch err {
 | |
| 		case sql.ErrNoRows:
 | |
| 			h.ResultErrorJSON(w, r, http.StatusNotFound, "Not found", nil)
 | |
| 		case nil:
 | |
| 			h.ResultResponseJSON(w, r, http.StatusOK, item)
 | |
| 		default:
 | |
| 			h.ResultErrorJSON(w, r, http.StatusBadRequest, err.Error(), nil)
 | |
| 		}
 | |
| 	}
 | |
| }
 | |
| 
 | |
| // CreateNginxTemplate will create a Nginx Template
 | |
| // Route: POST /nginx-templates
 | |
| func CreateNginxTemplate() func(http.ResponseWriter, *http.Request) {
 | |
| 	return func(w http.ResponseWriter, r *http.Request) {
 | |
| 		bodyBytes, _ := r.Context().Value(c.BodyCtxKey).([]byte)
 | |
| 
 | |
| 		var newNginxTemplate nginxtemplate.Model
 | |
| 		err := json.Unmarshal(bodyBytes, &newNginxTemplate)
 | |
| 		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)
 | |
| 		newNginxTemplate.UserID = userID
 | |
| 
 | |
| 		if err = newNginxTemplate.Save(); err != nil {
 | |
| 			h.ResultErrorJSON(w, r, http.StatusBadRequest, fmt.Sprintf("Unable to save Nginx Template: %s", err.Error()), nil)
 | |
| 			return
 | |
| 		}
 | |
| 
 | |
| 		h.ResultResponseJSON(w, r, http.StatusOK, newNginxTemplate)
 | |
| 	}
 | |
| }
 | |
| 
 | |
| // UpdateNginxTemplate updates a nginx template
 | |
| // Route: PUT /nginx-templates/{templateID}
 | |
| func UpdateNginxTemplate() 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
 | |
| 		}
 | |
| 
 | |
| 		// reconfigure, _ := getQueryVarBool(r, "reconfigure", false, false)
 | |
| 
 | |
| 		nginxTemplate, err := nginxtemplate.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, &nginxTemplate)
 | |
| 			if err != nil {
 | |
| 				h.ResultErrorJSON(w, r, http.StatusBadRequest, h.ErrInvalidPayload.Error(), nil)
 | |
| 				return
 | |
| 			}
 | |
| 
 | |
| 			if err = nginxTemplate.Save(); err != nil {
 | |
| 				h.ResultErrorJSON(w, r, http.StatusBadRequest, err.Error(), nil)
 | |
| 				return
 | |
| 			}
 | |
| 
 | |
| 			h.ResultResponseJSON(w, r, http.StatusOK, nginxTemplate)
 | |
| 		}
 | |
| 	}
 | |
| }
 | |
| 
 | |
| // DeleteNginxTemplate removes a nginx template
 | |
| // Route: DELETE /nginx-templates/{templateID}
 | |
| func DeleteNginxTemplate() 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
 | |
| 		}
 | |
| 
 | |
| 		item, err := nginxtemplate.GetByID(templateID)
 | |
| 		switch err {
 | |
| 		case sql.ErrNoRows:
 | |
| 			h.ResultErrorJSON(w, r, http.StatusNotFound, "Not found", nil)
 | |
| 		case nil:
 | |
| 			h.ResultResponseJSON(w, r, http.StatusOK, item.Delete())
 | |
| 		default:
 | |
| 			h.ResultErrorJSON(w, r, http.StatusBadRequest, err.Error(), nil)
 | |
| 		}
 | |
| 	}
 | |
| }
 |