33854ec4ac
Standardized error handling in request-handlers. There is a new family of internal exeptions designed to signify the type of error and how to handle it. All handlers must throw one of those errors and they will be translated to the correct HTTP response when caught. Since some requests send a response as part of their handling (convert-to, for example) those handlers must return a flag signlaning whether or not they sent a response. If not, HTTP OK response is sent at the end of the handler. To complicate things, some requests upgrade the connection to WebSocket. In those cases errors must be sent via the WebSocket and not as an HTTP response. The error message sent can (and in most cases should) be displayed to the end-user. A new file, UserMessages.hpp, has been added to hold user-visible messages that can be reviewed and translated. Change-Id: Icc725f3313446d4514cf6d092635158ee7171f5d Reviewed-on: https://gerrit.libreoffice.org/24133 Reviewed-by: Ashod Nakashian <ashnakash@gmail.com> Tested-by: Ashod Nakashian <ashnakash@gmail.com>
19 lines
755 B
C++
19 lines
755 B
C++
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */
|
|
/*
|
|
* This file is part of the LibreOffice project.
|
|
*
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
*/
|
|
|
|
// A list of user-visible messages.
|
|
// This list is intended to be centralized for review and i18n support.
|
|
#ifndef INCLUDED_USERMESSAGES_HPP
|
|
#define INCLUDED_USERMESSAGES_HPP
|
|
|
|
constexpr auto SERVICE_UNAVALABLE_INTERNAL_ERROR = "Service is unavailable. Please try again later and report to your administrator if the issue persists.";
|
|
|
|
#endif
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|