2022-01-14 21:34:52 +00:00
|
|
|
// Copyright 2021-2022 Signal Messenger, LLC
|
2021-07-19 19:26:06 +00:00
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
import dataInterface from '../sql/Client';
|
2021-10-26 19:15:33 +00:00
|
|
|
import type { ConversationType } from '../state/ducks/conversations';
|
2022-01-26 21:58:00 +00:00
|
|
|
import * as Errors from '../types/errors';
|
|
|
|
import * as log from '../logging/log';
|
2021-07-21 20:45:41 +00:00
|
|
|
import { computeHash } from '../Crypto';
|
2021-07-19 19:26:06 +00:00
|
|
|
import { encryptProfileData } from '../util/encryptProfileData';
|
2021-07-21 20:45:41 +00:00
|
|
|
import { getProfile } from '../util/getProfile';
|
2022-01-14 21:34:52 +00:00
|
|
|
import { singleProtoJobQueue } from '../jobs/singleProtoJobQueue';
|
2022-01-26 21:58:00 +00:00
|
|
|
import { strictAssert } from '../util/assert';
|
|
|
|
import { isWhitespace } from '../util/whitespaceStringUtil';
|
2022-03-16 00:14:20 +00:00
|
|
|
import type { AvatarUpdateType } from '../types/Avatar';
|
2021-07-19 19:26:06 +00:00
|
|
|
|
|
|
|
export async function writeProfile(
|
|
|
|
conversation: ConversationType,
|
2022-03-16 00:14:20 +00:00
|
|
|
avatar: AvatarUpdateType
|
2021-07-19 19:26:06 +00:00
|
|
|
): Promise<void> {
|
|
|
|
// Before we write anything we request the user's profile so that we can
|
|
|
|
// have an up-to-date paymentAddress to be able to include it when we write
|
|
|
|
const model = window.ConversationController.get(conversation.id);
|
|
|
|
if (!model) {
|
|
|
|
return;
|
|
|
|
}
|
2021-07-21 20:45:41 +00:00
|
|
|
await getProfile(model.get('uuid'), model.get('e164'));
|
2021-07-19 19:26:06 +00:00
|
|
|
|
|
|
|
// Encrypt the profile data, update profile, and if needed upload the avatar
|
|
|
|
const {
|
|
|
|
aboutEmoji,
|
|
|
|
aboutText,
|
|
|
|
avatarHash,
|
|
|
|
avatarPath,
|
|
|
|
familyName,
|
|
|
|
firstName,
|
|
|
|
} = conversation;
|
|
|
|
|
2022-01-26 21:58:00 +00:00
|
|
|
strictAssert(
|
|
|
|
!isWhitespace(String(conversation.firstName)),
|
|
|
|
'writeProfile: Cannot set an empty profile name'
|
|
|
|
);
|
|
|
|
|
2021-07-19 19:26:06 +00:00
|
|
|
const [profileData, encryptedAvatarData] = await encryptProfileData(
|
|
|
|
conversation,
|
2022-03-16 00:14:20 +00:00
|
|
|
avatar
|
2021-07-19 19:26:06 +00:00
|
|
|
);
|
|
|
|
const avatarRequestHeaders = await window.textsecure.messaging.putProfile(
|
|
|
|
profileData
|
|
|
|
);
|
|
|
|
|
|
|
|
// Upload the avatar if provided
|
|
|
|
// delete existing files on disk if avatar has been removed
|
|
|
|
// update the account's avatar path and hash if it's a new avatar
|
2022-03-16 00:14:20 +00:00
|
|
|
const { newAvatar } = avatar;
|
|
|
|
let maybeProfileAvatarUpdate: {
|
|
|
|
profileAvatar?:
|
|
|
|
| {
|
|
|
|
hash: string;
|
|
|
|
path: string;
|
|
|
|
}
|
|
|
|
| undefined;
|
|
|
|
} = {};
|
|
|
|
if (profileData.sameAvatar) {
|
|
|
|
log.info('writeProfile: not updating avatar');
|
|
|
|
} else if (avatarRequestHeaders && encryptedAvatarData && newAvatar) {
|
|
|
|
log.info('writeProfile: uploading new avatar');
|
|
|
|
const avatarUrl = await window.textsecure.messaging.uploadAvatar(
|
2021-07-19 19:26:06 +00:00
|
|
|
avatarRequestHeaders,
|
|
|
|
encryptedAvatarData
|
|
|
|
);
|
|
|
|
|
2022-03-16 00:14:20 +00:00
|
|
|
const hash = await computeHash(newAvatar);
|
2021-07-19 19:26:06 +00:00
|
|
|
|
|
|
|
if (hash !== avatarHash) {
|
2022-03-16 00:14:20 +00:00
|
|
|
log.info('writeProfile: removing old avatar and saving the new one');
|
2021-07-19 19:26:06 +00:00
|
|
|
const [path] = await Promise.all([
|
2022-03-16 00:14:20 +00:00
|
|
|
window.Signal.Migrations.writeNewAttachmentData(newAvatar),
|
2021-07-19 19:26:06 +00:00
|
|
|
avatarPath
|
|
|
|
? window.Signal.Migrations.deleteAttachmentData(avatarPath)
|
|
|
|
: undefined,
|
|
|
|
]);
|
2022-03-16 00:14:20 +00:00
|
|
|
maybeProfileAvatarUpdate = {
|
|
|
|
profileAvatar: { hash, path },
|
2021-07-19 19:26:06 +00:00
|
|
|
};
|
|
|
|
}
|
2022-03-16 00:14:20 +00:00
|
|
|
|
|
|
|
await window.storage.put('avatarUrl', avatarUrl);
|
2021-07-19 19:26:06 +00:00
|
|
|
} else if (avatarPath) {
|
2022-03-16 00:14:20 +00:00
|
|
|
log.info('writeProfile: removing avatar');
|
|
|
|
await Promise.all([
|
|
|
|
window.Signal.Migrations.deleteAttachmentData(avatarPath),
|
|
|
|
window.storage.put('avatarUrl', undefined),
|
|
|
|
]);
|
2021-07-19 19:26:06 +00:00
|
|
|
|
2022-03-16 00:14:20 +00:00
|
|
|
maybeProfileAvatarUpdate = { profileAvatar: undefined };
|
|
|
|
}
|
2021-07-21 20:45:41 +00:00
|
|
|
|
2021-07-19 19:26:06 +00:00
|
|
|
// Update backbone, update DB, run storage service upload
|
|
|
|
model.set({
|
|
|
|
about: aboutText,
|
|
|
|
aboutEmoji,
|
|
|
|
profileName: firstName,
|
|
|
|
profileFamilyName: familyName,
|
2022-03-16 00:14:20 +00:00
|
|
|
...maybeProfileAvatarUpdate,
|
2021-07-19 19:26:06 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
dataInterface.updateConversation(model.attributes);
|
|
|
|
model.captureChange('writeProfile');
|
2021-07-21 20:45:41 +00:00
|
|
|
|
2022-01-14 21:34:52 +00:00
|
|
|
try {
|
|
|
|
await singleProtoJobQueue.add(
|
|
|
|
window.textsecure.messaging.getFetchLocalProfileSyncMessage()
|
|
|
|
);
|
|
|
|
} catch (error) {
|
|
|
|
log.error(
|
|
|
|
'writeProfile: Failed to queue sync message',
|
|
|
|
Errors.toLogFormat(error)
|
|
|
|
);
|
|
|
|
}
|
2021-07-19 19:26:06 +00:00
|
|
|
}
|