All files / src/controllers/public eir.controller.ts

84.21% Statements 16/19
100% Branches 0/0
0% Functions 0/2
82.35% Lines 14/17

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 131 132 1331x 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 { ExtendOptions, createBaseControllerFactory, BaseController, MixinOptions, } from '@logchain/controllers';
import { Module, Constants, CONTENT_TYPE } from '@logchain/configs';
import { EirDto } from '@logchain/dtos';
import { Eir } from '@logchain/models';
import { EirService } from '@logchain/services';
import { authorize } from '@loopback/authorization';
import { buildResponseObjectById } from '@logchain/apidefs';
import { AnyObject } from '@loopback/repository';
 
/**
 * Define the MixinOptions for find
 */
const options: MixinOptions = {
  basePath: '/eirs',
  modelClass: Eir,
  modelDtoClass: EirDto,
  admin: false,
  schemaOptions: {
    updateById: {
      exclude: [
        'flow_id',
        'journey_point_id',
        'flow_action_id',
        'is_pdf_created',
        'company_id',
        'customer_id',
        'delivered_company_id',
        'received_company_id',
        'delivered_by',
        'received_by',
        'system_actual_date',
      ],
      authorize: {
        resource: Module.Intermodal.TransferEirMgmt,
        scopes: [Constants.AccessScope.Update],
      },
    },
    findById: {
      authorize: {
        resource: Module.Intermodal.TransferEirMgmt,
        scopes: [Constants.AccessScope.Retrieve],
      },
    },
    find: {
      authorize: {
        resource: Module.Intermodal.TransferEirMgmt,
        scopes: [Constants.AccessScope.Retrieve],
      },
    },
    override: {
      exclude: [
        'flow_id',
        'journey_point_id',
        'flow_action_id',
        'is_pdf_created',
        'company_id',
        'customer_id',
        'delivered_company_id',
        'received_company_id',
        'delivered_by',
        'received_by',
        'system_actual_date',
        'status',
      ],
      authorize: {
        resource: Module.Intermodal.TransferEirMgmt,
        scopes: [Constants.AccessScope.Override],
      },
    },
  },
};
 
const extendOptions: ExtendOptions = {
  isExtendRead: true,
  isExtendReadById: true,
  isExtendUpdateById: true,
}
 
@oas.tags('Eir')
@authenticate('aws-cognito')
export class EirController extends createBaseControllerFactory<Eir, Constructor<BaseController>>(BaseController, options, extendOptions) {
  constructor(
    @service(EirService)
    public selfService: EirService,
  ) {
    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: EirDto,
  ): Promise<AnyObject> {
    return this.selfService.override(id, model);
  }
}