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
|
#!/usr/bin/env python3
########################################################################
# File name: block_jid.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 sys
import aioxmpp.disco
import aioxmpp.blocking
import aioxmpp.xso
from framework import Example, exec_example
class BlockJID(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(
"--add",
dest="jids_to_block",
default=[],
action="append",
type=jid,
metavar="JID",
help="JID to block (can be specified multiple times)",
)
self.argparse.add_argument(
"--remove",
dest="jids_to_unblock",
default=[],
action="append",
type=jid,
metavar="JID",
help="JID to unblock (can be specified multiple times)",
)
self.argparse.add_argument(
"-l", "--list",
action="store_true",
default=False,
dest="show_list",
help="If given, prints the block list at the end of the operation",
)
def configure(self):
super().configure()
if not (self.args.jids_to_block or
self.args.show_list or
self.args.jids_to_unblock):
print("nothing to do!", file=sys.stderr)
print("specify --add and/or --remove and/or --list",
file=sys.stderr)
sys.exit(1)
def make_simple_client(self):
client = super().make_simple_client()
self.blocking = client.summon(aioxmpp.BlockingClient)
return client
async def run_simple_example(self):
# we are polite and ask the server whether it actually supports the
# XEP-0191 block list protocol
disco = self.client.summon(aioxmpp.DiscoClient)
server_info = await disco.query_info(
self.client.local_jid.replace(
resource=None,
localpart=None,
)
)
if "urn:xmpp:blocking" not in server_info.features:
print("server does not support block lists!", file=sys.stderr)
sys.exit(2)
# now that we are sure that the server supports it, we can send
# requests.
if self.args.jids_to_block:
await self.blocking.block_jids(self.args.jids_to_block)
else:
print("nothing to block")
if self.args.jids_to_unblock:
await self.blocking.unblock_jids(self.args.jids_to_unblock)
else:
print("nothing to unblock")
if self.args.show_list:
# print all the items; again, .items is a list of JIDs
print("current block list:")
for item in sorted(self.blocking.blocklist):
print("\t", item, sep="")
if __name__ == "__main__":
exec_example(BlockJID())
|