1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158
|
########################################################################
# File name: set_muc_config.py
# This file is part of: aioxmpp
#
# LICENSE
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this program. If not, see
# <http://www.gnu.org/licenses/>.
#
########################################################################
import asyncio
import configparser
import aioxmpp.muc
import aioxmpp.muc.xso
from framework import Example, exec_example
class ServerInfo(Example):
def prepare_argparse(self):
super().prepare_argparse()
# this gives a nicer name in argparse errors
def jid(s):
return aioxmpp.JID.fromstr(s)
self.argparse.add_argument(
"--muc",
type=jid,
default=None,
help="JID of the muc to query"
)
self.argparse.set_defaults(
moderated=None,
persistent=None,
membersonly=None,
)
mutex = self.argparse.add_mutually_exclusive_group()
mutex.add_argument(
"--set-moderated",
dest="moderated",
action="store_true",
help="Set the room to be moderated",
)
mutex.add_argument(
"--clear-moderated",
dest="moderated",
action="store_false",
help="Set the room to be unmoderated",
)
mutex = self.argparse.add_mutually_exclusive_group()
mutex.add_argument(
"--set-persistent",
dest="persistent",
action="store_true",
help="Set the room to be persistent",
)
mutex.add_argument(
"--clear-persistent",
dest="persistent",
action="store_false",
help="Set the room to be not persistent",
)
mutex = self.argparse.add_mutually_exclusive_group()
mutex.add_argument(
"--set-members-only",
dest="membersonly",
action="store_true",
help="Set the room to be members only",
)
mutex.add_argument(
"--clear-members-only",
dest="membersonly",
action="store_false",
help="Set the room to be joinable by everyone",
)
self.argparse.add_argument(
"--description",
dest="description",
default=None,
help="Change the natural-language room description"
)
self.argparse.add_argument(
"--name",
dest="name",
default=None,
help="Change the natural-language room name"
)
def configure(self):
super().configure()
self.muc_jid = self.args.muc
if self.muc_jid is None:
try:
self.muc_jid = aioxmpp.JID.fromstr(
self.config.get("muc_config", "muc_jid")
)
except (configparser.NoSectionError,
configparser.NoOptionError):
self.muc_jid = aioxmpp.JID.fromstr(
input("MUC JID> ")
)
def make_simple_client(self):
client = super().make_simple_client()
client.summon(aioxmpp.MUCClient)
return client
async def run_simple_example(self):
muc = self.client.summon(aioxmpp.MUCClient)
config = await muc.get_room_config(
self.muc_jid
)
form = aioxmpp.muc.xso.ConfigurationForm.from_xso(config)
if self.args.membersonly is not None:
form.membersonly.value = self.args.membersonly
if self.args.persistent is not None:
form.persistent.value = self.args.persistent
if self.args.moderated is not None:
form.moderatedroom.value = self.args.moderated
if self.args.description is not None:
form.roomdesc.value = self.args.description
if self.args.name is not None:
form.roomname.value = self.args.name
await muc.set_room_config(
self.muc_jid,
form.render_reply()
)
if __name__ == "__main__":
exec_example(ServerInfo())
|