baseDN() ?: collect(); return view('home') ->with('server',config('ldap.connections.default.name')) ->with('bases',$base->transform(function($item) { return [ 'title'=>$item->getRdn(), 'item'=>Crypt::encryptString($item->getDn()), 'lazy'=>TRUE, 'icon'=>'fa-fw fas fa-sitemap', 'tooltip'=>$item, ]; })); } public function info() { try { $attrs = collect((new Entry)->rootDSE()->getAttributes()) ->transform(function($item,$key) { foreach ($item as $k=>$v) { if (preg_match('/[0-9]+\.[0-9]+\.[0-9]+/',$v)) { $format = sprintf( '%s%s

%s

', $v, Server::getOID($v,'title'), ($x=Server::getOID($v,'ref')) ? sprintf('',$x) : '', Server::getOID($v,'desc'), ); $item[$k] = $format; } } return $item; }); // @todo If we cant get server info, we should probably show a nice error dialog } catch (ModelNotFoundException $e) { $attrs = collect(); } return view('widgets.dn') ->with('dn',__('Server Info')) ->with('attributes',$this->sortAttrs($attrs)); } public function render(Request $request) { $dn = Crypt::decryptString($request->post('key')); return view('widgets.dn') ->with('dn',$dn) ->with('leaf',$x=(new Server())->fetch($dn)) ->with('attributes',$x ? $this->sortAttrs(collect($x->getAttributes())) : []); } /** * Sort the attributes * * @param Collection $attrs * @return Collection */ private function sortAttrs(Collection $attrs): Collection { return $attrs->sortKeys(); } /** * Return the image for the logged in user or anonymous * * @param Request $request * @return mixed */ public function user_image(Request $request) { $image = NULL; $content = NULL; if (Auth::check()) { $image = Arr::get(Auth::user()->getAttribute('jpegphoto'),0); $content = 'image/jpeg'; } if (! $image) { $image = File::get('../resources/images/user-secret-solid.svg'); $content = 'image/svg+xml'; } return response($image) ->header('Content-Type',$content); } }