mirror of https://gitee.com/bigwinds/arangodb
175 lines
5.5 KiB
C++
175 lines
5.5 KiB
C++
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief action request handler
|
|
///
|
|
/// @file
|
|
///
|
|
/// DISCLAIMER
|
|
///
|
|
/// Copyright 2014 ArangoDB GmbH, Cologne, Germany
|
|
/// Copyright 2004-2014 triAGENS GmbH, Cologne, Germany
|
|
///
|
|
/// Licensed under the Apache License, Version 2.0 (the "License");
|
|
/// you may not use this file except in compliance with the License.
|
|
/// You may obtain a copy of the License at
|
|
///
|
|
/// http://www.apache.org/licenses/LICENSE-2.0
|
|
///
|
|
/// Unless required by applicable law or agreed to in writing, software
|
|
/// distributed under the License is distributed on an "AS IS" BASIS,
|
|
/// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
/// See the License for the specific language governing permissions and
|
|
/// limitations under the License.
|
|
///
|
|
/// Copyright holder is ArangoDB GmbH, Cologne, Germany
|
|
///
|
|
/// @author Dr. Frank Celler
|
|
/// @author Copyright 2014, ArangoDB GmbH, Cologne, Germany
|
|
/// @author Copyright 2010-2014, triAGENS GmbH, Cologne, Germany
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
#include "RestActionHandler.h"
|
|
#include "Actions/actions.h"
|
|
#include "Basics/StringUtils.h"
|
|
#include "Rest/HttpRequest.h"
|
|
#include "VocBase/vocbase.h"
|
|
|
|
using namespace std;
|
|
using namespace triagens::basics;
|
|
using namespace triagens::rest;
|
|
using namespace triagens::arango;
|
|
|
|
// -----------------------------------------------------------------------------
|
|
// --SECTION-- constructors and destructors
|
|
// -----------------------------------------------------------------------------
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief constructor
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
RestActionHandler::RestActionHandler (HttpRequest* request,
|
|
action_options_t* data)
|
|
: RestVocbaseBaseHandler(request),
|
|
_action(nullptr),
|
|
_dataLock(),
|
|
_data(nullptr) {
|
|
|
|
_action = TRI_LookupActionVocBase(request);
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
|
// --SECTION-- Handler methods
|
|
// -----------------------------------------------------------------------------
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// {@inheritDoc}
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
bool RestActionHandler::isDirect () const {
|
|
return _action == nullptr;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// {@inheritDoc}
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
HttpHandler::status_t RestActionHandler::execute () {
|
|
TRI_action_result_t result;
|
|
|
|
// check the request path
|
|
if (_request->databaseName() == "_system") {
|
|
if (TRI_IsPrefixString(_request->requestPath(), "/_admin/aardvark")) {
|
|
RequestStatisticsAgentSetIgnore(this);
|
|
}
|
|
}
|
|
|
|
// need an action
|
|
if (_action == nullptr) {
|
|
generateNotImplemented(_request->requestPath());
|
|
}
|
|
|
|
// execute
|
|
else {
|
|
|
|
// extract the sub-request type
|
|
HttpRequest::HttpRequestType type = _request->requestType();
|
|
|
|
// execute one of the HTTP methods
|
|
switch (type) {
|
|
case HttpRequest::HTTP_REQUEST_GET:
|
|
case HttpRequest::HTTP_REQUEST_POST:
|
|
case HttpRequest::HTTP_REQUEST_PUT:
|
|
case HttpRequest::HTTP_REQUEST_DELETE:
|
|
case HttpRequest::HTTP_REQUEST_HEAD:
|
|
case HttpRequest::HTTP_REQUEST_OPTIONS:
|
|
case HttpRequest::HTTP_REQUEST_PATCH: {
|
|
result = executeAction();
|
|
break;
|
|
}
|
|
|
|
default:
|
|
result.isValid = true;
|
|
generateNotImplemented("METHOD");
|
|
break;
|
|
}
|
|
}
|
|
|
|
// handler has finished, generate result
|
|
if (result.isValid) {
|
|
if (result.requeue) {
|
|
status_t status(HANDLER_REQUEUE);
|
|
status.sleep = result.sleep;
|
|
|
|
return status;
|
|
}
|
|
else {
|
|
return status_t(HANDLER_DONE);
|
|
}
|
|
}
|
|
else {
|
|
return status_t(HANDLER_FAILED);
|
|
}
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// {@inheritDoc}
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
bool RestActionHandler::cancel () {
|
|
return _action->cancel(&_dataLock, &_data);
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
|
// --SECTION-- private methods
|
|
// -----------------------------------------------------------------------------
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/// @brief executes an action
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
TRI_action_result_t RestActionHandler::executeAction () {
|
|
TRI_action_result_t result = _action->execute(_vocbase, _request, &_dataLock, &_data);
|
|
|
|
if (result.isValid) {
|
|
_response = result.response;
|
|
}
|
|
else if (result.canceled) {
|
|
result.isValid = true;
|
|
generateCanceled();
|
|
}
|
|
else {
|
|
result.isValid = true;
|
|
generateNotImplemented(_action->_url);
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
|
// --SECTION-- END-OF-FILE
|
|
// -----------------------------------------------------------------------------
|
|
|
|
// Local Variables:
|
|
// mode: outline-minor
|
|
// outline-regexp: "/// @brief\\|/// {@inheritDoc}\\|/// @page\\|// --SECTION--\\|/// @\\}"
|
|
// End:
|