certspotter/loglist/load.go

68 lines
1.5 KiB
Go
Raw Normal View History

// Copyright (C) 2020, 2023 Opsmate, Inc.
2020-04-29 17:38:04 +02:00
//
// This Source Code Form is subject to the terms of the Mozilla
// Public License, v. 2.0. If a copy of the MPL was not distributed
// with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
//
// This software is distributed WITHOUT A WARRANTY OF ANY KIND.
// See the Mozilla Public License for details.
package loglist
import (
"context"
2020-04-29 17:38:04 +02:00
"encoding/json"
"fmt"
"io"
2020-04-29 17:38:04 +02:00
"net/http"
"os"
2020-04-29 17:38:04 +02:00
"strings"
)
func Load(ctx context.Context, urlOrFile string) (*List, error) {
2020-04-29 17:38:04 +02:00
if strings.HasPrefix(urlOrFile, "https://") {
return Fetch(ctx, urlOrFile)
2020-04-29 17:38:04 +02:00
} else {
return ReadFile(urlOrFile)
}
}
func Fetch(ctx context.Context, url string) (*List, error) {
request, err := http.NewRequestWithContext(ctx, http.MethodGet, url, nil)
2020-04-29 17:38:04 +02:00
if err != nil {
return nil, err
}
response, err := http.DefaultClient.Do(request)
if err != nil {
return nil, err
}
content, err := io.ReadAll(response.Body)
2020-04-29 17:38:04 +02:00
response.Body.Close()
if err != nil {
return nil, err
}
if response.StatusCode != 200 {
return nil, fmt.Errorf("%s: %s", url, response.Status)
}
2021-05-01 22:53:56 +02:00
return Unmarshal(content)
2020-04-29 17:38:04 +02:00
}
func ReadFile(filename string) (*List, error) {
content, err := os.ReadFile(filename)
2020-04-29 17:38:04 +02:00
if err != nil {
return nil, err
}
2021-05-01 22:53:56 +02:00
return Unmarshal(content)
2020-04-29 17:38:04 +02:00
}
2021-05-01 22:53:56 +02:00
func Unmarshal(jsonBytes []byte) (*List, error) {
2020-04-29 17:38:04 +02:00
list := new(List)
if err := json.Unmarshal(jsonBytes, list); err != nil {
return nil, err
}
2020-05-01 22:05:37 +02:00
if err := list.Validate(); err != nil {
return nil, fmt.Errorf("Invalid log list: %s", err)
}
2020-04-29 17:38:04 +02:00
return list, nil
}