summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 253fb3c)
raw | patch | inline | side by side (parent: 253fb3c)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Wed, 14 May 2008 13:30:31 +0000 (13:30 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Wed, 14 May 2008 13:30:31 +0000 (13:30 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@10898 594d385d-05f5-0310-b6e9-bd551577e9d8
diff --git a/gosa-plugins/goto/admin/devices/class_deviceGeneric.inc b/gosa-plugins/goto/admin/devices/class_deviceGeneric.inc
index a92a9cbb7d7295c5e3857d5177064f7049e1ebf6..099788aad5a4abc1fb1cc5e6a981da7e1ad0893d 100644 (file)
if(empty($this->vendor) || !$this->is_2byteHex($this->vendor)){
$message[]= msgPool::invalid(_("Vendor ID"),"","","0x1234");
}
-
+
/* Check if entry already exists */
- if($this->cn != $this->orig_cn){
+ if($this->cn != $this->orig_cn || $this->dn == "new"){
$ldap = $this->config->get_ldap_link();
$ldap->search("(&(objectClass=gotoDevice)(cn=".$this->cn."*))",array("cn"));
if($ldap->count()){
diff --git a/gosa-plugins/goto/admin/devices/class_deviceManagement.inc b/gosa-plugins/goto/admin/devices/class_deviceManagement.inc
index d30870d5fcf3443b512f0a60f1acc14e87091866..7e061571a17173078fb86e883a20d151f71aea0b 100644 (file)
/* These vars will be stored if you try to open a locked device,
to be able to perform your last requests after showing a warning message */
- session::set('LOCK_VARS_TO_USE',array("/^act$/","/^id$/","/^device_edit_/",
+ session::set('LOCK_VARS_TO_USE',array("/^act$/","/^id$/","/^device_edit_/","/^menu_action/",
"/^device_del_/","/^item_selected/","/^remove_multiple_devices/"));
$smarty = get_smarty(); // Smarty instance
/* Cancel dialogs */
if (isset($_POST['edit_cancel']) && is_object($this->devicetabs)){
- del_lock ($this->devicetabs->dn);
- unset ($this->devicetabs);
+ $this->remove_lock();
$this->devicetabs= NULL;
session::un_set('objectinfo');
}
if (count($message) == 0){
/* Save data data to ldap */
-# $this->devicetabs->set_release($this->DivListDevices->selectedRelease);
$this->devicetabs->save();
if (!isset($_POST['edit_apply'])){
+
/* device type has been saved successfully, remove lock from LDAP. */
if ($this->dn != "new"){
- del_lock ($this->dn);
+ $this->remove_lock();
}
unset ($this->devicetabs);
$this->devicetabs= NULL;
if(count($ids)){
+ /* collect entries */
foreach($ids as $id){
- $dn = $this->devices[$id]['dn'];
- if (($user= get_lock($dn)) != ""){
- return(gen_locked_message ($user, $dn));
- }
- $this->dns[$id] = $dn;
+ $this->dns[$id] = $this->devices[$id]['dn'];
+ }
+
+ /* Check locks */
+ if ($user= get_multiple_locks($this->dns)){
+ return(gen_locked_message($user,$this->dns));
}
$dns_names = array();
foreach($this->dns as $dn){
- add_lock ($dn, $this->ui->dn);
$dns_names[] =@LDAP::fix($dn);
}
+ add_lock ($this->dns, $this->ui->dn);
/* Lock the current entry, so nobody will edit it during deletion */
$smarty->assign("intro", msgPool::deleteInfo($dns_names),_("device"));
msg_dialog::display(_("Permission error"), msgPool::permDelete(), INFO_DIALOG);
new log("security","devices/".get_class($this),$dn,array(),"Tried to trick deletion.");
}
- /* Remove lock file after successfull deletion */
- del_lock ($dn);
- unset($this->dns[$key]);
}
+
+ /* Remove lock file after successfull deletion */
+ $this->remove_lock();
+ $this->dns = array();
}
/* Remove lock */
if(isset($_POST['delete_multiple_device_cancel'])){
- foreach($this->dns as $key => $dn){
- del_lock ($dn);
- unset($this->dns[$key]);
- }
+
+ /* Remove lock file after successfull deletion */
+ $this->remove_lock();
+ $this->dns = array();
}
}
/* Remove lock file after successfull deletion */
- del_lock ($this->dn);
+ $this->remove_lock();
+ $this->dns = array();
}
/* Delete device canceled? */
if (isset($_POST['delete_cancel'])){
- del_lock ($this->dn);
+ $this->remove_lock();
session::un_set('objectinfo');
- }
+ }
/* Show tab dialog if object is present */
if (($this->devicetabs) && (isset($this->devicetabs->config))){
function remove_lock()
{
- if (isset($this->devicetabs->dn)){
- del_lock ($this->devicetabs->dn);
+ if (isset($this->dn) && !empty($this->dn)){
+ del_lock ($this->dn);
+ }
+ if(isset($this->dns) && is_array($this->dns) && count($this->dns)){
+ del_lock ($this->dns);
}
}
index 396ee2233d874bc9a0beb5575c882e8db43c0a35..385e88e865a2f3ba51b5e2953291be4089fde6bb 100644 (file)
if(session::is_set('DeviceManagement')){
$DeviceManagement = session::get('DeviceManagement');
$DeviceManagement->remove_lock();
- del_lock ($ui->dn);
session::un_set ('DeviceManagement');
}
} else {