-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmetadata.go
206 lines (184 loc) · 5.52 KB
/
metadata.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
/*
Package metadata handles library.properties metadata.
The functions in this package helps on parsing/validation of
library.properties metadata. All metadata are parsed into a
LibraryMetadata structure.
The source of may be any of the following:
- a github.PullRequest
- a github.RepositoryContent
- a byte[]
*/
package metadata
import (
"bytes"
"context"
"encoding/base64"
"errors"
"regexp"
"strings"
"github.com/google/go-github/github"
ini "github.com/vaughan0/go-ini"
)
// LibraryMetadata contains metadata for a library.properties file
type LibraryMetadata struct {
Name string
Version string
Author string
Maintainer string
License string
Sentence string
Paragraph string
URL string
Architectures string
Category string
Types []string
Includes string
Depends string
}
const categoryUcategorized string = "Uncategorized"
var validCategories = []string{
"Display",
"Communication",
"Signal Input/Output",
"Sensors",
"Device Control",
"Timing",
"Data Storage",
"Data Processing",
"Other",
categoryUcategorized,
}
// IsValidCategory checks if category is a valid category
func IsValidCategory(category string) bool {
for _, c := range validCategories {
if category == c {
return true
}
}
return false
}
// Validate checks LibraryMetadata for errors, returns an array of the errors found
func (library *LibraryMetadata) Validate() []error {
var errorsAccumulator []error
// Check lib name
if !IsValidLibraryName(library.Name) {
errorsAccumulator = append(errorsAccumulator, errors.New("Invalid 'name' field: "+library.Name))
}
// Check author and maintainer existence
if library.Author == "" {
errorsAccumulator = append(errorsAccumulator, errors.New("'author' field must be defined"))
}
if library.Maintainer == "" {
library.Maintainer = library.Author
}
// Check sentence and paragraph and url existence
if library.Sentence == "" || library.URL == "" {
errorsAccumulator = append(errorsAccumulator, errors.New("'sentence' and 'url' fields must be defined"))
}
newVersion, err := VersionToSemverCompliant(library.Version)
if err != nil {
errorsAccumulator = append(errorsAccumulator, err)
}
library.Version = newVersion
// Check if the category is valid and set to "Uncategorized" if not
if !IsValidCategory(library.Category) {
library.Category = categoryUcategorized
}
// Check if 'depends' field is correctly written
if !IsValidDependency(library.Depends) {
errorsAccumulator = append(errorsAccumulator, errors.New("Invalid 'depends' field: "+library.Depends))
}
return errorsAccumulator
}
// IsValidLibraryName checks if a string is a valid library name
func IsValidLibraryName(name string) bool {
if len(name) == 0 {
return false
}
if name[0] == '-' || name[0] == '_' || name[0] == ' ' {
return false
}
for _, char := range name {
if !strings.Contains("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789_-. ", string(char)) {
return false
}
}
return true
}
var re = regexp.MustCompile("^([a-zA-Z0-9](?:[a-zA-Z0-9._\\- ]*[a-zA-Z0-9])?) *(?: \\(([^()]*)\\))?$")
// IsValidDependency checks if the `depends` field of library.properties is correctly formatted
func IsValidDependency(depends string) bool {
// TODO: merge this method with db.ExtractDependenciesList
depends = strings.TrimSpace(depends)
if depends == "" {
return true
}
for _, dep := range strings.Split(depends, ",") {
dep = strings.TrimSpace(dep)
if dep == "" {
return false
}
matches := re.FindAllStringSubmatch(dep, -1)
if matches == nil {
return false
}
}
return true
}
// ParsePullRequest makes a LibraryMetadata by reading library.properties from a github.PullRequest
func ParsePullRequest(gh *github.Client, pull *github.PullRequest) (*LibraryMetadata, error) {
head := *pull.Head
headRepo := *head.Repo
// Get library.properties from pull request HEAD
getContentOpts := &github.RepositoryContentGetOptions{
Ref: *head.SHA,
}
libPropContent, _, _, err := gh.Repositories.GetContents(context.TODO(), *headRepo.Owner.Login, *headRepo.Name, "library.properties", getContentOpts)
if err != nil {
return nil, err
}
if libPropContent == nil {
return nil, errors.New("library.properties file not found")
}
return ParseRepositoryContent(libPropContent)
}
// ParseRepositoryContent makes a LibraryMetadata by reading library.properties from a github.RepositoryContent
func ParseRepositoryContent(content *github.RepositoryContent) (*LibraryMetadata, error) {
libPropertiesData, err := base64.StdEncoding.DecodeString(*content.Content)
if err != nil {
return nil, err
}
return Parse(libPropertiesData)
}
// Parse makes a LibraryMetadata by parsing a library.properties file contained in a byte array
func Parse(propertiesData []byte) (*LibraryMetadata, error) {
// Create an io.Reader from []bytes
reader := bytes.NewReader(propertiesData)
// Use go-ini to decode contents
properties, err := ini.Load(reader)
if err != nil {
return nil, err
}
get := func(key string) string {
value, ok := properties.Get("", key)
if ok {
return value
}
return ""
}
library := &LibraryMetadata{
Name: get("name"),
Version: get("version"),
Author: get("author"),
Maintainer: get("maintainer"),
Sentence: get("sentence"),
Paragraph: get("paragraph"),
License: get("license"),
URL: get("url"),
Architectures: get("architectures"),
Category: get("category"),
Includes: get("includes"),
Depends: get("depends"),
}
return library, nil
}