]> Sergey Matveev's repositories - godlighty.git/blob - meta4/scheme.go
82796a4191bfdf484bf61ca1445423d422cb2149
[godlighty.git] / meta4 / scheme.go
1 /*
2 godlighty -- highly-customizable HTTP, HTTP/2, HTTPS server
3 Copyright (C) 2021-2023 Sergey Matveev <stargrave@stargrave.org>
4
5 This program is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation, version 3 of the License.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 GNU General Public License for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program.  If not, see <http://www.gnu.org/licenses/>.
16 */
17
18 package meta4
19
20 import (
21         "encoding/xml"
22         "time"
23 )
24
25 const (
26         HashSHA256      = "sha-256"
27         HashSHA512      = "sha-512"
28         HashStreebog256 = "streebog-256"
29         HashStreebog512 = "streebog-512"
30         HashSHAKE128    = "shake128"
31         HashSHAKE256    = "shake256"
32         Ext             = ".meta4"
33         MaxSize         = 1 << 16
34 )
35
36 type Metalink struct {
37         XMLName   xml.Name  `xml:"urn:ietf:params:xml:ns:metalink metalink"`
38         Files     []File    `xml:"file"`
39         Generator string    `xml:"generator,,omitempty"`
40         Published time.Time `xml:"published,,omitempty"`
41 }
42
43 type File struct {
44         XMLName     xml.Name   `xml:"file"`
45         Name        string     `xml:"name,attr"`
46         Description string     `xml:"description,,omitempty"`
47         Hashes      []Hash     `xml:"hash,,omitempty"`
48         MetaURLs    []MetaURL  `xml:"metaurl,,omitempty"`
49         Signature   *Signature `xml:"signature"`
50         Size        uint64     `xml:"size,,omitempty"`
51         URLs        []URL      `xml:"url,,omitempty"`
52 }
53
54 type URL struct {
55         XMLName xml.Name `xml:"url"`
56         URL     string   `xml:",chardata"`
57 }
58
59 type Signature struct {
60         XMLName   xml.Name `xml:"signature"`
61         MediaType string   `xml:"mediatype,attr"`
62         Signature string   `xml:",cdata"`
63 }
64
65 type Hash struct {
66         XMLName xml.Name `xml:"hash"`
67         Type    string   `xml:"type,attr"`
68         Hash    string   `xml:",chardata"`
69 }
70
71 type MetaURL struct {
72         XMLName   xml.Name `xml:"metaurl"`
73         MediaType string   `xml:"mediatype,attr"`
74         URL       string   `xml:",chardata"`
75 }