upd: remove debug lines, fix header not being detected

This commit is contained in:
Mar0xy 2023-10-30 01:04:55 +01:00
parent d942d4d0d0
commit c88fbe843a
No known key found for this signature in database
GPG Key ID: 56569BBE47D2C828
1 changed files with 5 additions and 4 deletions

View File

@ -258,27 +258,27 @@ export class MastodonApiServerService {
try {
if (_request.files.length > 0 && accessTokens) {
const tokeninfo = await this.accessTokensRepository.findOneBy({ token: accessTokens.replace('Bearer ', '') });
// eslint-disable-next-line @typescript-eslint/no-explicit-any
const avatar = (_request.files as any).find((obj: any) => {
return obj.fieldname === 'avatar';
});
// eslint-disable-next-line @typescript-eslint/no-explicit-any
const header = (_request.files as any).find((obj: any) => {
return obj.fieldname === 'header';
});
if (tokeninfo && avatar) {
console.error('avatar');
const upload = await this.driveService.addFile({
user: { id: tokeninfo.userId, host: null },
path: avatar.path,
name: avatar.originalname !== null && avatar.originalname !== 'file' ? avatar.originalname : undefined,
sensitive: false,
});
console.error(upload);
if (upload.type.startsWith('image/')) {
// eslint-disable-next-line @typescript-eslint/no-explicit-any
(_request.body as any).avatar = upload.id;
}
}
if (tokeninfo && (_request.files as any)['header']) {
} else if (tokeninfo && header) {
const upload = await this.driveService.addFile({
user: { id: tokeninfo.userId, host: null },
path: header.path,
@ -286,6 +286,7 @@ export class MastodonApiServerService {
sensitive: false,
});
if (upload.type.startsWith('image/')) {
// eslint-disable-next-line @typescript-eslint/no-explicit-any
(_request.body as any).header = upload.id;
}
}