0631593c96
Change-Id: I3104ac9a6fd180f11aef06b9d4f516a392e021a9 Signed-off-by: Ashod Nakashian <ashod.nakashian@collabora.co.uk>
45 lines
1.5 KiB
C++
45 lines
1.5 KiB
C++
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */
|
|
/*
|
|
* 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/.
|
|
*/
|
|
|
|
#include "COOLWSD.hpp"
|
|
|
|
#include "RequestDetails.hpp"
|
|
#include <Storage.hpp>
|
|
#include "WebSocketHandler.hpp"
|
|
|
|
#include <string>
|
|
#include <utility>
|
|
|
|
/// Responsible for HTTP-serving a Wopi document, after authenticating.
|
|
class WopiProxy
|
|
{
|
|
public:
|
|
WopiProxy(std::string id, const RequestDetails& requestDetails,
|
|
const std::shared_ptr<StreamSocket>& socket)
|
|
: _id(std::move(id))
|
|
, _requestDetails(requestDetails)
|
|
, _socket(socket)
|
|
{
|
|
}
|
|
|
|
void handleRequest(SocketPoll& poll, SocketDisposition& disposition);
|
|
|
|
private:
|
|
inline void logPrefix(std::ostream& os) const { os << '#' << _socket->getFD() << ": "; }
|
|
|
|
void checkFileInfo(SocketPoll& poll, const std::string& url, const Poco::URI& uriPublic,
|
|
const std::string& docKey, int redirectionLimit);
|
|
void download(SocketPoll& poll, const std::string& url, const Poco::URI& uriPublic,
|
|
const std::string& docKey, int redirectionLimit);
|
|
|
|
private:
|
|
const std::string _id;
|
|
const RequestDetails _requestDetails;
|
|
const std::shared_ptr<StreamSocket> _socket;
|
|
std::shared_ptr<http::Session> _httpSession;
|
|
std::unique_ptr<WopiStorage::WOPIFileInfo> _wopiInfo;
|
|
};
|