Introduce smaller incoming size limit for text attachments
This commit is contained in:
parent
8c71ed2590
commit
5e733059b9
7 changed files with 85 additions and 31 deletions
|
@ -2891,6 +2891,10 @@
|
|||
"messageformat": "Read more",
|
||||
"description": "When a message is too long this is the affordance to expand the message"
|
||||
},
|
||||
"icu:MessageBody--message-too-long": {
|
||||
"messageformat": "Message too long to display more",
|
||||
"description": "When an incoming message is too long, and we refused to download it"
|
||||
},
|
||||
"icu:Message--unsupported-message": {
|
||||
"messageformat": "{contact} sent you a message that can't be processed or displayed because it uses a new Signal feature."
|
||||
},
|
||||
|
|
|
@ -19,6 +19,10 @@
|
|||
}
|
||||
}
|
||||
|
||||
&__message-too-long {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
&__at-mention {
|
||||
border-radius: 4px;
|
||||
cursor: pointer;
|
||||
|
|
|
@ -35,7 +35,8 @@ export type ConfigKeyType =
|
|||
| 'global.groupsv2.groupSizeHardLimit'
|
||||
| 'global.groupsv2.maxGroupSize'
|
||||
| 'global.nicknames.max'
|
||||
| 'global.nicknames.min';
|
||||
| 'global.nicknames.min'
|
||||
| 'global.textAttachmentLimitBytes';
|
||||
|
||||
type ConfigValueType = {
|
||||
name: ConfigKeyType;
|
||||
|
|
|
@ -118,6 +118,17 @@ export function TextPending(): JSX.Element {
|
|||
return <MessageBody {...props} />;
|
||||
}
|
||||
|
||||
export function MessageTooLong(): JSX.Element {
|
||||
const props = createProps({
|
||||
text: 'Check out https://www.signal.org',
|
||||
textAttachment: {
|
||||
wasTooBig: true,
|
||||
},
|
||||
});
|
||||
|
||||
return <MessageBody {...props} />;
|
||||
}
|
||||
|
||||
export function Mention(): JSX.Element {
|
||||
const props = createProps({
|
||||
bodyRanges: [
|
||||
|
|
|
@ -33,7 +33,10 @@ export type Props = {
|
|||
renderLocation: RenderLocation;
|
||||
showConversation?: ShowConversationType;
|
||||
text: string;
|
||||
textAttachment?: Pick<AttachmentType, 'pending' | 'digest' | 'key'>;
|
||||
textAttachment?: Pick<
|
||||
AttachmentType,
|
||||
'pending' | 'digest' | 'key' | 'wasTooBig'
|
||||
>;
|
||||
};
|
||||
|
||||
/**
|
||||
|
@ -59,19 +62,36 @@ export function MessageBody({
|
|||
text,
|
||||
textAttachment,
|
||||
}: Props): JSX.Element {
|
||||
const hasReadMore = Boolean(onIncreaseTextLength);
|
||||
|
||||
const shouldDisableLinks = disableLinks || !shouldLinkifyMessage(text);
|
||||
const textWithSuffix =
|
||||
textAttachment?.pending || hasReadMore ? `${text}...` : text;
|
||||
textAttachment?.pending || onIncreaseTextLength || textAttachment?.wasTooBig
|
||||
? `${text}...`
|
||||
: text;
|
||||
|
||||
const sizeClass = disableJumbomoji ? undefined : getSizeClass(text);
|
||||
|
||||
let pendingContent: React.ReactNode;
|
||||
if (hasReadMore) {
|
||||
pendingContent = null;
|
||||
let endNotification: React.ReactNode;
|
||||
if (onIncreaseTextLength) {
|
||||
endNotification = (
|
||||
<button
|
||||
className="MessageBody__read-more"
|
||||
onClick={() => {
|
||||
onIncreaseTextLength();
|
||||
}}
|
||||
onKeyDown={(ev: KeyboardEvent) => {
|
||||
if (ev.key === 'Space' || ev.key === 'Enter') {
|
||||
onIncreaseTextLength();
|
||||
}
|
||||
}}
|
||||
tabIndex={0}
|
||||
type="button"
|
||||
>
|
||||
{' '}
|
||||
{i18n('icu:MessageBody--read-more')}
|
||||
</button>
|
||||
);
|
||||
} else if (textAttachment?.pending) {
|
||||
pendingContent = (
|
||||
endNotification = (
|
||||
<span className="MessageBody__highlight"> {i18n('icu:downloading')}</span>
|
||||
);
|
||||
} else if (
|
||||
|
@ -79,7 +99,7 @@ export function MessageBody({
|
|||
canBeDownloaded(textAttachment) &&
|
||||
kickOffBodyDownload
|
||||
) {
|
||||
pendingContent = (
|
||||
endNotification = (
|
||||
<span>
|
||||
{' '}
|
||||
<button
|
||||
|
@ -99,8 +119,14 @@ export function MessageBody({
|
|||
</button>
|
||||
</span>
|
||||
);
|
||||
} else if (textAttachment?.wasTooBig) {
|
||||
endNotification = (
|
||||
<span className="MessageBody__message-too-long">
|
||||
{' '}
|
||||
{i18n('icu:MessageBody--message-too-long')}
|
||||
</span>
|
||||
);
|
||||
}
|
||||
|
||||
return (
|
||||
<span>
|
||||
{author && (
|
||||
|
@ -135,25 +161,7 @@ export function MessageBody({
|
|||
textLength={text.length}
|
||||
/>
|
||||
|
||||
{pendingContent}
|
||||
{onIncreaseTextLength ? (
|
||||
<button
|
||||
className="MessageBody__read-more"
|
||||
onClick={() => {
|
||||
onIncreaseTextLength();
|
||||
}}
|
||||
onKeyDown={(ev: KeyboardEvent) => {
|
||||
if (ev.key === 'Space' || ev.key === 'Enter') {
|
||||
onIncreaseTextLength();
|
||||
}
|
||||
}}
|
||||
tabIndex={0}
|
||||
type="button"
|
||||
>
|
||||
{' '}
|
||||
{i18n('icu:MessageBody--read-more')}
|
||||
</button>
|
||||
) : null}
|
||||
{endNotification}
|
||||
</span>
|
||||
);
|
||||
}
|
||||
|
|
|
@ -29,6 +29,7 @@ import * as log from '../logging/log';
|
|||
import {
|
||||
KIBIBYTE,
|
||||
getMaximumIncomingAttachmentSizeInKb,
|
||||
getMaximumIncomingTextAttachmentSizeInKb,
|
||||
} from '../types/AttachmentSize';
|
||||
|
||||
const {
|
||||
|
@ -281,14 +282,23 @@ async function _runJob(job?: AttachmentDownloadJobType): Promise<void> {
|
|||
let downloaded: AttachmentType | null = null;
|
||||
|
||||
try {
|
||||
const { size } = attachment;
|
||||
const maxInKib = getMaximumIncomingAttachmentSizeInKb(getValue);
|
||||
const maxTextAttachmentSizeInKib =
|
||||
getMaximumIncomingTextAttachmentSizeInKb(getValue);
|
||||
|
||||
const { size } = attachment;
|
||||
const sizeInKib = size / KIBIBYTE;
|
||||
|
||||
if (!size || sizeInKib > maxInKib) {
|
||||
throw new AttachmentSizeError(
|
||||
`Attachment Job ${id}: Attachment was ${sizeInKib}kib, max is ${maxInKib}kib`
|
||||
);
|
||||
}
|
||||
if (type === 'long-message' && sizeInKib > maxTextAttachmentSizeInKib) {
|
||||
throw new AttachmentSizeError(
|
||||
`Attachment Job ${id}: Text attachment was ${sizeInKib}kib, max is ${maxTextAttachmentSizeInKib}kib`
|
||||
);
|
||||
}
|
||||
|
||||
await _addAttachmentToMessage(
|
||||
message,
|
||||
|
|
|
@ -43,6 +43,22 @@ export const getMaximumIncomingAttachmentSizeInKb = (
|
|||
}
|
||||
};
|
||||
|
||||
export const getMaximumIncomingTextAttachmentSizeInKb = (
|
||||
getValue: typeof RemoteConfig.getValue
|
||||
): number => {
|
||||
try {
|
||||
return (
|
||||
parseIntOrThrow(
|
||||
getValue('global.textAttachmentLimitBytes'),
|
||||
'getMaximumIncomingTextAttachmentSizeInKb'
|
||||
) / KIBIBYTE
|
||||
);
|
||||
} catch (_error) {
|
||||
// TODO: DESKTOP-6314. We're not gonna log until the new flag is fully deployed
|
||||
return KIBIBYTE * 5;
|
||||
}
|
||||
};
|
||||
|
||||
export function getRenderDetailsForLimit(limitKb: number): {
|
||||
limit: number;
|
||||
units: string;
|
||||
|
|
Loading…
Reference in a new issue