linx-server/server.go

76 lines
1.8 KiB
Go
Raw Normal View History

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