2023-07-27 05:31:52 +00:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2022-01-26 15:08:48 +00:00
|
|
|
// ブラウザで直接表示することを許可するファイルの種類のリスト
|
|
|
|
// ここに含まれないものは application/octet-stream としてレスポンスされる
|
|
|
|
// SVGはXSSを生むので許可しない
|
|
|
|
export const FILE_TYPE_BROWSERSAFE = [
|
|
|
|
// Images
|
|
|
|
'image/png',
|
|
|
|
'image/gif',
|
|
|
|
'image/jpeg',
|
|
|
|
'image/webp',
|
2022-12-08 05:49:49 +00:00
|
|
|
'image/avif',
|
2022-01-26 15:08:48 +00:00
|
|
|
'image/apng',
|
|
|
|
'image/bmp',
|
|
|
|
'image/tiff',
|
|
|
|
'image/x-icon',
|
2023-11-02 22:14:36 +00:00
|
|
|
'image/jxl',
|
2022-01-26 15:08:48 +00:00
|
|
|
|
|
|
|
// OggS
|
|
|
|
'audio/opus',
|
|
|
|
'video/ogg',
|
|
|
|
'audio/ogg',
|
|
|
|
'application/ogg',
|
|
|
|
|
|
|
|
// ISO/IEC base media file format
|
|
|
|
'video/quicktime',
|
|
|
|
'video/mp4',
|
|
|
|
'audio/mp4',
|
|
|
|
'video/x-m4v',
|
|
|
|
'audio/x-m4a',
|
|
|
|
'video/3gpp',
|
|
|
|
'video/3gpp2',
|
|
|
|
|
|
|
|
'video/mpeg',
|
|
|
|
'audio/mpeg',
|
|
|
|
|
|
|
|
'video/webm',
|
|
|
|
'audio/webm',
|
|
|
|
|
|
|
|
'audio/aac',
|
2023-04-25 17:17:58 +00:00
|
|
|
|
|
|
|
// see https://github.com/misskey-dev/misskey/pull/10686
|
|
|
|
'audio/flac',
|
|
|
|
'audio/wav',
|
|
|
|
// backward compatibility
|
2022-01-26 15:08:48 +00:00
|
|
|
'audio/x-flac',
|
|
|
|
'audio/vnd.wave',
|
|
|
|
];
|
2023-11-02 22:14:36 +00:00
|
|
|
|
|
|
|
export const FILE_TYPE_TRACKER_MODULES = [
|
|
|
|
'audio/mod',
|
|
|
|
'audio/x-mod',
|
|
|
|
'audio/s3m',
|
|
|
|
'audio/x-s3m',
|
|
|
|
'audio/xm',
|
|
|
|
'audio/x-xm',
|
|
|
|
'audio/it',
|
|
|
|
'audio/x-it',
|
|
|
|
];
|
|
|
|
|
|
|
|
export const FILE_EXT_TRACKER_MODULES = [
|
|
|
|
'mod',
|
|
|
|
's3m',
|
|
|
|
'xm',
|
|
|
|
'it',
|
|
|
|
'mptm',
|
|
|
|
'stm',
|
|
|
|
'nst',
|
|
|
|
'm15',
|
|
|
|
'stk',
|
|
|
|
'wow',
|
|
|
|
'ult',
|
|
|
|
'669',
|
|
|
|
'mtm',
|
|
|
|
'med',
|
|
|
|
'far',
|
|
|
|
'mdl',
|
|
|
|
'ams',
|
|
|
|
'dsm',
|
|
|
|
'amf',
|
|
|
|
'okt',
|
|
|
|
'dmf',
|
|
|
|
'ptm',
|
|
|
|
'psm',
|
|
|
|
'mt2',
|
|
|
|
'dbm',
|
|
|
|
'digi',
|
|
|
|
'imf',
|
|
|
|
'j2b',
|
|
|
|
'gdm',
|
|
|
|
'umx',
|
|
|
|
'plm',
|
|
|
|
'mo3',
|
|
|
|
'xpk',
|
|
|
|
'ppm',
|
|
|
|
'mmcmp',
|
|
|
|
];
|
|
|
|
|
2022-01-26 15:08:48 +00:00
|
|
|
/*
|
|
|
|
https://github.com/sindresorhus/file-type/blob/main/supported.js
|
|
|
|
https://github.com/sindresorhus/file-type/blob/main/core.js
|
|
|
|
https://developer.mozilla.org/en-US/docs/Web/Media/Formats/Containers
|
|
|
|
*/
|
2023-02-23 11:46:14 +00:00
|
|
|
|
2023-09-21 09:48:15 +00:00
|
|
|
export const notificationTypes = ['note', 'follow', 'mention', 'reply', 'renote', 'quote', 'reaction', 'pollEnded', 'receiveFollowRequest', 'followRequestAccepted', 'achievementEarned', 'app'] as const;
|
2023-02-23 11:46:14 +00:00
|
|
|
export const obsoleteNotificationTypes = ['pollVote', 'groupInvited'] as const;
|
2023-03-02 09:40:43 +00:00
|
|
|
|
2023-03-02 11:47:24 +00:00
|
|
|
export const ROLE_POLICIES = [
|
|
|
|
'gtlAvailable',
|
|
|
|
'ltlAvailable',
|
|
|
|
'canPublicNote',
|
2023-11-12 14:07:32 +00:00
|
|
|
'canImportNotes',
|
2023-03-02 11:47:24 +00:00
|
|
|
'canInvite',
|
2023-07-15 00:57:58 +00:00
|
|
|
'inviteLimit',
|
|
|
|
'inviteLimitCycle',
|
|
|
|
'inviteExpirationTime',
|
2023-03-02 11:47:24 +00:00
|
|
|
'canManageCustomEmojis',
|
2023-10-30 06:33:15 +00:00
|
|
|
'canManageAvatarDecorations',
|
2023-03-13 08:52:24 +00:00
|
|
|
'canSearchNotes',
|
2023-09-29 22:54:11 +00:00
|
|
|
'canUseTranslator',
|
2023-03-02 11:47:24 +00:00
|
|
|
'canHideAds',
|
|
|
|
'driveCapacityMb',
|
2023-05-05 05:18:06 +00:00
|
|
|
'alwaysMarkNsfw',
|
2023-03-02 11:47:24 +00:00
|
|
|
'pinLimit',
|
|
|
|
'antennaLimit',
|
|
|
|
'wordMuteLimit',
|
|
|
|
'webhookLimit',
|
|
|
|
'clipLimit',
|
|
|
|
'noteEachClipsLimit',
|
|
|
|
'userListLimit',
|
|
|
|
'userEachUserListsLimit',
|
|
|
|
'rateLimitFactor',
|
|
|
|
] as const;
|
|
|
|
|
2023-03-02 09:40:43 +00:00
|
|
|
// なんか動かない
|
|
|
|
//export const CURRENT_STICKY_TOP = Symbol('CURRENT_STICKY_TOP');
|
|
|
|
//export const CURRENT_STICKY_BOTTOM = Symbol('CURRENT_STICKY_BOTTOM');
|
|
|
|
export const CURRENT_STICKY_TOP = 'CURRENT_STICKY_TOP';
|
|
|
|
export const CURRENT_STICKY_BOTTOM = 'CURRENT_STICKY_BOTTOM';
|
2023-06-09 05:00:53 +00:00
|
|
|
|
2023-11-15 22:47:29 +00:00
|
|
|
export const DEFAULT_SERVER_ERROR_IMAGE_URL = 'https://launcher.moe/error.png';
|
|
|
|
export const DEFAULT_NOT_FOUND_IMAGE_URL = 'https://launcher.moe/missingpage.webp';
|
|
|
|
export const DEFAULT_INFO_IMAGE_URL = 'https://launcher.moe/nothinghere.png';
|
2023-11-17 04:09:56 +00:00
|
|
|
|
2023-11-17 06:05:37 +00:00
|
|
|
export const MFM_TAGS = ['tada', 'jelly', 'twitch', 'shake', 'spin', 'jump', 'bounce', 'flip', 'x2', 'x3', 'x4', 'scale', 'position', 'fg', 'bg', 'font', 'blur', 'rainbow', 'sparkle', 'rotate', 'ruby', 'unixtime'];
|