2015-09-24 07:44:49 +02:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"flag"
|
|
|
|
"log"
|
|
|
|
"net"
|
|
|
|
"net/http"
|
|
|
|
"regexp"
|
|
|
|
|
2015-09-25 05:21:37 +02:00
|
|
|
"github.com/flosch/pongo2"
|
2015-09-24 07:44:49 +02:00
|
|
|
"github.com/zenazn/goji"
|
2015-09-25 18:00:14 +02:00
|
|
|
"github.com/zenazn/goji/web/middleware"
|
2015-09-24 07:44:49 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
var Config struct {
|
|
|
|
bind string
|
|
|
|
filesDir string
|
2015-09-25 18:00:14 +02:00
|
|
|
noLogs bool
|
2015-09-24 07:44:49 +02:00
|
|
|
siteName string
|
2015-09-25 06:58:38 +02:00
|
|
|
siteURL string
|
2015-09-24 07:44:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
flag.StringVar(&Config.bind, "b", "127.0.0.1:8080",
|
|
|
|
"host to bind to (default: 127.0.0.1:8080)")
|
2015-09-25 06:58:38 +02:00
|
|
|
flag.StringVar(&Config.filesDir, "filespath", "files/",
|
2015-09-24 07:44:49 +02:00
|
|
|
"path to files directory (default: files/)")
|
2015-09-25 18:00:14 +02:00
|
|
|
flag.BoolVar(&Config.noLogs, "nologs", false,
|
|
|
|
"remove stdout output for each request")
|
2015-09-25 06:58:38 +02:00
|
|
|
flag.StringVar(&Config.siteName, "sitename", "linx",
|
2015-09-24 07:44:49 +02:00
|
|
|
"name of the site")
|
2015-09-25 06:58:38 +02:00
|
|
|
flag.StringVar(&Config.siteURL, "siteurl", "http://"+Config.bind+"/",
|
|
|
|
"site base url (including trailing slash)")
|
2015-09-24 07:44:49 +02:00
|
|
|
flag.Parse()
|
|
|
|
|
2015-09-25 18:00:14 +02:00
|
|
|
if Config.noLogs {
|
|
|
|
goji.Abandon(middleware.Logger)
|
|
|
|
}
|
2015-09-25 05:21:37 +02:00
|
|
|
|
|
|
|
// Template Globals
|
|
|
|
pongo2.DefaultSet.Globals["sitename"] = Config.siteName
|
|
|
|
|
|
|
|
// Routing setup
|
2015-09-24 07:44:49 +02:00
|
|
|
nameRe := regexp.MustCompile(`^/(?P<name>[a-z0-9-\.]+)$`)
|
|
|
|
selifRe := regexp.MustCompile(`^/selif/(?P<name>[a-z0-9-\.]+)$`)
|
|
|
|
|
|
|
|
goji.Get("/", indexHandler)
|
2015-09-25 18:00:14 +02:00
|
|
|
|
2015-09-24 07:44:49 +02:00
|
|
|
goji.Post("/upload", uploadPostHandler)
|
2015-09-25 18:00:14 +02:00
|
|
|
goji.Post("/upload/", http.RedirectHandler("/upload", 301))
|
2015-09-24 07:44:49 +02:00
|
|
|
goji.Put("/upload", uploadPutHandler)
|
2015-09-25 18:00:14 +02:00
|
|
|
goji.Put("/upload/:name", uploadPutHandler)
|
|
|
|
|
2015-09-24 22:04:51 +02:00
|
|
|
goji.Get("/static/*", http.StripPrefix("/static/",
|
|
|
|
http.FileServer(http.Dir("static/"))))
|
2015-09-24 07:44:49 +02:00
|
|
|
goji.Get(nameRe, fileDisplayHandler)
|
2015-09-24 22:04:51 +02:00
|
|
|
goji.Get(selifRe, fileServeHandler)
|
2015-09-25 18:00:14 +02:00
|
|
|
goji.NotFound(notFoundHandler)
|
2015-09-24 07:44:49 +02:00
|
|
|
|
|
|
|
listener, err := net.Listen("tcp", Config.bind)
|
|
|
|
if err != nil {
|
|
|
|
log.Fatal("Could not bind: ", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
goji.ServeListener(listener)
|
|
|
|
}
|