2023-10-20 19:57:29 -04:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2023-11-07 15:57:43 -05:00
|
|
|
"bufio"
|
2023-10-20 19:57:29 -04:00
|
|
|
"bytes"
|
2023-11-07 15:57:43 -05:00
|
|
|
"context"
|
2023-10-20 20:01:11 -04:00
|
|
|
"fmt"
|
2023-10-20 19:57:29 -04:00
|
|
|
"io"
|
2023-10-20 20:01:11 -04:00
|
|
|
"net/url"
|
2023-10-20 19:57:29 -04:00
|
|
|
"os"
|
2023-10-23 07:04:28 -04:00
|
|
|
"strings"
|
2023-10-20 19:57:29 -04:00
|
|
|
|
|
|
|
"github.com/urfave/cli/v2"
|
|
|
|
)
|
|
|
|
|
2023-11-07 15:57:43 -05:00
|
|
|
const (
|
|
|
|
LINE_PROCESSING_ERROR = iota
|
|
|
|
)
|
|
|
|
|
|
|
|
func getStdinLinesOrBlank() chan string {
|
|
|
|
ch := make(chan string)
|
|
|
|
go func() {
|
|
|
|
r := bufio.NewReader(os.Stdin)
|
|
|
|
if _, err := r.Peek(1); err != nil {
|
|
|
|
ch <- ""
|
|
|
|
close(ch)
|
|
|
|
} else {
|
|
|
|
scanner := bufio.NewScanner(r)
|
|
|
|
for scanner.Scan() {
|
|
|
|
ch <- scanner.Text()
|
|
|
|
}
|
|
|
|
close(ch)
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
return ch
|
|
|
|
}
|
|
|
|
|
|
|
|
func getStdinOrFirstArgument(c *cli.Context) string {
|
|
|
|
// try the first argument
|
|
|
|
target := c.Args().First()
|
|
|
|
if target != "" {
|
|
|
|
return target
|
|
|
|
}
|
|
|
|
|
|
|
|
// try the stdin
|
2023-10-20 19:57:29 -04:00
|
|
|
stat, _ := os.Stdin.Stat()
|
|
|
|
if (stat.Mode() & os.ModeCharDevice) == 0 {
|
|
|
|
read := bytes.NewBuffer(make([]byte, 0, 1000))
|
|
|
|
_, err := io.Copy(read, os.Stdin)
|
|
|
|
if err == nil {
|
2023-10-23 07:04:28 -04:00
|
|
|
return strings.TrimSpace(read.String())
|
2023-10-20 19:57:29 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
2023-10-20 20:01:11 -04:00
|
|
|
func validateRelayURLs(wsurls []string) error {
|
|
|
|
for _, wsurl := range wsurls {
|
|
|
|
u, err := url.Parse(wsurl)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("invalid relay url '%s': %s", wsurl, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if u.Scheme != "ws" && u.Scheme != "wss" {
|
|
|
|
return fmt.Errorf("relay url must use wss:// or ws:// schemes, got '%s'", wsurl)
|
|
|
|
}
|
|
|
|
|
|
|
|
if u.Host == "" {
|
|
|
|
return fmt.Errorf("relay url '%s' is missing the hostname", wsurl)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
2023-11-07 15:57:43 -05:00
|
|
|
|
|
|
|
func lineProcessingError(c *cli.Context, msg string, args ...any) {
|
|
|
|
c.Context = context.WithValue(c.Context, LINE_PROCESSING_ERROR, true)
|
|
|
|
fmt.Fprintf(os.Stderr, msg+"\n", args...)
|
|
|
|
}
|
|
|
|
|
|
|
|
func exitIfLineProcessingError(c *cli.Context) {
|
|
|
|
if val := c.Context.Value(LINE_PROCESSING_ERROR); val != nil && val.(bool) {
|
|
|
|
os.Exit(123)
|
|
|
|
}
|
|
|
|
}
|