mirror of
https://gitlab.crans.org/nounous/ghostream.git
synced 2024-12-22 15:02:19 +00:00
Split web into Go submodule
This commit is contained in:
parent
b5a7b9bbcd
commit
a0d814b76b
28
docs/docker-compose.yml
Normal file
28
docs/docker-compose.yml
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
# Example of Docker Compose setup using Traefik reverse proxy
|
||||||
|
|
||||||
|
version: '3'
|
||||||
|
|
||||||
|
services:
|
||||||
|
traefik:
|
||||||
|
image: traefik:v2.2.11
|
||||||
|
restart: always
|
||||||
|
ports:
|
||||||
|
- 443:443
|
||||||
|
- 80:80
|
||||||
|
- 1935:1935
|
||||||
|
volumes:
|
||||||
|
- /var/run/docker.sock:/var/run/docker.sock
|
||||||
|
- ./traefik_data:/data
|
||||||
|
command:
|
||||||
|
# Read docker-compose labels but do not expose by default
|
||||||
|
- "--providers.docker=true"
|
||||||
|
- "--providers.docker.exposedbydefault=false"
|
||||||
|
# Define entrypoints
|
||||||
|
- "--entrypoints.web.address=:80"
|
||||||
|
- "--entrypoints.web.http.redirections.entryPoint.to=websecure"
|
||||||
|
- "--entrypoints.websecure.address=:443"
|
||||||
|
- "--entrypoints.rtmpsecure.address=:1935"
|
||||||
|
# Define certificates
|
||||||
|
- "--certificatesResolvers.mytlschallenge.acme.email=root@example.com"
|
||||||
|
- "--certificatesResolvers.mytlschallenge.acme.storage=/data/acme.json"
|
||||||
|
- "--certificatesResolvers.mytlschallenge.acme.httpChallenge.entryPoint=web"
|
46
main.go
46
main.go
@ -1,51 +1,9 @@
|
|||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"os"
|
"gitlab.crans.org/nounous/ghostream/web"
|
||||||
"log"
|
|
||||||
"net/http"
|
|
||||||
"html/template"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
// Preload templates
|
|
||||||
var templates = template.Must(template.ParseGlob("web/template/*.tmpl"))
|
|
||||||
|
|
||||||
// Handle site index and viewer pages
|
|
||||||
func handlerViewer(w http.ResponseWriter, r *http.Request) {
|
|
||||||
// Remove traling slash
|
|
||||||
//path := r.URL.Path[1:]
|
|
||||||
|
|
||||||
// Render template
|
|
||||||
err := templates.ExecuteTemplate(w, "base", nil)
|
|
||||||
if err != nil {
|
|
||||||
log.Println(err.Error())
|
|
||||||
http.Error(w, "Internal Server Error", http.StatusInternalServerError)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Auth incoming stream
|
|
||||||
func handleStreamAuth(w http.ResponseWriter, r *http.Request) {
|
|
||||||
// FIXME POST request only with "name" and "pass"
|
|
||||||
// if name or pass missing => 400 Malformed request
|
|
||||||
// else login in against LDAP or static users
|
|
||||||
http.Error(w, "Not implemented", 400)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Handle static files
|
|
||||||
// We do not use http.FileServer as we do not want directory listing
|
|
||||||
func handleStatic(w http.ResponseWriter, r *http.Request) {
|
|
||||||
path := "./" + r.URL.Path
|
|
||||||
if f, err := os.Stat(path); err == nil && !f.IsDir() {
|
|
||||||
http.ServeFile(w, r, path)
|
|
||||||
} else {
|
|
||||||
http.NotFound(w, r)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
// Set up HTTP router and server
|
web.ServeHTTP()
|
||||||
http.HandleFunc("/", handlerViewer)
|
|
||||||
http.HandleFunc("/rtmp/auth", handleStreamAuth)
|
|
||||||
http.HandleFunc("/static/", handleStatic)
|
|
||||||
log.Fatal(http.ListenAndServe(":8080", nil))
|
|
||||||
}
|
}
|
||||||
|
55
web/web.go
Normal file
55
web/web.go
Normal file
@ -0,0 +1,55 @@
|
|||||||
|
package web
|
||||||
|
|
||||||
|
import (
|
||||||
|
"html/template"
|
||||||
|
"log"
|
||||||
|
"net/http"
|
||||||
|
"os"
|
||||||
|
)
|
||||||
|
|
||||||
|
// Preload templates
|
||||||
|
var templates = template.Must(template.ParseGlob("web/template/*.tmpl"))
|
||||||
|
|
||||||
|
// Handle site index and viewer pages
|
||||||
|
func handlerViewer(w http.ResponseWriter, r *http.Request) {
|
||||||
|
// Remove traling slash
|
||||||
|
//path := r.URL.Path[1:]
|
||||||
|
|
||||||
|
// Render template
|
||||||
|
err := templates.ExecuteTemplate(w, "base", nil)
|
||||||
|
if err != nil {
|
||||||
|
log.Println(err.Error())
|
||||||
|
http.Error(w, "Internal Server Error", http.StatusInternalServerError)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Auth incoming stream
|
||||||
|
func handleStreamAuth(w http.ResponseWriter, r *http.Request) {
|
||||||
|
// FIXME POST request only with "name" and "pass"
|
||||||
|
// if name or pass missing => 400 Malformed request
|
||||||
|
// else login in against LDAP or static users
|
||||||
|
http.Error(w, "Not implemented", 400)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Handle static files
|
||||||
|
// We do not use http.FileServer as we do not want directory listing
|
||||||
|
func handleStatic(w http.ResponseWriter, r *http.Request) {
|
||||||
|
path := "./web/" + r.URL.Path
|
||||||
|
if f, err := os.Stat(path); err == nil && !f.IsDir() {
|
||||||
|
http.ServeFile(w, r, path)
|
||||||
|
} else {
|
||||||
|
http.NotFound(w, r)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func ServeHTTP() {
|
||||||
|
// Load settings
|
||||||
|
listen_address := "127.0.0.1:8080"
|
||||||
|
|
||||||
|
// Set up HTTP router and server
|
||||||
|
http.HandleFunc("/", handlerViewer)
|
||||||
|
http.HandleFunc("/rtmp/auth", handleStreamAuth)
|
||||||
|
http.HandleFunc("/static/", handleStatic)
|
||||||
|
log.Print("Listening on http://" + listen_address)
|
||||||
|
log.Fatal(http.ListenAndServe(listen_address, nil))
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user