mirror of
https://github.com/bingohuang/docker-labs.git
synced 2025-07-14 01:57:32 +08:00
* - Enable use of override for session timeout. This is more useful than having to hard-code and rebuild the code for the previous 4 hour limit. Just set environmental variable and start the app. - Future work may involve breaking down into minutes, but this is a good minimum delivery to provide value to end-user/developer. - Fixes bug in Captcha code by introducing new landing page. This is not a new go template, it's a separate HTML file because SRP - single reponsibility principle. Happy for this to be refacted after merging commit. - Fix for including Docker 1.12 override has been removed for later PR. * Merge * Reinstate 'material' JS include' * https for JS includes * HTTPs for JS in bypass
82 lines
2.5 KiB
Go
82 lines
2.5 KiB
Go
package main
|
|
|
|
import (
|
|
"log"
|
|
"net/http"
|
|
"os"
|
|
|
|
"flag"
|
|
"strconv"
|
|
|
|
"github.com/franela/play-with-docker/handlers"
|
|
"github.com/franela/play-with-docker/services"
|
|
"github.com/franela/play-with-docker/templates"
|
|
"github.com/gorilla/mux"
|
|
"github.com/urfave/negroni"
|
|
)
|
|
|
|
func main() {
|
|
var portNumber int
|
|
flag.IntVar(&portNumber, "port", 3000, "Give a TCP port to run the application")
|
|
flag.Parse()
|
|
|
|
bypassCaptcha := len(os.Getenv("GOOGLE_RECAPTCHA_DISABLED")) > 0
|
|
|
|
server := services.CreateWSServer()
|
|
server.On("connection", handlers.WS)
|
|
server.On("error", handlers.WSError)
|
|
|
|
err := services.LoadSessionsFromDisk()
|
|
if err != nil && !os.IsNotExist(err) {
|
|
log.Fatal("Error decoding sessions from disk ", err)
|
|
}
|
|
|
|
r := mux.NewRouter()
|
|
|
|
// Reverse proxy (needs to be the first route, to make sure it is the first thing we check)
|
|
proxyHandler := handlers.NewMultipleHostReverseProxy()
|
|
r.Host(`{node:ip[0-9]{1,3}_[0-9]{1,3}_[0-9]{1,3}_[0-9]{1,3}}-{port:[0-9]*}.{tld:.*}`).Handler(proxyHandler)
|
|
r.Host(`{node:ip[0-9]{1,3}_[0-9]{1,3}_[0-9]{1,3}_[0-9]{1,3}}.{tld:.*}`).Handler(proxyHandler)
|
|
|
|
r.StrictSlash(false)
|
|
|
|
r.HandleFunc("/ping", http.HandlerFunc(handlers.Ping)).Methods("GET")
|
|
|
|
r.HandleFunc("/", http.HandlerFunc(func(rw http.ResponseWriter, r *http.Request) {
|
|
if bypassCaptcha {
|
|
http.ServeFile(rw, r, "./www/bypass.html")
|
|
} else {
|
|
welcome, tmplErr := templates.GetWelcomeTemplate()
|
|
if tmplErr != nil {
|
|
log.Fatal(tmplErr)
|
|
}
|
|
rw.Write(welcome)
|
|
}
|
|
})).Methods("GET")
|
|
|
|
r.HandleFunc("/", http.HandlerFunc(handlers.NewSession)).Methods("POST")
|
|
|
|
r.HandleFunc("/sessions/{sessionId}", http.HandlerFunc(handlers.GetSession)).Methods("GET")
|
|
r.HandleFunc("/sessions/{sessionId}/instances", http.HandlerFunc(handlers.NewInstance)).Methods("POST")
|
|
r.HandleFunc("/sessions/{sessionId}/instances/{instanceName}", http.HandlerFunc(handlers.DeleteInstance)).Methods("DELETE")
|
|
|
|
h := http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
http.ServeFile(w, r, "./www/index.html")
|
|
})
|
|
|
|
r.HandleFunc("/p/{sessionId}", h).Methods("GET")
|
|
r.PathPrefix("/assets").Handler(http.FileServer(http.Dir("./www")))
|
|
r.HandleFunc("/robots.txt", http.HandlerFunc(func(rw http.ResponseWriter, r *http.Request) {
|
|
http.ServeFile(rw, r, "www/robots.txt")
|
|
}))
|
|
|
|
r.Handle("/sessions/{sessionId}/ws/", server)
|
|
|
|
n := negroni.Classic()
|
|
n.UseHandler(r)
|
|
|
|
log.Println("Listening on port " + strconv.Itoa(portNumber))
|
|
log.Fatal(http.ListenAndServe("0.0.0.0:"+strconv.Itoa(portNumber), n))
|
|
|
|
}
|