Source: models/users/remote.js

"use strict";
/*
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.
*/
/**
 * Construct a new Remote user.
 * @constructor
 * @param {string} identifier The unique ID for this user.
 * @param {Object=} data The serialized key-value data object to assign to this user.
 * @throws If identifier is not supplied.
 */
function RemoteUser(identifier, data) {
    if (!identifier) {
        throw new Error("Missing identifier");
    }
    this.id = identifier;
    this.data = data || {};
}
/**
 * Get the Remote user's ID.
 * @return {string} Their ID.
 */
RemoteUser.prototype.getId = function () {
    return this.id;
};
/**
 * Serialize all the data about this user, excluding their remote ID.
 * @return {Object} The serialised data
 */
RemoteUser.prototype.serialize = function () {
    return this.data;
};
/**
 * Get the data value for the given key.
 * @param {string} key An arbitrary bridge-specific key.
 * @return {*} Stored data for this key. May be undefined.
 */
RemoteUser.prototype.get = function (key) {
    return this.data[key];
};
/**
 * Set an arbitrary bridge-specific data value for this user.
 * @param {string} key The key to store the data value under.
 * @param {*} val The data value. This value should be serializable via
 * <code>JSON.stringify(data)</code>.
 */
RemoteUser.prototype.set = function (key, val) {
    this.data[key] = val;
};
/** The Remote user class. */
module.exports = RemoteUser;
//# sourceMappingURL=remote.js.map