2016-04-07 09:03:22 -04:00
|
|
|
#!/usr/bin/env python
|
2013-05-14 15:18:11 -04:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
2013-08-06 15:32:15 -04:00
|
|
|
# Copyright © 2012 Zulip, Inc.
|
2013-05-14 15:18:11 -04: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:
|
|
|
|
#
|
|
|
|
# The above copyright notice and this permission notice shall be included in
|
|
|
|
# all copies or substantial portions of the Software.
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
|
2016-03-10 11:15:34 -05:00
|
|
|
from __future__ import print_function
|
2017-07-26 21:39:28 -04:00
|
|
|
import argparse
|
2013-05-14 15:18:11 -04:00
|
|
|
|
2017-08-25 05:03:06 -04:00
|
|
|
usage = """edit-message [options] --message=<msg_id> --subject=<new subject> --content=<new content>
|
2013-05-14 15:18:11 -04:00
|
|
|
|
2013-05-29 14:00:27 -04:00
|
|
|
Edits a message that you sent
|
2013-05-14 15:18:11 -04:00
|
|
|
|
2017-08-25 05:03:06 -04:00
|
|
|
Example: edit-message --message-id="348135" --subject="my subject" --content="test message"
|
2013-05-29 14:00:27 -04:00
|
|
|
|
2017-08-25 05:03:06 -04:00
|
|
|
Specify your Zulip API credentials and server in a ~/.zuliprc file or using the options.
|
2013-05-14 15:18:11 -04:00
|
|
|
"""
|
2013-05-29 14:00:27 -04:00
|
|
|
|
2013-08-07 11:51:03 -04:00
|
|
|
import zulip
|
2013-05-29 14:00:27 -04:00
|
|
|
|
2017-07-26 21:39:28 -04:00
|
|
|
parser = zulip.add_default_arguments(argparse.ArgumentParser(usage=usage))
|
|
|
|
parser.add_argument('--message-id', default="")
|
|
|
|
parser.add_argument('--subject', default="")
|
|
|
|
parser.add_argument('--content', default="")
|
|
|
|
options = parser.parse_args()
|
2013-05-14 15:18:11 -04:00
|
|
|
|
2013-08-07 11:51:03 -04:00
|
|
|
client = zulip.init_from_options(options)
|
2013-05-14 15:18:11 -04:00
|
|
|
|
|
|
|
message_data = {
|
2013-05-29 14:00:27 -04:00
|
|
|
"message_id": options.message_id,
|
2013-05-14 15:18:11 -04:00
|
|
|
}
|
|
|
|
if options.subject != "":
|
|
|
|
message_data["subject"] = options.subject
|
|
|
|
if options.content != "":
|
|
|
|
message_data["content"] = options.content
|
2016-03-10 11:15:34 -05:00
|
|
|
print(client.update_message(message_data))
|