487bd12444
* First pass at restructuring the project; untested but it does compile
* Restructure builds and runs 🎉
* Add the dist folder to the gitignore
* Update core/playlist/monitor.go
* golint and reorganize the monitor.go file
Co-authored-by: Gabe Kangas <gabek@real-ity.com>
25 lines
517 B
Go
25 lines
517 B
Go
package controllers
|
|
|
|
import (
|
|
"net/http"
|
|
"path"
|
|
|
|
"github.com/gabek/owncast/core"
|
|
"github.com/gabek/owncast/router/middleware"
|
|
"github.com/gabek/owncast/utils"
|
|
)
|
|
|
|
//IndexHandler handles the default index route
|
|
func IndexHandler(w http.ResponseWriter, r *http.Request) {
|
|
middleware.EnableCors(&w)
|
|
|
|
http.ServeFile(w, r, path.Join("webroot", r.URL.Path))
|
|
|
|
if path.Ext(r.URL.Path) == ".m3u8" {
|
|
middleware.DisableCache(&w)
|
|
|
|
clientID := utils.GenerateClientIDFromRequest(r)
|
|
core.SetClientActive(clientID)
|
|
}
|
|
}
|