aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mastodon/Mastodon.py')
-rw-r--r--mastodon/Mastodon.py35
1 files changed, 34 insertions, 1 deletions
diff --git a/mastodon/Mastodon.py b/mastodon/Mastodon.py
index d427444..7b75776 100644
--- a/mastodon/Mastodon.py
+++ b/mastodon/Mastodon.py
@@ -1162,7 +1162,40 @@ class Mastodon:
1162 headers = {'Authorization': 'Bearer ' + self.access_token} 1162 headers = {'Authorization': 'Bearer ' + self.access_token}
1163 url = self.api_base_url + endpoint 1163 url = self.api_base_url + endpoint
1164 1164
1165 connection = requests.get(url, headers = headers, data = params, stream = True) 1165 # requests session subclass to disable stripping authorization headers
1166 class __no_auth_strip_session(requests.Session):
1167 def rebuild_auth(self, prepared_request, response):
1168 return
1169
1170 # Mastodon can be configured to use another address for streaming.
1171 # However, due to a bug, Mastodon does not issue 301 Permanently
1172 # Moved redirects for anything but /api/v1/streaming (including
1173 # subdirs), instead returning a 404 with no redirect and causing the
1174 # entire request to fail.
1175 #
1176 # The workaround is to hit /api/v1/streaming and see if there is a
1177 # redirection, and then use the domain it gives us to do the final
1178 # request.
1179 if endpoint.startswith("/api/v1/streaming"):
1180 print("Hi I'm streaming", endpoint)
1181 stream_base = self.api_base_url + "/api/v1/streaming"
1182
1183 with __no_auth_strip_session() as session:
1184 connection = session.get(stream_base, headers = headers, data = params)
1185
1186 if connection.status_code not in (404, 200):
1187 # 404 is a normal error, raise on anything else
1188 raise MastodonNetworkError("Could not connect to streaming server: %s" % connection.reason)
1189
1190 url = connection.url.replace("/api/v1/streaming", endpoint)
1191 print("Url redirected:", url)
1192
1193 with __no_auth_strip_session() as session:
1194 # Prevent stripping of authorisation headers on redirect
1195 connection = session.get(url, headers = headers, data = params, stream = True)
1196
1197 if connection.status_code != 200:
1198 raise MastodonNetworkError("Could not connect to streaming server: %s" % connection.reason)
1166 1199
1167 class __stream_handle(): 1200 class __stream_handle():
1168 def __init__(self, connection): 1201 def __init__(self, connection):
Powered by cgit v1.2.3 (git 2.41.0)