This commit is contained in:
Sebastian Frank 2021-08-10 18:31:29 +02:00
parent 70255bc2a2
commit f5e83ef690
Signed by: apairon
GPG Key ID: A0E05A8199CE3F57
4 changed files with 147 additions and 58 deletions

View File

@ -1,36 +1,43 @@
directories:
- path: /tmp/foo
recursive: false
events: [ "CLOSE_WRITE", "MOVED_TO" ]
events: ["CLOSE_WRITE", "MOVED_TO"]
pollingInterval: 60
regex: "/[^\\.][^/]+.xml$"
actions:
- type: http
method: post
url: http://localhost:8080/api/v1/_/renz_einfo/xml
header:
Token: Ksi02vcaHHasd1sjYxiq4J
ContentType: application/xml
# content: PLAIN IS FILECONTENT
onError:
type: move
- type: http
method: post
url: http://localhost:8080/api/v1/_/renz_einfo/xml
header:
Token: Ksi02vcaHHasd1sjYxiq4J
ContentType: application/xml
# content: PLAIN IS FILECONTENT
onError:
- type: move
to: /tmp/error/{{ filename }}
stop: true
- type: http
method: post
url: http://localhost:8080/api/v1/_/renz_einfo/operation-file
header:
Token: abc
ContentType: application/json
content: |
{
"filename": "{{ .Name }}"
}
onError:
type: move
onSuccess:
- type: delete
- path: /tmp/foo
recursive: false
events: ["CLOSE_WRITE", "MOVED_TO"]
regex: "/[^\\.][^/]+.(png|jpe?g|pdf)$"
actions:
- type: http
method: post
url: http://localhost:8080/api/v1/_/renz_einfo/operation-file
header:
Token: Ksi02vcaHHasd1sjYxiq4J
Content-Type: application/json
content: |
{
"filename": "{{ filename }}"
}
onError:
- type: move
to: /tmp/error/{{ filename }}
stop: true
- type: delete
- type: log
- type: log

1
go.mod
View File

