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.
112 lines
3.4 KiB
112 lines
3.4 KiB
import { TransformDataSourceInRequestInterceptor } from '@ghostfolio/api/interceptors/transform-data-source-in-request.interceptor';
|
|
import { TransformDataSourceInResponseInterceptor } from '@ghostfolio/api/interceptors/transform-data-source-in-response.interceptor';
|
|
import { ConfigurationService } from '@ghostfolio/api/services/configuration/configuration.service';
|
|
import { ImportResponse } from '@ghostfolio/common/interfaces';
|
|
import { hasPermission, permissions } from '@ghostfolio/common/permissions';
|
|
import type { RequestWithUser } from '@ghostfolio/common/types';
|
|
import {
|
|
Body,
|
|
Controller,
|
|
Get,
|
|
HttpException,
|
|
Inject,
|
|
Logger,
|
|
Param,
|
|
Post,
|
|
Query,
|
|
UseGuards,
|
|
UseInterceptors
|
|
} from '@nestjs/common';
|
|
import { REQUEST } from '@nestjs/core';
|
|
import { AuthGuard } from '@nestjs/passport';
|
|
import { DataSource } from '@prisma/client';
|
|
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'))
|
|
@UseInterceptors(TransformDataSourceInRequestInterceptor)
|
|
@UseInterceptors(TransformDataSourceInResponseInterceptor)
|
|
public async import(
|
|
@Body() importData: ImportDataDto,
|
|
@Query('dryRun') isDryRun?: boolean
|
|
): Promise<ImportResponse> {
|
|
if (
|
|
!hasPermission(
|
|
this.request.user.permissions,
|
|
permissions.createAccount
|
|
) ||
|
|
!hasPermission(this.request.user.permissions, permissions.createOrder)
|
|
) {
|
|
throw new HttpException(
|
|
getReasonPhrase(StatusCodes.FORBIDDEN),
|
|
StatusCodes.FORBIDDEN
|
|
);
|
|
}
|
|
|
|
let maxActivitiesToImport = this.configurationService.get(
|
|
'MAX_ACTIVITIES_TO_IMPORT'
|
|
);
|
|
|
|
if (
|
|
this.configurationService.get('ENABLE_FEATURE_SUBSCRIPTION') &&
|
|
this.request.user.subscription.type === 'Premium'
|
|
) {
|
|
maxActivitiesToImport = Number.MAX_SAFE_INTEGER;
|
|
}
|
|
|
|
const userCurrency = this.request.user.Settings.settings.baseCurrency;
|
|
|
|
try {
|
|
const activities = await this.importService.import({
|
|
isDryRun,
|
|
maxActivitiesToImport,
|
|
userCurrency,
|
|
accountsDto: importData.accounts ?? [],
|
|
activitiesDto: importData.activities,
|
|
userId: this.request.user.id
|
|
});
|
|
|
|
return { activities };
|
|
} catch (error) {
|
|
Logger.error(error, ImportController);
|
|
|
|
throw new HttpException(
|
|
{
|
|
error: getReasonPhrase(StatusCodes.BAD_REQUEST),
|
|
message: [error.message]
|
|
},
|
|
StatusCodes.BAD_REQUEST
|
|
);
|
|
}
|
|
}
|
|
|
|
@Get('dividends/:dataSource/:symbol')
|
|
@UseGuards(AuthGuard('jwt'))
|
|
@UseInterceptors(TransformDataSourceInRequestInterceptor)
|
|
@UseInterceptors(TransformDataSourceInResponseInterceptor)
|
|
public async gatherDividends(
|
|
@Param('dataSource') dataSource: DataSource,
|
|
@Param('symbol') symbol: string
|
|
): Promise<ImportResponse> {
|
|
const userCurrency = this.request.user.Settings.settings.baseCurrency;
|
|
|
|
const activities = await this.importService.getDividends({
|
|
dataSource,
|
|
symbol,
|
|
userCurrency
|
|
});
|
|
|
|
return { activities };
|
|
}
|
|
}
|
|
|