480fb7b931
In an attempt to reduce the size of Util.{c,h}pp which has grown to contain all sorts of unrelated helpers, we move StringVector helpers into the StringVector.{c,h}pp files. This makes the code better organized. Change-Id: I152f341606807ae66253415b951bc9f89b09df57 Signed-off-by: Ashod Nakashian <ashod.nakashian@collabora.co.uk>
161 lines
4.5 KiB
C++
161 lines
4.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 <config.h>
|
|
#include <string>
|
|
#include <unordered_set>
|
|
#include "ConfigUtil.hpp"
|
|
#include "Util.hpp"
|
|
#include "CommandControl.hpp"
|
|
|
|
namespace CommandControl
|
|
{
|
|
bool LockManager::_isLockedUser = false;
|
|
bool LockManager::_isHostReadOnly = false;
|
|
std::unordered_set<std::string> LockManager::LockedCommandList;
|
|
std::string LockManager::LockedCommandListString;
|
|
Util::RegexListMatcher LockManager::readOnlyWopiHosts;
|
|
Util::RegexListMatcher LockManager::disabledCommandWopiHosts;
|
|
bool LockManager::lockHostEnabled = false;
|
|
|
|
LockManager::LockManager() {}
|
|
|
|
void LockManager::generateLockedCommandList()
|
|
{
|
|
#ifdef ENABLE_FEATURE_LOCK
|
|
|
|
LockedCommandListString = config::getString("feature_lock.locked_commands", "");
|
|
Util::trim(LockedCommandListString);
|
|
StringVector commandList = StringVector::tokenize(LockedCommandListString);
|
|
|
|
std::string command;
|
|
for (std::size_t i = 0; i < commandList.size(); i++)
|
|
{
|
|
command = commandList[i];
|
|
if (!command.empty())
|
|
{
|
|
LockedCommandList.emplace(command);
|
|
}
|
|
}
|
|
#endif
|
|
}
|
|
|
|
const std::unordered_set<std::string>& LockManager::getLockedCommandList()
|
|
{
|
|
if (LockedCommandList.empty())
|
|
generateLockedCommandList();
|
|
|
|
return LockedCommandList;
|
|
}
|
|
|
|
const std::string LockManager::getLockedCommandListString()
|
|
{
|
|
if (LockedCommandListString.empty())
|
|
generateLockedCommandList();
|
|
|
|
return LockedCommandListString;
|
|
}
|
|
|
|
void LockManager::parseLockedHost(Poco::Util::LayeredConfiguration& conf)
|
|
{
|
|
readOnlyWopiHosts.clear();
|
|
disabledCommandWopiHosts.clear();
|
|
|
|
lockHostEnabled = config::getBool("feature_lock.locked_hosts[@allow]", false);
|
|
|
|
if (lockHostEnabled)
|
|
{
|
|
for (size_t i = 0;; i++)
|
|
{
|
|
const std::string path = "feature_lock.locked_hosts.host[" + std::to_string(i) + ']';
|
|
const std::string host = conf.getString(path, "");
|
|
if (!host.empty())
|
|
{
|
|
if (conf.getBool(path + "[@read_only]", false))
|
|
{
|
|
readOnlyWopiHosts.allow(host);
|
|
}
|
|
else
|
|
{
|
|
readOnlyWopiHosts.deny(host);
|
|
}
|
|
|
|
if (conf.getBool(path + "[@disabled_commands]", false))
|
|
{
|
|
disabledCommandWopiHosts.allow(host);
|
|
}
|
|
else
|
|
{
|
|
disabledCommandWopiHosts.deny(host);
|
|
}
|
|
}
|
|
else if (!conf.has(path))
|
|
{
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
bool LockManager::isHostReadOnly(const std::string& host)
|
|
{
|
|
return LockManager::lockHostEnabled && LockManager::readOnlyWopiHosts.match(host);
|
|
}
|
|
|
|
bool LockManager::isHostCommandDisabled(const std::string& host)
|
|
{
|
|
return LockManager::lockHostEnabled && LockManager::disabledCommandWopiHosts.match(host);
|
|
}
|
|
|
|
bool LockManager::hostExist(const std::string& host)
|
|
{
|
|
return LockManager::lockHostEnabled && LockManager::readOnlyWopiHosts.matchExist(host);
|
|
}
|
|
|
|
bool RestrictionManager::_isRestrictedUser = false;
|
|
std::unordered_set<std::string> RestrictionManager::RestrictedCommandList;
|
|
std::string RestrictionManager::RestrictedCommandListString;
|
|
|
|
RestrictionManager::RestrictionManager() {}
|
|
|
|
void RestrictionManager::generateRestrictedCommandList()
|
|
{
|
|
#ifdef ENABLE_FEATURE_RESTRICTION
|
|
RestrictedCommandListString = config::getString("restricted_commands", "");
|
|
Util::trim(RestrictedCommandListString);
|
|
StringVector commandList = StringVector::tokenize(RestrictedCommandListString);
|
|
|
|
std::string command;
|
|
for (std::size_t i = 0; i < commandList.size(); i++)
|
|
{
|
|
command = commandList[i];
|
|
if (!command.empty())
|
|
{
|
|
RestrictedCommandList.emplace(command);
|
|
}
|
|
}
|
|
#endif
|
|
}
|
|
|
|
const std::unordered_set<std::string>& RestrictionManager::getRestrictedCommandList()
|
|
{
|
|
if (RestrictedCommandList.empty())
|
|
generateRestrictedCommandList();
|
|
|
|
return RestrictedCommandList;
|
|
}
|
|
|
|
const std::string RestrictionManager::getRestrictedCommandListString()
|
|
{
|
|
if (RestrictedCommandListString.empty())
|
|
generateRestrictedCommandList();
|
|
|
|
return RestrictedCommandListString;
|
|
}
|
|
} // namespace CommandControl
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|