jx/internal/folio/uri.go
Matthew Rich 8feb7b8d56
Some checks failed
Lint / golangci-lint (push) Failing after 10m1s
Declarative Tests / test (push) Failing after 14s
add support of import search paths [doublejynx/jx#7]
2024-10-16 10:26:42 -07:00

99 lines
1.9 KiB
Go

// Copyright 2024 Matthew Rich <matthewrich.conf@gmail.com>. All rights reserved.
package folio
import (
"net/url"
"decl/internal/transport"
"decl/internal/data"
"decl/internal/identifier"
"errors"
"strings"
)
var (
ErrInvalidURI error = errors.New("Invalid URI")
)
type URI identifier.ID
func NewURI(u *url.URL) URI {
return URI(u.String())
}
func (u URI) NewResource(document data.Document) (newResource data.Resource, err error) {
if document == nil {
declaration := NewDeclaration()
if err = declaration.NewResource((*string)(&u)); err == nil {
return declaration.Attributes, err
}
} else {
newResource, err = document.NewResource(string(u))
return
}
return
}
func (u URI) ConstructResource(res data.Resource) (err error) {
parsedURI := u.Parse()
if ri, ok := res.(data.ResourceInitializer); ok {
err = ri.Init(parsedURI)
} else {
err = res.SetParsedURI(parsedURI)
}
return
}
func (u URI) Converter() (converter data.Converter, err error) {
return DocumentRegistry.ConverterTypes.New(string(u))
}
func (u URI) Parse() data.URIParser {
url, e := url.Parse(string(u))
if e == nil {
return (*ParsedURI)(url)
}
return nil
}
func (u URI) Exists() bool {
return transport.ExistsURI(string(u))
}
func (u URI) ContentReaderStream() (*transport.Reader, error) {
return transport.NewReaderURI(string(u))
}
func (u URI) ContentWriterStream() (*transport.Writer, error) {
return transport.NewWriterURI(string(u))
}
func (u URI) String() string {
return string(u)
}
func (u *URI) SetURL(url *url.URL) {
(*identifier.ID)(u).SetURL(url)
}
func (u URI) Extension() (string, string) {
return (identifier.ID)(u).Extension()
}
func (u URI) ContentType() string {
var ext strings.Builder
exttype, fileext := u.Extension()
if fileext == "" {
return exttype
}
ext.WriteString(exttype)
ext.WriteRune('.')
ext.WriteString(fileext)
return ext.String()
}
func (u URI) IsEmpty() bool {
return (identifier.ID)(u).IsEmpty()
}