Create wt-odlux directory
[ccsdk/features.git] / sdnr / wt-odlux / odlux / framework / src / services / applicationApi.ts
1 /**
2  * ============LICENSE_START========================================================================
3  * ONAP : ccsdk feature sdnr wt odlux
4  * =================================================================================================
5  * Copyright (C) 2019 highstreet technologies GmbH Intellectual Property. All rights reserved.
6  * =================================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
8  * in compliance with the License. You may obtain a copy of the License at
9  *
10  * http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software distributed under the License
13  * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
14  * or implied. See the License for the specific language governing permissions and limitations under
15  * the License.
16  * ============LICENSE_END==========================================================================
17  */
18
19 import { Event } from '../common/event';
20 import { ApplicationStore } from '../store/applicationStore';
21 import { AuthMessage, sendMessage } from './broadcastService';
22
23 let resolveApplicationStoreInitialized: (store: ApplicationStore) => void;
24 let applicationStore: ApplicationStore | null = null;
25 const applicationStoreInitialized: Promise<ApplicationStore> = new Promise((resolve) => resolveApplicationStoreInitialized = resolve);
26
27 const loginEvent = new Event();
28 const logoutEvent = new Event();
29
30 const authChannelName = 'odlux_auth';
31
32 export const onLogin = () => {
33
34   const message : AuthMessage = { key: 'login', data: {} };
35   sendMessage(message, authChannelName);
36   loginEvent.invoke();
37
38 };
39
40 export const onLogout = () => {
41   
42   document.cookie = 'JSESSIONID=; expires=Thu, 01 Jan 1970 00:00:00 UTC; path=/;';
43
44   const message : AuthMessage = { key: 'logout', data: {} };
45   sendMessage(message, authChannelName);
46   logoutEvent.invoke();
47 };
48
49 export const setApplicationStore = (store: ApplicationStore) => {
50   if (!applicationStore && store) {
51     applicationStore = store;
52     resolveApplicationStoreInitialized(store);
53   }
54 };
55
56 export const applicationApi = {
57   get applicationStore(): ApplicationStore | null {
58     return applicationStore;
59   },
60
61   get applicationStoreInitialized(): Promise<ApplicationStore> {
62     return applicationStoreInitialized;
63   },
64
65   get loginEvent() {
66     return loginEvent;
67   },
68
69   get logoutEvent() {
70     return logoutEvent;
71   },
72 };
73
74 export default applicationApi;