2021-01-09 02:51:36 +00:00
|
|
|
/*
|
|
|
|
Copyright © 2021 Arsen Musayelyan
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2020-12-03 17:32:03 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2020-12-08 01:15:38 +00:00
|
|
|
"fmt"
|
2020-12-03 17:32:03 +00:00
|
|
|
"github.com/rs/zerolog"
|
2020-12-08 01:15:38 +00:00
|
|
|
"net"
|
2020-12-03 17:32:03 +00:00
|
|
|
"os"
|
|
|
|
)
|
|
|
|
|
2020-12-08 01:15:38 +00:00
|
|
|
// Fatal hook to run in case of Fatal error
|
2020-12-21 07:18:42 +00:00
|
|
|
type FatalHook struct{}
|
2020-12-03 17:32:03 +00:00
|
|
|
|
2020-12-08 01:15:38 +00:00
|
|
|
// Run function on trigger
|
2020-12-03 17:32:03 +00:00
|
|
|
func (hook FatalHook) Run(_ *zerolog.Event, level zerolog.Level, _ string) {
|
|
|
|
// If log event is fatal
|
|
|
|
if level == zerolog.FatalLevel {
|
|
|
|
// Attempt removal of opensend directory
|
2020-12-31 07:54:18 +00:00
|
|
|
_ = os.RemoveAll(*workDir)
|
2020-12-03 17:32:03 +00:00
|
|
|
}
|
|
|
|
}
|
2020-12-08 01:15:38 +00:00
|
|
|
|
|
|
|
// TCP Fatal hook to run in case of Fatal error with open TCP connection
|
|
|
|
type TCPFatalHook struct {
|
|
|
|
conn net.Conn
|
|
|
|
}
|
|
|
|
|
|
|
|
// Run function on trigger
|
|
|
|
func (hook TCPFatalHook) Run(_ *zerolog.Event, level zerolog.Level, _ string) {
|
|
|
|
// If log event is fatal
|
|
|
|
if level == zerolog.FatalLevel {
|
|
|
|
// Send error to connection
|
|
|
|
_, _ = fmt.Fprintln(hook.conn, "ERR;")
|
|
|
|
// Close connection
|
|
|
|
_ = hook.conn.Close()
|
|
|
|
// Attempt removal of opensend directory
|
2020-12-31 07:54:18 +00:00
|
|
|
_ = os.RemoveAll(*workDir)
|
2020-12-08 01:15:38 +00:00
|
|
|
}
|
|
|
|
|
2020-12-21 07:18:42 +00:00
|
|
|
}
|