summaryrefslogtreecommitdiff
path: root/includes/external/matrix/node_modules/matrix-js-sdk/lib/content-helpers.js
diff options
context:
space:
mode:
Diffstat (limited to 'includes/external/matrix/node_modules/matrix-js-sdk/lib/content-helpers.js')
-rw-r--r--includes/external/matrix/node_modules/matrix-js-sdk/lib/content-helpers.js256
1 files changed, 256 insertions, 0 deletions
diff --git a/includes/external/matrix/node_modules/matrix-js-sdk/lib/content-helpers.js b/includes/external/matrix/node_modules/matrix-js-sdk/lib/content-helpers.js
new file mode 100644
index 0000000..73f1e86
--- /dev/null
+++ b/includes/external/matrix/node_modules/matrix-js-sdk/lib/content-helpers.js
@@ -0,0 +1,256 @@
+"use strict";
+
+var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.makeBeaconInfoContent = exports.makeBeaconContent = exports.getTextForLocationEvent = void 0;
+exports.makeEmoteMessage = makeEmoteMessage;
+exports.makeHtmlEmote = makeHtmlEmote;
+exports.makeHtmlMessage = makeHtmlMessage;
+exports.makeHtmlNotice = makeHtmlNotice;
+exports.makeLocationContent = void 0;
+exports.makeNotice = makeNotice;
+exports.makeTextMessage = makeTextMessage;
+exports.parseTopicContent = exports.parseLocationEvent = exports.parseBeaconInfoContent = exports.parseBeaconContent = exports.makeTopicContent = void 0;
+var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
+var _event = require("./@types/event");
+var _extensible_events = require("./@types/extensible_events");
+var _utilities = require("./extensible_events_v1/utilities");
+var _location = require("./@types/location");
+var _topic = require("./@types/topic");
+function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
+function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { (0, _defineProperty2.default)(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
+/**
+ * Generates the content for a HTML Message event
+ * @param body - the plaintext body of the message
+ * @param htmlBody - the HTML representation of the message
+ * @returns
+ */
+function makeHtmlMessage(body, htmlBody) {
+ return {
+ msgtype: _event.MsgType.Text,
+ format: "org.matrix.custom.html",
+ body: body,
+ formatted_body: htmlBody
+ };
+}
+
+/**
+ * Generates the content for a HTML Notice event
+ * @param body - the plaintext body of the notice
+ * @param htmlBody - the HTML representation of the notice
+ * @returns
+ */
+function makeHtmlNotice(body, htmlBody) {
+ return {
+ msgtype: _event.MsgType.Notice,
+ format: "org.matrix.custom.html",
+ body: body,
+ formatted_body: htmlBody
+ };
+}
+
+/**
+ * Generates the content for a HTML Emote event
+ * @param body - the plaintext body of the emote
+ * @param htmlBody - the HTML representation of the emote
+ * @returns
+ */
+function makeHtmlEmote(body, htmlBody) {
+ return {
+ msgtype: _event.MsgType.Emote,
+ format: "org.matrix.custom.html",
+ body: body,
+ formatted_body: htmlBody
+ };
+}
+
+/**
+ * Generates the content for a Plaintext Message event
+ * @param body - the plaintext body of the emote
+ * @returns
+ */
+function makeTextMessage(body) {
+ return {
+ msgtype: _event.MsgType.Text,
+ body: body
+ };
+}
+
+/**
+ * Generates the content for a Plaintext Notice event
+ * @param body - the plaintext body of the notice
+ * @returns
+ */
+function makeNotice(body) {
+ return {
+ msgtype: _event.MsgType.Notice,
+ body: body
+ };
+}
+
+/**
+ * Generates the content for a Plaintext Emote event
+ * @param body - the plaintext body of the emote
+ * @returns
+ */
+function makeEmoteMessage(body) {
+ return {
+ msgtype: _event.MsgType.Emote,
+ body: body
+ };
+}
+
+/** Location content helpers */
+
+const getTextForLocationEvent = (uri, assetType, timestamp, description) => {
+ const date = `at ${new Date(timestamp).toISOString()}`;
+ const assetName = assetType === _location.LocationAssetType.Self ? "User" : undefined;
+ const quotedDescription = description ? `"${description}"` : undefined;
+ return [assetName, "Location", quotedDescription, uri, date].filter(Boolean).join(" ");
+};
+
+/**
+ * Generates the content for a Location event
+ * @param uri - a geo:// uri for the location
+ * @param timestamp - the timestamp when the location was correct (milliseconds since the UNIX epoch)
+ * @param description - the (optional) label for this location on the map
+ * @param assetType - the (optional) asset type of this location e.g. "m.self"
+ * @param text - optional. A text for the location
+ */
+exports.getTextForLocationEvent = getTextForLocationEvent;
+const makeLocationContent = (text, uri, timestamp, description, assetType) => {
+ const defaultedText = text !== null && text !== void 0 ? text : getTextForLocationEvent(uri, assetType || _location.LocationAssetType.Self, timestamp, description);
+ const timestampEvent = timestamp ? {
+ [_location.M_TIMESTAMP.name]: timestamp
+ } : {};
+ return _objectSpread({
+ msgtype: _event.MsgType.Location,
+ body: defaultedText,
+ geo_uri: uri,
+ [_location.M_LOCATION.name]: {
+ description,
+ uri
+ },
+ [_location.M_ASSET.name]: {
+ type: assetType || _location.LocationAssetType.Self
+ },
+ [_extensible_events.M_TEXT.name]: defaultedText
+ }, timestampEvent);
+};
+
+/**
+ * Parse location event content and transform to
+ * a backwards compatible modern m.location event format
+ */
+exports.makeLocationContent = makeLocationContent;
+const parseLocationEvent = wireEventContent => {
+ var _location$uri, _asset$type;
+ const location = _location.M_LOCATION.findIn(wireEventContent);
+ const asset = _location.M_ASSET.findIn(wireEventContent);
+ const timestamp = _location.M_TIMESTAMP.findIn(wireEventContent);
+ const text = _extensible_events.M_TEXT.findIn(wireEventContent);
+ const geoUri = (_location$uri = location === null || location === void 0 ? void 0 : location.uri) !== null && _location$uri !== void 0 ? _location$uri : wireEventContent === null || wireEventContent === void 0 ? void 0 : wireEventContent.geo_uri;
+ const description = location === null || location === void 0 ? void 0 : location.description;
+ const assetType = (_asset$type = asset === null || asset === void 0 ? void 0 : asset.type) !== null && _asset$type !== void 0 ? _asset$type : _location.LocationAssetType.Self;
+ const fallbackText = text !== null && text !== void 0 ? text : wireEventContent.body;
+ return makeLocationContent(fallbackText, geoUri, timestamp !== null && timestamp !== void 0 ? timestamp : undefined, description, assetType);
+};
+
+/**
+ * Topic event helpers
+ */
+exports.parseLocationEvent = parseLocationEvent;
+const makeTopicContent = (topic, htmlTopic) => {
+ const renderings = [{
+ body: topic,
+ mimetype: "text/plain"
+ }];
+ if ((0, _utilities.isProvided)(htmlTopic)) {
+ renderings.push({
+ body: htmlTopic,
+ mimetype: "text/html"
+ });
+ }
+ return {
+ topic,
+ [_topic.M_TOPIC.name]: renderings
+ };
+};
+exports.makeTopicContent = makeTopicContent;
+const parseTopicContent = content => {
+ var _mtopic$find$body, _mtopic$find, _mtopic$find2;
+ const mtopic = _topic.M_TOPIC.findIn(content);
+ if (!Array.isArray(mtopic)) {
+ return {
+ text: content.topic
+ };
+ }
+ const text = (_mtopic$find$body = mtopic === null || mtopic === void 0 ? void 0 : (_mtopic$find = mtopic.find(r => !(0, _utilities.isProvided)(r.mimetype) || r.mimetype === "text/plain")) === null || _mtopic$find === void 0 ? void 0 : _mtopic$find.body) !== null && _mtopic$find$body !== void 0 ? _mtopic$find$body : content.topic;
+ const html = mtopic === null || mtopic === void 0 ? void 0 : (_mtopic$find2 = mtopic.find(r => r.mimetype === "text/html")) === null || _mtopic$find2 === void 0 ? void 0 : _mtopic$find2.body;
+ return {
+ text,
+ html
+ };
+};
+
+/**
+ * Beacon event helpers
+ */
+exports.parseTopicContent = parseTopicContent;
+const makeBeaconInfoContent = (timeout, isLive, description, assetType, timestamp) => ({
+ description,
+ timeout,
+ live: isLive,
+ [_location.M_TIMESTAMP.name]: timestamp || Date.now(),
+ [_location.M_ASSET.name]: {
+ type: assetType !== null && assetType !== void 0 ? assetType : _location.LocationAssetType.Self
+ }
+});
+exports.makeBeaconInfoContent = makeBeaconInfoContent;
+/**
+ * Flatten beacon info event content
+ */
+const parseBeaconInfoContent = content => {
+ var _M_TIMESTAMP$findIn;
+ const {
+ description,
+ timeout,
+ live
+ } = content;
+ const timestamp = (_M_TIMESTAMP$findIn = _location.M_TIMESTAMP.findIn(content)) !== null && _M_TIMESTAMP$findIn !== void 0 ? _M_TIMESTAMP$findIn : undefined;
+ const asset = _location.M_ASSET.findIn(content);
+ return {
+ description,
+ timeout,
+ live,
+ assetType: asset === null || asset === void 0 ? void 0 : asset.type,
+ timestamp
+ };
+};
+exports.parseBeaconInfoContent = parseBeaconInfoContent;
+const makeBeaconContent = (uri, timestamp, beaconInfoEventId, description) => ({
+ [_location.M_LOCATION.name]: {
+ description,
+ uri
+ },
+ [_location.M_TIMESTAMP.name]: timestamp,
+ "m.relates_to": {
+ rel_type: _extensible_events.REFERENCE_RELATION.name,
+ event_id: beaconInfoEventId
+ }
+});
+exports.makeBeaconContent = makeBeaconContent;
+const parseBeaconContent = content => {
+ var _M_TIMESTAMP$findIn2;
+ const location = _location.M_LOCATION.findIn(content);
+ const timestamp = (_M_TIMESTAMP$findIn2 = _location.M_TIMESTAMP.findIn(content)) !== null && _M_TIMESTAMP$findIn2 !== void 0 ? _M_TIMESTAMP$findIn2 : undefined;
+ return {
+ description: location === null || location === void 0 ? void 0 : location.description,
+ uri: location === null || location === void 0 ? void 0 : location.uri,
+ timestamp
+ };
+};
+exports.parseBeaconContent = parseBeaconContent;
+//# sourceMappingURL=content-helpers.js.map \ No newline at end of file