2018-01-26 14:38:46 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
2018-01-26 18:22:06 +01:00
|
|
|
# Copyright © 2018 Damir Jelić <poljar@termina.org.uk>
|
|
|
|
#
|
|
|
|
# Permission to use, copy, modify, and/or distribute this software for
|
|
|
|
# any purpose with or without fee is hereby granted, provided that the
|
|
|
|
# above copyright notice and this permission notice appear in all copies.
|
|
|
|
#
|
|
|
|
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
|
|
|
|
# SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER
|
|
|
|
# RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF
|
|
|
|
# CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
|
|
|
|
# CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
|
2018-01-29 18:11:45 +01:00
|
|
|
|
2018-01-26 14:38:46 +01:00
|
|
|
from __future__ import unicode_literals
|
2018-02-01 13:20:52 +01:00
|
|
|
from builtins import str, bytes
|
2018-01-26 14:38:46 +01:00
|
|
|
|
|
|
|
import ssl
|
2018-02-01 13:20:52 +01:00
|
|
|
import socket
|
|
|
|
import time
|
2018-01-26 14:38:46 +01:00
|
|
|
|
|
|
|
from collections import deque
|
|
|
|
from http_parser.pyparser import HttpParser
|
|
|
|
|
2018-01-30 11:46:29 +01:00
|
|
|
from matrix.plugin_options import Option, DebugType
|
2018-02-01 13:20:52 +01:00
|
|
|
from matrix.utils import (
|
|
|
|
key_from_value,
|
|
|
|
prnt_debug,
|
|
|
|
server_buffer_prnt,
|
|
|
|
create_server_buffer
|
|
|
|
)
|
2018-01-29 18:11:45 +01:00
|
|
|
from matrix.utf import utf8_decode
|
|
|
|
from matrix.globals import W, SERVERS
|
2018-02-02 15:03:52 +01:00
|
|
|
from matrix.api import MatrixClient
|
2018-01-26 14:38:46 +01:00
|
|
|
|
|
|
|
|
|
|
|
class MatrixServer:
|
|
|
|
# pylint: disable=too-many-instance-attributes
|
2018-01-29 18:11:45 +01:00
|
|
|
def __init__(self, name, config_file):
|
2018-01-26 14:38:46 +01:00
|
|
|
# type: (str, weechat, weechat.config) -> None
|
2018-01-27 16:21:10 +01:00
|
|
|
self.name = name # type: str
|
|
|
|
self.user_id = ""
|
|
|
|
self.address = "" # type: str
|
|
|
|
self.port = 8448 # type: int
|
|
|
|
self.options = dict() # type: Dict[str, weechat.config]
|
|
|
|
self.device_name = "Weechat Matrix" # type: str
|
|
|
|
|
|
|
|
self.user = "" # type: str
|
|
|
|
self.password = "" # type: str
|
|
|
|
|
|
|
|
self.rooms = dict() # type: Dict[str, MatrixRoom]
|
|
|
|
self.buffers = dict() # type: Dict[str, weechat.buffer]
|
|
|
|
self.server_buffer = None # type: weechat.buffer
|
|
|
|
self.fd_hook = None # type: weechat.hook
|
2018-01-30 19:29:03 +01:00
|
|
|
self.ssl_hook = None # type: weechat.hook
|
2018-01-27 16:21:10 +01:00
|
|
|
self.timer_hook = None # type: weechat.hook
|
|
|
|
self.numeric_address = "" # type: str
|
|
|
|
|
|
|
|
self.autoconnect = False # type: bool
|
|
|
|
self.connected = False # type: bool
|
|
|
|
self.connecting = False # type: bool
|
2018-02-01 13:20:52 +01:00
|
|
|
self.reconnect_delay = 0 # type: int
|
|
|
|
self.reconnect_time = None # type: float
|
2018-01-27 16:21:10 +01:00
|
|
|
self.socket = None # type: ssl.SSLSocket
|
|
|
|
self.ssl_context = ssl.create_default_context() # type: ssl.SSLContext
|
|
|
|
|
2018-02-02 15:03:52 +01:00
|
|
|
self.client = None
|
2018-01-27 16:21:10 +01:00
|
|
|
self.access_token = None # type: str
|
|
|
|
self.next_batch = None # type: str
|
|
|
|
self.transaction_id = 0 # type: int
|
2018-01-30 12:58:16 +01:00
|
|
|
self.lag = 0 # type: int
|
2018-01-26 14:38:46 +01:00
|
|
|
|
2018-01-31 13:55:55 +01:00
|
|
|
self.send_fd_hook = None # type: weechat.hook
|
|
|
|
self.send_buffer = b"" # type: bytes
|
|
|
|
self.current_message = None # type: MatrixMessage
|
|
|
|
|
2018-01-26 14:38:46 +01:00
|
|
|
self.http_parser = HttpParser() # type: HttpParser
|
|
|
|
self.http_buffer = [] # type: List[bytes]
|
|
|
|
|
|
|
|
# Queue of messages we need to send off.
|
2018-01-27 16:21:10 +01:00
|
|
|
self.send_queue = deque() # type: Deque[MatrixMessage]
|
|
|
|
|
2018-01-26 14:38:46 +01:00
|
|
|
# Queue of messages we send off and are waiting a response for
|
|
|
|
self.receive_queue = deque() # type: Deque[MatrixMessage]
|
2018-01-27 16:21:10 +01:00
|
|
|
|
2018-01-26 14:38:46 +01:00
|
|
|
self.message_queue = deque() # type: Deque[MatrixMessage]
|
|
|
|
self.ignore_event_list = [] # type: List[str]
|
|
|
|
|
2018-01-29 18:11:45 +01:00
|
|
|
self._create_options(config_file)
|
2018-01-26 14:38:46 +01:00
|
|
|
|
2018-01-29 18:11:45 +01:00
|
|
|
def _create_options(self, config_file):
|
2018-01-26 14:38:46 +01:00
|
|
|
options = [
|
|
|
|
Option(
|
|
|
|
'autoconnect', 'boolean', '', 0, 0, 'off',
|
|
|
|
(
|
|
|
|
"automatically connect to the matrix server when weechat "
|
|
|
|
"is starting"
|
|
|
|
)
|
|
|
|
),
|
|
|
|
Option(
|
|
|
|
'address', 'string', '', 0, 0, '',
|
|
|
|
"Hostname or IP address for the server"
|
|
|
|
),
|
|
|
|
Option(
|
|
|
|
'port', 'integer', '', 0, 65535, '8448',
|
|
|
|
"Port for the server"
|
|
|
|
),
|
|
|
|
Option(
|
|
|
|
'ssl_verify', 'boolean', '', 0, 0, 'on',
|
|
|
|
(
|
|
|
|
"Check that the SSL connection is fully trusted"
|
|
|
|
)
|
|
|
|
),
|
|
|
|
Option(
|
|
|
|
'username', 'string', '', 0, 0, '',
|
|
|
|
"Username to use on server"
|
|
|
|
),
|
|
|
|
Option(
|
|
|
|
'password', 'string', '', 0, 0, '',
|
2018-01-28 11:44:57 +01:00
|
|
|
("Password for server (note: content is evaluated, see /help "
|
|
|
|
"eval)")
|
2018-01-26 14:38:46 +01:00
|
|
|
),
|
|
|
|
Option(
|
|
|
|
'device_name', 'string', '', 0, 0, 'Weechat Matrix',
|
|
|
|
"Device name to use while logging in to the matrix server"
|
|
|
|
),
|
|
|
|
]
|
|
|
|
|
2018-01-29 18:11:45 +01:00
|
|
|
section = W.config_search_section(config_file, 'server')
|
2018-01-26 14:38:46 +01:00
|
|
|
|
|
|
|
for option in options:
|
|
|
|
option_name = "{server}.{option}".format(
|
|
|
|
server=self.name, option=option.name)
|
|
|
|
|
2018-01-29 18:11:45 +01:00
|
|
|
self.options[option.name] = W.config_new_option(
|
2018-01-26 14:38:46 +01:00
|
|
|
config_file, section, option_name,
|
|
|
|
option.type, option.description, option.string_values,
|
|
|
|
option.min, option.max, option.value, option.value, 0, "",
|
2018-01-29 18:11:45 +01:00
|
|
|
"", "matrix_config_server_change_cb", self.name, "", "")
|
2018-01-26 14:38:46 +01:00
|
|
|
|
|
|
|
def reset_parser(self):
|
|
|
|
self.http_parser = HttpParser()
|
|
|
|
self.http_buffer = []
|
2018-01-26 14:48:34 +01:00
|
|
|
|
2018-02-02 15:03:52 +01:00
|
|
|
def _change_client(self):
|
|
|
|
host = ':'.join([self.address, str(self.port)])
|
|
|
|
user_agent = 'weechat-matrix/{version}'.format(version="0.1")
|
|
|
|
self.client = MatrixClient(host, user_agent=user_agent)
|
|
|
|
|
2018-01-29 18:11:45 +01:00
|
|
|
def update_option(self, option, option_name):
|
2018-01-26 14:48:34 +01:00
|
|
|
if option_name == "address":
|
|
|
|
value = W.config_string(option)
|
|
|
|
self.address = value
|
2018-02-02 15:03:52 +01:00
|
|
|
self._change_client()
|
2018-01-26 14:48:34 +01:00
|
|
|
elif option_name == "autoconnect":
|
|
|
|
value = W.config_boolean(option)
|
|
|
|
self.autoconnect = value
|
|
|
|
elif option_name == "port":
|
|
|
|
value = W.config_integer(option)
|
|
|
|
self.port = value
|
2018-02-02 15:03:52 +01:00
|
|
|
self._change_client()
|
2018-01-26 14:48:34 +01:00
|
|
|
elif option_name == "ssl_verify":
|
|
|
|
value = W.config_boolean(option)
|
|
|
|
if value:
|
|
|
|
self.ssl_context.verify_mode = ssl.CERT_REQUIRED
|
2018-01-27 14:40:01 +01:00
|
|
|
self.ssl_context.check_hostname = True
|
2018-01-26 14:48:34 +01:00
|
|
|
else:
|
|
|
|
self.ssl_context.check_hostname = False
|
|
|
|
self.ssl_context.verify_mode = ssl.CERT_NONE
|
|
|
|
elif option_name == "username":
|
|
|
|
value = W.config_string(option)
|
|
|
|
self.user = value
|
|
|
|
self.access_token = ""
|
|
|
|
elif option_name == "password":
|
|
|
|
value = W.config_string(option)
|
2018-01-28 11:44:57 +01:00
|
|
|
self.password = W.string_eval_expression(value, {}, {}, {})
|
2018-01-26 14:48:34 +01:00
|
|
|
elif option_name == "device_name":
|
|
|
|
value = W.config_string(option)
|
|
|
|
self.device_name = value
|
|
|
|
else:
|
|
|
|
pass
|
2018-01-29 18:11:45 +01:00
|
|
|
|
2018-02-02 10:13:56 +01:00
|
|
|
def send_or_queue(self, message):
|
|
|
|
# type: (MatrixServer, MatrixMessage) -> None
|
|
|
|
if not self.send(message):
|
|
|
|
prnt_debug(DebugType.MESSAGING, self,
|
|
|
|
("{prefix} Failed sending message of type {t}. "
|
|
|
|
"Adding to queue").format(
|
|
|
|
prefix=W.prefix("error"),
|
|
|
|
t=message.type))
|
|
|
|
self.send_queue.append(message)
|
|
|
|
|
|
|
|
def try_send(self, message):
|
|
|
|
# type: (MatrixServer, bytes) -> bool
|
|
|
|
|
|
|
|
sock = self.socket
|
|
|
|
total_sent = 0
|
|
|
|
message_length = len(message)
|
|
|
|
|
|
|
|
while total_sent < message_length:
|
|
|
|
try:
|
|
|
|
sent = sock.send(message[total_sent:])
|
|
|
|
|
|
|
|
except ssl.SSLWantWriteError:
|
|
|
|
hook = W.hook_fd(
|
|
|
|
sock.fileno(),
|
|
|
|
0, 1, 0,
|
|
|
|
"send_cb",
|
|
|
|
self.name
|
|
|
|
)
|
|
|
|
self.send_fd_hook = hook
|
|
|
|
self.send_buffer = message[total_sent:]
|
|
|
|
return True
|
|
|
|
|
|
|
|
except socket.error as error:
|
2018-02-02 10:36:54 +01:00
|
|
|
self._abort_send()
|
2018-02-02 10:13:56 +01:00
|
|
|
|
|
|
|
errno = "error" + str(error.errno) + " " if error.errno else ""
|
|
|
|
strerr = error.strerror if error.strerror else "Unknown reason"
|
|
|
|
strerr = errno + strerr
|
|
|
|
|
|
|
|
message = ("{prefix}Error while writing to "
|
|
|
|
"socket: {error}").format(
|
|
|
|
prefix=W.prefix("network"),
|
|
|
|
error=strerr)
|
|
|
|
|
|
|
|
server_buffer_prnt(self, message)
|
|
|
|
server_buffer_prnt(
|
|
|
|
self,
|
|
|
|
("{prefix}matrix: disconnecting from server...").format(
|
|
|
|
prefix=W.prefix("network")))
|
|
|
|
|
2018-02-02 10:29:59 +01:00
|
|
|
self.disconnect()
|
2018-02-02 10:13:56 +01:00
|
|
|
return False
|
|
|
|
|
|
|
|
if sent == 0:
|
2018-02-02 10:36:54 +01:00
|
|
|
self._abort_send()
|
2018-02-02 10:13:56 +01:00
|
|
|
|
|
|
|
server_buffer_prnt(
|
|
|
|
self,
|
|
|
|
"{prefix}matrix: Error while writing to socket".format(
|
|
|
|
W.prefix("network")))
|
|
|
|
server_buffer_prnt(
|
|
|
|
self,
|
|
|
|
("{prefix}matrix: disconnecting from server...").format(
|
|
|
|
prefix=W.prefix("network")))
|
2018-02-02 10:29:59 +01:00
|
|
|
self.disconnect()
|
2018-02-02 10:13:56 +01:00
|
|
|
return False
|
|
|
|
|
|
|
|
total_sent = total_sent + sent
|
|
|
|
|
2018-02-02 10:36:54 +01:00
|
|
|
self._finalize_send()
|
2018-02-02 10:13:56 +01:00
|
|
|
return True
|
|
|
|
|
2018-02-02 10:36:54 +01:00
|
|
|
def _abort_send(self):
|
2018-02-02 10:13:56 +01:00
|
|
|
self.send_queue.appendleft(self.current_message)
|
|
|
|
self.current_message = None
|
|
|
|
self.send_buffer = ""
|
|
|
|
|
2018-02-02 10:36:54 +01:00
|
|
|
def _finalize_send(self):
|
2018-02-02 10:13:56 +01:00
|
|
|
# type: (MatrixServer) -> None
|
|
|
|
self.current_message.send_time = time.time()
|
|
|
|
self.receive_queue.append(self.current_message)
|
|
|
|
|
|
|
|
self.send_buffer = ""
|
|
|
|
self.current_message = None
|
|
|
|
|
|
|
|
|
|
|
|
def send(self, message):
|
|
|
|
# type: (MatrixServer, MatrixMessage) -> bool
|
|
|
|
if self.current_message:
|
|
|
|
return False
|
|
|
|
|
|
|
|
self.current_message = message
|
|
|
|
|
|
|
|
request = message.request.request
|
|
|
|
payload = message.request.payload
|
|
|
|
|
|
|
|
bytes_message = bytes(request, 'utf-8') + bytes(payload, 'utf-8')
|
|
|
|
|
|
|
|
self.try_send(bytes_message)
|
|
|
|
|
|
|
|
return True
|
|
|
|
|
2018-02-02 10:29:59 +01:00
|
|
|
def reconnect(self):
|
|
|
|
message = ("{prefix}matrix: reconnecting to server...").format(
|
|
|
|
prefix=W.prefix("network"))
|
|
|
|
|
|
|
|
server_buffer_prnt(self, message)
|
|
|
|
|
|
|
|
self.reconnect_time = None
|
|
|
|
|
|
|
|
if not self.connect():
|
|
|
|
self.schedule_reconnect()
|
|
|
|
|
|
|
|
def schedule_reconnect(self):
|
|
|
|
# type: (MatrixServer) -> None
|
|
|
|
self.connecting = True
|
|
|
|
self.reconnect_time = time.time()
|
|
|
|
|
|
|
|
if self.reconnect_delay:
|
|
|
|
self.reconnect_delay = self.reconnect_delay * 2
|
|
|
|
else:
|
|
|
|
self.reconnect_delay = 10
|
|
|
|
|
|
|
|
message = ("{prefix}matrix: reconnecting to server in {t} "
|
|
|
|
"seconds").format(
|
|
|
|
prefix=W.prefix("network"),
|
|
|
|
t=self.reconnect_delay)
|
|
|
|
|
|
|
|
server_buffer_prnt(self, message)
|
|
|
|
|
2018-02-02 10:37:06 +01:00
|
|
|
def _close_socket(self):
|
|
|
|
# type: (socket.socket) -> None
|
|
|
|
if self.socket:
|
2018-02-03 12:51:13 +01:00
|
|
|
try:
|
|
|
|
self.socket.shutdown(socket.SHUT_RDWR)
|
|
|
|
self.socket.close()
|
|
|
|
except OSError:
|
|
|
|
pass
|
2018-02-02 10:37:06 +01:00
|
|
|
|
2018-02-02 10:29:59 +01:00
|
|
|
def disconnect(self, reconnect=True):
|
|
|
|
# type: (MatrixServer) -> None
|
|
|
|
if self.fd_hook:
|
|
|
|
W.unhook(self.fd_hook)
|
|
|
|
|
2018-02-02 10:37:06 +01:00
|
|
|
self._close_socket()
|
2018-02-02 10:29:59 +01:00
|
|
|
|
|
|
|
self.fd_hook = None
|
|
|
|
self.socket = None
|
|
|
|
self.connected = False
|
|
|
|
self.access_token = ""
|
|
|
|
self.receive_queue.clear()
|
|
|
|
|
|
|
|
self.reconnect_delay = 0
|
|
|
|
self.reconnect_time = None
|
|
|
|
|
|
|
|
if self.server_buffer:
|
|
|
|
message = ("{prefix}matrix: disconnected from server").format(
|
|
|
|
prefix=W.prefix("network"))
|
|
|
|
server_buffer_prnt(self, message)
|
|
|
|
|
|
|
|
if reconnect:
|
|
|
|
self.schedule_reconnect()
|
|
|
|
|
|
|
|
def connect(self):
|
|
|
|
# type: (MatrixServer) -> int
|
|
|
|
if not self.address or not self.port:
|
|
|
|
message = "{prefix}Server address or port not set".format(
|
|
|
|
prefix=W.prefix("error"))
|
|
|
|
W.prnt("", message)
|
|
|
|
return False
|
|
|
|
|
|
|
|
if not self.user or not self.password:
|
|
|
|
message = "{prefix}User or password not set".format(
|
|
|
|
prefix=W.prefix("error"))
|
|
|
|
W.prnt("", message)
|
|
|
|
return False
|
|
|
|
|
|
|
|
if self.connected:
|
|
|
|
return True
|
|
|
|
|
|
|
|
if not self.server_buffer:
|
|
|
|
create_server_buffer(self)
|
|
|
|
|
|
|
|
if not self.timer_hook:
|
|
|
|
self.timer_hook = W.hook_timer(
|
|
|
|
1 * 1000,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
"matrix_timer_cb",
|
|
|
|
self.name
|
|
|
|
)
|
|
|
|
|
|
|
|
ssl_message = " (SSL)" if self.ssl_context.check_hostname else ""
|
|
|
|
|
|
|
|
message = ("{prefix}matrix: Connecting to "
|
|
|
|
"{server}:{port}{ssl}...").format(
|
|
|
|
prefix=W.prefix("network"),
|
|
|
|
server=self.address,
|
|
|
|
port=self.port,
|
|
|
|
ssl=ssl_message)
|
|
|
|
|
|
|
|
W.prnt(self.server_buffer, message)
|
|
|
|
|
|
|
|
W.hook_connect("", self.address, self.port, 1, 0, "",
|
|
|
|
"connect_cb", self.name)
|
|
|
|
|
|
|
|
return True
|
|
|
|
|
2018-01-29 18:11:45 +01:00
|
|
|
|
|
|
|
@utf8_decode
|
|
|
|
def matrix_config_server_read_cb(
|
|
|
|
data, config_file, section,
|
|
|
|
option_name, value
|
|
|
|
):
|
|
|
|
|
|
|
|
return_code = W.WEECHAT_CONFIG_OPTION_SET_ERROR
|
|
|
|
|
|
|
|
if option_name:
|
|
|
|
server_name, option = option_name.rsplit('.', 1)
|
|
|
|
server = None
|
|
|
|
|
|
|
|
if server_name in SERVERS:
|
|
|
|
server = SERVERS[server_name]
|
|
|
|
else:
|
|
|
|
server = MatrixServer(server_name, config_file)
|
|
|
|
SERVERS[server.name] = server
|
|
|
|
|
|
|
|
# Ignore invalid options
|
|
|
|
if option in server.options:
|
|
|
|
return_code = W.config_option_set(server.options[option], value, 1)
|
|
|
|
|
|
|
|
# TODO print out error message in case of erroneous return_code
|
|
|
|
|
|
|
|
return return_code
|
|
|
|
|
|
|
|
|
|
|
|
@utf8_decode
|
|
|
|
def matrix_config_server_write_cb(data, config_file, section_name):
|
|
|
|
if not W.config_write_line(config_file, section_name, ""):
|
|
|
|
return W.WECHAT_CONFIG_WRITE_ERROR
|
|
|
|
|
|
|
|
for server in SERVERS.values():
|
|
|
|
for option in server.options.values():
|
|
|
|
if not W.config_write_option(config_file, option):
|
|
|
|
return W.WECHAT_CONFIG_WRITE_ERROR
|
|
|
|
|
|
|
|
return W.WEECHAT_CONFIG_WRITE_OK
|
|
|
|
|
|
|
|
|
|
|
|
@utf8_decode
|
|
|
|
def matrix_config_server_change_cb(server_name, option):
|
|
|
|
# type: (str, weechat.config_option) -> int
|
|
|
|
server = SERVERS[server_name]
|
|
|
|
option_name = None
|
|
|
|
|
|
|
|
# The function config_option_get_string() is used to get differing
|
|
|
|
# properties from a config option, sadly it's only available in the plugin
|
|
|
|
# API of weechat.
|
|
|
|
option_name = key_from_value(server.options, option)
|
|
|
|
server.update_option(option, option_name)
|
|
|
|
|
|
|
|
return 1
|
2018-01-30 11:46:29 +01:00
|
|
|
|
|
|
|
|
|
|
|
@utf8_decode
|
|
|
|
def matrix_timer_cb(server_name, remaining_calls):
|
|
|
|
server = SERVERS[server_name]
|
|
|
|
|
2018-02-01 13:20:52 +01:00
|
|
|
current_time = time.time()
|
|
|
|
|
|
|
|
if ((not server.connected) and
|
|
|
|
server.reconnect_time and
|
|
|
|
current_time >= (server.reconnect_time + server.reconnect_delay)):
|
2018-02-02 10:29:59 +01:00
|
|
|
server.reconnect()
|
2018-02-01 13:20:52 +01:00
|
|
|
|
2018-01-30 11:46:29 +01:00
|
|
|
if not server.connected:
|
|
|
|
return W.WEECHAT_RC_OK
|
|
|
|
|
|
|
|
while server.send_queue:
|
|
|
|
message = server.send_queue.popleft()
|
|
|
|
prnt_debug(DebugType.MESSAGING, server,
|
|
|
|
("Timer hook found message of type {t} in queue. Sending "
|
|
|
|
"out.".format(t=message.type)))
|
|
|
|
|
2018-02-02 10:13:56 +01:00
|
|
|
if not server.send(message):
|
2018-01-30 11:46:29 +01:00
|
|
|
# We got an error while sending the last message return the message
|
|
|
|
# to the queue and exit the loop
|
|
|
|
server.send_queue.appendleft(message)
|
|
|
|
break
|
|
|
|
|
|
|
|
return W.WEECHAT_RC_OK
|
|
|
|
|
|
|
|
|
|
|
|
def create_default_server(config_file):
|
2018-02-05 12:38:45 +01:00
|
|
|
server = MatrixServer('matrix.org', config_file)
|
2018-01-30 11:46:29 +01:00
|
|
|
SERVERS[server.name] = server
|
|
|
|
|
|
|
|
W.config_option_set(server.options["address"], "matrix.org", 1)
|
|
|
|
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
2018-02-01 13:20:52 +01:00
|
|
|
@utf8_decode
|
|
|
|
def send_cb(server_name, file_descriptor):
|
|
|
|
# type: (str, int) -> int
|
|
|
|
|
|
|
|
server = SERVERS[server_name]
|
|
|
|
|
|
|
|
if server.send_fd_hook:
|
|
|
|
W.unhook(server.send_fd_hook)
|
|
|
|
server.send_fd_hook = None
|
|
|
|
|
|
|
|
if server.send_buffer:
|
2018-02-02 10:13:56 +01:00
|
|
|
server.try_send(server, server.send_buffer)
|
2018-02-01 13:20:52 +01:00
|
|
|
|
|
|
|
return W.WEECHAT_RC_OK
|
|
|
|
|
|
|
|
|