Do not save file extension as a separate field.

It turned out that saving the file extension in a separate field is not necessary. Instead, the extension is saved in the complete filename in the `id` field.

Signed-off-by: David Mehren <git@herrmehren.de>
This commit is contained in:
David Mehren 2020-10-16 22:32:58 +02:00
parent dc49bfcccb
commit 23ba2026cc
No known key found for this signature in database
GPG key ID: 185982BA4C42B7C3
2 changed files with 6 additions and 10 deletions

View file

@ -120,7 +120,6 @@ entity "MediaUpload" {
--
*noteId : uuid <<FK Note>>
*userId : uuid <<FK User>>
*extension : text
*backendType: text
backendData: text
*createdAt : date

View file

@ -8,6 +8,9 @@ import {
} from 'typeorm';
import { Note } from '../notes/note.entity';
import { User } from '../users/user.entity';
import { BackendType } from './backends/backend-type.enum';
export type BackendData = string | null;
@Entity()
export class MediaUpload {
@ -20,11 +23,6 @@ export class MediaUpload {
@ManyToOne(_ => User, { nullable: false })
user: User;
@Column({
nullable: false,
})
extension: string;
@Column({
nullable: false,
})
@ -33,7 +31,7 @@ export class MediaUpload {
@Column({
nullable: true,
})
backendData: string | null;
backendData: BackendData;
@CreateDateColumn()
createdAt: Date;
@ -45,15 +43,14 @@ export class MediaUpload {
note: Note,
user: User,
extension: string,
backendType: string,
backendType: BackendType,
backendData?: string,
): MediaUpload {
const upload = new MediaUpload();
const randomBytes = crypto.randomBytes(16);
upload.id = randomBytes.toString('hex');
upload.id = randomBytes.toString('hex') + '.' + extension;
upload.note = note;
upload.user = user;
upload.extension = extension;
upload.backendType = backendType;
if (backendData) {
upload.backendData = backendData;