79 lines
2.4 KiB
TypeScript
79 lines
2.4 KiB
TypeScript
import {
|
|
Body,
|
|
Controller,
|
|
Delete,
|
|
Param,
|
|
Patch,
|
|
Post,
|
|
Put,
|
|
} from '@nestjs/common';
|
|
import { PaymentMethodDataOrchestrator } from '../domain/usecases/payment-method-data.orchestrator';
|
|
import { PaymentMethodDto } from './dto/payment-method.dto';
|
|
import { MODULE_NAME } from 'src/core/strings/constants/module.constants';
|
|
import { ApiBearerAuth, ApiTags } from '@nestjs/swagger';
|
|
import { PaymentMethodEntity } from '../domain/entities/payment-method.entity';
|
|
import { BatchResult } from 'src/core/response/domain/ok-response.interface';
|
|
import { BatchIdsDto } from 'src/core/modules/infrastructure/dto/base-batch.dto';
|
|
import { Public } from 'src/core/guards';
|
|
|
|
@ApiTags(`${MODULE_NAME.PAYMENT_METHOD.split('-').join(' ')} - data`)
|
|
@Controller(`v1/${MODULE_NAME.PAYMENT_METHOD}`)
|
|
@Public(false)
|
|
@ApiBearerAuth('JWT')
|
|
export class PaymentMethodDataController {
|
|
constructor(private orchestrator: PaymentMethodDataOrchestrator) {}
|
|
|
|
@Post()
|
|
async create(@Body() data: PaymentMethodDto): Promise<PaymentMethodEntity> {
|
|
return await this.orchestrator.create(data);
|
|
}
|
|
|
|
@Put('/batch-delete')
|
|
async batchDeleted(@Body() body: BatchIdsDto): Promise<BatchResult> {
|
|
return await this.orchestrator.batchDelete(body.ids);
|
|
}
|
|
|
|
@Patch(':id/active')
|
|
async active(@Param('id') dataId: string): Promise<string> {
|
|
return await this.orchestrator.active(dataId);
|
|
}
|
|
|
|
@Put('/batch-active')
|
|
async batchActive(@Body() body: BatchIdsDto): Promise<BatchResult> {
|
|
return await this.orchestrator.batchActive(body.ids);
|
|
}
|
|
|
|
@Patch(':id/confirm')
|
|
async confirm(@Param('id') dataId: string): Promise<string> {
|
|
return await this.orchestrator.confirm(dataId);
|
|
}
|
|
|
|
@Put('/batch-confirm')
|
|
async batchConfirm(@Body() body: BatchIdsDto): Promise<BatchResult> {
|
|
return await this.orchestrator.batchConfirm(body.ids);
|
|
}
|
|
|
|
@Patch(':id/inactive')
|
|
async inactive(@Param('id') dataId: string): Promise<string> {
|
|
return await this.orchestrator.inactive(dataId);
|
|
}
|
|
|
|
@Put('/batch-inactive')
|
|
async batchInactive(@Body() body: BatchIdsDto): Promise<BatchResult> {
|
|
return await this.orchestrator.batchInactive(body.ids);
|
|
}
|
|
|
|
@Put(':id')
|
|
async update(
|
|
@Param('id') dataId: string,
|
|
@Body() data: PaymentMethodDto,
|
|
): Promise<PaymentMethodEntity> {
|
|
return await this.orchestrator.update(dataId, data);
|
|
}
|
|
|
|
@Delete(':id')
|
|
async delete(@Param('id') dataId: string): Promise<string> {
|
|
return await this.orchestrator.delete(dataId);
|
|
}
|
|
}
|