@ -3,6 +3,7 @@ module gitbase.de/apairon/fstrigger
go 1.16
require (
github.com/davecgh/go-spew v1.1.1
github.com/flosch/pongo2/v4 v4.0.2
github.com/rjeczalik/notify v0.9.2
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b

2
go.sum
View File

@ -1,3 +1,5 @@
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/flosch/pongo2/v4 v4.0.2 h1:gv+5Pe3vaSVmiJvh/BZa82b7/00YUGm0PIyVVLop0Hw=
github.com/flosch/pongo2/v4 v4.0.2/go.mod h1:B5ObFANs/36VwxxlgKpdchIJHMvHB562PW+BWPhwZD8=
github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ=

145
main.go
View File

@ -31,17 +31,18 @@ type ActionConfig struct {
To *string
Stop bool
OnSuccess *ActionConfig `yaml:"onSuccess"`
OnError *ActionConfig `yaml:"onError"`
OnSuccess []ActionConfig `yaml:"onSuccess"`
OnError []ActionConfig `yaml:"onError"`
}
type DirectoryConfig struct {
Path string
Recursive bool
Events []string
Regex *string
_regex *regexp.Regexp
Actions []ActionConfig
Path string
Recursive bool
Events []string
PollingInterval *int64 `yaml:"pollingInterval"`
Regex *string
_regex *regexp.Regexp
Actions []ActionConfig
}
type Config struct {
@ -50,8 +51,25 @@ type Config struct {
var wg sync.WaitGroup
type pollInfo struct {
path string
event notify.Event
}
func (p pollInfo) Path() string {
return p.path
}
func (p pollInfo) Event() notify.Event {
return p.event
}
func (p pollInfo) Sys() interface{} {
return nil
}
func startWatcher(directory *DirectoryConfig) {
c := make(chan notify.EventInfo, 10)
c := make(chan notify.EventInfo, 1000)
monitoredEvents := []notify.Event{}
for _, e := range directory.Events {
switch e {
@ -98,26 +116,64 @@ func startWatcher(directory *DirectoryConfig) {
go func(directory *DirectoryConfig, monitoredEvents []notify.Event) {
defer wg.Done()
log.Printf("watching %s for %v\n", directory.Path, directory.Events)
log.Printf("watching %s for %v, regex %s\n", directory.Path, directory.Events, *directory.Regex)
if err := notify.Watch(directory.Path, c, monitoredEvents...); err != nil {
log.Fatal(err)
}
defer notify.Stop(c)
firstRun := true
for {
eventInfo := <-c
p := eventInfo.Path()
log.Printf("path: %s; event: %s\n", p, eventInfo.Event().String())
if directory._regex == nil || directory._regex.MatchString(p) {
for _, action := range directory.Actions {
contin, _ := runAction(&action, eventInfo)
if !contin {
break
var eventInfo notify.EventInfo
if directory.PollingInterval != nil {
if !firstRun {
select {
case eventInfo = <-c: // event
case <-time.After(time.Second * time.Duration(*directory.PollingInterval)): // timeout for polling
}
}
firstRun = false // do polling as init
} else {
log.Printf("path: %s; no regex match\n", p)
eventInfo = <-c
}
if eventInfo != nil {
p := eventInfo.Path()
log.Printf("path: %s; event: %s\n", p, eventInfo.Event().String())
if directory._regex == nil || directory._regex.MatchString(p) {
for _, action := range directory.Actions {
contin, _ := runAction(&action, eventInfo)
if !contin {
break
}
}
} else {
log.Printf("path: %s; no regex match\n", p)
}
}
if directory.PollingInterval != nil && len(c) == 0 {
// polling only while queue is empty
files, err := ioutil.ReadDir(directory.Path)
if err != nil {
log.Printf("path: %s; polling error: %s", directory.Path, err)
}
for _, f := range files {
p := directory.Path + "/" + f.Name()
if directory._regex == nil || directory._regex.MatchString(p) {
pollI := pollInfo{
path: p,
event: 0,
}
select {
case c <- pollI:
default:
}
} else {
log.Printf("path: %s; no regex match (polling)\n", p)
}
}
}
}
}(directory, monitoredEvents)
@ -143,20 +199,28 @@ func runAction(action *ActionConfig, eventInfo notify.EventInfo) (contin bool, e
if err != nil {
log.Printf("path: %s; action: %s; error %s", eventInfo.Path(), action.Type, err)
if action.OnError != nil {
_c, errE := runAction(action.OnError, eventInfo)
for _, aE := range action.OnError {
_c, errE := runAction(&aE, eventInfo)
contin = contin && _c
if errE != nil {
log.Printf("path: %s; action: %s; onError %s, error %s", eventInfo.Path(), action.Type, action.OnError.Type, errE)
log.Printf("path: %s; action: %s; onError %s, error %s", eventInfo.Path(), action.Type, aE.Type, errE)
}
if !contin {
break
}
}
} else if err == nil && action.OnSuccess != nil {
_c, errS := runAction(action.OnSuccess, eventInfo)
contin = contin && _c
if errS != nil {
log.Printf("path: %s; action: %s; onSuccess %s, error %s", eventInfo.Path(), action.Type, action.OnError.Type, errS)
} else {
for _, aS := range action.OnSuccess {
_c, errS := runAction(&aS, eventInfo)
contin = contin && _c
if errS != nil {
log.Printf("path: %s; action: %s; onSuccess %s, error %s", eventInfo.Path(), action.Type, aS.Type, errS)
err = errS
}
if !contin {
break
}
}
err = errS
}
return contin, err
@ -165,11 +229,19 @@ func runAction(action *ActionConfig, eventInfo notify.EventInfo) (contin bool, e
func actionHttp(action *ActionConfig, eventInfo notify.EventInfo) error {
method := "POST"
if action.Method != nil {
method = strings.ToUpper(*action.Method)
m, err := tpl2String(*action.Method, action, eventInfo)
if err != nil {
return err
}
method = strings.ToUpper(m)
}
if action.URL == nil {
return fmt.Errorf("missing url in http action")
}
url, err := tpl2String(*action.URL, action, eventInfo)
if err != nil {
return err
}
postData := bytes.NewBuffer([]byte{})
if method != "GET" {
@ -180,11 +252,18 @@ func actionHttp(action *ActionConfig, eventInfo notify.EventInfo) error {
return nil
}
postData = bytes.NewBuffer(postBytes)
} else {
p, err := tpl2String(*action.Content, action, eventInfo)
if err != nil {
return err
}
log.Println("BODY: ", p)
postData = bytes.NewBufferString(p)
}
}
log.Printf("%s %s", method, *action.URL)
req, err := http.NewRequest(method, *action.URL, postData)
log.Printf("%s %s", method, url)
req, err := http.NewRequest(method, url, postData)
if err != nil {
return err
}
@ -224,8 +303,7 @@ func actionMove(action *ActionConfig, eventInfo notify.EventInfo) error {
}
func actionDelete(action *ActionConfig, eventInfo notify.EventInfo) error {
log.Println("DELETE")
return nil
return os.Remove(eventInfo.Path())
}
func actionLog(action *ActionConfig, eventInfo notify.EventInfo) error {
@ -268,6 +346,7 @@ func main() {
}
for _, directory := range conf.Directories {
directory := directory
startWatcher(&directory)
}