Skip to content
This repository has been archived by the owner on Dec 21, 2023. It is now read-only.

Commit

Permalink
Use ws protocol in streaming API base URL (mastodon#2606)
Browse files Browse the repository at this point in the history
  • Loading branch information
akihikodaki authored and Gargron committed May 4, 2017
1 parent 629a4d0 commit 0cdcf32
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 13 deletions.
12 changes: 1 addition & 11 deletions app/javascript/mastodon/stream.js
Original file line number Diff line number Diff line change
@@ -1,17 +1,7 @@
import WebSocketClient from 'websocket.js';

const createWebSocketURL = (url) => {
const a = document.createElement('a');

a.href = url;
a.href = a.href;
a.protocol = a.protocol.replace('http', 'ws');

return a.href;
};

export default function getStream(streamingAPIBaseURL, accessToken, stream, { connected, received, disconnected, reconnected }) {
const ws = new WebSocketClient(`${createWebSocketURL(streamingAPIBaseURL)}/api/v1/streaming/?access_token=${accessToken}&stream=${stream}`);
const ws = new WebSocketClient(`${streamingAPIBaseURL}/api/v1/streaming/?access_token=${accessToken}&stream=${stream}`);

ws.onopen = connected;
ws.onmessage = e => received(JSON.parse(e.data));
Expand Down
4 changes: 2 additions & 2 deletions config/initializers/ostatus.rb
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
config.x.use_s3 = ENV['S3_ENABLED'] == 'true'

config.action_mailer.default_url_options = { host: web_host, protocol: https ? 'https://' : 'http://', trailing_slash: false }
config.x.streaming_api_base_url = 'http://localhost:4000'
config.x.streaming_api_base_url = 'ws://localhost:4000'

if Rails.env.production?
config.x.streaming_api_base_url = ENV.fetch('STREAMING_API_BASE_URL') { "http#{https ? 's' : ''}://#{web_host}" }
config.x.streaming_api_base_url = ENV.fetch('STREAMING_API_BASE_URL') { "ws#{https ? 's' : ''}://#{web_host}" }
end
end

0 comments on commit 0cdcf32

Please sign in to comment.