2020-04-04 02:50:32 +05:30
|
|
|
package templates
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"os"
|
|
|
|
|
|
|
|
|
|
"gopkg.in/yaml.v2"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
// ParseTemplate parses a yaml request template file
|
|
|
|
|
func ParseTemplate(file string) (*Template, error) {
|
|
|
|
|
template := &Template{}
|
|
|
|
|
|
|
|
|
|
f, err := os.Open(file)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
err = yaml.NewDecoder(f).Decode(template)
|
|
|
|
|
if err != nil {
|
|
|
|
|
f.Close()
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
f.Close()
|
|
|
|
|
|
2020-04-22 22:45:02 +02:00
|
|
|
// Compile the matchers and the extractors for http requests
|
|
|
|
|
for _, request := range template.RequestsHTTP {
|
2020-04-04 02:50:32 +05:30
|
|
|
for _, matcher := range request.Matchers {
|
|
|
|
|
if err = matcher.CompileMatchers(); err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-04-06 00:44:45 +05:30
|
|
|
|
|
|
|
|
for _, extractor := range request.Extractors {
|
|
|
|
|
if err := extractor.CompileExtractors(); err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-04-04 02:50:32 +05:30
|
|
|
}
|
2020-04-22 22:45:02 +02:00
|
|
|
|
|
|
|
|
// Compile the matchers and the extractors for dns requests
|
|
|
|
|
for _, request := range template.RequestsDNS {
|
|
|
|
|
for _, matcher := range request.Matchers {
|
|
|
|
|
if err = matcher.CompileMatchers(); err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for _, extractor := range request.Extractors {
|
|
|
|
|
if err := extractor.CompileExtractors(); err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-04-23 18:44:34 +02:00
|
|
|
|
2020-04-04 02:50:32 +05:30
|
|
|
return template, nil
|
|
|
|
|
}
|