2016-04-07 09:03:22 -04:00
|
|
|
#!/usr/bin/env python
|
2012-12-12 14:23:00 -05:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
2013-08-06 15:32:15 -04:00
|
|
|
# Copyright © 2012 Zulip, Inc.
|
2012-11-26 10:55:22 -05:00
|
|
|
#
|
2012-12-12 14:23:00 -05:00
|
|
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
# of this software and associated documentation files (the "Software"), to deal
|
|
|
|
# in the Software without restriction, including without limitation the rights
|
|
|
|
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
# copies of the Software, and to permit persons to whom the Software is
|
|
|
|
# furnished to do so, subject to the following conditions:
|
2012-11-26 10:55:22 -05:00
|
|
|
#
|
2012-12-12 14:23:00 -05:00
|
|
|
# The above copyright notice and this permission notice shall be included in
|
|
|
|
# all copies or substantial portions of the Software.
|
2012-11-26 10:55:22 -05:00
|
|
|
#
|
2012-12-12 14:23:00 -05:00
|
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
# THE SOFTWARE.
|
2012-11-26 10:55:22 -05:00
|
|
|
|
2016-03-10 11:15:34 -05:00
|
|
|
from __future__ import print_function
|
2012-11-16 14:15:03 -05:00
|
|
|
import sys
|
2013-10-28 10:54:32 -04:00
|
|
|
import os
|
2017-07-26 21:39:28 -04:00
|
|
|
import argparse
|
2012-11-16 14:15:03 -05:00
|
|
|
|
2013-05-29 14:00:27 -04:00
|
|
|
usage = """unsubscribe --user=<bot's email address> --api-key=<bot's api key> [options] --streams=<streams>
|
2012-11-16 14:15:03 -05:00
|
|
|
|
|
|
|
Ensures the user is not subscribed to the listed streams.
|
|
|
|
|
2015-09-19 21:12:02 -04:00
|
|
|
Examples: unsubscribe --user=username@example.com --api-key=a0b1c2d3e4f5a6b7c8d9e0f1a2b3c4d5 --streams=foo
|
|
|
|
unsubscribe --user=username@example.com --api-key=a0b1c2d3e4f5a6b7c8d9e0f1a2b3c4d5 --streams='foo bar'
|
2013-05-29 14:00:27 -04:00
|
|
|
|
2013-08-07 11:36:46 -04:00
|
|
|
You can omit --user and --api-key arguments if you have a properly set up ~/.zuliprc
|
2012-11-16 14:15:03 -05:00
|
|
|
"""
|
2013-10-28 10:54:32 -04:00
|
|
|
sys.path.append(os.path.join(os.path.dirname(__file__), '..'))
|
2013-08-07 11:51:03 -04:00
|
|
|
import zulip
|
2012-12-12 14:39:12 -05:00
|
|
|
|
2017-07-26 21:39:28 -04:00
|
|
|
parser = zulip.add_default_arguments(argparse.ArgumentParser(usage=usage))
|
|
|
|
parser.add_argument('--streams', default='')
|
|
|
|
options = parser.parse_args()
|
2012-11-16 14:15:03 -05:00
|
|
|
|
2013-08-07 11:51:03 -04:00
|
|
|
client = zulip.init_from_options(options)
|
2012-11-16 14:15:03 -05:00
|
|
|
|
|
|
|
if options.streams == "":
|
2016-03-10 11:15:34 -05:00
|
|
|
print("Usage:", parser.usage, file=sys.stderr)
|
2012-11-16 14:15:03 -05:00
|
|
|
sys.exit(1)
|
|
|
|
|
2016-03-10 11:15:34 -05:00
|
|
|
print(client.remove_subscriptions(options.streams.split()))
|