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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209
|
// 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
#include "LdapConfiguration.h"
#include "LdapDirectory.h"
#include "LdapNetworkObjectDirectory.h"
LdapNetworkObjectDirectory::LdapNetworkObjectDirectory( const LdapConfiguration& ldapConfiguration,
QObject* parent ) :
NetworkObjectDirectory( parent ),
m_ldapDirectory( ldapConfiguration )
{
}
NetworkObjectList LdapNetworkObjectDirectory::queryObjects( NetworkObject::Type type,
NetworkObject::Attribute attribute, const QVariant& value )
{
switch( type )
{
case NetworkObject::Type::Location: return queryLocations( attribute, value );
case NetworkObject::Type::Host: return queryHosts( attribute, value );
default: break;
}
return {};
}
NetworkObjectList LdapNetworkObjectDirectory::queryParents( const NetworkObject& object )
{
switch( object.type() )
{
case NetworkObject::Type::Host:
return { NetworkObject( NetworkObject::Type::Location,
m_ldapDirectory.locationsOfComputer( object.directoryAddress() ).value( 0 ) ) };
case NetworkObject::Type::Location:
return { NetworkObject( NetworkObject::Type::Root ) };
default:
break;
}
return { NetworkObject( NetworkObject::Type::None ) };
}
void LdapNetworkObjectDirectory::update()
{
const auto locations = m_ldapDirectory.computerLocations();
const NetworkObject rootObject( NetworkObject::Type::Root );
for( const auto& location : qAsConst( locations ) )
{
const NetworkObject locationObject( NetworkObject::Type::Location, location );
addOrUpdateObject( locationObject, rootObject );
updateLocation( locationObject );
}
removeObjects( NetworkObject( NetworkObject::Type::Root ), [locations]( const NetworkObject& object ) {
return object.type() == NetworkObject::Type::Location && locations.contains( object.name() ) == false; } );
}
void LdapNetworkObjectDirectory::updateLocation( const NetworkObject& locationObject )
{
const auto computers = m_ldapDirectory.computerLocationEntries( locationObject.name() );
for( const auto& computer : qAsConst( computers ) )
{
const auto hostObject = computerToObject( &m_ldapDirectory, computer );
if( hostObject.type() == NetworkObject::Type::Host )
{
addOrUpdateObject( hostObject, locationObject );
}
}
removeObjects( locationObject, [computers]( const NetworkObject& object ) {
return object.type() == NetworkObject::Type::Host && computers.contains( object.directoryAddress() ) == false; } );
}
NetworkObjectList LdapNetworkObjectDirectory::queryLocations( NetworkObject::Attribute attribute, const QVariant& value )
{
QString name;
switch( attribute )
{
case NetworkObject::Attribute::None:
break;
case NetworkObject::Attribute::Name:
name = value.toString();
break;
default:
vCritical() << "Can't query locations by attribute" << attribute;
return {};
}
const auto locations = m_ldapDirectory.computerLocations( name );
NetworkObjectList locationObjects;
locationObjects.reserve( locations.size() );
for( const auto& location : locations )
{
locationObjects.append( NetworkObject( NetworkObject::Type::Location, location ) );
}
return locationObjects;
}
NetworkObjectList LdapNetworkObjectDirectory::queryHosts( NetworkObject::Attribute attribute, const QVariant& value )
{
QStringList computers;
switch( attribute )
{
case NetworkObject::Attribute::None:
computers = m_ldapDirectory.computersByHostName( {} );
break;
case NetworkObject::Attribute::Name:
computers = m_ldapDirectory.computersByDisplayName( value.toString() );
break;
case NetworkObject::Attribute::HostAddress:
{
const auto hostName = m_ldapDirectory.hostToLdapFormat( value.toString() );
if( hostName.isEmpty() )
{
return {};
}
computers = m_ldapDirectory.computersByHostName( hostName );
break;
}
default:
vCritical() << "Can't query hosts by attribute" << attribute;
return {};
}
NetworkObjectList hostObjects;
hostObjects.reserve( computers.size() );
for( const auto& computer : qAsConst(computers) )
{
const auto hostObject = computerToObject( &m_ldapDirectory, computer );
if( hostObject.isValid() )
{
hostObjects.append( hostObject );
}
}
return hostObjects;
}
NetworkObject LdapNetworkObjectDirectory::computerToObject( LdapDirectory* directory, const QString& computerDn )
{
auto displayNameAttribute = directory->computerDisplayNameAttribute();
if( displayNameAttribute.isEmpty() )
{
displayNameAttribute = LdapClient::cn();
}
auto hostNameAttribute = directory->computerHostNameAttribute();
if( hostNameAttribute.isEmpty() )
{
hostNameAttribute = LdapClient::cn();
}
QStringList computerAttributes{ displayNameAttribute, hostNameAttribute };
auto macAddressAttribute = directory->computerMacAddressAttribute();
if( macAddressAttribute.isEmpty() == false )
{
computerAttributes.append( macAddressAttribute );
}
computerAttributes.removeDuplicates();
const auto computers = directory->client().queryObjects( computerDn, computerAttributes,
directory->computersFilter(), LdapClient::Scope::Base );
if( computers.isEmpty() == false )
{
const auto& computerDn = computers.firstKey();
const auto& computer = computers.first();
const auto displayName = computer[displayNameAttribute].value( 0 );
const auto hostName = computer[hostNameAttribute].value( 0 );
const auto macAddress = ( macAddressAttribute.isEmpty() == false ) ? computer[macAddressAttribute].value( 0 ) : QString();
return NetworkObject( NetworkObject::Type::Host, displayName, hostName, macAddress, computerDn );
}
return NetworkObject( NetworkObject::Type::None );
}
|