rtmpauth/cmd/simple.go

58 lines
1.5 KiB
Go
Raw Permalink Normal View History

2024-12-30 23:56:13 +01:00
package cmd
import (
"fmt"
"net/http"
"os"
2024-12-31 13:22:32 +01:00
"code.icod.de/dalu/sux"
2024-12-30 23:56:13 +01:00
"github.com/dchest/uniuri"
"github.com/spf13/cobra"
)
2024-12-31 13:29:23 +01:00
var (
ip = "127.0.0.1"
port = "31337"
)
2024-12-30 23:56:13 +01:00
// simpleCmd represents the simple command
var simpleCmd = &cobra.Command{
Use: "simple",
Short: "simple password comparison",
RunE: func(cmd *cobra.Command, args []string) error {
var pass = os.Getenv("RTMPAUTH_PASS")
if pass == "" {
pass = uniuri.New()
}
fmt.Println("Stream password:", pass)
2024-12-31 13:22:32 +01:00
fmt.Println("Stream port:", port)
r := sux.New()
r.POST("/auth", http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
2024-12-30 23:56:13 +01:00
if r.FormValue("name") == pass {
w.WriteHeader(http.StatusOK)
} else {
w.WriteHeader(http.StatusForbidden)
}
}))
2024-12-31 13:29:23 +01:00
addr := fmt.Sprintf("%s:%s", ip, port)
2024-12-31 13:22:32 +01:00
fmt.Println("Listening on addr:", addr)
return http.ListenAndServe(addr, r)
2024-12-30 23:56:13 +01:00
},
}
func init() {
rootCmd.AddCommand(simpleCmd)
// Here you will define your flags and configuration settings.
// Cobra supports Persistent Flags which will work for this command
// and all subcommands, e.g.:
// simpleCmd.PersistentFlags().String("foo", "", "A help for foo")
// Cobra supports local flags which will only run when this command
// is called directly, e.g.:
// simpleCmd.Flags().BoolP("toggle", "t", false, "Help message for toggle")
2024-12-31 13:29:23 +01:00
simpleCmd.Flags().StringVarP(&ip, "addr", "a", "127.0.0.1", "IP Address to listen on")
2024-12-30 23:56:13 +01:00
simpleCmd.Flags().StringVarP(&port, "port", "p", "31337", "Port to listen on")
}