]> Sergey Matveev's repositories - meta4ra.git/blobdiff - common.go
OpenSSH signatures inclusion support
[meta4ra.git] / common.go
index d7a23e6cbbbf0926a39e1850011902e6d34b6dff..dcd3e1634925bd25c139f5e82e6bcaa3b51463a6 100644 (file)
--- a/common.go
+++ b/common.go
@@ -1,6 +1,6 @@
 /*
 meta4a -- Metalink 4.0 creator
-Copyright (C) 2021-2022 Sergey Matveev <stargrave@stargrave.org>
+Copyright (C) 2021-2023 Sergey Matveev <stargrave@stargrave.org>
 
 This program is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
@@ -18,55 +18,8 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>.
 // Metalink 4.0 utilities
 package meta4ra
 
-import (
-       "encoding/xml"
-       "time"
-)
-
 const (
-       Generator       = "meta4ra/0.1.0"
-       GPGSigMediaType = "application/pgp-signature"
-       HashSHA256      = "sha-256"
-       HashSHA512      = "sha-512"
+       Generator       = "meta4ra/0.4.0"
+       SigMediaTypePGP = "application/pgp-signature"
+       SigMediaTypeSSH = "application/ssh-signature"
 )
-
-type Metalink struct {
-       XMLName   xml.Name  `xml:"urn:ietf:params:xml:ns:metalink metalink"`
-       Files     []File    `xml:"file"`
-       Generator string    `xml:"generator,,omitempty"`
-       Published time.Time `xml:"published,,omitempty"`
-}
-
-type File struct {
-       XMLName     xml.Name   `xml:"file"`
-       Name        string     `xml:"name,attr"`
-       Description string     `xml:"description,,omitempty"`
-       Hashes      []Hash     `xml:"hash,,omitempty"`
-       MetaURLs    []MetaURL  `xml:"metaurl,,omitempty"`
-       Signature   *Signature `xml:"signature"`
-       Size        uint64     `xml:"size,,omitempty"`
-       URLs        []URL      `xml:"url,,omitempty"`
-}
-
-type URL struct {
-       XMLName xml.Name `xml:"url"`
-       URL     string   `xml:",chardata"`
-}
-
-type Signature struct {
-       XMLName   xml.Name `xml:"signature"`
-       MediaType string   `xml:"mediatype,attr"`
-       Signature string   `xml:",cdata"`
-}
-
-type Hash struct {
-       XMLName xml.Name `xml:"hash"`
-       Type    string   `xml:"type,attr"`
-       Hash    string   `xml:",chardata"`
-}
-
-type MetaURL struct {
-       XMLName   xml.Name `xml:"metaurl"`
-       MediaType string   `xml:"mediatype,attr"`
-       URL       string   `xml:",chardata"`
-}