This repository has been archived by the owner on Sep 21, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
96 lines (80 loc) · 2.34 KB
/
main.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
/*
* screend
* Copyright (C) 2019 OkaeriPoland
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
package main
import (
"log"
"path/filepath"
"strconv"
"strings"
"time"
)
func main() {
files, err := filepath.Glob("daemons/*.ini")
if err != nil {
log.Fatal("Failed to find daemons: ", err)
return
}
var daemons []DaemonConfig
for _, cfgPath := range files {
cfg, err := loadDaemon(cfgPath)
if err != nil {
log.Print("Failed load ", cfgPath, err)
continue
}
daemons = append(daemons, *cfg)
}
firstRun := true
for {
for _, daemon := range daemons {
if !daemon.Enabled {
continue
}
command := daemon.Command
runDirectory := daemon.RunDirectory
name := daemon.Name
userName := daemon.User
logging := daemon.Logging
screen, err := runScreen(userName, name, runDirectory, command, logging)
if err != nil {
if err.Error() == "SCREEN_ALREADY_EXISTS" {
if firstRun {
log.Print("(", name, " on ", userName, ") WARNING: skipped, screen already exists")
}
} else {
log.Print("(", name, " on ", userName, ") FAILED: ", command, " [", err, "]")
}
continue
}
log.Print("("+strconv.Itoa(screen.id)+", "+screen.name, " on ", userName, ") STARTED: "+command)
startHook := daemon.StartHook
if len(startHook) > 0 {
userInfo, err := getUserInfoByName(userName)
if err != nil {
log.Print("(", name, " on ", userName, ") START HOOK FAILED: cannot get user info")
}
output, err := executeCommand(userInfo, false, runDirectory, strings.Split(startHook, " ")...)
if err != nil {
log.Print("(", name, " on ", userName, ") START HOOK FAILED: ", output, " [", err, "]")
}
}
}
firstRun = false
time.Sleep(5 * time.Second)
}
}