-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsource.go
41 lines (35 loc) · 891 Bytes
/
source.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
package gomodurl
import (
"context"
"encoding/json"
"net/http"
"strings"
)
type Source interface {
Repositories(context.Context, *http.Client) ([]*GoPackage, error)
}
func ParseSources(b []byte) ([]Source, error) {
raw := map[string][]json.RawMessage{}
if err := json.Unmarshal(b, &raw); err != nil {
return nil, err
}
sources := []Source{}
for provider, specs := range raw {
logger.Printf("provider %s has %d packages", provider, len(specs))
switch strings.ToLower(provider) {
case "github":
for _, spec := range specs {
s, err := ParseGitHubSource(spec)
if err != nil {
logger.Printf("warn: unable to parse github spec: %v", err.Error())
} else {
sources = append(sources, s)
}
}
default:
logger.Printf("warn: unknown provider: %s", provider)
}
}
logger.Printf("info: found %d sources", len(sources))
return sources, nil
}