forked from tellytv/telly
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
204 lines (169 loc) · 7.88 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
package main
import (
"encoding/json"
fflag "flag"
"fmt"
"net"
"os"
"regexp"
"strings"
"github.com/prometheus/client_golang/prometheus"
"github.com/prometheus/common/version"
"github.com/sirupsen/logrus"
flag "github.com/spf13/pflag"
"github.com/spf13/viper"
)
var (
namespace = "telly"
namespaceWithVersion = fmt.Sprintf("%s %s", namespace, version.Version)
log = &logrus.Logger{
Out: os.Stderr,
Formatter: &logrus.TextFormatter{
FullTimestamp: true,
},
Hooks: make(logrus.LevelHooks),
Level: logrus.DebugLevel,
}
exposedChannels = prometheus.NewGauge(
prometheus.GaugeOpts{
Name: "exposed_channels_total",
Help: "Number of exposed channels.",
},
)
safeStringsRegex = regexp.MustCompile(`(?m)(username|password|token)=[\w=]+(&?)`)
stringSafer = func(input string) string {
ret := input
if strings.HasPrefix(input, "username=") {
ret = "username=REDACTED"
} else if strings.HasPrefix(input, "password=") {
ret = "password=REDACTED"
} else if strings.HasPrefix(input, "token=") {
ret = "token=bm90Zm9yeW91" // "notforyou"
}
if strings.HasSuffix(input, "&") {
return fmt.Sprintf("%s&", ret)
}
return ret
}
)
func main() {
// Discovery flags
flag.String("discovery.device-id", "12345678", "8 alpha-numeric characters used to uniquely identify the device. $(TELLY_DISCOVERY_DEVICE_ID)")
flag.String("discovery.device-friendly-name", "telly", "Name exposed via discovery. Useful if you are running two instances of telly and want to differentiate between them $(TELLY_DISCOVERY_DEVICE_FRIENDLY_NAME)")
flag.String("discovery.device-auth", "telly123", "Only change this if you know what you're doing $(TELLY_DISCOVERY_DEVICE_AUTH)")
flag.String("discovery.device-manufacturer", "Silicondust", "Manufacturer exposed via discovery. $(TELLY_DISCOVERY_DEVICE_MANUFACTURER)")
flag.String("discovery.device-model-number", "HDTC-2US", "Model number exposed via discovery. $(TELLY_DISCOVERY_DEVICE_MODEL_NUMBER)")
flag.String("discovery.device-firmware-name", "hdhomeruntc_atsc", "Firmware name exposed via discovery. $(TELLY_DISCOVERY_DEVICE_FIRMWARE_NAME)")
flag.String("discovery.device-firmware-version", "20150826", "Firmware version exposed via discovery. $(TELLY_DISCOVERY_DEVICE_FIRMWARE_VERSION)")
flag.Bool("discovery.ssdp", true, "Turn on SSDP announcement of telly to the local network $(TELLY_DISCOVERY_SSDP)")
// Regex/filtering flags
flag.Bool("filter.regex-inclusive", false, "Whether the provided regex is inclusive (whitelisting) or exclusive (blacklisting). If true (--filter.regex-inclusive), only channels matching the provided regex pattern will be exposed. If false (--no-filter.regex-inclusive), only channels NOT matching the provided pattern will be exposed. $(TELLY_FILTER_REGEX_INCLUSIVE)")
flag.String("filter.regex", ".*", "Use regex to filter for channels that you want. A basic example would be .*UK.*. $(TELLY_FILTER_REGEX)")
// Web flags
flag.StringP("web.listen-address", "l", "localhost:6077", "Address to listen on for web interface and telemetry $(TELLY_WEB_LISTEN_ADDRESS)")
flag.StringP("web.base-address", "b", "localhost:6077", "The address to expose via discovery. Useful with reverse proxy $(TELLY_WEB_BASE_ADDRESS)")
// Log flags
flag.String("log.level", logrus.InfoLevel.String(), "Only log messages with the given severity or above. Valid levels: [debug, info, warn, error, fatal] $(TELLY_LOG_LEVEL)")
flag.Bool("log.requests", false, "Log HTTP requests $(TELLY_LOG_REQUESTS)")
// IPTV flags
flag.String("iptv.playlist", "", "Path to an M3U file on disk or at a URL. $(TELLY_IPTV_PLAYLIST)")
flag.Int("iptv.streams", 1, "Number of concurrent streams allowed $(TELLY_IPTV_STREAMS)")
flag.Int("iptv.starting-channel", 10000, "The channel number to start exposing from. $(TELLY_IPTV_STARTING_CHANNEL)")
flag.Bool("iptv.xmltv-channels", true, "Use channel numbers discovered via XMLTV file, if provided. $(TELLY_IPTV_XMLTV_CHANNELS)")
// Misc flags
flag.StringP("config.file", "c", "", "Path to your config file. If not set, configuration is searched for in the current working directory, $HOME/.telly/ and /etc/telly/. If provided, it will override all other arguments and environment variables. $(TELLY_CONFIG_FILE)")
flag.Bool("version", false, "Show application version")
flag.CommandLine.AddGoFlagSet(fflag.CommandLine)
deprecatedFlags := []string{
"discovery.device-id",
"discovery.device-friendly-name",
"discovery.device-auth",
"discovery.device-manufacturer",
"discovery.device-model-number",
"discovery.device-firmware-name",
"discovery.device-firmware-version",
"discovery.ssdp",
"iptv.playlist",
"iptv.streams",
"iptv.starting-channel",
"iptv.xmltv-channels",
"filter.regex-inclusive",
"filter.regex",
}
for _, depFlag := range deprecatedFlags {
if depErr := flag.CommandLine.MarkDeprecated(depFlag, "use the configuration file instead."); depErr != nil {
log.WithError(depErr).Panicf("error marking flag %s as deprecated", depFlag)
}
}
flag.Parse()
if bindErr := viper.BindPFlags(flag.CommandLine); bindErr != nil {
log.WithError(bindErr).Panicln("error binding flags to viper")
}
if flag.Lookup("version").Changed {
fmt.Println(version.Print(namespace))
os.Exit(0)
}
if flag.Lookup("config.file").Changed {
viper.SetConfigFile(flag.Lookup("config.file").Value.String())
} else {
viper.SetConfigName("telly.config")
viper.AddConfigPath("/etc/telly/")
viper.AddConfigPath("$HOME/.telly")
viper.AddConfigPath(".")
viper.SetEnvPrefix(namespace)
viper.AutomaticEnv()
}
err := viper.ReadInConfig()
if err != nil {
if _, ok := err.(viper.ConfigFileNotFoundError); !ok {
log.WithError(err).Panicln("fatal error while reading config file:")
}
}
prometheus.MustRegister(version.NewCollector("telly"), exposedChannels)
level, parseLevelErr := logrus.ParseLevel(viper.GetString("log.level"))
if parseLevelErr != nil {
log.WithError(parseLevelErr).Panicln("error setting log level!")
}
log.SetLevel(level)
log.Infoln("telly is preparing to go live", version.Info())
log.Debugln("Build context", version.BuildContext())
validateConfig()
viper.Set("discovery.device-uuid", fmt.Sprintf("%s-AE2A-4E54-BBC9-33AF7D5D6A92", viper.GetString("discovery.device-id")))
if log.Level == logrus.DebugLevel {
js, jsErr := json.MarshalIndent(viper.AllSettings(), "", " ")
if jsErr != nil {
log.WithError(jsErr).Panicln("error marshal indenting viper config to JSON")
}
log.Debugf("Loaded configuration %s", js)
}
lineup := newLineup()
if scanErr := lineup.Scan(); scanErr != nil {
log.WithError(scanErr).Panicln("Error scanning lineup!")
}
serve(lineup)
}
func validateConfig() {
if viper.IsSet("filter.regexstr") {
if _, regexErr := regexp.Compile(viper.GetString("filter.regex")); regexErr != nil {
log.WithError(regexErr).Panicln("Error when compiling regex, is it valid?")
}
}
if !(viper.IsSet("source")) {
log.Warnln("There is no source element in the configuration, the config file is likely missing.")
}
var addrErr error
if _, addrErr = net.ResolveTCPAddr("tcp", viper.GetString("web.listenaddress")); addrErr != nil {
log.WithError(addrErr).Panic("Error when parsing Listen address, please check the address and try again.")
return
}
if _, addrErr = net.ResolveTCPAddr("tcp", viper.GetString("web.base-address")); addrErr != nil {
log.WithError(addrErr).Panic("Error when parsing Base addresses, please check the address and try again.")
return
}
if getTCPAddr("web.base-address").IP.IsUnspecified() {
log.Panicln("base URL is set to 0.0.0.0, this will not work. please use the --web.baseaddress option and set it to the (local) ip address telly is running on.")
}
if getTCPAddr("web.listenaddress").IP.IsUnspecified() && getTCPAddr("web.base-address").IP.IsLoopback() {
log.Warnln("You are listening on all interfaces but your base URL is localhost (meaning Plex will try and load localhost to access your streams) - is this intended?")
}
}