mirror of
https://gitlab.crans.org/nounous/ghostream.git
synced 2024-12-22 19:42:20 +00:00
Manage SRT sockets in a dedicated go routine
This commit is contained in:
parent
7ceecad355
commit
596beeeb89
@ -4,6 +4,7 @@ package srt
|
||||
import "C"
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"gitlab.crans.org/nounous/ghostream/auth"
|
||||
"gitlab.crans.org/nounous/ghostream/auth/bypass"
|
||||
"log"
|
||||
@ -27,6 +28,11 @@ type Packet struct {
|
||||
StreamName string
|
||||
}
|
||||
|
||||
var (
|
||||
authBackend auth.Backend
|
||||
forwardingChannel chan Packet
|
||||
)
|
||||
|
||||
// Split host and port from listen address
|
||||
func splitHostPort(hostport string) (string, uint16) {
|
||||
host, portS, err := net.SplitHostPort(hostport)
|
||||
@ -44,10 +50,12 @@ func splitHostPort(hostport string) (string, uint16) {
|
||||
}
|
||||
|
||||
// Serve SRT server
|
||||
func Serve(cfg *Options, authBackend auth.Backend, forwardingChannel chan Packet) {
|
||||
if authBackend == nil {
|
||||
authBackend, _ = bypass.New()
|
||||
func Serve(cfg *Options, backend auth.Backend, forwarding chan Packet) {
|
||||
if backend == nil {
|
||||
backend, _ = bypass.New()
|
||||
}
|
||||
authBackend = backend
|
||||
forwardingChannel = forwarding
|
||||
|
||||
options := make(map[string]string)
|
||||
options["transtype"] = "live"
|
||||
@ -71,25 +79,18 @@ func Serve(cfg *Options, authBackend auth.Backend, forwardingChannel chan Packet
|
||||
break // FIXME: should not break here
|
||||
}
|
||||
|
||||
streamID, err := s.GetSockOptString(C.SRTO_STREAMID)
|
||||
if err != nil {
|
||||
log.Println("Error while fetching stream key:", err)
|
||||
s.Close()
|
||||
continue
|
||||
}
|
||||
if !strings.Contains(streamID, "|") {
|
||||
log.Printf("Warning: stream id must be at the format streamID|password. Input: %s", streamID)
|
||||
s.Close()
|
||||
continue
|
||||
go acceptSocket(s)
|
||||
}
|
||||
|
||||
splittedStreamID := strings.SplitN(streamID, "|", 2)
|
||||
streamName, password := splittedStreamID[0], splittedStreamID[1]
|
||||
loggedIn, err := authBackend.Login(streamName, password)
|
||||
if !loggedIn {
|
||||
log.Printf("Invalid credentials for stream %s.", streamName)
|
||||
sck.Close()
|
||||
}
|
||||
|
||||
func acceptSocket(s *srtgo.SrtSocket) {
|
||||
streamName, err := authenticateSocket(s)
|
||||
if err != nil {
|
||||
log.Println("Authentication failure:", err)
|
||||
s.Close()
|
||||
continue
|
||||
return
|
||||
}
|
||||
|
||||
log.Printf("Starting stream %s...", streamName)
|
||||
@ -127,7 +128,23 @@ func Serve(cfg *Options, authBackend auth.Backend, forwardingChannel chan Packet
|
||||
}
|
||||
|
||||
forwardingChannel <- Packet{StreamName: streamName, PacketType: "close", Data: nil}
|
||||
}
|
||||
|
||||
func authenticateSocket(s *srtgo.SrtSocket) (string, error) {
|
||||
streamID, err := s.GetSockOptString(C.SRTO_STREAMID)
|
||||
if err != nil {
|
||||
return "", fmt.Errorf("error while fetching stream key: %s", err)
|
||||
}
|
||||
if !strings.Contains(streamID, "|") {
|
||||
return streamID, fmt.Errorf("warning: stream id must be at the format streamID|password. Input: %s", streamID)
|
||||
}
|
||||
|
||||
sck.Close()
|
||||
splittedStreamID := strings.SplitN(streamID, "|", 2)
|
||||
streamName, password := splittedStreamID[0], splittedStreamID[1]
|
||||
loggedIn, err := authBackend.Login(streamName, password)
|
||||
if !loggedIn {
|
||||
return streamID, fmt.Errorf("invalid credentials for stream %s", streamName)
|
||||
}
|
||||
|
||||
return streamName, nil
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user