]> Sergey Matveev's repositories - godlighty.git/blob - meta4/scheme.go
681bf4a889f522c85f342a77ec35c60611ab44f4
[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         Ext             = ".meta4"
31         MaxSize         = 1 << 16
32 )
33
34 type Metalink struct {
35         XMLName   xml.Name  `xml:"urn:ietf:params:xml:ns:metalink metalink"`
36         Files     []File    `xml:"file"`
37         Generator string    `xml:"generator,,omitempty"`
38         Published time.Time `xml:"published,,omitempty"`
39 }
40
41 type File struct {
42         XMLName     xml.Name   `xml:"file"`
43         Name        string     `xml:"name,attr"`
44         Description string     `xml:"description,,omitempty"`
45         Hashes      []Hash     `xml:"hash,,omitempty"`
46         MetaURLs    []MetaURL  `xml:"metaurl,,omitempty"`
47         Signature   *Signature `xml:"signature"`
48         Size        uint64     `xml:"size,,omitempty"`
49         URLs        []URL      `xml:"url,,omitempty"`
50 }
51
52 type URL struct {
53         XMLName xml.Name `xml:"url"`
54         URL     string   `xml:",chardata"`
55 }
56
57 type Signature struct {
58         XMLName   xml.Name `xml:"signature"`
59         MediaType string   `xml:"mediatype,attr"`
60         Signature string   `xml:",cdata"`
61 }
62
63 type Hash struct {
64         XMLName xml.Name `xml:"hash"`
65         Type    string   `xml:"type,attr"`
66         Hash    string   `xml:",chardata"`
67 }
68
69 type MetaURL struct {
70         XMLName   xml.Name `xml:"metaurl"`
71         MediaType string   `xml:"mediatype,attr"`
72         URL       string   `xml:",chardata"`
73 }