happyDomain/api/source_specs.go

109 lines
3.2 KiB
Go
Raw Normal View History

2020-05-04 14:58:02 +00:00
// Copyright or © or Copr. happyDNS (2020)
//
// contact@happydns.org
//
// This software is a computer program whose purpose is to provide a modern
// interface to interact with DNS systems.
//
// This software is governed by the CeCILL license under French law and abiding
// by the rules of distribution of free software. You can use, modify and/or
// redistribute the software under the terms of the CeCILL license as
// circulated by CEA, CNRS and INRIA at the following URL
// "http://www.cecill.info".
//
// As a counterpart to the access to the source code and rights to copy, modify
// and redistribute granted by the license, users are provided only with a
// limited warranty and the software's author, the holder of the economic
// rights, and the successive licensors have only limited liability.
//
// In this respect, the user's attention is drawn to the risks associated with
// loading, using, modifying and/or developing or reproducing the software by
// the user in light of its specific status of free software, that may mean
// that it is complicated to manipulate, and that also therefore means that it
// is reserved for developers and experienced professionals having in-depth
// computer knowledge. Users are therefore encouraged to load and test the
// software's suitability as regards their requirements in conditions enabling
// the security of their systems and/or data to be ensured and, more generally,
// to use and operate it in the same conditions as regards security.
//
// The fact that you are presently reading this means that you have had
// knowledge of the CeCILL license and that you accept its terms.
2020-04-23 20:26:02 +00:00
package api
import (
2020-04-27 17:32:46 +00:00
"bytes"
"errors"
2020-04-23 20:26:02 +00:00
"io"
2020-04-27 17:32:46 +00:00
"net/http"
2020-04-23 20:26:02 +00:00
"strings"
"github.com/julienschmidt/httprouter"
"git.happydns.org/happydns/config"
"git.happydns.org/happydns/sources"
)
func init() {
2020-06-08 19:07:53 +00:00
router.GET("/api/source_specs", ApiHandler(getSourceSpecs))
router.GET("/api/source_specs/*ssid", ApiHandler(getSourceSpec))
2020-04-23 20:26:02 +00:00
}
func getSourceSpecs(_ *config.Options, p httprouter.Params, body io.Reader) Response {
srcs := sources.GetSources()
ret := map[string]sources.SourceInfos{}
for k, src := range *srcs {
ret[k] = src.Infos
}
return APIResponse{
response: ret,
}
}
2020-04-27 17:32:46 +00:00
func getSourceSpecImg(ssid string) Response {
if cnt, ok := sources.Icons[strings.TrimSuffix(ssid, ".png")]; ok {
return &FileResponse{
contentType: "image/png",
content: bytes.NewBuffer(cnt),
}
} else {
return APIErrorResponse{
status: http.StatusNotFound,
err: errors.New("Icon not found."),
}
}
}
type viewSourceSpec struct {
2020-07-18 01:35:27 +00:00
Fields []*sources.SourceField `json:"fields,omitempty"`
Capabilities []string `json:"capabilities,omitempty"`
}
2020-04-23 20:26:02 +00:00
func getSourceSpec(_ *config.Options, p httprouter.Params, body io.Reader) Response {
ssid := string(p.ByName("ssid"))
2020-07-17 18:18:42 +00:00
// Remove the leading slash
2020-04-23 20:26:02 +00:00
if len(ssid) > 1 {
ssid = ssid[1:]
}
2020-04-27 17:32:46 +00:00
if strings.HasSuffix(ssid, ".png") {
return getSourceSpecImg(ssid)
}
2020-04-23 20:26:02 +00:00
src, err := sources.FindSource(ssid)
if err != nil {
return APIErrorResponse{
err: err,
}
}
return APIResponse{
2020-07-18 01:35:27 +00:00
response: viewSourceSpec{
Fields: sources.GenSourceFields(src),
Capabilities: sources.GetSourceCapabilities(src),
},
2020-04-23 20:26:02 +00:00
}
}