2022-09-17 20:27:08 +02:00
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
|
|
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
2022-09-20 22:33:11 +02:00
|
|
|
import type { DriveFilesRepository } from '@/models/index.js';
|
2022-09-17 20:27:08 +02:00
|
|
|
import { DI } from '@/di-symbols.js';
|
2018-10-07 09:51:46 +02:00
|
|
|
|
|
|
|
|
export const meta = {
|
2019-02-23 03:20:58 +01:00
|
|
|
tags: ['drive'],
|
|
|
|
|
|
2022-01-18 14:27:10 +01:00
|
|
|
requireCredential: true,
|
2018-10-07 09:51:46 +02:00
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
kind: 'read:drive',
|
2018-10-07 09:51:46 +02:00
|
|
|
|
2022-06-10 07:25:20 +02:00
|
|
|
description: 'Check if a given file exists.',
|
|
|
|
|
|
2019-02-24 10:13:11 +01:00
|
|
|
res: {
|
2022-01-18 14:27:10 +01:00
|
|
|
type: 'boolean',
|
|
|
|
|
optional: false, nullable: false,
|
2019-02-24 10:13:11 +01:00
|
|
|
},
|
2022-01-18 14:27:10 +01:00
|
|
|
} as const;
|
2018-10-07 09:51:46 +02:00
|
|
|
|
2022-02-20 05:15:40 +01:00
|
|
|
export const paramDef = {
|
2022-02-19 06:05:32 +01:00
|
|
|
type: 'object',
|
|
|
|
|
properties: {
|
|
|
|
|
md5: { type: 'string' },
|
|
|
|
|
},
|
|
|
|
|
required: ['md5'],
|
|
|
|
|
} as const;
|
|
|
|
|
|
2022-01-02 18:12:50 +01:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-09-17 20:27:08 +02:00
|
|
|
@Injectable()
|
|
|
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> {
|
|
|
|
|
constructor(
|
|
|
|
|
@Inject(DI.driveFilesRepository)
|
|
|
|
|
private driveFilesRepository: DriveFilesRepository,
|
|
|
|
|
) {
|
|
|
|
|
super(meta, paramDef, async (ps, me) => {
|
|
|
|
|
const file = await this.driveFilesRepository.findOneBy({
|
|
|
|
|
md5: ps.md5,
|
|
|
|
|
userId: me.id,
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
return file != null;
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|