-
Notifications
You must be signed in to change notification settings - Fork 235
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #868 from terminaldweller/mqtt
added mqtt.py, sends your private messages over mqtt
- Loading branch information
Showing
1 changed file
with
95 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,95 @@ | ||
"""mqtt.py, sends yur privmsgs over mqtt""" | ||
import irssi | ||
import paho.mqtt.client as mqtt | ||
import threading | ||
|
||
__version__ = "0.1.1" | ||
|
||
IRSSI = { | ||
"authors": "terminaldweller", | ||
"contact": "https://terminaldweller.com", | ||
"name": "mqtt", | ||
"description": "publish messages on mqtt", | ||
"license": "GPL3 or newer", | ||
"url": "https://github.com/irssi/scripts.irssi.org", | ||
} | ||
|
||
|
||
def on_connect(client, userdata, flags, rc): | ||
pass | ||
|
||
|
||
def on_message(client, userdata, msg): | ||
pass | ||
|
||
|
||
def work(client, content): | ||
mqtt_server = irssi.settings_get_str(b"mqtt_server") | ||
mqtt_port = irssi.settings_get_int(b"mqtt_port") | ||
mqtt_topic = irssi.settings_get_str(b"mqtt_topic") | ||
mqtt_pass = irssi.settings_get_str(b"mqtt_pass") | ||
mqtt_retain = irssi.settings_get_bool(b"mqtt_retain") | ||
client.username_pw_set("irssi", mqtt_pass) | ||
client.connect(mqtt_server, mqtt_port, 60) | ||
client.loop_start() | ||
client.publish( | ||
mqtt_topic.decode("utf-8"), | ||
content.decode("utf-8"), | ||
qos=0, | ||
retain=mqtt_retain, | ||
) | ||
|
||
|
||
def publish( | ||
content: bytes, target: bytes, nick: bytes, server: irssi.IrcServer | ||
) -> None: | ||
client = mqtt.Client( | ||
clean_session=True, userdata=None, protocol=mqtt.MQTTv311, transport="tcp" | ||
) | ||
client.on_connect = on_connect | ||
client.on_message = on_message | ||
|
||
threading.Thread(target=work(client, content)).start() | ||
|
||
|
||
def mqtt_sig_handler(*args, **kwargs) -> None: | ||
server = args[0] | ||
msg = args[1] | ||
nick = args[2] | ||
target = args[4] | ||
mqtt_server = irssi.settings_get_str(b"mqtt_server") | ||
if mqtt_server != "": | ||
publish(msg, target, nick, server) | ||
|
||
|
||
def run_on_script_load() -> None: | ||
irssi.settings_add_str( | ||
b"misc", | ||
b"mqtt_server", | ||
b"172.17.0.1", | ||
) | ||
irssi.settings_add_int( | ||
b"misc", | ||
b"mqtt_port", | ||
1883, | ||
) | ||
irssi.settings_add_str( | ||
b"misc", | ||
b"mqtt_topic", | ||
b"test", | ||
) | ||
irssi.settings_add_str( | ||
b"misc", | ||
b"mqtt_pass", | ||
b"", | ||
) | ||
irssi.settings_add_bool( | ||
b"misc", | ||
b"mqtt_retain", | ||
False, | ||
) | ||
|
||
irssi.signal_add(b"message private", mqtt_sig_handler) | ||
|
||
|
||
run_on_script_load() |