Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | import { authenticate } from '@loopback/authentication';
import { Constructor, service } from '@loopback/core';
import { oas, param, post, requestBody } from '@loopback/rest';
import { createBaseControllerFactory, ExtendOptions, BaseController, MixinOptions, } from '@logchain/controllers';
import { Module, Constants, CONTENT_TYPE } from '@logchain/configs';
import { ReheatingDto } from '@logchain/dtos';
import { Reheating } from '@logchain/models';
import { ReheatingService } from '@logchain/services';
import { AnyObject } from '@logchain/types';
import { buildResponseObjectById } from '@logchain/apidefs';
import { authorize } from '@loopback/authorization';
/**
* Define the MixinOptions for find
*/
const options: MixinOptions = {
basePath: '/reheatings',
modelClass: Reheating,
modelDtoClass: ReheatingDto,
admin: false,
schemaOptions: {
updateById: {
exclude: [
'flow_id',
'journey_point_id',
'flow_action_id',
'is_pdf_created',
'company_id',
'customer_id',
'actual_start_date',
'system_actual_date',
'reheating_id',
],
authorize: {
resource: Module.Intermodal.ContainerReheatingMgmt,
scopes: [Constants.AccessScope.Update],
},
},
findById: {
exclude: ['created_by'],
authorize: {
resource: Module.Intermodal.ContainerReheatingMgmt,
scopes: [Constants.AccessScope.Retrieve],
},
},
find: {
authorize: {
resource: Module.Intermodal.ContainerReheatingMgmt,
scopes: [Constants.AccessScope.Retrieve],
},
},
override: {
exclude: [
'flow_id',
'journey_point_id',
'flow_action_id',
'is_pdf_created',
'company_id',
'customer_id',
'actual_start_date',
'system_actual_date',
'reheating_id',
'status',
],
authorize: {
resource: Module.Intermodal.ContainerReheatingMgmt,
scopes: [Constants.AccessScope.Override],
},
},
},
};
const extendOptions: ExtendOptions = {
isExtendRead: true,
isExtendReadById: true,
isExtendUpdateById: true,
};
@oas.tags('Reheating')
@authenticate('aws-cognito')
export class ReheatingController extends createBaseControllerFactory<Reheating, Constructor<BaseController>>(BaseController, options, extendOptions) {
constructor(
@service(ReheatingService)
public selfService: ReheatingService,
) {
super();
}
/**
* Override completed action's data
* @param model The info to create
* @returns The ID of new instance
*/
@post(`/${options.basePath}/{id}/override`, {
responses: {
'200': {
description: `The ID of new ${options.modelClass.modelName}`,
content: {
[CONTENT_TYPE.JSON]: {
schema: {
type: 'object',
properties: {
id: { type: 'number' },
},
},
},
},
},
},
})
@authorize(options.schemaOptions.override.authorize)
async override(
@param.path.integer('id') id: number,
@requestBody({
content: {
[CONTENT_TYPE.JSON]: {
schema: buildResponseObjectById(
options.modelDtoClass,
options.admin,
),
},
},
})
model: ReheatingDto,
): Promise<AnyObject> {
return this.selfService.override(id, model);
}
}
|