2022-03-25 22:36:22 +08:00
|
|
|
/*
|
2024-09-09 21:57:16 +08:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2022-03-25 22:36:22 +08:00
|
|
|
Copyright 2021 The Matrix.org Foundation C.I.C.
|
|
|
|
|
2024-09-09 21:57:16 +08:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
|
|
|
|
Please see LICENSE files in the repository root for full details.
|
2022-03-25 22:36:22 +08:00
|
|
|
*/
|
|
|
|
|
2023-08-23 17:04:25 +08:00
|
|
|
import { LocationAssetType, M_LOCATION, MatrixEvent, EventType, ContentHelpers } from "matrix-js-sdk/src/matrix";
|
2022-03-25 22:36:22 +08:00
|
|
|
|
|
|
|
let id = 1;
|
|
|
|
export const makeLegacyLocationEvent = (geoUri: string): MatrixEvent => {
|
2022-12-12 19:24:14 +08:00
|
|
|
return new MatrixEvent({
|
|
|
|
event_id: `$${++id}`,
|
|
|
|
type: EventType.RoomMessage,
|
|
|
|
content: {
|
|
|
|
body: "Something about where I am",
|
|
|
|
msgtype: "m.location",
|
|
|
|
geo_uri: geoUri,
|
2022-03-25 22:36:22 +08:00
|
|
|
},
|
2023-08-22 03:38:59 +08:00
|
|
|
origin_server_ts: 0,
|
2022-12-12 19:24:14 +08:00
|
|
|
});
|
2022-03-25 22:36:22 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
export const makeLocationEvent = (geoUri: string, assetType?: LocationAssetType): MatrixEvent => {
|
2022-12-12 19:24:14 +08:00
|
|
|
return new MatrixEvent({
|
|
|
|
event_id: `$${++id}`,
|
|
|
|
type: M_LOCATION.name,
|
2023-08-15 23:00:17 +08:00
|
|
|
content: ContentHelpers.makeLocationContent(
|
2022-12-12 19:24:14 +08:00
|
|
|
`Found at ${geoUri} at 2021-12-21T12:22+0000`,
|
|
|
|
geoUri,
|
|
|
|
252523,
|
|
|
|
"Human-readable label",
|
|
|
|
assetType,
|
|
|
|
),
|
2023-08-22 03:38:59 +08:00
|
|
|
origin_server_ts: 0,
|
2022-12-12 19:24:14 +08:00
|
|
|
});
|
2022-03-25 22:36:22 +08:00
|
|
|
};
|
2022-03-29 00:46:39 +08:00
|
|
|
|
|
|
|
// https://developer.mozilla.org/en-US/docs/Web/API/GeolocationPositionError
|
|
|
|
export const getMockGeolocationPositionError = (code: number, message: string): GeolocationPositionError => ({
|
2022-12-12 19:24:14 +08:00
|
|
|
code,
|
|
|
|
message,
|
2022-03-29 00:46:39 +08:00
|
|
|
PERMISSION_DENIED: 1,
|
|
|
|
POSITION_UNAVAILABLE: 2,
|
|
|
|
TIMEOUT: 3,
|
|
|
|
});
|