+
+       /**
+        * Find album as array
+        *
+        * @param integer $id The album id
+        * @param string $path The album path
+        * @return ?array The album array
+        */
+       public function findOneByIdPathAsArray(int $id, string $path): ?array {
+               //Set the request
+               $req = <<<SQL
+SELECT
+       a.id,
+       a.path,
+       a.slug,
+       GREATEST(a.created, e.created) AS created,
+       GREATEST(a.updated, e.updated) AS updated,
+       GREATEST(a.created, e.created, a.updated, e.updated) AS modified,
+       GROUP_CONCAT(e.id ORDER BY e.id SEPARATOR "\\n") AS e_ids,
+       GROUP_CONCAT(e.path ORDER BY e.id SEPARATOR "\\n") AS e_paths,
+       GROUP_CONCAT(e.user_id ORDER BY e.id SEPARATOR "\\n") AS e_uids
+FROM Rapsys\TreeBundle\Entity\Album AS a
+JOIN Rapsys\TreeBundle\Entity\Element AS e ON (e.album_id = a.id)
+WHERE a.id = :id
+SQL;
+
+               //Replace bundle entity name by table name
+               $req = $this->replace($req);
+
+               //Get result set mapping instance
+               $rsm = new ResultSetMapping();
+
+               //Declare all fields
+               //XXX: see vendor/doctrine/dbal/lib/Doctrine/DBAL/Types/Types.php
+               //addScalarResult($sqlColName, $resColName, $type = 'string');
+               $rsm->addScalarResult('id', 'id', 'integer')
+                       ->addScalarResult('path', 'path', 'string')
+                       ->addScalarResult('slug', 'slug', 'string')
+                       ->addScalarResult('created', 'created', 'datetime')
+                       ->addScalarResult('updated', 'updated', 'datetime')
+                       ->addScalarResult('modified', 'modified', 'datetime')
+                       ->addScalarResult('e_ids', 'e_ids', 'string')
+                       ->addScalarResult('e_paths', 'e_paths', 'string')
+                       ->addScalarResult('e_uids', 'e_uids', 'string')
+                       ->addIndexByScalar('id');
+
+               //Get result
+               $result = $this->_em
+                       ->createNativeQuery($req, $rsm)
+                       ->setParameter('id', $id)
+                       ->getOneOrNullResult();
+
+               //Check result
+               if (
+                       //Without result
+                       $result === null ||
+                       //Without realpath
+                       !($realpath = realpath($result['path'].($path?DIRECTORY_SEPARATOR.$path:''))) ||
+                       //Realpath not matching element path
+                       $result['path'] !== substr($realpath, 0, strlen($result['path']))
+               ) {
+                       //Return null
+                       return null;
+               }
+
+               //Set breadcrumbs
+               $breadcrumbs = [
+                       //Add album
+                       [
+                               'name' => $name = ucfirst($slug = $result['slug']),
+                               'link' => $link = $this->router->generate('rapsystree_album', [ 'id' => $result['id'], 'path' => '', 'slug' => $slug ])
+                       ]
+               ];
+
+               //Set base
+               $base = '';
+
+               //Iterate on intermediate breadcrumbs
+               foreach(array_slice(explode('/', substr($realpath, strlen($result['path']))), 1) as $value) {
+                       //Add breadcrumb
+                       $breadcrumbs[] = [
+                               'name' => '/ '.$value,
+                               'link' => $this->router->generate('rapsystree_album', [ 'id' => $result['id'], 'path' => ($base .= ($base == '' ? '' : '/').$value), 'slug' => $slug ])
+                       ];
+               }
+
+               //Set directories
+               $directories = [];
+
+               //Set files
+               $files = [];
+
+               //Set file
+               $file = [];
+
+               //With directory
+               if (is_dir($realpath)) {
+                       //Iterate on directory
+                       foreach(array_diff(scandir($realpath), ['.', '..']) as $item) {
+                               //TODO: exclude .svn, .git, .passwd, .*.un~, etc... (if not already protected by haproxy/apache)
+
+                               //Check item
+                               if (
+                                       //Without item realpath
+                                       !($itempath = realpath($realpath.DIRECTORY_SEPARATOR.$item)) ||
+                                       //Item realpath not matching album path
+                                       $result['path'] !== substr($itempath, 0, strlen($result['path']))
+                               ) {
+                                       //Skip
+                                       continue;
+                               }
+
+                               //With directory
+                               if (is_dir($itempath)) {
+                                       //Append directory
+                                       $directories[$item.'/'] = $this->router->generate('rapsystree_album', [ 'id' => $result['id'], 'path' => ($path ? $path.'/' : '').$item, 'slug' => $slug ]);
+                               //With file
+                               } elseif (is_file($itempath)) {
+                                       //Get file infos
+                                       $fileinfos = $this->file->infos($itempath);
+
+                                       //Append file
+                                       $files[$fileinfos['name']] = [
+                                               //Set link
+                                               'link' => $this->router->generate('rapsystree_album', [ 'id' => $result['id'], 'path' => ($path ? $path.'/' : '').$item, 'slug' => $slug ])
+                                       ]+$fileinfos;
+                               //With unknown type
+                               } else {
+                                       //Throw 404
+                                       throw new \Exception('Unknown element item type');
+                               }
+                       }
+               //With file
+               } elseif (is_file($realpath)) {
+                       //Get file infos
+                       $fileinfos = $this->file->infos($realpath);
+
+                       //Append file
+                       $file = [
+                               //Set link
+                               'link' => $this->router->generate('rapsystree_album', [ 'id' => $result['id'], 'path' => $path, 'slug' => $slug ])
+                       ]+$fileinfos;
+               //With unknown type
+               } else {
+                       //Throw 404
+                       throw new \Exception('Unknown element type');
+               }
+
+               //Set album
+               $album = [
+                       'id' => $result['id'],
+                       'name' => $name,
+                       'path' => $result['path'],
+                       'slug' => $slug,
+                       'created' => $result['created'],
+                       'updated' => $result['updated'],
+                       'modified' => $result['modified'],
+                       'link' => $link,
+                       'elements' => [],
+                       'breadcrumbs' => $breadcrumbs,
+                       'directories' => $directories,
+                       'files' => $files,
+                       'file' => $file
+               ];
+
+               //Explode element ids
+               $result['e_ids'] = explode("\n", $result['e_ids']);
+
+               //Explode element paths
+               $result['e_paths'] = explode("\n", $result['e_paths']);
+
+               //Explode element uids
+               $result['e_uids'] = explode("\n", $result['e_uids']);
+
+               //Iterate on elements
+               foreach($result['e_ids'] as $e => $eid) {
+                       //Append element
+                       $album['elements'][$eid] = [
+                               'id' => $eid,
+                               'name' => trim(str_replace('/', ' / ', '/'.($epath = $result['e_paths'][$e]))),
+                               'path' => $epath,
+                               'uid' => $result['e_uids'][$e],
+                               'link' => $this->router->generate('rapsystree_album', ['id' => $result['id'], 'path' => $epath, 'slug' => $slug]),
+                       ];
+               }
+
+               //Return album
+               return $album;
+       }