mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-03 12:02:53 +00:00
66 lines
2.1 KiB
TypeScript
66 lines
2.1 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 {CREATED} 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 add a thing to a bulk
|
|
*
|
|
* @validatable
|
|
*/
|
|
export type SCBulkAddRequest = SCThings;
|
|
|
|
/**
|
|
* Response to a request to add a thing to a bulk
|
|
*
|
|
* @validatable
|
|
*/
|
|
export interface SCBulkAddResponse {
|
|
}
|
|
|
|
/**
|
|
* Route for indexing SC things in a bulk
|
|
*/
|
|
export class SCBulkAddRoute extends SCAbstractRoute {
|
|
constructor() {
|
|
super();
|
|
this.errorNames = [
|
|
SCInternalServerErrorResponse,
|
|
SCMethodNotAllowedErrorResponse,
|
|
SCNotFoundErrorResponse,
|
|
SCRequestBodyTooLargeErrorResponse,
|
|
SCSyntaxErrorResponse,
|
|
SCUnsupportedMediaTypeErrorResponse,
|
|
SCValidationErrorResponse,
|
|
];
|
|
this.method = SCRouteHttpVerbs.POST;
|
|
this.obligatoryParameters = {
|
|
UID: 'SCUuid',
|
|
};
|
|
this.requestBodyName = 'SCBulkAddRequest';
|
|
this.responseBodyName = 'SCBulkAddResponse';
|
|
this.statusCodeSuccess = CREATED;
|
|
this.urlFragment = '/bulk/:UID';
|
|
}
|
|
}
|