-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmaulu.go
128 lines (109 loc) · 3.55 KB
/
maulu.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
// mau\Lu - A simple URL shortening backend.
// Copyright (C) 2020 Tulir Asokan
//
// 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 <https://www.gnu.org/licenses/>.
package main
import (
"fmt"
"html/template"
"net/http"
"net/url"
"os"
"github.com/gorilla/mux"
flag "github.com/ogier/pflag"
log "maunium.net/go/maulogger/v2"
"maunium.net/go/maulu/data"
)
func getIP(r *http.Request) string {
if config.TrustHeaders && len(r.Header.Get("X-Forwarded-For")) > 0 {
return r.Header.Get("X-Forwarded-For")
}
return r.RemoteAddr
}
var debug = flag.BoolP("debug", "d", false, "Enable to print debug messages to stdout")
var confPath = flag.StringP("config", "c", "/etc/maulu/config.json", "The path of the mau\\Lu configuration file.")
var logPath = flag.StringP("logs", "l", "/var/log/maulu", "The path to store log files in")
var config *data.Configuration
var baseURL *url.URL
var templRedirect *template.Template
func init() {
flag.Parse()
}
func main() {
// Configure the logger
log.DefaultLogger.PrintLevel = log.LevelInfo.Severity
if *debug {
log.DefaultLogger.PrintLevel = log.LevelDebug.Severity
}
log.DefaultLogger.FileFormat = func(date string, i int) string {
return fmt.Sprintf("%[3]s/%[1]s-%02[2]d.log", date, i, *logPath)
}
// Initialize the logger
if len(*logPath) > 0 {
err := log.OpenFile()
if err != nil {
log.Errorln("Error opening log file:", err)
}
}
log.Infofln("Initializing mau\\Lu")
loadConfig()
loadTemplates()
loadDatabase()
log.Infofln("Listening on %s:%d", config.IP, config.Port)
r := mux.NewRouter()
r.HandleFunc("/api/shorten", shorten).Methods(http.MethodPost, http.MethodOptions)
r.HandleFunc("/api/unshorten", unshorten).Methods(http.MethodPost, http.MethodOptions)
r.HandleFunc("/{short:[a-zA-Z0-9-_ ]+}", get).Methods(http.MethodGet, http.MethodHead)
r.HandleFunc("/{short:[a-zA-Z0-9-_ ]+}", put).Methods(http.MethodPut)
r.HandleFunc("/{short:[a-zA-Z0-9-_ ]+}", options).Methods(http.MethodOptions)
err := http.ListenAndServe(fmt.Sprintf("%s:%d", config.IP, config.Port), r)
if err != nil {
log.Fatalln("Fatal error listening:", err)
}
}
func loadConfig() {
log.Infoln("Loading config...")
var err error
config, err = data.LoadConfig(*confPath)
if err != nil {
log.Fatalfln("Failed to load config: %[1]s", err)
os.Exit(1)
}
baseURL, err = url.Parse(config.URL)
if err != nil {
log.Fatalln("Invalid base URL:", err)
os.Exit(4)
}
log.Debugln("Successfully loaded config.")
}
func loadDatabase() {
log.Infoln("Loading database...")
var err error
err = data.LoadDatabase(config.Database)
if err != nil {
log.Fatalfln("Failed to load database: %[1]s", err)
os.Exit(2)
}
log.Debugln("Successfully loaded database.")
}
func loadTemplates() {
log.Infoln("Loading HTML redirect template...")
var err error
templRedirect, err = template.ParseFiles(config.RedirectTemplate)
if err != nil {
log.Fatalfln("Failed to load HTML redirect template: %s", err)
os.Exit(3)
}
log.Debugln("Successfully loaded HTML redirect template.")
}