-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
147 lines (127 loc) · 3.74 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
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
// SPDX-License-Identifier: Apache-2.0
// Copyright 2020,2022 Marcus Soll
//
// 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.
package main
import (
"encoding/json"
"errors"
"flag"
"fmt"
"log"
"os"
"os/signal"
"runtime/debug"
"strings"
"syscall"
_ "github.com/Top-Ranger/responsego/authenticater"
_ "github.com/Top-Ranger/responsego/plugin"
"github.com/Top-Ranger/responsego/registry"
"github.com/Top-Ranger/responsego/translation"
)
// ConfigStruct contains all configuration options for PollGo!
type ConfigStruct struct {
Language string
Address string
GCMinutes int
PathImpressum string
PathDSGVO string
ServerPath string
ServerName string
LogLogin bool
NeedAuthenticationForNew bool
Authenticater string
AuthenticaterConfig string
}
var config ConfigStruct
var authenticater registry.Authenticater
func loadConfig(path string) (ConfigStruct, error) {
log.Printf("main: Loading config (%s)", path)
b, err := os.ReadFile(path)
if err != nil {
return ConfigStruct{}, errors.New(fmt.Sprintln("Can not read config.json:", err))
}
c := ConfigStruct{}
err = json.Unmarshal(b, &c)
if err != nil {
return ConfigStruct{}, errors.New(fmt.Sprintln("Error while parsing config.json:", err))
}
if !strings.HasPrefix(c.ServerPath, "/") && c.ServerPath != "" {
log.Println("load config: ServerPath does not start with '/', adding it as a prefix")
c.ServerPath = strings.Join([]string{"/", c.ServerPath}, "")
}
c.ServerPath = strings.TrimSuffix(c.ServerPath, "/")
c.ServerName = strings.TrimSuffix(c.ServerName, "/")
return c, nil
}
func printInfo() {
log.Println("ResponseGo!")
bi, ok := debug.ReadBuildInfo()
if !ok {
log.Print("- no build info found")
return
}
log.Printf("- go version: %s", bi.GoVersion)
for _, s := range bi.Settings {
switch s.Key {
case "-tags":
log.Printf("- build tags: %s", s.Value)
case "vcs.revision":
l := 7
if len(s.Value) > 7 {
s.Value = s.Value[:l]
}
log.Printf("- commit: %s", s.Value)
case "vcs.modified":
log.Printf("- files modified: %s", s.Value)
}
}
}
func main() {
printInfo()
configPath := flag.String("config", "./config.json", "Path to json config for ResponseGo!")
flag.Parse()
c, err := loadConfig(*configPath)
if err != nil {
panic(err)
}
config = c
err = translation.SetDefaultTranslation(config.Language)
if err != nil {
log.Panicf("main: Error setting default language '%s': %s", config.Language, err.Error())
}
log.Printf("main: Setting language to '%s'", config.Language)
if config.NeedAuthenticationForNew {
a, ok := registry.GetAuthenticater(config.Authenticater)
if !ok {
log.Panicf("main: Unknown Authenticater '%s'", c.Authenticater)
}
b, err := os.ReadFile(config.AuthenticaterConfig)
if err != nil {
log.Panicf("main: Can not read %s: %s", c.AuthenticaterConfig, err.Error())
}
err = a.LoadConfig(b)
if err != nil {
log.Panicf("main: Can not load Authenticater '%s': %s", config.Authenticater, err.Error())
}
authenticater = a
}
RunServer()
s := make(chan os.Signal, 1)
signal.Notify(s, os.Interrupt, syscall.SIGTERM)
log.Println("main: waiting")
for range s {
StopServer()
return
}
}