]> Sergey Matveev's repositories - tofuproxy.git/blob - warc/header.go
Unify copyright comment format
[tofuproxy.git] / warc / header.go
1 // tofuproxy -- flexible HTTP/HTTPS proxy, TLS terminator, X.509 TOFU
2 //              manager, WARC/geminispace browser
3 // Copyright (C) 2021-2024 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 package warc
18
19 import "strings"
20
21 type Header map[string]string
22
23 func NewHeader() Header {
24         return make(map[string]string)
25 }
26
27 func (h Header) Set(key, value string) {
28         h[strings.ToLower(key)] = value
29 }
30
31 func (h Header) Get(key string) string {
32         return h[strings.ToLower(key)]
33 }
34
35 func (h Header) Del(key string) {
36         delete(h, strings.ToLower(key))
37 }
38
39 func (h Header) AddLine(line string) {
40         parts := strings.SplitN(line, ":", 2)
41         if len(parts) != 2 {
42                 return
43         }
44         h.Set(parts[0], strings.TrimSpace(parts[1]))
45 }