1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
// Copyright (c) 2019-2023 Tobias Junghans <tobydox@veyon.io>
// This file is part of Veyon - https://veyon.io
// SPDX-License-Identifier: LGPL-2.0-or-later
#pragma once
#include "LdapDirectory.h"
#include "NetworkObjectDirectory.h"
class LDAP_COMMON_EXPORT LdapNetworkObjectDirectory : public NetworkObjectDirectory
{
Q_OBJECT
public:
LdapNetworkObjectDirectory( const LdapConfiguration& ldapConfiguration, QObject* parent );
NetworkObjectList queryObjects( NetworkObject::Type type,
NetworkObject::Attribute attribute, const QVariant& value ) override;
NetworkObjectList queryParents( const NetworkObject& childId ) override;
static NetworkObject computerToObject( LdapDirectory* directory, const QString& computerDn );
private:
void update() override;
void updateLocation( const NetworkObject& locationObject );
NetworkObjectList queryLocations( NetworkObject::Attribute attribute, const QVariant& value );
NetworkObjectList queryHosts( NetworkObject::Attribute attribute, const QVariant& value );
LdapDirectory m_ldapDirectory;
};
|