talig | 8e9c065 | 2017-12-20 14:30:43 +0200 | [diff] [blame] | 1 | /*! |
| 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 | |
| 17 | import store from 'sdc-app/AppStore.js'; |
| 18 | import Configuration from 'sdc-app/config/Configuration.js'; |
Einav Weiss Keidar | 7fdf733 | 2018-03-20 14:45:40 +0200 | [diff] [blame] | 19 | import { actionTypes } from 'sdc-app/onboarding/userNotifications/UserNotificationsConstants.js'; |
talig | 8e9c065 | 2017-12-20 14:30:43 +0200 | [diff] [blame] | 20 | |
Einav Weiss Keidar | 7fdf733 | 2018-03-20 14:45:40 +0200 | [diff] [blame] | 21 | export const websocketUrl = |
| 22 | 'ws://' + |
| 23 | window.location.hostname + |
| 24 | ':' + |
| 25 | Configuration.get('websocketPort') + |
| 26 | '/' + |
| 27 | Configuration.get('websocketPath'); |
talig | 8e9c065 | 2017-12-20 14:30:43 +0200 | [diff] [blame] | 28 | |
| 29 | /*** |
| 30 | * Websocket is treated like a singleton. only need one for the application. |
| 31 | */ |
| 32 | var websocket; |
| 33 | |
talig | 8e9c065 | 2017-12-20 14:30:43 +0200 | [diff] [blame] | 34 | export default { |
Einav Weiss Keidar | 7fdf733 | 2018-03-20 14:45:40 +0200 | [diff] [blame] | 35 | 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 | }, |
talig | 8e9c065 | 2017-12-20 14:30:43 +0200 | [diff] [blame] | 59 | |
Einav Weiss Keidar | 7fdf733 | 2018-03-20 14:45:40 +0200 | [diff] [blame] | 60 | close() { |
| 61 | if (websocket !== undefined) { |
| 62 | websocket.close(); |
| 63 | } |
| 64 | } |
talig | 8e9c065 | 2017-12-20 14:30:43 +0200 | [diff] [blame] | 65 | }; |