happyDomain/api/service_settings.go

135 lines
4.4 KiB
Go
Raw Permalink Normal View History

2023-12-24 10:18:08 +00:00
// This file is part of the happyDomain (R) project.
// Copyright (c) 2020-2024 happyDomain
// Authors: Pierre-Olivier Mercier, et al.
2020-10-12 09:51:16 +00:00
//
2023-12-24 10:18:08 +00:00
// This program is offered under a commercial and under the AGPL license.
// For commercial licensing, contact us at <contact@happydomain.org>.
2020-10-12 09:51:16 +00:00
//
2023-12-24 10:18:08 +00:00
// For AGPL licensing:
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
2020-10-12 09:51:16 +00:00
//
2023-12-24 10:18:08 +00:00
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
2020-10-12 09:51:16 +00:00
//
2023-12-24 10:18:08 +00:00
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
2020-10-12 09:51:16 +00:00
package api
import (
2021-05-05 01:48:16 +00:00
"fmt"
"log"
"net/http"
"github.com/gin-gonic/gin"
2020-10-12 09:51:16 +00:00
2023-09-07 09:37:18 +00:00
"git.happydns.org/happyDomain/config"
"git.happydns.org/happyDomain/forms"
"git.happydns.org/happyDomain/model"
"git.happydns.org/happyDomain/services"
"git.happydns.org/happyDomain/storage"
2020-10-12 09:51:16 +00:00
)
2021-05-05 01:48:16 +00:00
func declareServiceSettingsRoutes(cfg *config.Options, router *gin.RouterGroup) {
router.POST("/services/*psid", func(c *gin.Context) {
getServiceSettingsState(cfg, c)
})
2020-10-12 09:51:16 +00:00
}
type ServiceSettingsState struct {
FormState
2023-08-05 16:15:52 +00:00
happydns.Service `json:"Service" swaggertype:"object"`
2020-10-12 09:51:16 +00:00
}
type ServiceSettingsResponse struct {
Services map[string][]*happydns.ServiceCombined `json:"services,omitempty"`
2023-08-05 16:15:52 +00:00
Values map[string]interface{} `json:"values,omitempty"`
Form *forms.CustomForm `json:"form,omitempty"`
2020-10-12 09:51:16 +00:00
}
2023-08-05 16:15:52 +00:00
// getServiceSettingsState creates or updates a Service with human fillable forms.
2023-09-07 09:37:18 +00:00
//
2023-08-05 16:15:52 +00:00
// @Summary Assistant to Service creation.
// @Schemes
// @Description This creates or updates a Service with human fillable forms.
// @Tags service_specs
// @Accept json
// @Produce json
// @Param serviceType path string true "The service's type"
// @Param body body ServiceSettingsState true "The current state of the Service's parameters, possibly empty (but not null)"
// @Security securitydefinitions.basic
// @Success 200 {object} ServiceSettingsResponse "The settings need more rafinement"
// @Success 200 {object} happydns.ServiceCombined "The Service has been created with the given settings"
// @Failure 400 {object} happydns.Error "Invalid input"
// @Failure 401 {object} happydns.Error "Authentication failure"
// @Failure 404 {object} happydns.Error "Service not found"
// @Router /service/{serviceType} [post]
2021-05-05 01:48:16 +00:00
func getServiceSettingsState(cfg *config.Options, c *gin.Context) {
domain := c.MustGet("domain").(*happydns.Domain)
zone := c.MustGet("zone").(*happydns.Zone)
subdomain := c.MustGet("subdomain").(string)
psid := string(c.Param("psid"))
2020-10-12 09:51:16 +00:00
// Remove the leading slash
if len(psid) > 1 {
psid = psid[1:]
}
pvr, err := svcs.FindService(psid)
if err != nil {
c.AbortWithStatusJSON(http.StatusNotFound, fmt.Sprintf("Unable to find this service: %s", err.Error()))
2021-05-05 01:48:16 +00:00
return
2020-10-12 09:51:16 +00:00
}
var ups ServiceSettingsState
ups.Service = pvr
2021-05-05 01:48:16 +00:00
err = c.ShouldBindJSON(&ups)
2020-10-12 09:51:16 +00:00
if err != nil {
log.Printf("%s sends invalid ServiceSettingsState JSON: %s", c.ClientIP(), err.Error())
c.AbortWithStatusJSON(http.StatusBadRequest, gin.H{"errmsg": fmt.Sprintf("Something is wrong in received data: %s", err.Error())})
2021-05-05 01:48:16 +00:00
return
2020-10-12 09:51:16 +00:00
}
form, p, err := formDoState(cfg, c, &ups.FormState, ups.Service, forms.GenDefaultSettingsForm)
2020-10-12 09:51:16 +00:00
if err != nil {
if err != forms.DoneForm {
2021-05-05 01:48:16 +00:00
c.AbortWithStatusJSON(http.StatusBadRequest, gin.H{"errmsg": err.Error()})
return
2020-12-01 15:28:54 +00:00
} else if ups.Id == nil {
2020-10-12 09:51:16 +00:00
// Append a new Service
2021-05-05 01:48:16 +00:00
err = zone.AppendService(subdomain, domain.DomainName, &happydns.ServiceCombined{Service: ups.Service})
return
2020-10-12 09:51:16 +00:00
} else {
// Update an existing Service
err = zone.EraseServiceWithoutMeta(subdomain, domain.DomainName, *ups.Id, ups)
2020-10-12 09:51:16 +00:00
}
2021-05-05 01:48:16 +00:00
if err != nil {
c.AbortWithStatusJSON(http.StatusBadRequest, gin.H{"errmsg": err.Error()})
return
}
err = storage.MainStore.UpdateZone(zone)
if err != nil {
c.AbortWithStatusJSON(http.StatusBadRequest, gin.H{"errmsg": err.Error()})
return
}
c.JSON(http.StatusOK, ServiceSettingsResponse{
Services: zone.Services,
2021-05-05 01:48:16 +00:00
})
return
2020-10-12 09:51:16 +00:00
}
2021-05-05 01:48:16 +00:00
2023-08-05 16:15:52 +00:00
c.JSON(http.StatusOK, ServiceSettingsResponse{
Form: form,
Values: p,
2021-05-05 01:48:16 +00:00
})
2020-10-12 09:51:16 +00:00
}