blob: 69f44d4da510f5bcc7c4ee6471888faac2df0629 [file] [log] [blame]
talig8e9c0652017-12-20 14:30:43 +02001/*!
2 * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
13 * or implied. See the License for the specific language governing
14 * permissions and limitations under the License.
15 */
16
17import store from 'sdc-app/AppStore.js';
18import Configuration from 'sdc-app/config/Configuration.js';
Einav Weiss Keidar7fdf7332018-03-20 14:45:40 +020019import { actionTypes } from 'sdc-app/onboarding/userNotifications/UserNotificationsConstants.js';
talig8e9c0652017-12-20 14:30:43 +020020
Einav Weiss Keidar7fdf7332018-03-20 14:45:40 +020021export const websocketUrl =
22 'ws://' +
23 window.location.hostname +
24 ':' +
25 Configuration.get('websocketPort') +
26 '/' +
27 Configuration.get('websocketPath');
talig8e9c0652017-12-20 14:30:43 +020028
29/***
30 * Websocket is treated like a singleton. only need one for the application.
31 */
32var websocket;
33
talig8e9c0652017-12-20 14:30:43 +020034export default {
Einav Weiss Keidar7fdf7332018-03-20 14:45:40 +020035 open(url, { lastScanned }) {
36 if (
37 websocket === undefined ||
38 websocket.readyState === websocket.CLOSED
39 ) {
40 websocket = new WebSocket(
41 `${url}?LAST_DELIVERED_EVENT_ID=${lastScanned}`
42 );
43 websocket.onmessage = event =>
44 store.dispatch({
45 type: actionTypes.NOTIFICATION,
46 data: JSON.parse(event.data)
47 });
48 websocket.onclose = event => {
49 if (event.code && event.code === 1001) {
50 // - Idle Timeout
51 const { lastScanned } = store.getState().notifications;
52 console.log('Reconnecting to Websocket');
53 this.open(websocketUrl, { lastScanned });
54 }
55 };
56 websocket.onerror = event => console.log(event);
57 }
58 },
talig8e9c0652017-12-20 14:30:43 +020059
Einav Weiss Keidar7fdf7332018-03-20 14:45:40 +020060 close() {
61 if (websocket !== undefined) {
62 websocket.close();
63 }
64 }
talig8e9c0652017-12-20 14:30:43 +020065};