import {
Count,
CountSchema,
Filter,
FilterExcludingWhere,
repository,
Where,
} from '@loopback/repository';
import {
post,
param,
get,
getModelSchemaRef,
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} 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: getModelSchemaRef(Service)},
},
},
},
})
async create(
@requestBody({
content: {
'application/json': {
schema: getModelSchemaRef(Service, {
title: 'NewService',
exclude: ['id'],
}),
},
},
})
service: Omit<Service, 'id'>,
): Promise<Service> {
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<Service>): Promise<Count> {
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: getModelSchemaRef(Service, {includeRelations: true}),
},
},
},
},
},
})
async find(
@param.filter(Service) filter?: Filter<Service>,
): Promise<Service[]> {
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: getModelSchemaRef(Service, {partial: true}),
},
},
})
service: Service,
@param.where(Service) where?: Where<Service>,
): Promise<Count> {
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: getModelSchemaRef(Service, {includeRelations: true}),
},
},
},
},
})
async findById(
@param.path.string('id') id: string,
@param.filter(Service, {exclude: 'where'})
filter?: FilterExcludingWhere<Service>,
): Promise<Service> {
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: getModelSchemaRef(Service, {partial: true}),
},
},
})
service: Service,
): Promise<void> {
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<void> {
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<void> {
await this.serviceRepository.deleteById(id);
}
}