44 lines
1.4 KiB
C++
44 lines
1.4 KiB
C++
// SPDX-FileCopyrightText: 2024 Yury Gubich <blue@macaw.me>
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
#include "module.h"
|
|
|
|
#include <algorithm>
|
|
|
|
#include "gloox/message.h"
|
|
|
|
Module::Module::Module(const std::shared_ptr<Core>& core, const Shared::Permissions& permissions, const std::string& name):
|
|
Shared::Loggable(core->logger, {"Module", name}),
|
|
core(core),
|
|
permissions(permissions)
|
|
{}
|
|
|
|
bool Module::Module::hasPermission(const std::string& permission, const std::shared_ptr<::Actor>& actor) const {
|
|
Shared::Permissions::const_iterator itr = permissions.find(permission);
|
|
if (itr == permissions.end())
|
|
return false;
|
|
|
|
return std::find(itr->second.begin(), itr->second.end(), actor->getGroup()) != itr->second.end();
|
|
}
|
|
|
|
Module::Module::~Module() noexcept {}
|
|
|
|
std::vector<std::string> Module::Module::split(const std::string& string, const std::string& delimiter) {
|
|
std::vector<std::string> result;
|
|
|
|
std::size_t last = 0;
|
|
std::size_t next = string.find(delimiter, last);
|
|
while (next != std::string::npos) {
|
|
result.emplace_back(string.substr(last, next - last));
|
|
last = next + 1;
|
|
next = string.find(delimiter, last);
|
|
}
|
|
result.emplace_back(string.substr(last));
|
|
|
|
return result;
|
|
}
|
|
|
|
std::string Module::Module::lower(const std::string& text) {
|
|
return std::ranges::to<std::string>(text | std::views::transform(::tolower));
|
|
}
|