hugo-mx-gateway/main.go

96 lines
2.2 KiB
Go

/*
Copyright 2020 Rodrigue Chakode and contributors.
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 (
"log"
"net/http"
"os"
"time"
"github.com/spf13/viper"
)
type Route struct {
Name string
Method string
Pattern string
Handler http.Handler
}
type Routes []Route
var routes = Routes{
Route{
"SendMail",
"POST",
"/sendmail",
MuxSecAllowedDomainsHandler(
MuxSecReCaptchaHandler(
http.HandlerFunc(SendMail))),
},
Route{
"Healthz",
"GET",
"/healthz",
http.HandlerFunc(Healthz),
},
}
func MuxLoggerHandler(inner http.Handler, name string) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
start := time.Now()
inner.ServeHTTP(w, r)
log.Printf(
"%s %s %s %s",
r.Method,
r.RequestURI,
name,
time.Since(start),
)
})
}
func main() {
viper.AutomaticEnv()
viper.SetDefault("SERVER_TLS_CERT", "/etc/cert/cert.pem")
viper.SetDefault("SERVER_TLS_PRIVATEKEY", "/etc/cert/privkey.pem")
viper.SetDefault("SMTP_SERVER_ADDR", "127.0.0.1:465")
viper.SetDefault("SMTP_CLIENT_USERNAME", "")
viper.SetDefault("SMTP_CLIENT_PASSWORD", "")
viper.SetDefault("CONTACT_REPLY_EMAIL", "noreply@example.com")
viper.SetDefault("CONTACT_REPLY_BCC_EMAIL", "contact@example.com")
viper.SetDefault("EMAIL_SUBJECT", "New message from contact form")
viper.SetDefault("SMTP_AUTHENTICATION_ENABLED", true)
host := os.Getenv("HOST")
port := os.Getenv("PORT")
if port == "" {
port = "8080"
log.Printf("Defaulting to port %s", port)
}
for _, route := range routes {
handler := MuxLoggerHandler(route.Handler, route.Name)
http.Handle(route.Pattern, handler)
}
log.Printf("Listening on port %s", port)
log.Fatal(http.ListenAndServe(host+":"+port, nil))
}