Fixes for use off of tilde.chat/tildeverse

- correctly parses channels from config per config.example.yaml
- sets TLS to None in case of no TLS
  - on tilde.town we commonly connect to localhost w/o ssl
  - for ircrobots (and/or it's dependencies) TLS must be none (not
    false) or else it will assume SSL/TLS

I am not a python expert, so please feel free to comment or fix.
This commit is contained in:
Stef Dunlap 2022-06-14 16:46:52 -04:00
parent 8715023f58
commit 2e242aea1e
2 changed files with 7 additions and 3 deletions

View File

@ -26,7 +26,7 @@ def load(filepath: str):
server = config_yaml["server"]
hostname, port_s = server.split(":", 1)
tls = False
tls = None
if port_s.startswith("+"):
tls = True
@ -42,8 +42,8 @@ def load(filepath: str):
access_token=acct["access_token"],
api_base_url=acct["api_base_url"],
)
if "channel" in acct:
channels[acct["channel"]] = acct["name"]
for channel in acct["channels"]:
channels[channel] = acct["name"]
return Config(
(hostname, port, tls),

View File

@ -36,6 +36,10 @@ def think(self, line):
res = account.toot(f"{status}\n~{author}")
if res:
return "tooted! {}".format(res["url"])
else:
return "tooted failed :("
else:
return "no account :("
else:
return HELP_TEXT