mirror of https://github.com/ghostfolio/ghostfolio
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.5 KiB
54 lines
1.5 KiB
import { ConfigurationService } from '@ghostfolio/api/services/configuration.service';
|
|
import type { RequestWithUser } from '@ghostfolio/common/types';
|
|
import {
|
|
Body,
|
|
Controller,
|
|
HttpException,
|
|
Inject,
|
|
Logger,
|
|
Post,
|
|
UseGuards
|
|
} from '@nestjs/common';
|
|
import { REQUEST } from '@nestjs/core';
|
|
import { AuthGuard } from '@nestjs/passport';
|
|
import { StatusCodes, getReasonPhrase } from 'http-status-codes';
|
|
|
|
import { ImportDataDto } from './import-data.dto';
|
|
import { ImportService } from './import.service';
|
|
|
|
@Controller('import')
|
|
export class ImportController {
|
|
public constructor(
|
|
private readonly configurationService: ConfigurationService,
|
|
private readonly importService: ImportService,
|
|
@Inject(REQUEST) private readonly request: RequestWithUser
|
|
) {}
|
|
|
|
@Post()
|
|
@UseGuards(AuthGuard('jwt'))
|
|
public async import(@Body() importData: ImportDataDto): Promise<void> {
|
|
if (!this.configurationService.get('ENABLE_FEATURE_IMPORT')) {
|
|
throw new HttpException(
|
|
getReasonPhrase(StatusCodes.FORBIDDEN),
|
|
StatusCodes.FORBIDDEN
|
|
);
|
|
}
|
|
|
|
try {
|
|
return await this.importService.import({
|
|
activities: importData.activities,
|
|
userId: this.request.user.id
|
|
});
|
|
} catch (error) {
|
|
Logger.error(error, ImportController);
|
|
|
|
throw new HttpException(
|
|
{
|
|
error: getReasonPhrase(StatusCodes.BAD_REQUEST),
|
|
message: [error.message]
|
|
},
|
|
StatusCodes.BAD_REQUEST
|
|
);
|
|
}
|
|
}
|
|
}
|
|
|