Matteo Scandolo | fb46ae6 | 2017-08-08 09:10:50 -0700 | [diff] [blame] | 1 | |
| 2 | /* |
| 3 | * Copyright 2017-present Open Networking Foundation |
| 4 | |
| 5 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | * you may not use this file except in compliance with the License. |
| 7 | * You may obtain a copy of the License at |
| 8 | |
| 9 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | |
| 11 | * Unless required by applicable law or agreed to in writing, software |
| 12 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | * See the License for the specific language governing permissions and |
| 15 | * limitations under the License. |
| 16 | */ |
| 17 | |
| 18 | |
Matteo Scandolo | 035c593 | 2016-12-14 09:55:15 -0800 | [diff] [blame] | 19 | import * as io from 'socket.io-client'; |
Matteo Scandolo | 98b5f5d | 2017-03-17 17:09:05 -0700 | [diff] [blame] | 20 | import * as _ from 'lodash'; |
Matteo Scandolo | 035c593 | 2016-12-14 09:55:15 -0800 | [diff] [blame] | 21 | import {Subject, Observable} from 'rxjs/Rx'; |
Matteo Scandolo | 828d1e8 | 2017-01-17 14:49:38 -0800 | [diff] [blame] | 22 | import {IXosAppConfig} from '../../../index'; |
Matteo Scandolo | 035c593 | 2016-12-14 09:55:15 -0800 | [diff] [blame] | 23 | |
| 24 | export interface IWSEvent { |
| 25 | model: string; |
| 26 | msg: { |
| 27 | changed_fields: string[], |
| 28 | object?: any, |
| 29 | pk?: number |
| 30 | }; |
| 31 | } |
| 32 | |
| 33 | export interface IWSEventService { |
| 34 | list(): Observable<IWSEvent>; |
| 35 | } |
| 36 | |
| 37 | export class WebSocketEvent { |
Matteo Scandolo | 828d1e8 | 2017-01-17 14:49:38 -0800 | [diff] [blame] | 38 | |
Matteo Scandolo | 98b5f5d | 2017-03-17 17:09:05 -0700 | [diff] [blame] | 39 | static $inject = [ |
| 40 | 'AppConfig', |
| 41 | '$log' |
| 42 | ]; |
Matteo Scandolo | 828d1e8 | 2017-01-17 14:49:38 -0800 | [diff] [blame] | 43 | |
Matteo Scandolo | e015fa9 | 2017-05-10 09:52:36 -0700 | [diff] [blame] | 44 | |
Matteo Scandolo | 035c593 | 2016-12-14 09:55:15 -0800 | [diff] [blame] | 45 | private _events: Subject<IWSEvent> = new Subject<IWSEvent>(); |
Matteo Scandolo | e015fa9 | 2017-05-10 09:52:36 -0700 | [diff] [blame] | 46 | private socket; |
| 47 | constructor( |
| 48 | private AppConfig: IXosAppConfig, |
| 49 | private $log: ng.ILogService |
| 50 | ) { |
| 51 | // NOTE list of field that are not useful to the UI |
| 52 | const ignoredFields: string[] = ['created', 'updated', 'backend_register']; |
Matteo Scandolo | 98b5f5d | 2017-03-17 17:09:05 -0700 | [diff] [blame] | 53 | |
Matteo Scandolo | e015fa9 | 2017-05-10 09:52:36 -0700 | [diff] [blame] | 54 | this.socket = io(this.AppConfig.websocketClient); |
| 55 | this.socket.on('event', (data: IWSEvent): void => { |
Matteo Scandolo | 98b5f5d | 2017-03-17 17:09:05 -0700 | [diff] [blame] | 56 | |
Matteo Scandolo | e015fa9 | 2017-05-10 09:52:36 -0700 | [diff] [blame] | 57 | if (data.msg.changed_fields.length === 0 || _.intersection(data.msg.changed_fields, ignoredFields).length === data.msg.changed_fields.length) { |
| 58 | // NOTE means that the only updated fields does not change anything in the UI, so don't send events around |
| 59 | this.$log.debug(`[WebSocket] Ignoring Event for: ${data.model} [${data.msg.pk}]`); |
| 60 | return; |
| 61 | } |
| 62 | |
Matteo Scandolo | c3804aa | 2017-08-09 16:00:43 -0700 | [diff] [blame] | 63 | this.$log.info(`[WebSocket] Received Event for: ${data.model} [${data.msg.pk}]`); |
| 64 | |
Matteo Scandolo | e015fa9 | 2017-05-10 09:52:36 -0700 | [diff] [blame] | 65 | this._events.next(data); |
| 66 | |
| 67 | // NOTE update observers of parent classes |
| 68 | if (data.msg.object.class_names && angular.isString(data.msg.object.class_names)) { |
| 69 | const models = data.msg.object.class_names.split(','); |
| 70 | _.forEach(models, (m: string) => { |
| 71 | data.model = m; |
| 72 | this._events.next(data); |
| 73 | }); |
| 74 | } |
| 75 | |
| 76 | }); |
Matteo Scandolo | 035c593 | 2016-12-14 09:55:15 -0800 | [diff] [blame] | 77 | } |
| 78 | list() { |
| 79 | return this._events.asObservable(); |
| 80 | } |
| 81 | } |