fix attachments loading for avatar and exporting files
parent
def03c8baa
commit
ed30be5334
@ -1,145 +1,128 @@
|
||||
import React from 'react';
|
||||
import React, { useState } from 'react';
|
||||
import classNames from 'classnames';
|
||||
|
||||
import { AvatarPlaceHolder, ClosedGroupAvatar } from './AvatarPlaceHolder';
|
||||
import { ConversationAvatar } from './session/usingClosedConversationDetails';
|
||||
import { useEncryptedFileFetch } from '../hooks/useEncryptedFileFetch';
|
||||
|
||||
export enum AvatarSize {
|
||||
XS = 28,
|
||||
S = 36,
|
||||
M = 48,
|
||||
L = 64,
|
||||
XL = 80,
|
||||
HUGE = 300,
|
||||
}
|
||||
|
||||
interface Props {
|
||||
type Props = {
|
||||
avatarPath?: string;
|
||||
name?: string; // display name, profileName or phoneNumber, whatever is set first
|
||||
pubkey?: string;
|
||||
size: number;
|
||||
size: AvatarSize;
|
||||
memberAvatars?: Array<ConversationAvatar>; // this is added by usingClosedConversationDetails
|
||||
onAvatarClick?: () => void;
|
||||
}
|
||||
|
||||
interface State {
|
||||
imageBroken: boolean;
|
||||
}
|
||||
|
||||
export class Avatar extends React.PureComponent<Props, State> {
|
||||
public handleImageErrorBound: () => void;
|
||||
public onAvatarClickBound: (e: any) => void;
|
||||
|
||||
public constructor(props: Props) {
|
||||
super(props);
|
||||
|
||||
this.handleImageErrorBound = this.handleImageError.bind(this);
|
||||
this.onAvatarClickBound = this.onAvatarClick.bind(this);
|
||||
|
||||
this.state = {
|
||||
imageBroken: false,
|
||||
};
|
||||
}
|
||||
|
||||
public handleImageError() {
|
||||
window.log.warn(
|
||||
'Avatar: Image failed to load; failing over to placeholder'
|
||||
);
|
||||
this.setState({
|
||||
imageBroken: true,
|
||||
});
|
||||
}
|
||||
|
||||
public renderIdenticon() {
|
||||
const { size, name, pubkey } = this.props;
|
||||
|
||||
const userName = name || '0';
|
||||
|
||||
};
|
||||
|
||||
const Identicon = (props: Props) => {
|
||||
const { size, name, pubkey } = props;
|
||||
const userName = name || '0';
|
||||
|
||||
return (
|
||||
<AvatarPlaceHolder
|
||||
diameter={size}
|
||||
name={userName}
|
||||
pubkey={pubkey}
|
||||
colors={['#5ff8b0', '#26cdb9', '#f3c615', '#fcac5a']}
|
||||
borderColor={'#00000059'}
|
||||
/>
|
||||
);
|
||||
};
|
||||
|
||||
const NoImage = (props: {
|
||||
memberAvatars?: Array<ConversationAvatar>;
|
||||
name?: string;
|
||||
pubkey?: string;
|
||||
size: AvatarSize;
|
||||
}) => {
|
||||
const { memberAvatars, size } = props;
|
||||
// if no image but we have conversations set for the group, renders group members avatars
|
||||
if (memberAvatars) {
|
||||
return (
|
||||
<AvatarPlaceHolder
|
||||
diameter={size}
|
||||
name={userName}
|
||||
pubkey={pubkey}
|
||||
colors={this.getAvatarColors()}
|
||||
borderColor={this.getAvatarBorderColor()}
|
||||
<ClosedGroupAvatar
|
||||
size={size}
|
||||
memberAvatars={memberAvatars}
|
||||
i18n={window.i18n}
|
||||
/>
|
||||
);
|
||||
}
|
||||
|
||||
public renderImage() {
|
||||
const { avatarPath, name } = this.props;
|
||||
const { imageBroken } = this.state;
|
||||
return <Identicon {...props} />;
|
||||
};
|
||||
|
||||
if (!avatarPath || imageBroken) {
|
||||
return null;
|
||||
}
|
||||
const AvatarImage = (props: {
|
||||
avatarPath?: string;
|
||||
name?: string; // display name, profileName or phoneNumber, whatever is set first
|
||||
imageBroken: boolean;
|
||||
handleImageError: () => any;
|
||||
}) => {
|
||||
const { avatarPath, name, imageBroken, handleImageError } = props;
|
||||
|
||||
return (
|
||||
<img
|
||||
onError={this.handleImageErrorBound}
|
||||
alt={window.i18n('contactAvatarAlt', [name])}
|
||||
src={avatarPath}
|
||||
/>
|
||||
);
|
||||
if (!avatarPath || imageBroken) {
|
||||
return null;
|
||||
}
|
||||
|
||||
public renderNoImage() {
|
||||
const { memberAvatars, size } = this.props;
|
||||
// if no image but we have conversations set for the group, renders group members avatars
|
||||
if (memberAvatars) {
|
||||
return (
|
||||
<ClosedGroupAvatar
|
||||
size={size}
|
||||
memberAvatars={memberAvatars}
|
||||
i18n={window.i18n}
|
||||
/>
|
||||
);
|
||||
}
|
||||
|
||||
return this.renderIdenticon();
|
||||
}
|
||||
return (
|
||||
<img
|
||||
onError={handleImageError}
|
||||
alt={window.i18n('contactAvatarAlt', [name])}
|
||||
src={avatarPath}
|
||||
/>
|
||||
);
|
||||
};
|
||||
|
||||
public render() {
|
||||
const { avatarPath, size, memberAvatars } = this.props;
|
||||
const { imageBroken } = this.state;
|
||||
const isClosedGroupAvatar = memberAvatars && memberAvatars.length;
|
||||
const hasImage = avatarPath && !imageBroken && !isClosedGroupAvatar;
|
||||
|
||||
if (
|
||||
size !== 28 &&
|
||||
size !== 36 &&
|
||||
size !== 48 &&
|
||||
size !== 64 &&
|
||||
size !== 80 &&
|
||||
size !== 300
|
||||
) {
|
||||
throw new Error(`Size ${size} is not supported!`);
|
||||
}
|
||||
const isClickable = !!this.props.onAvatarClick;
|
||||
export const Avatar = (props: Props) => {
|
||||
const { avatarPath, size, memberAvatars, name } = props;
|
||||
const [imageBroken, setImageBroken] = useState(false);
|
||||
|
||||
return (
|
||||
<div
|
||||
className={classNames(
|
||||
'module-avatar',
|
||||
`module-avatar--${size}`,
|
||||
hasImage ? 'module-avatar--with-image' : 'module-avatar--no-image',
|
||||
isClickable && 'module-avatar-clickable'
|
||||
)}
|
||||
onClick={e => {
|
||||
this.onAvatarClickBound(e);
|
||||
}}
|
||||
role="button"
|
||||
>
|
||||
{hasImage ? this.renderImage() : this.renderNoImage()}
|
||||
</div>
|
||||
const handleImageError = () => {
|
||||
window.log.warn(
|
||||
'Avatar: Image failed to load; failing over to placeholder'
|
||||
);
|
||||
}
|
||||
|
||||
private onAvatarClick(e: any) {
|
||||
if (this.props.onAvatarClick) {
|
||||
e.stopPropagation();
|
||||
this.props.onAvatarClick();
|
||||
}
|
||||
}
|
||||
|
||||
private getAvatarColors(): Array<string> {
|
||||
// const theme = window.Events.getThemedSettings();
|
||||
// defined in session-android as `profile_picture_placeholder_colors`
|
||||
return ['#5ff8b0', '#26cdb9', '#f3c615', '#fcac5a'];
|
||||
}
|
||||
|
||||
private getAvatarBorderColor(): string {
|
||||
return '#00000059'; // borderAvatarColor in themes.scss
|
||||
}
|
||||
}
|
||||
setImageBroken(true);
|
||||
};
|
||||
|
||||
// contentType is not important
|
||||
const { urlToLoad } = useEncryptedFileFetch(avatarPath || '', '');
|
||||
|
||||
const isClosedGroupAvatar = memberAvatars && memberAvatars.length;
|
||||
const hasImage = urlToLoad && !imageBroken && !isClosedGroupAvatar;
|
||||
|
||||
const isClickable = !!props.onAvatarClick;
|
||||
|
||||
return (
|
||||
<div
|
||||
className={classNames(
|
||||
'module-avatar',
|
||||
`module-avatar--${size}`,
|
||||
hasImage ? 'module-avatar--with-image' : 'module-avatar--no-image',
|
||||
isClickable && 'module-avatar-clickable'
|
||||
)}
|
||||
onClick={e => {
|
||||
e.stopPropagation();
|
||||
props.onAvatarClick?.();
|
||||
}}
|
||||
role="button"
|
||||
>
|
||||
{hasImage ? (
|
||||
<AvatarImage
|
||||
avatarPath={urlToLoad}
|
||||
imageBroken={imageBroken}
|
||||
name={name}
|
||||
handleImageError={handleImageError}
|
||||
/>
|
||||
) : (
|
||||
<NoImage {...props} />
|
||||
)}
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
@ -1,4 +0,0 @@
|
||||
export function getTimestamp(asInt = false) {
|
||||
const timestamp = Date.now() / 1000;
|
||||
return asInt ? Math.floor(timestamp) : timestamp;
|
||||
}
|
@ -1,5 +1,59 @@
|
||||
/**
|
||||
* This file handles attachments for us.
|
||||
* If the attachment filepath is an encrypted one. It will decrypt it, cache it, and return the blob url to it.
|
||||
*/
|
||||
|
||||
import toArrayBuffer from 'to-arraybuffer';
|
||||
import * as fse from 'fs-extra';
|
||||
import { decryptAttachmentBuffer } from '../../types/Attachment';
|
||||
|
||||
// FIXME.
|
||||
// add a way to clean those from time to time (like every hours?)
|
||||
// add a way to remove the blob when the attachment file path is removed (message removed?)
|
||||
const urlToDecryptedBlobMap = new Map<string, string>();
|
||||
|
||||
export const getDecryptedAttachmentUrl = async (
|
||||
url: string,
|
||||
contentType: string
|
||||
): Promise<string> => {
|
||||
if (!url) {
|
||||
return url;
|
||||
}
|
||||
if (url.startsWith('blob:')) {
|
||||
return url;
|
||||
} else if (
|
||||
window.Signal.Migrations.attachmentsPath &&
|
||||
url.startsWith(window.Signal.Migrations.attachmentsPath)
|
||||
) {
|
||||
// this is a file encoded by session on our current attachments path.
|
||||
// we consider the file is encrypted.
|
||||
// if it's not, the hook caller has to fallback to setting the img src as an url to the file instead and load it
|
||||
console.warn('url:', url, ' has:', urlToDecryptedBlobMap.has(url));
|
||||
if (urlToDecryptedBlobMap.has(url)) {
|
||||
// typescript does not realize that the has above makes sure the get is not undefined
|
||||
return urlToDecryptedBlobMap.get(url) as string;
|
||||
} else {
|
||||
const encryptedFileContent = await fse.readFile(url);
|
||||
const decryptedContent = await decryptAttachmentBuffer(
|
||||
toArrayBuffer(encryptedFileContent)
|
||||
);
|
||||
if (decryptedContent?.length) {
|
||||
const arrayBuffer = decryptedContent.buffer;
|
||||
const { makeObjectUrl } = window.Signal.Types.VisualAttachment;
|
||||
const obj = makeObjectUrl(arrayBuffer, contentType);
|
||||
console.warn('makeObjectUrl: ', obj, contentType);
|
||||
|
||||
export const getDecryptedUrl
|
||||
if (!urlToDecryptedBlobMap.has(url)) {
|
||||
urlToDecryptedBlobMap.set(url, obj);
|
||||
}
|
||||
return obj;
|
||||
} else {
|
||||
// failed to decrypt, fallback to url image loading
|
||||
return url;
|
||||
}
|
||||
}
|
||||
} else {
|
||||
// Not sure what we got here. Just return the file.
|
||||
return url;
|
||||
}
|
||||
};
|
||||
|
Loading…
Reference in New Issue