2019-11-09 15:50:12 +01:00
|
|
|
package rushlink
|
2019-09-19 21:29:25 +02:00
|
|
|
|
|
|
|
import (
|
2019-10-15 23:19:45 +02:00
|
|
|
"fmt"
|
2019-09-19 21:29:25 +02:00
|
|
|
"log"
|
|
|
|
"net/http"
|
2019-12-15 12:18:50 +01:00
|
|
|
"net/url"
|
2019-11-10 19:03:57 +01:00
|
|
|
"runtime/debug"
|
2019-12-08 21:56:02 +01:00
|
|
|
"strconv"
|
2019-09-19 21:29:25 +02:00
|
|
|
"time"
|
|
|
|
|
2019-12-03 23:08:58 +01:00
|
|
|
"gitea.hashru.nl/dsprenkels/rushlink/internal/db"
|
2019-09-19 21:29:25 +02:00
|
|
|
"github.com/gorilla/mux"
|
2019-12-15 12:18:50 +01:00
|
|
|
"github.com/pkg/errors"
|
2019-09-19 21:29:25 +02:00
|
|
|
)
|
|
|
|
|
2019-12-15 07:49:32 +01:00
|
|
|
const urlKeyExpr = "{key:[A-Za-z0-9-_]{4,}}"
|
|
|
|
const urlKeyWithExtExpr = urlKeyExpr + "{ext:\\.[A-Za-z0-9-_]+}"
|
|
|
|
|
2019-12-03 23:08:58 +01:00
|
|
|
type rushlink struct {
|
2019-12-15 12:18:50 +01:00
|
|
|
db *db.Database
|
|
|
|
fs *db.FileStore
|
|
|
|
host *url.URL
|
2019-12-03 23:08:58 +01:00
|
|
|
}
|
|
|
|
|
2019-12-15 12:18:50 +01:00
|
|
|
func (rl *rushlink) Host() *url.URL {
|
|
|
|
return rl.host
|
|
|
|
}
|
|
|
|
|
|
|
|
func (rl *rushlink) recoveryMiddleware(next http.Handler) http.Handler {
|
2019-10-15 23:19:45 +02:00
|
|
|
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
defer func() {
|
|
|
|
defer func() {
|
|
|
|
if err := recover(); err != nil {
|
|
|
|
log.Printf("error: panic while recovering from another panic: %v\n", err)
|
2019-11-10 19:03:57 +01:00
|
|
|
debug.PrintStack()
|
2019-10-15 23:19:45 +02:00
|
|
|
fmt.Fprintf(w, "internal server error: %v\n", err)
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
|
|
|
if err := recover(); err != nil {
|
|
|
|
log.Printf("error: %v\n", err)
|
2019-11-10 19:03:57 +01:00
|
|
|
debug.PrintStack()
|
2019-12-15 12:18:50 +01:00
|
|
|
rl.renderInternalServerError(w, r, err)
|
2019-10-15 23:19:45 +02:00
|
|
|
}
|
|
|
|
}()
|
|
|
|
next.ServeHTTP(w, r)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2019-12-15 12:18:50 +01:00
|
|
|
func (rl *rushlink) metricsMiddleware(next http.Handler) http.Handler {
|
|
|
|
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
srw := statusResponseWriter{Inner: w}
|
|
|
|
next.ServeHTTP(&srw, r)
|
|
|
|
status := strconv.Itoa(srw.StatusCode)
|
|
|
|
metricRequestsTotalCounter.WithLabelValues(status, r.Method).Inc()
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2019-12-08 21:56:02 +01:00
|
|
|
type statusResponseWriter struct {
|
|
|
|
Inner http.ResponseWriter
|
|
|
|
StatusCode int
|
|
|
|
}
|
|
|
|
|
|
|
|
func (w *statusResponseWriter) Header() http.Header {
|
|
|
|
return w.Inner.Header()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (w *statusResponseWriter) Write(buf []byte) (int, error) {
|
|
|
|
if w.StatusCode == 0 {
|
|
|
|
w.WriteHeader(http.StatusOK)
|
|
|
|
}
|
|
|
|
return w.Inner.Write(buf)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (w *statusResponseWriter) WriteHeader(statusCode int) {
|
|
|
|
w.StatusCode = statusCode
|
|
|
|
w.Inner.WriteHeader(statusCode)
|
|
|
|
}
|
|
|
|
|
|
|
|
// StartMainServer starts the main http server listening on addr.
|
2019-12-15 12:18:50 +01:00
|
|
|
func StartMainServer(addr string, db *db.Database, fs *db.FileStore, rawhost *string) {
|
|
|
|
var host *url.URL
|
|
|
|
if rawhost != nil {
|
|
|
|
var err error
|
|
|
|
host, err = url.Parse(*rawhost)
|
|
|
|
if err != nil {
|
|
|
|
log.Fatalln(errors.Wrap(err, "could not parse host flag"))
|
|
|
|
}
|
|
|
|
}
|
2019-12-03 23:08:58 +01:00
|
|
|
rl := rushlink{
|
2019-12-15 12:18:50 +01:00
|
|
|
db: db,
|
|
|
|
fs: fs,
|
|
|
|
host: host,
|
2019-12-03 23:08:58 +01:00
|
|
|
}
|
|
|
|
|
2019-09-19 21:29:25 +02:00
|
|
|
// Initialize Gorilla router
|
|
|
|
router := mux.NewRouter()
|
2019-12-15 12:18:50 +01:00
|
|
|
router.Use(rl.recoveryMiddleware)
|
|
|
|
router.Use(rl.metricsMiddleware)
|
2019-12-15 07:49:32 +01:00
|
|
|
router.HandleFunc("/uploads/{id:[A-Za-z0-9-_]+}/{filename:.+}", rl.uploadFileGetHandler).Methods("GET", "HEAD")
|
2019-12-15 07:13:49 +01:00
|
|
|
router.HandleFunc("/", rl.indexGetHandler).Methods("GET", "HEAD")
|
2019-12-03 23:08:58 +01:00
|
|
|
router.HandleFunc("/", rl.newPasteHandler).Methods("POST")
|
2019-12-15 07:49:32 +01:00
|
|
|
router.HandleFunc("/"+urlKeyExpr, rl.viewPasteHandler).Methods("GET", "HEAD")
|
|
|
|
router.HandleFunc("/"+urlKeyWithExtExpr, rl.viewPasteHandler).Methods("GET", "HEAD")
|
|
|
|
router.HandleFunc("/"+urlKeyExpr+"/nr", rl.viewPasteHandlerNoRedirect).Methods("GET", "HEAD")
|
|
|
|
router.HandleFunc("/"+urlKeyWithExtExpr+"/nr", rl.viewPasteHandlerNoRedirect).Methods("GET", "HEAD")
|
|
|
|
router.HandleFunc("/"+urlKeyExpr+"/meta", rl.viewPasteHandlerMeta).Methods("GET", "HEAD")
|
|
|
|
router.HandleFunc("/"+urlKeyWithExtExpr+"/meta", rl.viewPasteHandlerMeta).Methods("GET", "HEAD")
|
|
|
|
router.HandleFunc("/"+urlKeyExpr, rl.deletePasteHandler).Methods("DELETE")
|
|
|
|
router.HandleFunc("/"+urlKeyWithExtExpr, rl.deletePasteHandler).Methods("DELETE")
|
|
|
|
router.HandleFunc("/"+urlKeyExpr+"/delete", rl.deletePasteHandler).Methods("POST")
|
|
|
|
router.HandleFunc("/"+urlKeyWithExtExpr+"/delete", rl.deletePasteHandler).Methods("POST")
|
2019-09-19 21:29:25 +02:00
|
|
|
|
|
|
|
srv := &http.Server{
|
|
|
|
Handler: router,
|
2019-11-09 21:43:51 +01:00
|
|
|
Addr: addr,
|
2019-09-19 21:29:25 +02:00
|
|
|
WriteTimeout: 15 * time.Second,
|
|
|
|
ReadTimeout: 15 * time.Second,
|
|
|
|
}
|
|
|
|
log.Fatal(srv.ListenAndServe())
|
|
|
|
}
|