]> Sergey Matveev's repositories - godlighty.git/blob - meta4/parse.go
Raised copyright years
[godlighty.git] / meta4 / parse.go
1 /*
2 godlighty -- highly-customizable HTTP, HTTP/2, HTTPS server
3 Copyright (C) 2021-2022 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/hex"
22         "encoding/xml"
23 )
24
25 type ForHTTP struct {
26         SHA256 []byte
27         SHA512 []byte
28         URLs   []string
29 }
30
31 func Parse(fn string, data []byte) (*ForHTTP, error) {
32         var meta Metalink
33         err := xml.Unmarshal(data, &meta)
34         if err != nil {
35                 return nil, err
36         }
37         for _, f := range meta.Files {
38                 if f.Name != fn {
39                         continue
40                 }
41                 forHTTP := ForHTTP{}
42                 for _, h := range f.Hashes {
43                         digest, err := hex.DecodeString(h.Hash)
44                         if err != nil {
45                                 return nil, err
46                         }
47                         switch h.Type {
48                         case HashSHA256:
49                                 forHTTP.SHA256 = digest
50                         case HashSHA512:
51                                 forHTTP.SHA512 = digest
52                         }
53                 }
54                 for _, u := range f.URLs {
55                         forHTTP.URLs = append(forHTTP.URLs, u.URL)
56                 }
57                 return &forHTTP, nil
58         }
59         return nil, nil
60 }