2023-01-11 06:38:48 +00:00
|
|
|
package barertc
|
|
|
|
|
|
|
|
import (
|
|
|
|
"html/template"
|
|
|
|
"net/http"
|
|
|
|
|
2023-02-05 08:53:50 +00:00
|
|
|
"git.kirsle.net/apps/barertc/pkg/config"
|
2023-01-11 06:38:48 +00:00
|
|
|
"git.kirsle.net/apps/barertc/pkg/log"
|
2023-02-05 08:53:50 +00:00
|
|
|
"git.kirsle.net/apps/barertc/pkg/util"
|
2023-01-11 06:38:48 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// IndexPage returns the HTML template for the chat room.
|
|
|
|
func IndexPage() http.HandlerFunc {
|
|
|
|
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
// Load the template, TODO: once on server startup.
|
|
|
|
tmpl := template.New("index")
|
2023-02-05 08:53:50 +00:00
|
|
|
|
|
|
|
// Variables to give to the front-end page.
|
|
|
|
var values = map[string]interface{}{
|
|
|
|
// A cache-busting hash for JS and CSS includes.
|
|
|
|
"CacheHash": util.RandomString(8),
|
|
|
|
|
|
|
|
// The current website settings.
|
|
|
|
"Config": config.Current,
|
|
|
|
}
|
|
|
|
|
2023-01-11 06:38:48 +00:00
|
|
|
tmpl.Funcs(template.FuncMap{
|
|
|
|
// Cache busting random string for JS and CSS dependency.
|
2023-02-05 08:53:50 +00:00
|
|
|
// "CacheHash": func() string {
|
|
|
|
// return util.RandomString(8)
|
|
|
|
// },
|
|
|
|
|
|
|
|
//
|
2023-01-11 06:38:48 +00:00
|
|
|
})
|
|
|
|
tmpl, err := tmpl.ParseFiles("web/templates/chat.html")
|
|
|
|
if err != nil {
|
|
|
|
panic(err.Error())
|
|
|
|
}
|
|
|
|
// END load the template
|
|
|
|
|
|
|
|
log.Info("Index route hit")
|
2023-02-05 08:53:50 +00:00
|
|
|
tmpl.ExecuteTemplate(w, "index", values)
|
2023-01-11 06:38:48 +00:00
|
|
|
})
|
|
|
|
}
|