import { Count, CountSchema, Filter, FilterExcludingWhere, repository, Where, } from '@loopback/repository'; import {post, param, get, patch, put, del, requestBody} from '@loopback/rest'; import {Service} from '../models'; import {ServiceRepository} from '../repositories'; import {authorize} from 'loopback4-authorization'; import {authenticate, STRATEGY} from 'loopback4-authentication'; import {PermissionKey} from '../permissions'; import { OPERATION_SECURITY_SPEC, STATUS_CODE, getModelSchemaRefSF, } from '@sourceloop/core'; const basePath = '/services'; export class ServiceController { constructor( @repository(ServiceRepository) public serviceRepository: ServiceRepository, ) {} @authorize({ permissions: [PermissionKey.CreateService], }) @authenticate(STRATEGY.BEARER, { passReqToCallback: true, }) @post(basePath, { security: OPERATION_SECURITY_SPEC, responses: { [STATUS_CODE.OK]: { description: 'Service model instance', content: { 'application/json': {schema: getModelSchemaRefSF(Service)}, }, }, }, }) async create( @requestBody({ content: { 'application/json': { schema: getModelSchemaRefSF(Service, { title: 'NewService', exclude: ['id'], }), }, }, }) service: Omit, ): Promise { return this.serviceRepository.create(service); } @authorize({ permissions: [PermissionKey.ViewService], }) @authenticate(STRATEGY.BEARER, { passReqToCallback: true, }) @get(`${basePath}/count`, { security: OPERATION_SECURITY_SPEC, responses: { [STATUS_CODE.OK]: { description: 'Service model count', content: {'application/json': {schema: CountSchema}}, }, }, }) async count(@param.where(Service) where?: Where): Promise { return this.serviceRepository.count(where); } @authorize({ permissions: [PermissionKey.ViewService], }) @authenticate(STRATEGY.BEARER, { passReqToCallback: true, }) @get(basePath, { security: OPERATION_SECURITY_SPEC, responses: { [STATUS_CODE.OK]: { description: 'Array of Service model instances', content: { 'application/json': { schema: { type: 'array', items: getModelSchemaRefSF(Service, {includeRelations: true}), }, }, }, }, }, }) async find( @param.filter(Service) filter?: Filter, ): Promise { return this.serviceRepository.find(filter); } @authorize({ permissions: [PermissionKey.UpdateService], }) @authenticate(STRATEGY.BEARER, { passReqToCallback: true, }) @patch(basePath, { security: OPERATION_SECURITY_SPEC, responses: { [STATUS_CODE.OK]: { description: 'Service PATCH success count', content: {'application/json': {schema: CountSchema}}, }, }, }) async updateAll( @requestBody({ content: { 'application/json': { schema: getModelSchemaRefSF(Service, {partial: true}), }, }, }) service: Service, @param.where(Service) where?: Where, ): Promise { return this.serviceRepository.updateAll(service, where); } @authorize({ permissions: [PermissionKey.ViewService], }) @authenticate(STRATEGY.BEARER, { passReqToCallback: true, }) @get(`${basePath}/{id}`, { security: OPERATION_SECURITY_SPEC, responses: { [STATUS_CODE.OK]: { description: 'Service model instance', content: { 'application/json': { schema: getModelSchemaRefSF(Service, {includeRelations: true}), }, }, }, }, }) async findById( @param.path.string('id') id: string, @param.filter(Service, {exclude: 'where'}) filter?: FilterExcludingWhere, ): Promise { return this.serviceRepository.findById(id, filter); } @authorize({ permissions: [PermissionKey.UpdateService], }) @authenticate(STRATEGY.BEARER, { passReqToCallback: true, }) @patch(`${basePath}/{id}`, { security: OPERATION_SECURITY_SPEC, responses: { [STATUS_CODE.NO_CONTENT]: { description: 'Service PATCH success', }, }, }) async updateById( @param.path.string('id') id: string, @requestBody({ content: { 'application/json': { schema: getModelSchemaRefSF(Service, {partial: true}), }, }, }) service: Service, ): Promise { await this.serviceRepository.updateById(id, service); } @authorize({ permissions: [PermissionKey.UpdateService], }) @authenticate(STRATEGY.BEARER, { passReqToCallback: true, }) @put(`${basePath}/{id}`, { security: OPERATION_SECURITY_SPEC, responses: { [STATUS_CODE.NO_CONTENT]: { description: 'Service PUT success', }, }, }) async replaceById( @param.path.string('id') id: string, @requestBody() service: Service, ): Promise { await this.serviceRepository.replaceById(id, service); } @authorize({ permissions: [PermissionKey.DeleteService], }) @authenticate(STRATEGY.BEARER, { passReqToCallback: true, }) @del(`${basePath}/{id}`, { security: OPERATION_SECURITY_SPEC, responses: { [STATUS_CODE.NO_CONTENT]: { description: 'Service DELETE success', }, }, }) async deleteById(@param.path.string('id') id: string): Promise { await this.serviceRepository.deleteById(id); } }