mirror of https://github.com/zulip/zulip.git
mypy: Add annotations to api/integrations/basecamp/zulip_basecamp_mirror
This commit is contained in:
parent
d8fc30a776
commit
98ca518461
|
@ -32,9 +32,11 @@ import logging
|
||||||
import time
|
import time
|
||||||
import re
|
import re
|
||||||
import sys
|
import sys
|
||||||
|
from stderror import write
|
||||||
import os
|
import os
|
||||||
from datetime import datetime, timedelta
|
from datetime import datetime, timedelta
|
||||||
from six.moves.html_parser import HTMLParser
|
from six.moves.html_parser import HTMLParser
|
||||||
|
from typing import Any, Dict
|
||||||
import six
|
import six
|
||||||
|
|
||||||
sys.path.insert(0, os.path.dirname(__file__))
|
sys.path.insert(0, os.path.dirname(__file__))
|
||||||
|
@ -66,22 +68,24 @@ while len(json_implementations):
|
||||||
|
|
||||||
# void function that checks the permissions of the files this script needs.
|
# void function that checks the permissions of the files this script needs.
|
||||||
def check_permissions():
|
def check_permissions():
|
||||||
|
# type: () -> None
|
||||||
# check that the log file can be written
|
# check that the log file can be written
|
||||||
if config.LOG_FILE:
|
if config.LOG_FILE:
|
||||||
try:
|
try:
|
||||||
open(config.LOG_FILE, "w")
|
open(config.LOG_FILE, "w")
|
||||||
except IOError as e:
|
except IOError as e:
|
||||||
sys.stderr("Could not open up log for writing:")
|
sys.stderr.write("Could not open up log for writing:")
|
||||||
sys.stderr(e)
|
sys.stderr.write(str(e))
|
||||||
# check that the resume file can be written (this creates if it doesn't exist)
|
# check that the resume file can be written (this creates if it doesn't exist)
|
||||||
try:
|
try:
|
||||||
open(config.RESUME_FILE, "a+")
|
open(config.RESUME_FILE, "a+")
|
||||||
except IOError as e:
|
except IOError as e:
|
||||||
sys.stderr("Could not open up the file %s for reading and writing" % (config.RESUME_FILE,))
|
sys.stderr.write("Could not open up the file %s for reading and writing" % (config.RESUME_FILE),)
|
||||||
sys.stderr(e)
|
sys.stderr.write(str(e))
|
||||||
|
|
||||||
# builds the message dict for sending a message with the Zulip API
|
# builds the message dict for sending a message with the Zulip API
|
||||||
def build_message(event):
|
def build_message(event):
|
||||||
|
# type: (Dict[str, Any]) -> Dict[str, Any]
|
||||||
if not ('bucket' in event and 'creator' in event and 'html_url' in event):
|
if not ('bucket' in event and 'creator' in event and 'html_url' in event):
|
||||||
logging.error("Perhaps the Basecamp API changed behavior? "
|
logging.error("Perhaps the Basecamp API changed behavior? "
|
||||||
"This event doesn't have the expected format:\n%s" % (event,))
|
"This event doesn't have the expected format:\n%s" % (event,))
|
||||||
|
@ -110,16 +114,17 @@ def build_message(event):
|
||||||
|
|
||||||
# the main run loop for this mirror script
|
# the main run loop for this mirror script
|
||||||
def run_mirror():
|
def run_mirror():
|
||||||
|
# type: () -> None
|
||||||
# we should have the right (write) permissions on the resume file, as seen
|
# we should have the right (write) permissions on the resume file, as seen
|
||||||
# in check_permissions, but it may still be empty or corrupted
|
# in check_permissions, but it may still be empty or corrupted
|
||||||
try:
|
try:
|
||||||
with open(config.RESUME_FILE) as f:
|
with open(config.RESUME_FILE) as f:
|
||||||
since = f.read()
|
since = f.read() # type: Any
|
||||||
since = re.search(r"\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}.\d{3}-\d{2}:\d{2}", since)
|
since = re.search(r"\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}.\d{3}-\d{2}:\d{2}", since)
|
||||||
assert since, "resume file does not meet expected format"
|
assert since, "resume file does not meet expected format"
|
||||||
since = since.string
|
since = since.string
|
||||||
except (AssertionError, IOError) as e:
|
except (AssertionError, IOError) as e:
|
||||||
logging.warn("Could not open resume file: %s" % (e.message or e.strerror,))
|
logging.warn("Could not open resume file: %s" % (e,))
|
||||||
since = (datetime.utcnow() - timedelta(hours=config.BASECAMP_INITIAL_HISTORY_HOURS)).isoformat() + "-00:00"
|
since = (datetime.utcnow() - timedelta(hours=config.BASECAMP_INITIAL_HISTORY_HOURS)).isoformat() + "-00:00"
|
||||||
try:
|
try:
|
||||||
# we use an exponential backoff approach when we get 429 (Too Many Requests).
|
# we use an exponential backoff approach when we get 429 (Too Many Requests).
|
||||||
|
@ -136,12 +141,12 @@ def run_mirror():
|
||||||
if len(events):
|
if len(events):
|
||||||
logging.info("Got event(s): %s" % (response.text,))
|
logging.info("Got event(s): %s" % (response.text,))
|
||||||
if response.status_code >= 500:
|
if response.status_code >= 500:
|
||||||
logging.error(response.status_code)
|
logging.error(str(response.status_code))
|
||||||
continue
|
continue
|
||||||
if response.status_code == 429:
|
if response.status_code == 429:
|
||||||
# exponential backoff
|
# exponential backoff
|
||||||
sleepInterval *= 2
|
sleepInterval *= 2
|
||||||
logging.error(response.status_code)
|
logging.error(str(response.status_code))
|
||||||
continue
|
continue
|
||||||
if response.status_code == 400:
|
if response.status_code == 400:
|
||||||
logging.error("Something went wrong. Basecamp must be unhappy for this reason: %s" % (response.text,))
|
logging.error("Something went wrong. Basecamp must be unhappy for this reason: %s" % (response.text,))
|
||||||
|
@ -173,7 +178,7 @@ def run_mirror():
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
if not isinstance(config.RESUME_FILE, six.string_types):
|
if not isinstance(config.RESUME_FILE, six.string_types):
|
||||||
sys.stderr("RESUME_FILE path not given; refusing to continue")
|
sys.stderr.write("RESUME_FILE path not given; refusing to continue")
|
||||||
check_permissions()
|
check_permissions()
|
||||||
if config.LOG_FILE:
|
if config.LOG_FILE:
|
||||||
logging.basicConfig(filename=config.LOG_FILE, level=logging.INFO)
|
logging.basicConfig(filename=config.LOG_FILE, level=logging.INFO)
|
||||||
|
|
|
@ -25,7 +25,6 @@ api/integrations/perforce/zulip_perforce_config.py
|
||||||
api/integrations/svn/zulip_svn_config.py
|
api/integrations/svn/zulip_svn_config.py
|
||||||
api/integrations/trac/zulip_trac_config.py
|
api/integrations/trac/zulip_trac_config.py
|
||||||
api/integrations/asana/zulip_asana_mirror
|
api/integrations/asana/zulip_asana_mirror
|
||||||
api/integrations/basecamp/zulip_basecamp_mirror
|
|
||||||
api/integrations/codebase/zulip_codebase_mirror
|
api/integrations/codebase/zulip_codebase_mirror
|
||||||
api/integrations/git/post-receive
|
api/integrations/git/post-receive
|
||||||
api/integrations/rss/rss-bot
|
api/integrations/rss/rss-bot
|
||||||
|
|
Loading…
Reference in New Issue