This repository has been archived by the owner on Feb 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmain.go
executable file
·216 lines (184 loc) · 4.99 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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
package main
import (
"crypto/rand"
"database/sql"
"encoding/json"
"fmt"
"github.com/DataDog/datadog-go/v5/statsd"
"github.com/getsentry/sentry-go"
_ "github.com/go-sql-driver/mysql"
"github.com/logrusorgru/aurora/v3"
"gopkg.in/DataDog/dd-trace-go.v1/ddtrace/tracer"
"gopkg.in/DataDog/dd-trace-go.v1/profiler"
"io/ioutil"
"log"
"net/http"
"os"
"regexp"
"strconv"
)
var global Config
var db *sql.DB
var salt []byte
var dataDogClient *statsd.Client
func logRequest(handler http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
// Parse form for further usage.
r.ParseForm()
if global.Debug {
log.Printf("%s %s", aurora.Blue(r.Method), aurora.Red(r.URL))
for name, value := range r.Form {
log.Print(name, " ", aurora.Green("=>"), " ", value)
}
log.Printf("Accessing from: %s", aurora.Blue(r.Host))
}
// Finally, serve.
handler.ServeHTTP(w, r)
})
}
func checkHandler(w http.ResponseWriter, r *http.Request) {
Check(w, r, db, strconv.Itoa(global.Interval))
}
func receiveHandler(w http.ResponseWriter, r *http.Request) {
Receive(w, r, db)
}
func deleteHandler(w http.ResponseWriter, r *http.Request) {
Delete(w, r, db)
}
func sendHandler(w http.ResponseWriter, r *http.Request) {
Send(w, r, db, global)
}
func configHandle(w http.ResponseWriter, r *http.Request) {
switch r.Method {
case "POST":
r.ParseForm()
fileWriter, _, err := r.FormFile("uploaded_config")
if err != nil || err == http.ErrMissingFile {
LogError("Incorrect file", err)
w.WriteHeader(http.StatusBadRequest)
fmt.Fprintf(w, "It seems your file upload went awry. Contact our support email: %s\nError: %v", global.SupportEmail, err)
return
}
file, err := ioutil.ReadAll(fileWriter)
if err != nil {
LogError("Unable to read file", err)
w.WriteHeader(http.StatusBadRequest)
fmt.Fprintf(w, "It seems your file upload went awry. Contact our support email: %s\nError: %v", global.SupportEmail, err)
return
}
patched, err := ModifyNwcConfig(file)
if err != nil {
LogError("Unable to patch", err)
w.WriteHeader(http.StatusBadRequest)
fmt.Fprintf(w, "It seems your patching went awry. Contact our support email: %s\nError: %v", global.SupportEmail, err)
return
}
w.Header().Add("Content-Type", "application/octet-stream")
w.Header().Add("Content-Disposition", "attachment; filename=\"nwc24msg.cfg\"")
w.Write(patched)
break
case "GET":
fmt.Fprint(w, "This page doesn't do anything by itself. Try going to the main site.")
default:
break
}
}
func main() {
if global.Datadog {
tracer.Start(
tracer.WithService("mail"),
tracer.WithEnv("prod"),
tracer.WithAgentAddr("127.0.0.1:8126"),
)
defer tracer.Stop()
if err := profiler.Start(
profiler.WithService("mail"),
profiler.WithEnv("prod"),
); err != nil {
log.Fatal(err)
}
defer profiler.Stop()
}
// Get salt for passwords
saltLocation := "config/salt.bin"
salt, err := ioutil.ReadFile(saltLocation)
if os.IsNotExist(err) {
log.Println("No salt found. Creating....")
salt = make([]byte, 128)
_, err := rand.Read(salt)
if err != nil {
panic(err)
}
err = ioutil.WriteFile("config/salt.bin", salt, os.ModePerm)
if err != nil {
panic(err)
}
} else if err != nil {
panic(err)
}
// Read config
file, err := os.Open("config/config.json")
if err != nil {
panic(err)
}
decoder := json.NewDecoder(file)
err = decoder.Decode(&global)
if err != nil {
panic(err)
}
if global.Debug {
log.Println("Connecting to MySQL...")
}
db, err = sql.Open("mysql", fmt.Sprintf("%s:%s@tcp(%s:%d)/%s",
global.Username, global.Password, global.Host, global.Port, global.DBName))
if err != nil {
panic(err)
}
// Ensure Mail-Go does not overload the backing database.
db.SetMaxOpenConns(50)
db.SetMaxIdleConns(10)
err = db.Ping()
if err != nil {
panic(err)
}
// Prepare database
initAccountDB()
initAuthDB()
initCheckDB()
initDeleteDB()
initInboundParseDB()
initReceiveDB()
initSendDB()
// Configure Sentry
if global.RavenDSN != "" {
err := sentry.Init(sentry.ClientOptions{
Dsn: global.RavenDSN,
})
if err != nil {
panic(err)
}
}
// Lastly, Datadog as a whole.
if global.Datadog {
dataDogClient, err = statsd.New("127.0.0.1:8125")
if err != nil {
panic(err)
}
}
// Mail calls
http.HandleFunc("/cgi-bin/account.cgi", Account)
http.HandleFunc("/cgi-bin/patcher.cgi", Account)
http.HandleFunc("/cgi-bin/check.cgi", checkHandler)
http.HandleFunc("/cgi-bin/receive.cgi", receiveHandler)
http.HandleFunc("/cgi-bin/delete.cgi", deleteHandler)
http.HandleFunc("/cgi-bin/send.cgi", sendHandler)
mailDomain = regexp.MustCompile(`w(\d{16})\@(` + global.SendGridDomain + `)`)
// Inbound parse
http.HandleFunc("/sendgrid/parse", sendGridHandler)
// Site
http.HandleFunc("/patch", configHandle)
http.Handle("/", http.FileServer(http.Dir("./patch")))
log.Println("Running...")
// We do this to log all access to the page.
log.Fatal(http.ListenAndServe(global.BindTo, logRequest(http.DefaultServeMux)))
}