1. Go to this page and download the library: Download l3/ldap-orm-bundle library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
l3 / ldap-orm-bundle example snippets
namespace AppBundle\Entity;
use L3\Bundle\LdapOrmBundle\Annotation\Ldap\Attribute;
use L3\Bundle\LdapOrmBundle\Annotation\Ldap\ObjectClass;
use L3\Bundle\LdapOrmBundle\Annotation\Ldap\Dn;
use L3\Bundle\LdapOrmBundle\Annotation\Ldap\Sequence;
use L3\Bundle\LdapOrmBundle\Annotation\Ldap\ArrayField;
use L3\Bundle\LdapOrmBundle\Annotation\Ldap\DnPregMatch;
/**
* Class for represent Account
*
* @ObjectClass("udlAccount")
* @Dn("uid={{ entity.uid }},{% for entite in entity.entities %}ou={{ entite }},{% endfor %}{{ baseDN }}")
*/
class Account
{
/**
* @Attribute("uid")
*/
private $uid;
/**
* @Attribute("givenName")
*/
private $firstname;
/**
* @Attribute("sn")
*/
private $lastname;
/**
* @Attribute("udlAliasLogin")
* @ArrayField()
*/
private $alias;
/**
* @DnPregMatch("/ou=([a-zA-Z0-9\.]+)/")
*/
private $entities = array("accounts");
public function getFirstname()
{
return $this->firstname;
}
public function setFirstname($firstname)
{
$this->firstname=$firstname;
}
public function getLastname()
{
return $this->lastname;
}
public function setLastname($lastname)
{
$this->lastname = $lastname;
}
public function getUid()
{
return $this->uid;
}
public function setUid($uid)
{
$this->uid=$uid;
}
public function getPassword()
{
return $this->password;
}
/**
* For password use sha1 php function in base16 encoding
*/
public function setPassword($password)
{
$this->password = $password;
}
public function getAlias()
{
return $this->alias;
}
public function setAlias($alias)
{
$this->alias = $alias;
}
public function setEntities($entities)
{
$this->entities = $entities;
}
public function getEntities()
{
return $this->entities;
}
}
namespace AppBundle\Entity;
use L3\Bundle\LdapOrmBundle\Annotation\Ldap\Attribute;
use L3\Bundle\LdapOrmBundle\Annotation\Ldap\ObjectClass;
use L3\Bundle\LdapOrmBundle\Annotation\Ldap\Dn;
use L3\Bundle\LdapOrmBundle\Annotation\Ldap\Sequence;
use L3\Bundle\LdapOrmBundle\Annotation\Ldap\ArrayField;
use L3\Bundle\LdapOrmBundle\Annotation\Ldap\DnPregMatch;
/**
* Class for represent Groups
*
* @ObjectClass("groupOfNames")
* @Dn("cn={{ entity.name }},{% for entite in entity.entities %}ou={{ entite }},{% endfor %}{{ baseDN }}")
*/
class Group
{
/**
* @Attribute("cn")
*/
private $name;
/**
* @Attribute("gidnumber")
* @Sequence("cn=gidSequence,ou=sequences,ou=gram,{{ baseDN }}")
*/
private $id;
/**
* @Attribute("member")
* @DnLinkArray("AppBundle\Entity\Account")
*/
private $members;
/**
* @DnPregMatch("/ou=([a-zA-Z0-9\.]+)/")
*/
private $entities = array('groups');
/**
* Set the name of the group
*
* @param string $name the name of the group
*/
public function setName($name)
{
$this->name = $name;
}
/**
* Set members of the groups
*
* @param string $members the name of the group
*/
public function setMembers($members)
{
$this->members = $members;
}
/**
* Set the id of the group
*
* @param integer $id the id of the group
*/
public function setId($id)
{
$this->id = $id;
}
/**
* Add a member to the group
*
* @param Account $member the mmeber to add
*/
public function addMember($member)
{
$this->members[] = $member;
}
/**
* Remove a member to the group
*
* @param Account $member the mmeber to remove
*/
public function removeMember($member)
{
foreach($this->members as $key => $memberAccount)
{
if($memberAccount->compare($member) == 0) {
$this->members[$key] = null;
}
}
$members = array_filter($this->members);
$this->members = $members;
}
/**
* Return the Entities of group
*
* @param array $entities
*/
public function setEntities($entities)
{
$this->entities = $entities;
}
/**
* Return the name of the group
*
* @return string name of the group
*/
public function getName()
{
return $this->name;
}
/**
* Return the id of the group
*
* @return integer id of the group
*/
public function getId()
{
return $this->id;
}
/**
* Return the members of the group
*
* @return array of object Accounts representing the of the group
*/
public function getMembers()
{
return $this->members;
}
/**
* Return the name of the group
*
* @return string name of the group
*/
public function getEntities()
{
return $this->entities;
}
}
$a = new Account();
$a->setUid('john.doo');
$a->setFirstname('John');
$a->setLastname('Doo');
$a->setAlias(array('jdoo','j.doo'));
$em = $this->get('l3_ldap_orm.entity_manager');
$em->persist($a);
$em->flush();
$g = new Group();
$g->setName('Administrators');
$g->addMember($a);
$em->persist($g);
$em->flush();
$repo = $em->getRepository('AppBundle\Entity\Account');
$a = $repo->findOneByUid('john.doo');
/* Retreve all group of $a */
$groupRepository = $em->getRepository('AppBundle\Entity\Group');
$groups = $groupRepository->findByMember($a);
// app/AppKernel.php
// ...
class AppKernel extends Kernel
{
public function registerBundles()
{
$bundles = array(
// ...
new L3\Bundle\LdapOrmBundle\L3LdapOrmBundle(),
);
// ...
}
// ...
}
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.