Mini App: Validate colors (#6899)

This commit is contained in:
zubiden 2026-04-27 14:29:30 +02:00 committed by Alexander Zinchuk
parent 9798b5a851
commit c9011553bc
3 changed files with 56 additions and 29 deletions

View File

@ -2885,6 +2885,5 @@
"TextShowLess" = "less"; "TextShowLess" = "less";
"AiMessageEditorFrom" = "From"; "AiMessageEditorFrom" = "From";
"AiMessageEditorTo" = "To"; "AiMessageEditorTo" = "To";
"TranslationToneNeutral" = "Neutral";
"ButtonHelp" = "Help"; "ButtonHelp" = "Help";
"UnofficialSecurityRisk" = "{peer} uses an unofficial Telegram client — messages to this user may be less secure."; "UnofficialSecurityRisk" = "{peer} uses an unofficial Telegram client — messages to this user may be less secure.";

View File

@ -275,6 +275,10 @@ const WebAppModalTabContent: FC<OwnProps & StateProps> = ({
return Boolean(text?.trim().length || iconCustomEmojiId); return Boolean(text?.trim().length || iconCustomEmojiId);
} }
function getValidHexColor(color: string | undefined) {
return color && validateHexColor(color) ? color : undefined;
}
const isMainButtonVisible = isLoaded && mainButton?.isVisible && hasBottomButtonContent( const isMainButtonVisible = isLoaded && mainButton?.isVisible && hasBottomButtonContent(
mainButton.text, mainButton.text,
mainButton.iconCustomEmojiId, mainButton.iconCustomEmojiId,
@ -674,16 +678,21 @@ const WebAppModalTabContent: FC<OwnProps & StateProps> = ({
} }
if (eventType === 'web_app_set_background_color') { if (eventType === 'web_app_set_background_color') {
setBackgroundColorFromEvent(validateHexColor(eventData.color) ? eventData.color : undefined); const validColor = getValidHexColor(eventData.color);
if (validColor) setBackgroundColorFromEvent(validColor);
} }
if (eventType === 'web_app_set_header_color') { if (eventType === 'web_app_set_header_color') {
const validColor = getValidHexColor(eventData.color);
const key = eventData.color_key; const key = eventData.color_key;
setHeaderColorFromEvent(eventData.color || (key ? themeParams[key] : undefined)); const fallback = key ? themeParams[key] : undefined;
const color = validColor || fallback;
if (color) setHeaderColorFromEvent(color);
} }
if (eventType === 'web_app_set_bottom_bar_color') { if (eventType === 'web_app_set_bottom_bar_color') {
setBottomBarColor(eventData.color); const color = getValidHexColor(eventData.color);
if (color) setBottomBarColor(color);
} }
if (eventType === 'web_app_data_send') { if (eventType === 'web_app_data_send') {
@ -696,33 +705,43 @@ const WebAppModalTabContent: FC<OwnProps & StateProps> = ({
} }
if (eventType === 'web_app_setup_main_button') { if (eventType === 'web_app_setup_main_button') {
const color = eventData.color; setMainButton((prevButton) => {
const textColor = eventData.text_color; const color = getValidHexColor(eventData.color) || prevButton?.color
setMainButton({ || themeParams.button_color;
isVisible: eventData.is_visible && hasBottomButtonContent(eventData.text, eventData.icon_custom_emoji_id), const textColor = getValidHexColor(eventData.text_color) || prevButton?.textColor
isActive: eventData.is_active, || themeParams.button_text_color;
text: eventData.text,
color, return {
textColor, isVisible: eventData.is_visible && hasBottomButtonContent(eventData.text, eventData.icon_custom_emoji_id),
isProgressVisible: eventData.is_progress_visible, isActive: eventData.is_active,
iconCustomEmojiId: eventData.icon_custom_emoji_id, text: eventData.text,
hasShineEffect: eventData.has_shine_effect, color,
textColor,
isProgressVisible: eventData.is_progress_visible,
iconCustomEmojiId: eventData.icon_custom_emoji_id,
hasShineEffect: eventData.has_shine_effect,
};
}); });
} }
if (eventType === 'web_app_setup_secondary_button') { if (eventType === 'web_app_setup_secondary_button') {
const color = eventData.color; setSecondaryButton((prevButton) => {
const textColor = eventData.text_color; const color = getValidHexColor(eventData.color) || prevButton?.color
setSecondaryButton({ || themeParams.button_color;
isVisible: eventData.is_visible && hasBottomButtonContent(eventData.text, eventData.icon_custom_emoji_id), const textColor = getValidHexColor(eventData.text_color) || prevButton?.textColor
isActive: eventData.is_active, || themeParams.button_text_color;
text: eventData.text,
color, return {
textColor, isVisible: eventData.is_visible && hasBottomButtonContent(eventData.text, eventData.icon_custom_emoji_id),
isProgressVisible: eventData.is_progress_visible, isActive: eventData.is_active,
iconCustomEmojiId: eventData.icon_custom_emoji_id, text: eventData.text,
hasShineEffect: eventData.has_shine_effect, color,
position: eventData.position, textColor,
isProgressVisible: eventData.is_progress_visible,
iconCustomEmojiId: eventData.icon_custom_emoji_id,
hasShineEffect: eventData.has_shine_effect,
position: eventData.position,
};
}); });
} }

View File

@ -1,17 +1,26 @@
import { SVG_EXTENSIONS } from '../../config'; import { SVG_EXTENSIONS } from '../../config';
const UNSAFE_MIME_TYPES = new Set(['text/html', 'image/svg+xml']); const UNSAFE_MIME_TYPES = new Set(['text/html', 'image/svg+xml']);
const UNSAFE_MIME_SUBTYPES = new Set(['html', 'svg+xml', 'xhtml+xml', 'xml']);
const UNSAFE_EXTENSIONS = new Set([ const UNSAFE_EXTENSIONS = new Set([
...SVG_EXTENSIONS, ...SVG_EXTENSIONS,
'htm', 'html', 'svg', 'm4v', 'm3u', 'm3u8', 'xhtml', 'xml', 'htm', 'html', 'svg', 'm4v', 'm3u', 'm3u8', 'xhtml', 'xml',
]); ]);
export function isIpRevealingMedia({ mimeType, extension }: { mimeType?: string; extension: string }) { export function isIpRevealingMedia({ mimeType, extension }: { mimeType?: string; extension: string }) {
if (mimeType && UNSAFE_MIME_TYPES.has(mimeType)) { const normalizedMimeType = mimeType?.split(';')[0].trim().toLowerCase();
const normalizedMimeSubtype = normalizedMimeType?.split('/').pop()?.trim();
const normalizedExtension = extension.trim().toLowerCase();
if (normalizedMimeType && UNSAFE_MIME_TYPES.has(normalizedMimeType)) {
return true; return true;
} }
if (UNSAFE_EXTENSIONS.has(extension)) { if (normalizedMimeSubtype && UNSAFE_MIME_SUBTYPES.has(normalizedMimeSubtype)) {
return true;
}
if (UNSAFE_EXTENSIONS.has(normalizedExtension)) {
return true; return true;
} }