-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathaddon.go
120 lines (100 loc) · 2.66 KB
/
addon.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
package gonnect
import (
"bytes"
"encoding/json"
"errors"
"fmt"
"io"
"io/ioutil"
"path"
"runtime"
"text/template"
"github.com/craftamap/atlas-gonnect/store"
"github.com/sirupsen/logrus"
)
var LOG = logrus.New()
func init() {
// TODO: We should propably give the programmers more control about the logging
// How?
LOG.SetReportCaller(true)
LOG.SetFormatter(&logrus.TextFormatter{
FullTimestamp: true,
CallerPrettyfier: func(f *runtime.Frame) (string, string) {
filename := path.Base(f.File)
return fmt.Sprintf("%s()", f.Function), fmt.Sprintf("%s:%d", filename, f.Line)
},
})
}
type Addon struct {
Config *Profile
CurrentProfile string
Store *store.Store
AddonDescriptor map[string]interface{}
Key *string
Name *string
Logger *logrus.Logger
}
func readAddonDescriptor(descriptorReader io.Reader, baseUrl string) (map[string]interface{}, error) {
vals := map[string]string{
"BaseUrl": baseUrl,
}
temp, err := ioutil.ReadAll(descriptorReader)
if err != nil {
return nil, err
}
tmpl, err := template.New("descriptor").Parse(string(temp))
if err != nil {
return nil, err
}
var buffer bytes.Buffer
err = tmpl.ExecuteTemplate(&buffer, "descriptor", vals)
if err != nil {
return nil, err
}
descriptor := map[string]interface{}{}
err = json.Unmarshal(buffer.Bytes(), &descriptor)
if err != nil {
return nil, err
}
return descriptor, nil
}
func NewAddon(configFile io.Reader, descriptorFile io.Reader) (*Addon, error) {
LOG.Info("Initializing new Addon")
LOG.Debug("Create new config object")
config, currentProfile, err := NewConfig(configFile)
if err != nil {
LOG.Errorf("Could not create new config object: %s\n", err)
return nil, err
}
LOG.Debug("Creating new store")
store, err := store.New(config.Store.Type, config.Store.DatabaseUrl)
if err != nil {
LOG.Errorf("Could not create new store: %s\n", err)
return nil, err
}
LOG.Debug("Reading AddonDescriptor")
addonDescriptor, err := readAddonDescriptor(descriptorFile, config.BaseUrl)
if err != nil {
LOG.Errorf("Could not read AddonDescriptor: %s\n", err)
return nil, err
}
name, ok := addonDescriptor["name"].(string)
if !ok {
return nil, errors.New("name could not be read from AddonDescriptor")
}
key, ok := addonDescriptor["key"].(string)
if !ok {
return nil, errors.New("key could not be read from AddonDescriptor")
}
addon := &Addon{
Config: config,
Store: store,
Logger: LOG,
CurrentProfile: currentProfile,
AddonDescriptor: addonDescriptor,
Name: &name,
Key: &key,
}
LOG.Info("Addon successfully initialized!")
return addon, nil
}