-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutbound.go
202 lines (179 loc) · 4.96 KB
/
outbound.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
package main
import (
"context"
"fmt"
"net/url"
"strings"
"os"
"path/filepath"
log "github.com/sirupsen/logrus"
"github.com/fsnotify/fsnotify"
"github.com/ryanuber/go-glob"
"github.com/minio/minio-go/v7"
"github.com/minio/minio-go/v7/pkg/credentials"
)
var watchers []fsnotify.Watcher
func outbound(o Outbound) {
lf := log.Fields{
"workflow": o.Name,
}
log.WithFields(lf).Info("configuring watcher for '", o.Description, "'")
watcher, err := fsnotify.NewWatcher()
if err != nil {
log.WithFields(lf).Error(err)
return
}
defer watcher.Close()
watchers = append(watchers, *watcher)
// Extract folder to watch, and file glob to filter on
localFolder := filepath.Dir(o.Source)
fileGlob := filepath.Base(o.Source)
log.WithFields(lf).WithFields(log.Fields{
"folder": localFolder,
"fileglob": fileGlob,
}).Debug("")
// Define function to handle events
go func() {
for {
select {
case event, ok := <-watcher.Events:
if !ok {
return
}
log.WithFields(lf).WithFields(log.Fields{
"name": event.Name,
"op": event.Op,
}).Debug("Event")
// Ignore non-Write events
if event.Op&fsnotify.Write != fsnotify.Write {
log.WithFields(lf).WithFields(log.Fields{
"name": event.Name,
"op": event.Op,
}).Debug("Ignoring unimportant event type")
continue
}
// Does filename match the fileglob?
filename := filepath.Base(event.Name)
if !glob.Glob(fileGlob, filename) {
log.WithFields(lf).WithFields(log.Fields{
"name": event.Name,
"op": event.Op,
}).Debug("Ignoring write event due to glob mismatch")
continue
}
// Open the file and prepare to read it
f, err := os.Open(event.Name)
if err != nil {
log.WithFields(lf).WithFields(log.Fields{
"name": event.Name,
"op": event.Op,
}).Error(fmt.Printf("failed to open file %q, %v", filename, err))
return
}
defer f.Close()
// [IGNORE THIS FOR NOW] If we need to stream to a processor, do so here
// var p io.Writer = bufio.NewWriterSize(f, 1024)
// if o.ProcessWith != "" {
// cmd := exec.Command(o.ProcessWith)
// cmd.Stdin = f
// //stdout, err := cmd.Output()
// cmd.Stdout = p
// err := cmd.Start()
// if err != nil {
// // Handle error
// log.WithFields(lf).WithFields(log.Fields{
// "name": event.Name,
// "op": event.Op,
// "parser": o.ProcessWith,
// }).Error("Parser error: ", err)
// return
// }
// // Report success
// log.WithFields(lf).WithFields(log.Fields{
// "name": event.Name,
// "op": event.Op,
// "parser": o.ProcessWith,
// }).Error("Parsed successfully")
// } else {
// // Pass through unprocessed
// p = f
// }
//p.Flush()
// Create a buffered reader
// Determine remote bucket details
u, err := url.Parse(o.Destination)
endpoint := u.Hostname()
tokens := strings.Split(u.Path, "/")
if len(tokens) < 2 {
log.WithFields(lf).Error("Invalid S3 path: ", u.Path)
return
}
awsBucket := tokens[1]
awsFileKey := strings.Join(tokens[2:], "/") + "/" + filename
log.WithFields(lf).WithFields(log.Fields{
"name": event.Name,
"endpoint": endpoint,
"awsBucket": awsBucket,
"awsFileKey": awsFileKey,
}).Debug("uploading to bucket")
// Determine remote to use to create a new MinIO client
creds := credentials.Credentials{}
credsFound := false
for _, remote := range config.Remotes {
if remote.Endpoint == endpoint {
creds = *credentials.NewStaticV4(remote.AccessKey, remote.SecretKey, "")
credsFound = true
}
}
if !credsFound {
log.WithFields(lf).Error("No credentials found")
return
}
mc, err := minio.New(endpoint, &minio.Options{
Creds: &creds,
Secure: true,
})
if err != nil {
log.WithFields(lf).Fatal(err)
return
}
// Push object to bucket
fs, err := f.Stat()
if err != nil {
log.WithFields(lf).WithFields(log.Fields{
"name": event.Name,
"awsBucket": awsBucket,
"awsFileKey": awsFileKey,
}).Error("unable to query file size: ", err)
return
}
ctx := context.TODO()
_, err = mc.PutObject(ctx, awsBucket, awsFileKey, f, fs.Size(), minio.PutObjectOptions{})
if err != nil {
log.WithFields(lf).WithFields(log.Fields{
"name": event.Name,
"awsBucket": awsBucket,
"awsFileKey": awsFileKey,
}).Error("failed to upload file to S3: ", err)
return
}
log.WithFields(lf).WithFields(log.Fields{
"name": event.Name,
"awsBucket": awsBucket,
"awsFileKey": awsFileKey,
"size": fs.Size(),
}).Info("uploaded to S3")
case err, ok := <-watcher.Errors:
if !ok {
return
}
log.Println("error:", err)
}
}
}()
// Start watching folder
err = watcher.Add(localFolder)
if err != nil {
log.WithFields(lf).Fatal(err)
}
}