* Enable creation of new entries, * Change all our ajax frames to go through /frames URI instead of /dn, * Add our frame command to the encrypted DN, * Automatically redirect to root URL when selecting a tree item and currently in another path (as a result of a prior POST activity), * Some validation improvements DNExists/HasStructuralObjectClass
123 lines
3.3 KiB
PHP
123 lines
3.3 KiB
PHP
@extends('layouts.dn')
|
|
|
|
@section('page_title')
|
|
@include('fragment.dn.header',['o'=>($oo=config('server')->fetch(old('container',$container)))])
|
|
@endsection
|
|
|
|
@section('main-content')
|
|
<x-error/>
|
|
|
|
<div class="row">
|
|
<div class="offset-1 col-10">
|
|
<div class="main-card mb-3 card">
|
|
|
|
<div class="card-header">
|
|
@lang('Create New Entry') - @lang('Step') {{ $step }}
|
|
</div>
|
|
|
|
<div class="card-body">
|
|
<form id="dn-create" method="POST" class="needs-validation" action="{{ url((int)$step === 2 ? 'entry/create' : 'entry/add') }}" enctype="multipart/form-data" novalidate>
|
|
@csrf
|
|
|
|
<input type="hidden" name="key" value="{{ Crypt::encryptString('*create|'.$container) }}">
|
|
<input type="hidden" name="step" value="{{ $step }}">
|
|
|
|
@switch($step)
|
|
@case(1)
|
|
<div class="row">
|
|
<div class="col-12 col-sm-6">
|
|
<x-form.select
|
|
id="objectclass"
|
|
name="objectclass[]"
|
|
:label="__('Select a Structural ObjectClass...')"
|
|
:options="($oc=config('server')->schema('objectclasses'))
|
|
->filter(fn($item)=>$item->isStructural())
|
|
->sortBy(fn($item)=>$item->name_lc)
|
|
->map(fn($item)=>['id'=>$item->name,'value'=>$item->name])"
|
|
multiple="false"
|
|
/>
|
|
</div>
|
|
</div>
|
|
@break
|
|
|
|
@case(2)
|
|
<x-attribute-type :edit="true" :o="$o->getObject('rdn')"/>
|
|
|
|
@foreach ($o->getVisibleAttributes() as $ao)
|
|
<x-attribute-type :edit="true" :o="$ao"/>
|
|
@endforeach
|
|
|
|
@include('fragment.dn.add_attr')
|
|
|
|
@break;
|
|
@endswitch
|
|
</form>
|
|
|
|
<div class="row d-none pt-3">
|
|
<div class="col-12 {{ $step > 1 ? 'offset-sm-2' : '' }} col-sm-4 col-lg-2">
|
|
<x-form.reset form="dn-create"/>
|
|
<x-form.submit action="Next" form="dn-create"/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endsection
|
|
|
|
@section('page-scripts')
|
|
<script type="text/javascript">
|
|
var oc = {!! $oo->getObject('objectclass')->values !!};
|
|
|
|
function editmode() {
|
|
// Find all input items and turn off readonly
|
|
$('input.form-control').each(function() {
|
|
// Except for objectClass - @todo show an "X" instead
|
|
if ($(this)[0].name.match(/^objectclass/))
|
|
return;
|
|
|
|
$(this).attr('readonly',false);
|
|
});
|
|
|
|
// Our password type
|
|
$('div#userPassword .form-select').each(function() {
|
|
$(this).prop('disabled',false);
|
|
})
|
|
|
|
$('.row.d-none').removeClass('d-none');
|
|
$('.addable.d-none').removeClass('d-none');
|
|
$('.deletable.d-none').removeClass('d-none');
|
|
$('#newattr-select.d-none').removeClass('d-none');
|
|
}
|
|
|
|
$(document).ready(function() {
|
|
$('#newattr').on('change',function(item) {
|
|
$.ajax({
|
|
type: 'POST',
|
|
beforeSend: function() {},
|
|
success: function(data) {
|
|
$('#newattrs').append(data);
|
|
},
|
|
error: function(e) {
|
|
if (e.status != 412)
|
|
alert('That didnt work? Please try again....');
|
|
},
|
|
url: '{{ url('entry/attr/add') }}/'+item.target.value,
|
|
data: {
|
|
objectclasses: oc,
|
|
},
|
|
cache: false
|
|
});
|
|
|
|
// Remove the option from the list
|
|
$(this).find('[value="'+item.target.value+'"]').remove()
|
|
|
|
// If there are no more options
|
|
if ($(this).find("option").length === 1)
|
|
$('#newattr-select').remove();
|
|
});
|
|
|
|
editmode();
|
|
});
|
|
</script>
|
|
@append |