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