summaryrefslogtreecommitdiff
path: root/poezio/core/core.py
diff options
context:
space:
mode:
authorMaxime “pep” Buquet <pep@bouah.net>2018-06-06 23:25:21 +0100
committerMaxime “pep” Buquet <pep@bouah.net>2018-12-16 16:57:48 +0000
commit0f344b899c0dff685795108fee4d2de850d92cd6 (patch)
treea062cfe58ae1bf0cb9c7f54efe8c2e97e4b09f94 /poezio/core/core.py
parentc3e9130d7d8bb290118b95deba2b7168c0dc8647 (diff)
downloadpoezio-0f344b899c0dff685795108fee4d2de850d92cd6.tar.gz
poezio-0f344b899c0dff685795108fee4d2de850d92cd6.tar.bz2
poezio-0f344b899c0dff685795108fee4d2de850d92cd6.tar.xz
poezio-0f344b899c0dff685795108fee4d2de850d92cd6.zip
Initial impromptu command
Add a command that invites people to a newly created room, with a random localpart. The muc component is currently static. The interface for the command might also change later on. Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
Diffstat (limited to 'poezio/core/core.py')
-rw-r--r--poezio/core/core.py30
1 files changed, 30 insertions, 0 deletions
diff --git a/poezio/core/core.py b/poezio/core/core.py
index eec0d49b..985dcbab 100644
--- a/poezio/core/core.py
+++ b/poezio/core/core.py
@@ -13,6 +13,7 @@ import pipes
import sys
import shutil
import time
+import uuid
from collections import defaultdict
from typing import Callable, Dict, List, Optional, Tuple, Type
@@ -868,6 +869,28 @@ class Core:
self.xmpp.plugin['xep_0030'].get_info(
jid=jid, timeout=5, callback=callback)
+ def impromptu(self, jids: List[JID]) -> None:
+ """
+ Generates a new "Impromptu" room with a random localpart on the muc
+ component of the user who initiated the request. One the room is
+ created and the first user has joined, send invites for specified
+ contacts to join in.
+ """
+
+ # Use config.default_muc as muc component if available, otherwise
+ # find muc component by disco#items-ing the user domain. If not, give
+ # up
+ default_muc = 'chat.cluxia.eu'
+
+ nick = self.own_nick
+ room = uuid.uuid4().hex + '@' + default_muc
+
+ self.open_new_room(room, nick).join()
+ self.information('Room %s created' % room, 'Info')
+
+ for jid in jids:
+ self.invite(jid, room)
+
def get_error_message(self, stanza, deprecated: bool = False):
"""
Takes a stanza of the form <message type='error'><error/></message>
@@ -1789,6 +1812,13 @@ class Core:
shortdesc='Invite someone in a room.',
completion=self.completion.invite)
self.register_command(
+ 'impromptu',
+ self.command.impromptu,
+ usage='<jid> [<jid> ...]',
+ desc='Invite people into an impromptu room',
+ shortdesc='Invite someone in a room.',
+ completion=self.completion.impromptu)
+ self.register_command(
'invitations',
self.command.invitations,
shortdesc='Show the pending invitations.')