mirror of
https://github.com/Icinga/icinga2.git
synced 2026-03-21 18:11:32 -04:00
I've used the following command to replace the original copyright header
lines in a C-style comment block:
```
$ find . \( -type d \( -name '\..*' -o -name third-party -o -name scripts -o -name prefix -o -name malloc -o -name server -o -name docker -o -name build -o -name doc \) -prune \) -o -type f -exec perl -pi -e 's{/\*[^*]*\(\s*c\s*\)\s*(\d{4})\s*Icinga\s+GmbH[^*]*\*/}{// SPDX-FileCopyrightText: \1 Icinga GmbH <https://icinga.com>\n// SPDX-License-Identifier: GPL-2.0-or-later}gi' {} +
```
For files that use shell-style comments (#) like CMakeLists.txt, I've
used this command:
```
$ find . \( -type d \( -name '\..*' -o -name third-party -o -name scripts -o -name prefix -o -name malloc -o -name server -o -name docker -o -name build -o -name doc \) -prune \) -o -type f -exec perl -pi -e 's{#.*\(\s*c\s*\)\s(\d{4})\sIcinga\s+GmbH.*}{# SPDX-FileCopyrightText: \1 Icinga GmbH <https://icinga.com>\n# SPDX-License-Identifier: GPL-2.0-or-later}gi' {} +
```
And for SQL files:
```
$ find . \( -type d \( -name '\..*' -o -name third-party -o -name scripts -o -name prefix -o -name malloc -o -name server -o -name docker -o -name build -o -name doc \) -prune \) -o -type f \( -name '*.sql' \) -exec perl -pi -e 's{--.*\(c\)\s(\d{4})\sIcinga\sGmbH.*}{-- SPDX-FileCopyrightText: \1 Icinga GmbH <https://icinga.com>\n-- SPDX-License-Identifier: GPL-2.0-or-later}gi' {} +
$ find . \( -type d \( -name '\..*' -o -name third-party -o -name scripts -o -name prefix -o -name malloc -o -name server -o -name docker -o -name build -o -name doc \) -prune \) -o -type f \( -name '*.sql' \) -exec perl -pi -e 's{-- Copyright \(c\)\s(\d{4})\sIcinga\s+Development\sTeam.*}{-- SPDX-FileCopyrightText: \1 Icinga GmbH <https://icinga.com>\n-- SPDX-License-Identifier: GPL-2.0-or-later}gi' {} +
```
67 lines
2.1 KiB
C++
67 lines
2.1 KiB
C++
// SPDX-FileCopyrightText: 2012 Icinga GmbH <https://icinga.com>
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#ifndef FILTERUTILITY_H
|
|
#define FILTERUTILITY_H
|
|
|
|
#include "remote/i2-remote.hpp"
|
|
#include "remote/apiuser.hpp"
|
|
#include "config/expression.hpp"
|
|
#include "base/dictionary.hpp"
|
|
#include "base/configobject.hpp"
|
|
#include <set>
|
|
|
|
namespace icinga
|
|
{
|
|
|
|
class TargetProvider : public Object
|
|
{
|
|
public:
|
|
DECLARE_PTR_TYPEDEFS(TargetProvider);
|
|
|
|
virtual void FindTargets(const String& type, const std::function<void (const Value&)>& addTarget) const = 0;
|
|
virtual Value GetTargetByName(const String& type, const String& name) const = 0;
|
|
virtual bool IsValidType(const String& type) const = 0;
|
|
virtual String GetPluralName(const String& type) const = 0;
|
|
};
|
|
|
|
class ConfigObjectTargetProvider final : public TargetProvider
|
|
{
|
|
public:
|
|
DECLARE_PTR_TYPEDEFS(ConfigObjectTargetProvider);
|
|
|
|
void FindTargets(const String& type, const std::function<void (const Value&)>& addTarget) const override;
|
|
Value GetTargetByName(const String& type, const String& name) const override;
|
|
bool IsValidType(const String& type) const override;
|
|
String GetPluralName(const String& type) const override;
|
|
};
|
|
|
|
struct QueryDescription
|
|
{
|
|
std::set<String> Types;
|
|
TargetProvider::Ptr Provider;
|
|
String Permission;
|
|
};
|
|
|
|
/**
|
|
* Filter utilities.
|
|
*
|
|
* @ingroup remote
|
|
*/
|
|
class FilterUtility
|
|
{
|
|
public:
|
|
|
|
static Dictionary::Ptr GetTargetForVar(const String& name, const Value& value);
|
|
static Type::Ptr TypeFromPluralName(const String& pluralName);
|
|
static void CheckPermission(const ApiUser::Ptr& user, const String& permission, std::unique_ptr<Expression>* filter = nullptr);
|
|
static bool HasPermission(const ApiUser::Ptr& user, const String& permission, std::unique_ptr<Expression>* permissionFilter = nullptr);
|
|
static std::vector<Value> GetFilterTargets(const QueryDescription& qd, const Dictionary::Ptr& query,
|
|
const ApiUser::Ptr& user, const String& variableName = String());
|
|
static bool EvaluateFilter(ScriptFrame& frame, Expression *filter,
|
|
const Object::Ptr& target, const String& variableName = String());
|
|
};
|
|
|
|
}
|
|
|
|
#endif /* FILTERUTILITY_H */
|