Start on fetching DN from server
This commit is contained in:
@@ -26,6 +26,7 @@ class APIController extends Controller
|
||||
'item'=>Crypt::encryptString($item),
|
||||
'lazy'=>TRUE,
|
||||
'icon'=>'fa-fw fas fa-sitemap',
|
||||
'tooltip'=>$item,
|
||||
];
|
||||
});
|
||||
}
|
||||
@@ -39,12 +40,12 @@ class APIController extends Controller
|
||||
return (new Server())
|
||||
->query($dn)
|
||||
->transform(function($item) {
|
||||
//dd($item->getDistinguishedName(),$item);
|
||||
return [
|
||||
'title'=>$item->getDistinguishedName(),
|
||||
'item'=>Crypt::encryptString($item->getDistinguishedName()),
|
||||
'icon'=>'fa-fw fas fa-sitemap',
|
||||
'lazy'=>TRUE,
|
||||
'tooltip'=>$item->getDistinguishedName(),
|
||||
];
|
||||
});
|
||||
|
||||
|
@@ -3,6 +3,7 @@
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use Illuminate\Http\Request;
|
||||
use Illuminate\Support\Facades\Crypt;
|
||||
|
||||
use App\Classes\LDAP\Server;
|
||||
|
||||
@@ -12,7 +13,23 @@ class HomeController extends Controller
|
||||
$o = new Server;
|
||||
|
||||
return view('home')
|
||||
->with('server',config('ldap.connections.default.name')) // @todo This connection name should be a config item
|
||||
->with('bases',$o->getBaseDN());
|
||||
->with('server',config('ldap.connections.default.name'))
|
||||
->with('bases',$o->getBaseDN()->transform(function($item) {
|
||||
return [
|
||||
'title'=>$item,
|
||||
'item'=>Crypt::encryptString($item),
|
||||
'lazy'=>TRUE,
|
||||
'icon'=>'fa-fw fas fa-sitemap',
|
||||
'tooltip'=>$item,
|
||||
];
|
||||
}));
|
||||
}
|
||||
|
||||
public function render(Request $request) {
|
||||
$dn = Crypt::decryptString($request->post('key'));
|
||||
|
||||
return view('widgets.dn')
|
||||
->with('dn',$dn)
|
||||
->with('leaf',(new Server())->fetch($dn));
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user