gofmt
This commit is contained in:
parent
4ddfe9e5c4
commit
9b3a71e39c
1 changed files with 27 additions and 31 deletions
|
@ -22,101 +22,101 @@ import (
|
||||||
|
|
||||||
const (
|
const (
|
||||||
AssociatedDomainSuffix = "adlin2020.p0m.fr."
|
AssociatedDomainSuffix = "adlin2020.p0m.fr."
|
||||||
DelegatedDomainSuffix = "srs.p0m.fr."
|
DelegatedDomainSuffix = "srs.p0m.fr."
|
||||||
)
|
)
|
||||||
|
|
||||||
var tsigSecret = map[string]string{"ddns.": ""}
|
var tsigSecret = map[string]string{"ddns.": "so6ZGir4GPAqINNh9U5c3A=="}
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
router.GET("/api/adomains/", apiAuthHandler(func (student Student, ps httprouter.Params, body []byte) (interface{}, error) {
|
router.GET("/api/adomains/", apiAuthHandler(func(student Student, ps httprouter.Params, body []byte) (interface{}, error) {
|
||||||
return student.GetAssociatedDomains(), nil
|
return student.GetAssociatedDomains(), nil
|
||||||
}))
|
}))
|
||||||
router.POST("/api/adomains/", apiAuthHandler(func (student Student, ps httprouter.Params, body []byte) (interface{}, error) {
|
router.POST("/api/adomains/", apiAuthHandler(func(student Student, ps httprouter.Params, body []byte) (interface{}, error) {
|
||||||
return true, student.AddAssociatedDomains()
|
return true, student.AddAssociatedDomains()
|
||||||
}))
|
}))
|
||||||
router.GET("/api/adomains/:dn", apiAuthHandler(func (student Student, ps httprouter.Params, body []byte) (interface{}, error) {
|
router.GET("/api/adomains/:dn", apiAuthHandler(func(student Student, ps httprouter.Params, body []byte) (interface{}, error) {
|
||||||
return student.GetAssociatedDomain(ps.ByName("dn"))
|
return student.GetAssociatedDomain(ps.ByName("dn"))
|
||||||
}))
|
}))
|
||||||
|
|
||||||
router.GET("/api/ddomains/", apiAuthHandler(func (student Student, ps httprouter.Params, body []byte) (interface{}, error) {
|
router.GET("/api/ddomains/", apiAuthHandler(func(student Student, ps httprouter.Params, body []byte) (interface{}, error) {
|
||||||
return []string{student.MyDelegatedDomain()}, nil
|
return []string{student.MyDelegatedDomain()}, nil
|
||||||
}))
|
}))
|
||||||
router.GET("/api/ddomains/:dn/", apiAuthHandler(func (student Student, ps httprouter.Params, body []byte) (interface{}, error) {
|
router.GET("/api/ddomains/:dn/", apiAuthHandler(func(student Student, ps httprouter.Params, body []byte) (interface{}, error) {
|
||||||
return student.getRRDelegatedDomain(ps.ByName("dn"), "")
|
return student.getRRDelegatedDomain(ps.ByName("dn"), "")
|
||||||
}))
|
}))
|
||||||
router.GET("/api/ddomains/:dn/NS", apiAuthHandler(func (student Student, ps httprouter.Params, body []byte) (interface{}, error) {
|
router.GET("/api/ddomains/:dn/NS", apiAuthHandler(func(student Student, ps httprouter.Params, body []byte) (interface{}, error) {
|
||||||
return student.getRRDelegatedDomain(ps.ByName("dn"), "NS")
|
return student.getRRDelegatedDomain(ps.ByName("dn"), "NS")
|
||||||
}))
|
}))
|
||||||
router.POST("/api/ddomains/:dn/NS", apiAuthHandler(func (student Student, ps httprouter.Params, body []byte) (interface{}, error) {
|
router.POST("/api/ddomains/:dn/NS", apiAuthHandler(func(student Student, ps httprouter.Params, body []byte) (interface{}, error) {
|
||||||
var ue Entry
|
var ue Entry
|
||||||
if err := json.Unmarshal(body, &ue); err != nil {
|
if err := json.Unmarshal(body, &ue); err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
return true, student.AddNSDelegatedDomain(ps.ByName("dn"), ue.TTL, ue.Values)
|
return true, student.AddNSDelegatedDomain(ps.ByName("dn"), ue.TTL, ue.Values)
|
||||||
}))
|
}))
|
||||||
router.PATCH("/api/ddomains/:dn/NS", apiAuthHandler(func (student Student, ps httprouter.Params, body []byte) (interface{}, error) {
|
router.PATCH("/api/ddomains/:dn/NS", apiAuthHandler(func(student Student, ps httprouter.Params, body []byte) (interface{}, error) {
|
||||||
var ue Entry
|
var ue Entry
|
||||||
if err := json.Unmarshal(body, &ue); err != nil {
|
if err := json.Unmarshal(body, &ue); err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
return true, student.UpdateNSDelegatedDomain(ps.ByName("dn"), ue.TTL, ue.ValuesFrom, ue.Values)
|
return true, student.UpdateNSDelegatedDomain(ps.ByName("dn"), ue.TTL, ue.ValuesFrom, ue.Values)
|
||||||
}))
|
}))
|
||||||
router.DELETE("/api/ddomains/:dn/NS", apiAuthHandler(func (student Student, ps httprouter.Params, body []byte) (interface{}, error) {
|
router.DELETE("/api/ddomains/:dn/NS", apiAuthHandler(func(student Student, ps httprouter.Params, body []byte) (interface{}, error) {
|
||||||
var ue Entry
|
var ue Entry
|
||||||
if err := json.Unmarshal(body, &ue); err != nil {
|
if err := json.Unmarshal(body, &ue); err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
return true, student.DeleteRRDelegatedDomain(ps.ByName("dn"), "NS", ue.Values)
|
return true, student.DeleteRRDelegatedDomain(ps.ByName("dn"), "NS", ue.Values)
|
||||||
}))
|
}))
|
||||||
router.GET("/api/ddomains/:dn/GLUE", apiAuthHandler(func (student Student, ps httprouter.Params, body []byte) (interface{}, error) {
|
router.GET("/api/ddomains/:dn/GLUE", apiAuthHandler(func(student Student, ps httprouter.Params, body []byte) (interface{}, error) {
|
||||||
return student.getRRDelegatedDomain(ps.ByName("dn"), "AAAA")
|
return student.getRRDelegatedDomain(ps.ByName("dn"), "AAAA")
|
||||||
}))
|
}))
|
||||||
router.POST("/api/ddomains/:dn/AAAA", apiAuthHandler(func (student Student, ps httprouter.Params, body []byte) (interface{}, error) {
|
router.POST("/api/ddomains/:dn/AAAA", apiAuthHandler(func(student Student, ps httprouter.Params, body []byte) (interface{}, error) {
|
||||||
var ue Entry
|
var ue Entry
|
||||||
if err := json.Unmarshal(body, &ue); err != nil {
|
if err := json.Unmarshal(body, &ue); err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
return true, student.AddGLUEDelegatedDomain(ps.ByName("dn"), ue.TTL, ue.Values)
|
return true, student.AddGLUEDelegatedDomain(ps.ByName("dn"), ue.TTL, ue.Values)
|
||||||
}))
|
}))
|
||||||
router.PATCH("/api/ddomains/:dn/AAAA", apiAuthHandler(func (student Student, ps httprouter.Params, body []byte) (interface{}, error) {
|
router.PATCH("/api/ddomains/:dn/AAAA", apiAuthHandler(func(student Student, ps httprouter.Params, body []byte) (interface{}, error) {
|
||||||
var ue Entry
|
var ue Entry
|
||||||
if err := json.Unmarshal(body, &ue); err != nil {
|
if err := json.Unmarshal(body, &ue); err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
return true, student.UpdateGLUEDelegatedDomain(ps.ByName("dn"), ue.TTL, ue.ValuesFrom, ue.Values)
|
return true, student.UpdateGLUEDelegatedDomain(ps.ByName("dn"), ue.TTL, ue.ValuesFrom, ue.Values)
|
||||||
}))
|
}))
|
||||||
router.POST("/api/ddomains/:dn/GLUE", apiAuthHandler(func (student Student, ps httprouter.Params, body []byte) (interface{}, error) {
|
router.POST("/api/ddomains/:dn/GLUE", apiAuthHandler(func(student Student, ps httprouter.Params, body []byte) (interface{}, error) {
|
||||||
var ue Entry
|
var ue Entry
|
||||||
if err := json.Unmarshal(body, &ue); err != nil {
|
if err := json.Unmarshal(body, &ue); err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
return true, student.UpdateGLUEDelegatedDomain(ps.ByName("dn"), ue.TTL, ue.ValuesFrom, ue.Values)
|
return true, student.UpdateGLUEDelegatedDomain(ps.ByName("dn"), ue.TTL, ue.ValuesFrom, ue.Values)
|
||||||
}))
|
}))
|
||||||
router.DELETE("/api/ddomains/:dn/AAAA", apiAuthHandler(func (student Student, ps httprouter.Params, body []byte) (interface{}, error) {
|
router.DELETE("/api/ddomains/:dn/AAAA", apiAuthHandler(func(student Student, ps httprouter.Params, body []byte) (interface{}, error) {
|
||||||
var ue Entry
|
var ue Entry
|
||||||
if err := json.Unmarshal(body, &ue); err != nil {
|
if err := json.Unmarshal(body, &ue); err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
return true, student.DeleteRRDelegatedDomain(ps.ByName("dn"), "AAAA", ue.Values)
|
return true, student.DeleteRRDelegatedDomain(ps.ByName("dn"), "AAAA", ue.Values)
|
||||||
}))
|
}))
|
||||||
router.GET("/api/ddomains/:dn/DS", apiAuthHandler(func (student Student, ps httprouter.Params, body []byte) (interface{}, error) {
|
router.GET("/api/ddomains/:dn/DS", apiAuthHandler(func(student Student, ps httprouter.Params, body []byte) (interface{}, error) {
|
||||||
return student.getRRDelegatedDomain(ps.ByName("dn"), "DS")
|
return student.getRRDelegatedDomain(ps.ByName("dn"), "DS")
|
||||||
}))
|
}))
|
||||||
router.POST("/api/ddomains/:dn/DS", apiAuthHandler(func (student Student, ps httprouter.Params, body []byte) (interface{}, error) {
|
router.POST("/api/ddomains/:dn/DS", apiAuthHandler(func(student Student, ps httprouter.Params, body []byte) (interface{}, error) {
|
||||||
var ue Entry
|
var ue Entry
|
||||||
if err := json.Unmarshal(body, &ue); err != nil {
|
if err := json.Unmarshal(body, &ue); err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
return true, student.AddDSDelegatedDomain(ps.ByName("dn"), ue.TTL, ue.Values)
|
return true, student.AddDSDelegatedDomain(ps.ByName("dn"), ue.TTL, ue.Values)
|
||||||
}))
|
}))
|
||||||
router.PATCH("/api/ddomains/:dn/DS", apiAuthHandler(func (student Student, ps httprouter.Params, body []byte) (interface{}, error) {
|
router.PATCH("/api/ddomains/:dn/DS", apiAuthHandler(func(student Student, ps httprouter.Params, body []byte) (interface{}, error) {
|
||||||
var ue Entry
|
var ue Entry
|
||||||
if err := json.Unmarshal(body, &ue); err != nil {
|
if err := json.Unmarshal(body, &ue); err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
return true, student.UpdateDSDelegatedDomain(ps.ByName("dn"), ue.TTL, ue.ValuesFrom, ue.Values)
|
return true, student.UpdateDSDelegatedDomain(ps.ByName("dn"), ue.TTL, ue.ValuesFrom, ue.Values)
|
||||||
}))
|
}))
|
||||||
router.DELETE("/api/ddomains/:dn/DS", apiAuthHandler(func (student Student, ps httprouter.Params, body []byte) (interface{}, error) {
|
router.DELETE("/api/ddomains/:dn/DS", apiAuthHandler(func(student Student, ps httprouter.Params, body []byte) (interface{}, error) {
|
||||||
var ue Entry
|
var ue Entry
|
||||||
if err := json.Unmarshal(body, &ue); err != nil {
|
if err := json.Unmarshal(body, &ue); err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
|
@ -126,11 +126,11 @@ func init() {
|
||||||
}
|
}
|
||||||
|
|
||||||
type Entry struct {
|
type Entry struct {
|
||||||
Domain string `json:"domain"`
|
Domain string `json:"domain"`
|
||||||
TTL uint32 `json:"ttl"`
|
TTL uint32 `json:"ttl"`
|
||||||
RR string `json:"rr"`
|
RR string `json:"rr"`
|
||||||
ValuesFrom string `json:"valuesfrom,omitempty"`
|
ValuesFrom string `json:"valuesfrom,omitempty"`
|
||||||
Values string `json:"values"`
|
Values string `json:"values"`
|
||||||
}
|
}
|
||||||
|
|
||||||
func runKnotc(args ...string) (out []byte, err error) {
|
func runKnotc(args ...string) (out []byte, err error) {
|
||||||
|
@ -169,7 +169,7 @@ func parseKnotZoneRead(globalDomain string, domain string) (rr []Entry, err erro
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
func (student Student) myAssociatedDomain() (string) {
|
func (student Student) myAssociatedDomain() string {
|
||||||
return fmt.Sprintf("%s.%s", strings.Trim(strings.Replace(student.Login, "_", "-", -1), "-_"), AssociatedDomainSuffix)
|
return fmt.Sprintf("%s.%s", strings.Trim(strings.Replace(student.Login, "_", "-", -1), "-_"), AssociatedDomainSuffix)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -242,8 +242,7 @@ func (student Student) AddAssociatedDomains() (err error) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (student Student) MyDelegatedDomain() string {
|
||||||
func (student Student) MyDelegatedDomain() (string) {
|
|
||||||
return fmt.Sprintf("%s.%s", strings.Trim(strings.Replace(student.Login, "_", "-", -1), "-_"), DelegatedDomainSuffix)
|
return fmt.Sprintf("%s.%s", strings.Trim(strings.Replace(student.Login, "_", "-", -1), "-_"), DelegatedDomainSuffix)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -316,7 +315,6 @@ func (student Student) UpdateNSDelegatedDomain(dn string, ttl uint32, oldns stri
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
func (student Student) AddGLUEDelegatedDomain(dn string, ttl uint32, aaaa string) (err error) {
|
func (student Student) AddGLUEDelegatedDomain(dn string, ttl uint32, aaaa string) (err error) {
|
||||||
domains := []string{student.MyDelegatedDomain()}
|
domains := []string{student.MyDelegatedDomain()}
|
||||||
found := false
|
found := false
|
||||||
|
@ -383,7 +381,6 @@ func (student Student) UpdateGLUEDelegatedDomain(dn string, ttl uint32, oldaaaa
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
func (student Student) AddDSDelegatedDomain(dn string, ttl uint32, rdata string) (err error) {
|
func (student Student) AddDSDelegatedDomain(dn string, ttl uint32, rdata string) (err error) {
|
||||||
dnskey := strings.Split(rdata, " ")
|
dnskey := strings.Split(rdata, " ")
|
||||||
|
|
||||||
|
@ -457,7 +454,6 @@ func (student Student) UpdateDSDelegatedDomain(dn string, ttl uint32, oldds stri
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
func (student Student) DeleteRRDelegatedDomain(dn string, rr string, values ...string) (err error) {
|
func (student Student) DeleteRRDelegatedDomain(dn string, rr string, values ...string) (err error) {
|
||||||
domains := []string{student.MyDelegatedDomain()}
|
domains := []string{student.MyDelegatedDomain()}
|
||||||
found := false
|
found := false
|
||||||
|
|
Reference in a new issue