Rename internal/{checker,service,provider,notification} to
internal/{dnschecker,serviceanalyzer,providerregistry,notifier} so
imports no longer collide with the same-named usecase subpackages and
no longer require import aliases to disambiguate.
138 lines
3.6 KiB
Go
138 lines
3.6 KiB
Go
// This file is part of the happyDomain (R) project.
|
|
// Copyright (c) 2020-2024 happyDomain
|
|
// Authors: Pierre-Olivier Mercier, et al.
|
|
//
|
|
// This program is offered under a commercial and under the AGPL license.
|
|
// For commercial licensing, contact us at <contact@happydomain.org>.
|
|
//
|
|
// 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.
|
|
//
|
|
// 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.
|
|
//
|
|
// 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/>.
|
|
|
|
package svcs
|
|
|
|
import (
|
|
"github.com/miekg/dns"
|
|
|
|
"git.happydns.org/happyDomain/internal/helpers"
|
|
svc "git.happydns.org/happyDomain/internal/serviceanalyzer"
|
|
"git.happydns.org/happyDomain/model"
|
|
)
|
|
|
|
type CNAME struct {
|
|
Record *dns.CNAME `json:"cname"`
|
|
}
|
|
|
|
func (s *CNAME) GetNbResources() int {
|
|
return 1
|
|
}
|
|
|
|
func (s *CNAME) GenComment() string {
|
|
return s.Record.Target
|
|
}
|
|
|
|
func (s *CNAME) GetRecords(domain string, ttl uint32, origin string) (rrs []happydns.Record, e error) {
|
|
return []happydns.Record{s.Record}, nil
|
|
}
|
|
|
|
type SpecialCNAME struct {
|
|
Record *dns.CNAME `json:"cname"`
|
|
}
|
|
|
|
func (s *SpecialCNAME) GetNbResources() int {
|
|
return 1
|
|
}
|
|
|
|
func (s *SpecialCNAME) GenComment() string {
|
|
return "(" + s.Record.Hdr.Name + ") -> " + s.Record.Target
|
|
}
|
|
|
|
func (s *SpecialCNAME) GetRecords(domain string, ttl uint32, origin string) (rrs []happydns.Record, e error) {
|
|
return []happydns.Record{s.Record}, nil
|
|
}
|
|
|
|
func specialalias_analyze(a *svc.Analyzer) error {
|
|
// Try handle specials domains using CNAME
|
|
for _, record := range a.SearchRR(svc.AnalyzerRecordFilter{Type: dns.TypeCNAME, Prefix: "_"}) {
|
|
subdomains := SRV_DOMAIN.FindStringSubmatch(record.Header().Name)
|
|
if cname, ok := record.(*dns.CNAME); ok && len(subdomains) == 4 {
|
|
if err := a.UseRR(record, subdomains[3], &SpecialCNAME{
|
|
Record: helpers.RRRelativeSubdomain(cname, a.GetOrigin(), subdomains[3]).(*dns.CNAME),
|
|
}); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func alias_analyze(a *svc.Analyzer) error {
|
|
for _, record := range a.SearchRR(svc.AnalyzerRecordFilter{Type: dns.TypeCNAME}) {
|
|
if cname, ok := record.(*dns.CNAME); ok {
|
|
domain := record.Header().Name
|
|
if err := a.UseRR(record, domain, &CNAME{
|
|
Record: helpers.RRRelativeSubdomain(cname, a.GetOrigin(), domain).(*dns.CNAME),
|
|
}); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func init() {
|
|
svc.RegisterService(
|
|
func() happydns.ServiceBody {
|
|
return &SpecialCNAME{}
|
|
},
|
|
specialalias_analyze,
|
|
happydns.ServiceInfos{
|
|
Name: "SubAlias",
|
|
Description: "A service alias to another domain/service.",
|
|
Categories: []string{
|
|
"alias",
|
|
},
|
|
Restrictions: happydns.ServiceRestrictions{
|
|
NearAlone: true,
|
|
NeedTypes: []uint16{
|
|
dns.TypeCNAME,
|
|
},
|
|
},
|
|
},
|
|
99999997,
|
|
)
|
|
svc.RegisterService(
|
|
func() happydns.ServiceBody {
|
|
return &CNAME{}
|
|
},
|
|
alias_analyze,
|
|
happydns.ServiceInfos{
|
|
Name: "Alias",
|
|
Description: "Maps an alias to another (canonical) domain.",
|
|
Categories: []string{
|
|
"alias",
|
|
},
|
|
RecordTypes: []uint16{
|
|
dns.TypeCNAME,
|
|
},
|
|
Restrictions: happydns.ServiceRestrictions{
|
|
Alone: true,
|
|
Single: true,
|
|
NeedTypes: []uint16{
|
|
dns.TypeCNAME,
|
|
},
|
|
},
|
|
},
|
|
99999998,
|
|
)
|
|
}
|