Skip to content

Commit 479789b

Browse files
Support for dial non-TLS connection
1 parent d0f20ad commit 479789b

File tree

4 files changed

+59
-1
lines changed

4 files changed

+59
-1
lines changed

config/config_test.go

+46
Original file line numberDiff line numberDiff line change
@@ -1630,6 +1630,52 @@ func TestIRC(t *testing.T) {
16301630
tt.call(t, opts, tt.want)
16311631
})
16321632
}
1633+
1634+
testsBool := []struct {
1635+
name string
1636+
envs map[string]bool
1637+
call func(*testing.T, *Options, bool)
1638+
want bool
1639+
}{
1640+
{
1641+
name: "default irc secure",
1642+
envs: map[string]bool{
1643+
"WAYBACK_IRC_SECURE": true,
1644+
},
1645+
call: func(t *testing.T, opts *Options, want bool) {
1646+
called := opts.IRCSecure()
1647+
if called != want {
1648+
t.Errorf(`Unexpected get the irc secure, got %v instead of %v`, called, want)
1649+
}
1650+
},
1651+
want: defIRCSecure,
1652+
},
1653+
{
1654+
name: "specified irc secure",
1655+
envs: map[string]bool{
1656+
"WAYBACK_IRC_SECURE": false,
1657+
},
1658+
call: func(t *testing.T, opts *Options, want bool) {
1659+
called := opts.IRCSecure()
1660+
if called != want {
1661+
t.Errorf(`Unexpected get the irc secure, got %v instead of %v`, called, want)
1662+
}
1663+
},
1664+
want: false,
1665+
},
1666+
}
1667+
for _, tt := range testsBool {
1668+
t.Run(tt.name, func(t *testing.T) {
1669+
for key, val := range tt.envs {
1670+
t.Setenv(key, strconv.FormatBool(val))
1671+
}
1672+
opts, err := NewParser().ParseEnvironmentVariables()
1673+
if err != nil {
1674+
t.Fatalf(`Parsing environment variables failed: %v`, err)
1675+
}
1676+
tt.call(t, opts, tt.want)
1677+
})
1678+
}
16331679
}
16341680

16351681
func TestMatrix(t *testing.T) {

config/options.go

+8
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ const (
6565
defIRCPassword = ""
6666
defIRCChannel = ""
6767
defIRCServer = "irc.libera.chat:6697"
68+
defIRCSecure = true
6869

6970
defXMPPUsername = ""
7071
defXMPPPassword = ""
@@ -229,6 +230,7 @@ type irc struct {
229230
password string
230231
channel string
231232
server string
233+
secure bool
232234
}
233235

234236
type onion struct {
@@ -337,6 +339,7 @@ func NewOptions() *Options {
337339
password: defIRCPassword,
338340
channel: defIRCChannel,
339341
server: defIRCServer,
342+
secure: defIRCSecure,
340343
},
341344
onion: &onion{
342345
localPort: defOnionLocalPort,
@@ -629,6 +632,11 @@ func (o *Options) IRCServer() string {
629632
return o.irc.server
630633
}
631634

635+
// IRCSecure returns whether use TLS for IRC connection.
636+
func (o *Options) IRCSecure() bool {
637+
return o.irc.secure
638+
}
639+
632640
// PublishToIRCChannel returns whether publish results to IRC channel.
633641
func (o *Options) PublishToIRCChannel() bool {
634642
return o.irc.nick != "" && o.irc.channel != ""

config/parser.go

+2
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,8 @@ func (p *Parser) parseLines(lines []string) (err error) {
159159
p.opts.irc.channel = parseString(val, defIRCChannel)
160160
case "WAYBACK_IRC_SERVER":
161161
p.opts.irc.server = parseString(val, defIRCServer)
162+
case "WAYBACK_IRC_SECURE":
163+
p.opts.irc.secure = parseBool(val, defIRCSecure)
162164
case "WAYBACK_MATRIX_HOMESERVER":
163165
p.opts.matrix.homeserver = parseString(val, defMatrixHomeserver)
164166
case "WAYBACK_MATRIX_USERID":

service/relaychat/relaychat.go

+3-1
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,9 @@ func (i *IRC) Serve() error {
122122
if err != nil {
123123
return errors.Wrap(err, "failed to establish connection")
124124
}
125-
conn = tls.Client(conn, &tls.Config{MinVersion: tls.VersionTLS12, ServerName: srv.Hostname()})
125+
if i.opts.IRCSecure() {
126+
conn = tls.Client(conn, &tls.Config{MinVersion: tls.VersionTLS12, ServerName: srv.Hostname()})
127+
}
126128
i.conn = irc.NewClient(conn, config)
127129
logger.Info("Serving IRC server: %s, nick: %s", i.opts.IRCServer(), i.conn.CurrentNick())
128130

0 commit comments

Comments
 (0)