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