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 | f2c3ed6 | 2016-12-15 14:32:50 -0800 | [diff] [blame] | 19 | /// <reference path="../../../../typings/index.d.ts"/> |
Matteo Scandolo | 86bc26a | 2017-01-18 11:06:47 -0800 | [diff] [blame] | 20 | import * as _ from 'lodash'; |
Matteo Scandolo | f2c3ed6 | 2016-12-15 14:32:50 -0800 | [diff] [blame] | 21 | import {BehaviorSubject, Observable} from 'rxjs/Rx'; |
| 22 | import {IWSEvent, IWSEventService} from '../websocket/global'; |
| 23 | import {IXosResourceService} from '../rest/model.rest'; |
| 24 | import {IStoreHelpersService} from '../helpers/store.helpers'; |
Matteo Scandolo | ba0d92e | 2017-03-02 16:47:46 -0800 | [diff] [blame] | 25 | import {IXosDebouncer} from '../../core/services/helpers/debounce.helper'; |
Matteo Scandolo | f2c3ed6 | 2016-12-15 14:32:50 -0800 | [diff] [blame] | 26 | |
Matteo Scandolo | 47860fe | 2017-02-02 12:05:55 -0800 | [diff] [blame] | 27 | export interface IXosModelStoreService { |
Matteo Scandolo | 1aee198 | 2017-02-17 08:33:23 -0800 | [diff] [blame] | 28 | query(model: string, apiUrl?: string): Observable<any>; |
Matteo Scandolo | 5d962a3 | 2017-08-01 18:16:14 -0700 | [diff] [blame] | 29 | get(model: string, id: string | number): Observable<any>; |
Matteo Scandolo | 86bc26a | 2017-01-18 11:06:47 -0800 | [diff] [blame] | 30 | search(modelName: string): any[]; |
Matteo Scandolo | f2c3ed6 | 2016-12-15 14:32:50 -0800 | [diff] [blame] | 31 | } |
| 32 | |
Matteo Scandolo | 1aee198 | 2017-02-17 08:33:23 -0800 | [diff] [blame] | 33 | export class XosModelStore implements IXosModelStoreService { |
Matteo Scandolo | ba0d92e | 2017-03-02 16:47:46 -0800 | [diff] [blame] | 34 | static $inject = ['$log', 'WebSocket', 'StoreHelpers', 'ModelRest', 'XosDebouncer']; |
Matteo Scandolo | f9dd4d0 | 2016-12-22 15:17:01 -0800 | [diff] [blame] | 35 | private _collections: any; // NOTE contains a map of {model: BehaviourSubject} |
Matteo Scandolo | ba0d92e | 2017-03-02 16:47:46 -0800 | [diff] [blame] | 36 | private efficientNext: any; // NOTE debounce next |
Matteo Scandolo | f2c3ed6 | 2016-12-15 14:32:50 -0800 | [diff] [blame] | 37 | constructor( |
Matteo Scandolo | 17bf824 | 2017-01-23 17:30:39 -0800 | [diff] [blame] | 38 | private $log: ng.ILogService, |
Matteo Scandolo | f2c3ed6 | 2016-12-15 14:32:50 -0800 | [diff] [blame] | 39 | private webSocket: IWSEventService, |
| 40 | private storeHelpers: IStoreHelpersService, |
Matteo Scandolo | bac2245 | 2017-01-03 16:35:32 -0800 | [diff] [blame] | 41 | private ModelRest: IXosResourceService, |
Matteo Scandolo | ba0d92e | 2017-03-02 16:47:46 -0800 | [diff] [blame] | 42 | private XosDebouncer: IXosDebouncer |
Matteo Scandolo | f2c3ed6 | 2016-12-15 14:32:50 -0800 | [diff] [blame] | 43 | ) { |
Matteo Scandolo | f9dd4d0 | 2016-12-22 15:17:01 -0800 | [diff] [blame] | 44 | this._collections = {}; |
Matteo Scandolo | 968e7f2 | 2017-03-03 11:49:18 -0800 | [diff] [blame] | 45 | this.efficientNext = this.XosDebouncer.debounce(this.next, 500, this, false); |
Matteo Scandolo | f2c3ed6 | 2016-12-15 14:32:50 -0800 | [diff] [blame] | 46 | } |
| 47 | |
Matteo Scandolo | 5d962a3 | 2017-08-01 18:16:14 -0700 | [diff] [blame] | 48 | public query(modelName: string, apiUrl?: string): Observable<any> { |
Matteo Scandolo | 04f487c | 2017-09-12 10:37:48 -0700 | [diff] [blame] | 49 | this.$log.debug(`[XosModelStore] QUERY: ${modelName}`); |
Matteo Scandolo | f9dd4d0 | 2016-12-22 15:17:01 -0800 | [diff] [blame] | 50 | // if there isn't already an observable for that item |
Matteo Scandolo | 042ea63 | 2017-03-01 19:02:34 -0800 | [diff] [blame] | 51 | // create a new one and .next() is called by this.loadInitialData once data are received |
Matteo Scandolo | 1aee198 | 2017-02-17 08:33:23 -0800 | [diff] [blame] | 52 | if (!this._collections[modelName]) { |
| 53 | this._collections[modelName] = new BehaviorSubject([]); // NOTE maybe this can be created when we get response from the resource |
| 54 | this.loadInitialData(modelName, apiUrl); |
Matteo Scandolo | f9dd4d0 | 2016-12-22 15:17:01 -0800 | [diff] [blame] | 55 | } |
Matteo Scandolo | 0f3692e | 2017-07-10 14:06:41 -0700 | [diff] [blame] | 56 | // else manually trigger the next with the last know value to trigger the subscribe method of who's requesting this data |
Matteo Scandolo | 042ea63 | 2017-03-01 19:02:34 -0800 | [diff] [blame] | 57 | else { |
Matteo Scandolo | 04f487c | 2017-09-12 10:37:48 -0700 | [diff] [blame] | 58 | this.$log.debug(`[XosModelStore] QUERY: Calling "next" on: ${modelName}`); |
Matteo Scandolo | ba0d92e | 2017-03-02 16:47:46 -0800 | [diff] [blame] | 59 | this.efficientNext(this._collections[modelName]); |
Matteo Scandolo | 042ea63 | 2017-03-01 19:02:34 -0800 | [diff] [blame] | 60 | } |
Matteo Scandolo | f9dd4d0 | 2016-12-22 15:17:01 -0800 | [diff] [blame] | 61 | |
Matteo Scandolo | f2c3ed6 | 2016-12-15 14:32:50 -0800 | [diff] [blame] | 62 | this.webSocket.list() |
Matteo Scandolo | 1aee198 | 2017-02-17 08:33:23 -0800 | [diff] [blame] | 63 | .filter((e: IWSEvent) => e.model === modelName) |
Matteo Scandolo | f2c3ed6 | 2016-12-15 14:32:50 -0800 | [diff] [blame] | 64 | .subscribe( |
| 65 | (event: IWSEvent) => { |
Matteo Scandolo | 1aee198 | 2017-02-17 08:33:23 -0800 | [diff] [blame] | 66 | this.storeHelpers.updateCollection(event, this._collections[modelName]); |
Matteo Scandolo | a4a4711 | 2016-12-16 10:06:13 -0800 | [diff] [blame] | 67 | }, |
Matteo Scandolo | 38e94a8 | 2017-03-02 12:17:27 -0800 | [diff] [blame] | 68 | err => this.$log.error |
Matteo Scandolo | f2c3ed6 | 2016-12-15 14:32:50 -0800 | [diff] [blame] | 69 | ); |
Matteo Scandolo | f9dd4d0 | 2016-12-22 15:17:01 -0800 | [diff] [blame] | 70 | |
Matteo Scandolo | 1aee198 | 2017-02-17 08:33:23 -0800 | [diff] [blame] | 71 | return this._collections[modelName].asObservable(); |
Matteo Scandolo | f2c3ed6 | 2016-12-15 14:32:50 -0800 | [diff] [blame] | 72 | } |
| 73 | |
Matteo Scandolo | 86bc26a | 2017-01-18 11:06:47 -0800 | [diff] [blame] | 74 | public search(modelName: string): any[] { |
Matteo Scandolo | 1aee198 | 2017-02-17 08:33:23 -0800 | [diff] [blame] | 75 | try { |
| 76 | const res = _.reduce(Object.keys(this._collections), (results, k) => { |
| 77 | let partialRes; |
| 78 | // NOTE wrapped in a try catch as some subject may be errored, due to not available REST endpoint |
| 79 | try { |
| 80 | partialRes = _.filter(this._collections[k].value, i => { |
| 81 | if (i && i.humanReadableName) { |
| 82 | return i.humanReadableName.toLowerCase().indexOf(modelName) > -1; |
| 83 | } |
| 84 | else if (i && i.name) { |
| 85 | return i.name.toLowerCase().indexOf(modelName) > -1; |
| 86 | } |
| 87 | return false; |
| 88 | }); |
| 89 | } catch (e) { |
| 90 | partialRes = []; |
Matteo Scandolo | 86bc26a | 2017-01-18 11:06:47 -0800 | [diff] [blame] | 91 | } |
Matteo Scandolo | 1aee198 | 2017-02-17 08:33:23 -0800 | [diff] [blame] | 92 | partialRes.map(m => { |
Matteo Scandolo | 86bc26a | 2017-01-18 11:06:47 -0800 | [diff] [blame] | 93 | m.modelName = k; |
| 94 | return m; |
| 95 | }); |
Matteo Scandolo | 1aee198 | 2017-02-17 08:33:23 -0800 | [diff] [blame] | 96 | return results.concat(partialRes); |
| 97 | }, []); |
| 98 | return res; |
| 99 | } catch (e) { |
| 100 | return []; |
| 101 | } |
Matteo Scandolo | 86bc26a | 2017-01-18 11:06:47 -0800 | [diff] [blame] | 102 | } |
| 103 | |
Matteo Scandolo | 5d962a3 | 2017-08-01 18:16:14 -0700 | [diff] [blame] | 104 | public get(modelName: string, modelId: string | number): Observable<any> { |
Matteo Scandolo | 04f487c | 2017-09-12 10:37:48 -0700 | [diff] [blame] | 105 | this.$log.debug(`[XosModelStore] GET: ${modelName} [${modelId}]`); |
| 106 | const subject = new BehaviorSubject({}); |
Matteo Scandolo | 5d962a3 | 2017-08-01 18:16:14 -0700 | [diff] [blame] | 107 | |
Matteo Scandolo | 04f487c | 2017-09-12 10:37:48 -0700 | [diff] [blame] | 108 | if (angular.isString(modelId)) { |
| 109 | modelId = parseInt(modelId, 10); |
| 110 | } |
Matteo Scandolo | 5d962a3 | 2017-08-01 18:16:14 -0700 | [diff] [blame] | 111 | |
Matteo Scandolo | 04f487c | 2017-09-12 10:37:48 -0700 | [diff] [blame] | 112 | this.query(modelName) |
| 113 | .subscribe((res) => { |
| 114 | const model = _.find(res, {id: modelId}); |
| 115 | if (model) { |
| 116 | this.$log.debug(`[XosModelStore] GET: Calling "next" on: ${modelName} [${modelId}]`); |
| 117 | subject.next(model); |
| 118 | } |
| 119 | }); |
Matteo Scandolo | 5d962a3 | 2017-08-01 18:16:14 -0700 | [diff] [blame] | 120 | |
| 121 | return subject.asObservable(); |
Matteo Scandolo | 0496423 | 2017-01-07 12:53:46 -0800 | [diff] [blame] | 122 | } |
| 123 | |
Matteo Scandolo | ba0d92e | 2017-03-02 16:47:46 -0800 | [diff] [blame] | 124 | private next(subject: BehaviorSubject<any>): void { |
| 125 | subject.next(subject.value); |
| 126 | } |
| 127 | |
Matteo Scandolo | 1aee198 | 2017-02-17 08:33:23 -0800 | [diff] [blame] | 128 | private loadInitialData(model: string, apiUrl?: string) { |
Matteo Scandolo | 5d962a3 | 2017-08-01 18:16:14 -0700 | [diff] [blame] | 129 | // TODO provide always the apiUrl together with the query() params |
Matteo Scandolo | 1aee198 | 2017-02-17 08:33:23 -0800 | [diff] [blame] | 130 | if (!angular.isDefined(apiUrl)) { |
| 131 | // NOTE check what is the correct pattern to pluralize this |
| 132 | apiUrl = this.storeHelpers.urlFromCoreModel(model); |
| 133 | } |
| 134 | this.ModelRest.getResource(apiUrl).query().$promise |
Matteo Scandolo | f2c3ed6 | 2016-12-15 14:32:50 -0800 | [diff] [blame] | 135 | .then( |
| 136 | res => { |
Matteo Scandolo | f9dd4d0 | 2016-12-22 15:17:01 -0800 | [diff] [blame] | 137 | this._collections[model].next(res); |
Matteo Scandolo | 17bf824 | 2017-01-23 17:30:39 -0800 | [diff] [blame] | 138 | }) |
| 139 | .catch( |
Matteo Scandolo | 1aee198 | 2017-02-17 08:33:23 -0800 | [diff] [blame] | 140 | err => { |
| 141 | this._collections[model].error(err); |
Matteo Scandolo | 1aee198 | 2017-02-17 08:33:23 -0800 | [diff] [blame] | 142 | } |
Matteo Scandolo | f2c3ed6 | 2016-12-15 14:32:50 -0800 | [diff] [blame] | 143 | ); |
| 144 | } |
| 145 | } |