46 lines
1.1 KiB
PHP
46 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace App\Classes\LDAP\Attribute;
|
|
|
|
use Illuminate\Support\Arr;
|
|
use Illuminate\Support\Facades\Log;
|
|
|
|
use App\Classes\LDAP\Attribute;
|
|
|
|
/**
|
|
* This factory is used to return LDAP attributes as an object
|
|
*
|
|
* If there is no specific Attribute defined, then the default Attribute::class is return
|
|
*/
|
|
class Factory
|
|
{
|
|
private const LOGKEY = 'LAf';
|
|
|
|
/**
|
|
* Map of attributes to appropriate class
|
|
*/
|
|
public const map = [
|
|
'entryuuid' => Internal\EntryUUID::class,
|
|
'jpegphoto' => Binary\JpegPhoto::class,
|
|
'objectclass' => ObjectClass::class,
|
|
'supportedcontrol' => Schema\OID::class,
|
|
'supportedextension' => Schema\OID::class,
|
|
'supportedfeatures' => Schema\OID::class,
|
|
'supportedsaslmechanisms' => Schema\Mechanisms::class,
|
|
];
|
|
|
|
/**
|
|
* Create the new Object for an attribute
|
|
*
|
|
* @param string $attribute
|
|
* @param array $values
|
|
* @return Attribute
|
|
*/
|
|
public static function create(string $attribute,array $values): Attribute
|
|
{
|
|
$class = Arr::get(self::map,$attribute,Attribute::class);
|
|
Log::debug(sprintf('%s:Creating LDAP Attribute [%s] as [%s]',static::LOGKEY,$attribute,$class));
|
|
|
|
return new $class($attribute,$values);
|
|
}
|
|
} |