mirror of
https://github.com/beego/bee.git
synced 2025-06-11 03:10:40 +00:00
add notify on fails build
This commit is contained in:
75
utils/notification.go
Normal file
75
utils/notification.go
Normal file
@ -0,0 +1,75 @@
|
||||
package utils
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"os/exec"
|
||||
"strconv"
|
||||
"strings"
|
||||
|
||||
"runtime"
|
||||
|
||||
"github.com/beego/bee/config"
|
||||
)
|
||||
|
||||
const appName = "Beego"
|
||||
|
||||
func Notify(text, title string) {
|
||||
if !config.Conf.EnableNotification {
|
||||
return
|
||||
}
|
||||
switch runtime.GOOS {
|
||||
case "darwin":
|
||||
osxNotify(text, title)
|
||||
case "linux":
|
||||
windowsNotify(text, title)
|
||||
case "windows":
|
||||
linuxNotify(text, title)
|
||||
}
|
||||
}
|
||||
|
||||
func osxNotify(text, title string) {
|
||||
cmd := &exec.Cmd{}
|
||||
if existTerminalNotifier() {
|
||||
cmd = exec.Command("terminal-notifier", "-title", appName, "-message", text, "-subtitle", title)
|
||||
} else if MacOSVersionSupport() {
|
||||
notification := fmt.Sprintf("display notification \"%s\" with title \"%s\" subtitle \"%s\"", text, appName, title)
|
||||
cmd = exec.Command("osascript", "-e", notification)
|
||||
} else {
|
||||
cmd = exec.Command("growlnotify", "-n", appName, "-m", title)
|
||||
}
|
||||
cmd.Run()
|
||||
}
|
||||
|
||||
func windowsNotify(text, title string) {
|
||||
exec.Command("growlnotify", "/i:", "", "/t:", title, text).Run()
|
||||
}
|
||||
|
||||
func linuxNotify(text, title string) {
|
||||
exec.Command("notify-send", "-i", "", title, text)
|
||||
}
|
||||
|
||||
func existTerminalNotifier() bool {
|
||||
cmd := exec.Command("which", "terminal-notifier")
|
||||
err := cmd.Start()
|
||||
if err != nil {
|
||||
return false
|
||||
} else {
|
||||
err = cmd.Wait()
|
||||
if err != nil {
|
||||
return false
|
||||
}
|
||||
}
|
||||
return true
|
||||
}
|
||||
|
||||
func MacOSVersionSupport() bool {
|
||||
cmd := exec.Command("sw_vers", "-productVersion")
|
||||
check, _ := cmd.Output()
|
||||
version := strings.Split(string(check), ".")
|
||||
major, _ := strconv.Atoi(version[0])
|
||||
minor, _ := strconv.Atoi(version[1])
|
||||
if major < 10 || (major == 10 && minor < 9) {
|
||||
return false
|
||||
}
|
||||
return true
|
||||
}
|
Reference in New Issue
Block a user