2020-08-31 18:08:03 +05:30
|
|
|
/*
|
|
|
|
Copyright 2020 The Matrix.org Foundation C.I.C.
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
2021-08-12 05:08:37 +05:30
|
|
|
import {Store} from "../Store";
|
|
|
|
|
|
|
|
interface UserIdentity {
|
|
|
|
userId: string;
|
|
|
|
roomIds: string[];
|
|
|
|
deviceTrackingStatus: number;
|
|
|
|
}
|
2020-08-31 18:08:03 +05:30
|
|
|
|
|
|
|
export class UserIdentityStore {
|
2021-08-12 05:08:37 +05:30
|
|
|
private _store: Store<UserIdentity>;
|
|
|
|
|
|
|
|
constructor(store: Store<UserIdentity>) {
|
2020-08-31 18:08:03 +05:30
|
|
|
this._store = store;
|
|
|
|
}
|
|
|
|
|
2021-08-12 05:08:37 +05:30
|
|
|
get(userId: string): Promise<UserIdentity | null> {
|
2020-08-31 18:08:03 +05:30
|
|
|
return this._store.get(userId);
|
|
|
|
}
|
|
|
|
|
2021-09-01 03:18:38 +05:30
|
|
|
set(userIdentity: UserIdentity): void {
|
2020-08-31 19:39:13 +05:30
|
|
|
this._store.put(userIdentity);
|
2020-08-31 18:08:03 +05:30
|
|
|
}
|
|
|
|
|
2021-09-17 21:54:24 +05:30
|
|
|
remove(userId: string): void {
|
|
|
|
this._store.delete(userId);
|
2020-08-31 18:08:03 +05:30
|
|
|
}
|
|
|
|
}
|