mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-04 20:42:52 +00:00
67 lines
2.2 KiB
TypeScript
67 lines
2.2 KiB
TypeScript
/*
|
|
* Copyright (C) 2019 StApps
|
|
* This program is free software: you can redistribute it and/or modify it
|
|
* under the terms of the GNU General Public License as published by the Free
|
|
* Software Foundation, version 3.
|
|
*
|
|
* This program is distributed in the hope that it will be useful, but WITHOUT
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
* more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along with
|
|
* this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
import {OK} from 'http-status-codes';
|
|
import {SCThings} from '../../meta';
|
|
import {SCInternalServerErrorResponse} from '../errors/internal-server-error';
|
|
import {SCMethodNotAllowedErrorResponse} from '../errors/method-not-allowed';
|
|
import {SCNotFoundErrorResponse} from '../errors/not-found';
|
|
import {SCRequestBodyTooLargeErrorResponse} from '../errors/request-body-too-large';
|
|
import {SCSyntaxErrorResponse} from '../errors/syntax-error';
|
|
import {SCUnsupportedMediaTypeErrorResponse} from '../errors/unsupported-media-type';
|
|
import {SCValidationErrorResponse} from '../errors/validation';
|
|
import {SCAbstractRoute, SCRouteHttpVerbs} from '../route';
|
|
|
|
/**
|
|
* Request to update an existing thing
|
|
*
|
|
* @validatable
|
|
*/
|
|
export type SCThingUpdateRequest = SCThings;
|
|
|
|
/**
|
|
* Response for an entity update request
|
|
*
|
|
* @validatable
|
|
*/
|
|
export interface SCThingUpdateResponse {
|
|
}
|
|
|
|
/**
|
|
* Route for updating existing things
|
|
*/
|
|
export class SCThingUpdateRoute extends SCAbstractRoute {
|
|
constructor() {
|
|
super();
|
|
this.errorNames = [
|
|
SCInternalServerErrorResponse,
|
|
SCMethodNotAllowedErrorResponse,
|
|
SCNotFoundErrorResponse,
|
|
SCRequestBodyTooLargeErrorResponse,
|
|
SCSyntaxErrorResponse,
|
|
SCUnsupportedMediaTypeErrorResponse,
|
|
SCValidationErrorResponse,
|
|
];
|
|
this.method = SCRouteHttpVerbs.PUT;
|
|
this.obligatoryParameters = {
|
|
TYPE: 'SCThingTypes',
|
|
UID: 'SCUuid',
|
|
};
|
|
this.requestBodyName = 'SCThingUpdateRequest';
|
|
this.responseBodyName = 'SCThingUpdateResponse';
|
|
this.statusCodeSuccess = OK;
|
|
this.urlFragment = '/:TYPE/:UID';
|
|
}
|
|
}
|