2023-04-22 19:55:47 +03:00
|
|
|
export default function isMastodonLinkMaybe(url) {
|
2023-12-03 15:40:00 +03:00
|
|
|
try {
|
|
|
|
const { pathname, hash } = new URL(url);
|
|
|
|
return (
|
|
|
|
/^\/.*\/\d+$/i.test(pathname) ||
|
|
|
|
/^\/@[^/]+\/(statuses|posts)\/\w+\/?$/i.test(pathname) || // GoToSocial, Takahe
|
|
|
|
/^\/notes\/[a-z0-9]+$/i.test(pathname) || // Misskey, Firefish
|
|
|
|
/^\/notes\/[a-z0-9]+$/i.test(pathname) || // Misskey, Calckey
|
|
|
|
/^\/(notice|objects)\/[a-z0-9-]+$/i.test(pathname) || // Pleroma
|
|
|
|
/#\/[^\/]+\.[^\/]+\/s\/.+/i.test(hash) // Phanpy 🫣
|
|
|
|
);
|
|
|
|
} catch (e) {
|
|
|
|
return false;
|
|
|
|
}
|
2023-04-22 19:55:47 +03:00
|
|
|
}
|