2016-02-19 15:19:15 -06:00
|
|
|
/* -*- 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/.
|
|
|
|
*/
|
|
|
|
|
|
|
|
// Storage abstraction.
|
|
|
|
#ifndef INCLUDED_STORAGE_HPP
|
|
|
|
#define INCLUDED_STORAGE_HPP
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
2016-03-31 01:48:34 -05:00
|
|
|
#include <Poco/URI.h>
|
2016-03-03 20:05:30 -06:00
|
|
|
|
2016-02-19 15:19:15 -06:00
|
|
|
#include "Auth.hpp"
|
|
|
|
#include "Util.hpp"
|
|
|
|
|
|
|
|
/// Base class of all Storage abstractions.
|
|
|
|
class StorageBase
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2016-03-21 18:12:00 -05:00
|
|
|
class FileInfo
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
std::string Filename;
|
2016-03-26 09:42:15 -05:00
|
|
|
Poco::Timestamp ModifiedTime;
|
2016-03-21 18:12:00 -05:00
|
|
|
size_t Size;
|
|
|
|
};
|
|
|
|
|
2016-03-05 09:27:30 -06:00
|
|
|
/// localStorePath the absolute root path of the chroot.
|
|
|
|
/// jailPath the path within the jail that the child uses.
|
|
|
|
StorageBase(const std::string& localStorePath,
|
2016-03-09 17:36:25 -06:00
|
|
|
const std::string& jailPath,
|
|
|
|
const std::string& uri) :
|
2016-03-05 09:27:30 -06:00
|
|
|
_localStorePath(localStorePath),
|
2016-03-09 17:36:25 -06:00
|
|
|
_jailPath(jailPath),
|
|
|
|
_uri(uri)
|
2016-03-03 20:05:30 -06:00
|
|
|
{
|
2016-03-21 07:28:18 -05:00
|
|
|
Log::debug("Storage ctor: " + uri);
|
2016-03-03 20:05:30 -06:00
|
|
|
}
|
|
|
|
|
2016-03-31 01:48:34 -05:00
|
|
|
std::string getLocalRootPath() const;
|
2016-03-08 18:21:16 -06:00
|
|
|
|
2016-03-09 17:36:25 -06:00
|
|
|
const std::string& getUri() const { return _uri; }
|
|
|
|
|
2016-03-21 18:12:00 -05:00
|
|
|
/// Returns information about the file.
|
2016-03-22 17:46:04 -05:00
|
|
|
virtual FileInfo getFileInfo(const Poco::URI& uri) = 0;
|
2016-03-21 18:12:00 -05:00
|
|
|
|
|
|
|
/// Returns a local file path for the given URI.
|
2016-02-19 15:19:15 -06:00
|
|
|
/// If necessary copies the file locally first.
|
2016-03-10 21:01:34 -06:00
|
|
|
virtual std::string loadStorageFileToLocal() = 0;
|
2016-02-19 15:19:15 -06:00
|
|
|
|
2016-03-03 20:05:30 -06:00
|
|
|
/// Writes the contents of the file back to the source.
|
2016-03-21 18:12:00 -05:00
|
|
|
/// TODO: Should we save to the specific client's URI?
|
|
|
|
/// The advantage is that subseqent views (to the first)
|
|
|
|
/// will not depend on the token of the first.
|
2016-03-10 21:01:34 -06:00
|
|
|
virtual bool saveLocalFileToStorage() = 0;
|
2016-02-19 15:19:15 -06:00
|
|
|
|
2016-03-11 12:45:13 -06:00
|
|
|
static
|
2016-03-31 01:48:34 -05:00
|
|
|
size_t getFileSize(const std::string& filename);
|
2016-03-11 12:45:13 -06:00
|
|
|
|
2016-03-03 20:05:30 -06:00
|
|
|
protected:
|
|
|
|
const std::string _localStorePath;
|
2016-03-05 09:27:30 -06:00
|
|
|
const std::string _jailPath;
|
2016-03-09 17:36:25 -06:00
|
|
|
const std::string _uri;
|
|
|
|
std::string _jailedFilePath;
|
2016-03-21 18:12:00 -05:00
|
|
|
FileInfo _fileInfo;
|
2016-02-19 15:19:15 -06:00
|
|
|
};
|
|
|
|
|
|
|
|
/// Trivial implementation of local storage that does not need do anything.
|
|
|
|
class LocalStorage : public StorageBase
|
|
|
|
{
|
|
|
|
public:
|
2016-03-05 09:27:30 -06:00
|
|
|
LocalStorage(const std::string& localStorePath,
|
2016-03-09 17:36:25 -06:00
|
|
|
const std::string& jailPath,
|
|
|
|
const std::string& uri) :
|
|
|
|
StorageBase(localStorePath, jailPath, uri),
|
|
|
|
_isCopy(false)
|
2016-03-05 09:27:30 -06:00
|
|
|
{
|
|
|
|
}
|
2016-02-19 15:19:15 -06:00
|
|
|
|
2016-03-31 01:48:34 -05:00
|
|
|
FileInfo getFileInfo(const Poco::URI& uri) override;
|
2016-03-05 09:27:30 -06:00
|
|
|
|
2016-03-31 01:48:34 -05:00
|
|
|
std::string loadStorageFileToLocal() override;
|
2016-03-05 09:27:30 -06:00
|
|
|
|
2016-03-31 01:48:34 -05:00
|
|
|
bool saveLocalFileToStorage() override;
|
2016-03-09 17:36:25 -06:00
|
|
|
|
|
|
|
private:
|
|
|
|
/// True if the jailed file is not linked but copied.
|
|
|
|
bool _isCopy;
|
2016-02-19 15:19:15 -06:00
|
|
|
};
|
|
|
|
|
2016-03-03 20:05:30 -06:00
|
|
|
class WopiStorage : public StorageBase
|
|
|
|
{
|
|
|
|
public:
|
2016-03-05 09:27:30 -06:00
|
|
|
WopiStorage(const std::string& localStorePath,
|
2016-03-09 17:36:25 -06:00
|
|
|
const std::string& jailPath,
|
|
|
|
const std::string& uri) :
|
|
|
|
StorageBase(localStorePath, jailPath, uri)
|
2016-03-03 20:05:30 -06:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2016-03-31 01:48:34 -05:00
|
|
|
FileInfo getFileInfo(const Poco::URI& uri) override;
|
2016-03-21 18:12:00 -05:00
|
|
|
|
2016-03-03 20:05:30 -06:00
|
|
|
/// uri format: http://server/<...>/wopi*/files/<id>/content
|
2016-03-31 01:48:34 -05:00
|
|
|
std::string loadStorageFileToLocal() override;
|
2016-03-11 12:45:13 -06:00
|
|
|
|
2016-03-31 01:48:34 -05:00
|
|
|
bool saveLocalFileToStorage() override;
|
2016-03-03 20:05:30 -06:00
|
|
|
};
|
|
|
|
|
2016-02-19 15:19:15 -06:00
|
|
|
class WebDAVStorage : public StorageBase
|
|
|
|
{
|
|
|
|
public:
|
2016-03-03 20:05:30 -06:00
|
|
|
WebDAVStorage(const std::string& localStorePath,
|
2016-03-05 09:27:30 -06:00
|
|
|
const std::string& jailPath,
|
2016-03-09 17:36:25 -06:00
|
|
|
const std::string& uri,
|
2016-03-03 20:05:30 -06:00
|
|
|
std::unique_ptr<AuthBase> authAgent) :
|
2016-03-09 17:36:25 -06:00
|
|
|
StorageBase(localStorePath, jailPath, uri),
|
2016-02-19 15:19:15 -06:00
|
|
|
_authAgent(std::move(authAgent))
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2016-03-31 01:48:34 -05:00
|
|
|
FileInfo getFileInfo(const Poco::URI& uri) override;
|
2016-03-21 18:12:00 -05:00
|
|
|
|
2016-03-31 01:48:34 -05:00
|
|
|
std::string loadStorageFileToLocal() override;
|
2016-02-19 15:19:15 -06:00
|
|
|
|
2016-03-31 01:48:34 -05:00
|
|
|
bool saveLocalFileToStorage() override;
|
2016-02-19 15:19:15 -06:00
|
|
|
|
|
|
|
private:
|
|
|
|
std::unique_ptr<AuthBase> _authAgent;
|
|
|
|
};
|
|
|
|
|
2016-03-21 07:31:07 -05:00
|
|
|
inline
|
|
|
|
std::unique_ptr<StorageBase> createStorage(const std::string& jailRoot, const std::string& jailPath, const Poco::URI& uri)
|
|
|
|
{
|
|
|
|
if (uri.isRelative() || uri.getScheme() == "file")
|
|
|
|
{
|
|
|
|
Log::info("Public URI [" + uri.toString() + "] is a file.");
|
|
|
|
return std::unique_ptr<StorageBase>(new LocalStorage(jailRoot, jailPath, uri.getPath()));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Log::info("Public URI [" + uri.toString() +
|
|
|
|
"] assuming cloud storage.");
|
|
|
|
//TODO: Configure the storage to use. For now, assume it's WOPI.
|
|
|
|
return std::unique_ptr<StorageBase>(new WopiStorage(jailRoot, jailPath, uri.toString()));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-19 15:19:15 -06:00
|
|
|
#endif
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|