summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 900543a)
raw | patch | inline | side by side (parent: 900543a)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Fri, 21 Jul 2006 06:47:14 +0000 (06:47 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Fri, 21 Jul 2006 06:47:14 +0000 (06:47 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@4271 594d385d-05f5-0310-b6e9-bd551577e9d8
plugins/personal/environment/class_environment.inc | patch | blob | history | |
plugins/personal/environment/main.inc | patch | blob | history |
diff --git a/plugins/personal/environment/class_environment.inc b/plugins/personal/environment/class_environment.inc
index ab12080b1870a6ebabe5482e4f8b9df91f4dd591..85f5631563d04f91a05bf6739e5494e3b3ede815 100644 (file)
var $gotoShare = ""; // currently selected Share Option
var $gotoShareSelections= array();// Available Shares for this account in Listbox format
var $gotoAvailableShares= array();// Available Shares for this account
-
+
/* Kiosk profile */
var $gotoKioskProfile = "none"; // The selected Kiosk Profile
var $gotoKioskProfiles = array();// All available Kiosk profiles
var $CopyPasteVars = array("gotoHotplugDevices","newKioskProfiles","gotoAvailableShares","gotoShareSelections","gotoPrinterSel","gotoProfileFlagL","gotoXResolutions","gotoProfileFlagC","gotoProfileServers","useProfile","is_group","in_dialog","OrigCn");
var $attributes = array("uid","gotoProfileServer","gotoProfileFlags",
- "gotoXResolution","gotoProfileQuota",
- "gotoLogonScripts","gotoLogonScript",
- "gotoPrinter", "gosaDefaultPrinter",
- "gotoShares","gotoShare",
- "gotoKioskProfile","gotoKioskProfiles"
- );
+ "gotoXResolution","gotoProfileQuota",
+ "gotoLogonScripts","gotoLogonScript",
+ "gotoPrinter", "gosaDefaultPrinter",
+ "gotoShares","gotoShare",
+ "gotoKioskProfile","gotoKioskProfiles"
+ );
var $objectclasses = array("gotoEnvironment"); // Specifies the objectClass which contains the attributes edited here
var $cn;
var $OrigCn;
$this->gotoPrinter[$printer['cn'][0]]=$printer;
$this->gotoPrinter[$printer['cn'][0]]['mode']="admin";
}
-
+
/* prepare hotplugs */
if((isset($this->attrs['gotoHotplugDevice']))&&(is_array($this->attrs['gotoHotplugDevice']))){
unset($this->attrs['gotoHotplugDevice']['count']);
if(!isset($tmp[4])){
$tmp[4] = "";
}
-
+
$tmp2['produkt'] = $tmp[3];
$tmp2['vendor'] = $tmp[4];
-
+
$this->gotoHotplugDevices[$tmp[0]]=$tmp2;
}
}
-
+
/* prepare LogonScripts */
if((isset($this->attrs['gotoLogonScript']))&&(is_array($this->attrs['gotoLogonScript']))){
unset($this->attrs['gotoLogonScript']['count']);
$this->gotoLogonScripts[$tmp[0]]=$tmp2;
}
}
-
+
/* Prepare Shares */
if((isset($this->attrs['gotoShare']))&&(is_array($this->attrs['gotoShare']))){
unset($this->attrs['gotoShare']['count']);
$tmp = split("\|",$share);
$tmp2['server'] =$tmp[0];
$tmp2['name'] =$tmp[1];
-
+
/* Decode base64 if needed */
if (!preg_match('%/%', $tmp[2])){
$tmp2['mountPoint'] =base64_decode($tmp[2]);
if(isset($this->config->data['MAIN']['RESOLUTION_HOOK'])){
$file = $this->config->data['MAIN']['RESOLUTION_HOOK'];
-
+
if(is_readable($file)){
$str = file_get_contents($file);
$lines = split("\n",$str);
}
}
-
+
$this->gotoProfileServers= $config->getShareServerList() ;
$this->gotoShareSelections= $config->getShareList(true);
$this->gotoAvailableShares= $config->getShareList(false);
function execute()
{
- /* Call parent execute */
- plugin::execute();
+ /* Call parent execute */
+ plugin::execute();
- /* Fill templating stuff */
- $smarty= get_smarty();
- $display= "";
+ /* Fill templating stuff */
+ $smarty= get_smarty();
+ $display= "";
- /* Prepare all variables for smarty */
- foreach($this->attributes as $s_attr){
- /* Set value*/
- $smarty->assign($s_attr,$this->$s_attr);
+ /* Prepare all variables for smarty */
+ foreach($this->attributes as $s_attr){
+ /* Set value*/
+ $smarty->assign($s_attr,$this->$s_attr);
- /* Set checkbox state*/
- if(empty($this->$s_attr)){
- $smarty->assign($s_attr."CHK","");
- }else{
- $smarty->assign($s_attr."CHK"," checked ");
- }
+ /* Set checkbox state*/
+ if(empty($this->$s_attr)){
+ $smarty->assign($s_attr."CHK","");
+ }else{
+ $smarty->assign($s_attr."CHK"," checked ");
+ }
- /* Prepare ACL settings*/
- $smarty->assign($s_attr."ACL",$this->getacl($s_attr));
- }
+ /* Prepare ACL settings*/
+ $smarty->assign($s_attr."ACL",$this->getacl($s_attr));
+ }
- /* Is accout enabled | are we editing from usermenu or admin menu
- All these tab management is done here
- */
+ /* Is accout enabled | are we editing from usermenu or admin menu
+ All these tab management is done here
+ */
- /* Working from Usermenu an the Account is currently disbled
+ /* Working from Usermenu an the Account is currently disbled
* this->parent : is only set if we are working in a list of tabs
* is_account : is only true if the needed objectClass is given
- */
+ */
if((!isset($this->parent))&&(!$this->is_account)){
/* We are currently editing this tab from usermenu, but this account is not enabled */
$smarty->assign("is_account",$this->is_account);
$display .= back_to_main();
/* Display our message to the user */
return $display;
-
- /* We are currently editing from group tabs, because
- * $this->parent is set
- * posixAccount is not set, so we are not in usertabs.
- */
+
+ /* We are currently editing from group tabs, because
+ * $this->parent is set
+ * posixAccount is not set, so we are not in usertabs.
+ */
}elseif((isset($this->parent))&&(!isset($this->parent->by_object['posixAccount']))){
$smarty->assign("is_account","true");
$this->is_group = true;
/* Change state if needed */
if (isset($_POST['modify_state'])){
- $this->is_account= !$this->is_account;
+ if(($this->acl_is_createable() && !$this->is_account) ||
+ ($this->acl_is_removeable() && $this->is_account)){
+ $this->is_account= !$this->is_account;
+ }
}
-
/* Group Dialog with enabled environment options */
if ($this->is_account){
$display= $this->show_enable_header(_("Remove environment extension"),
_("Environment extension enabled. You can disable it by clicking below."));
} else {
-
- /* Environment is disabled
- If theres is no posixAccount enabled, you won't be able to enable
- environment extensions
- */
+
+ /* Environment is disabled
+ If theres is no posixAccount enabled, you won't be able to enable
+ environment extensions
+ */
if((isset($this->parent->by_object['group']))||(isset($this->attrs['objectClass']))&&((in_array("posixAccount",$this->attrs['objectClass'])))){
// 4. There is a PosixAccount
$display= $this->show_enable_header(_("Add environment extension"),
$this->is_group = false;
- /* Do we need to flip is_account state? */
+ /* Change state if needed */
if (isset($_POST['modify_state'])){
- $this->is_account= !$this->is_account;
+ if(($this->acl_is_createable() && !$this->is_account) ||
+ ($this->acl_is_removeable() && $this->is_account)){
+ $this->is_account= !$this->is_account;
+ }
}
if(isset($this->parent)){
/* Account is Account : is_accounbt=true.
* Else we won't reach this.
*/
-
+
/* Prepare all variables for smarty */
foreach($this->attributes as $s_attr){
/* Set value*/
$smarty->assign($s_attr,$this->$s_attr);
-
+
/* Set checkbox state*/
if(empty($this->$s_attr)){
$smarty->assign($s_attr."CHK","");
}else{
$smarty->assign($s_attr."CHK"," checked ");
}
-
+
/* Prepare ACL settings*/
$smarty->assign($s_attr."ACL",$this->getacl($s_attr));
-
+
}
foreach(array("gotoHotplugDevice","gotoProfileFlagC","gotoProfileFlagL") as $s_attr){
}else{
$smarty->assign("useProfileCHK"," checked ");
}
-
-
+
+
$smarty->assign("gotoProfileACL", $this->getacl("gotoProfileServer").$this->getacl("gotoProfileQuota"));
/* HANDLE Profile Settings here
/* Save */
if(isset($_POST['KioskClose'])){
$this->newKioskProfiles = array_merge($this->newKioskProfiles,$this->dialog->save());
-
+
unset($this->dialog);
$this->dialog=NULL;
$this->is_dialog = false;
/* Reassign help class */
$_SESSION['current_class_for_help'] = get_class($this);
-
+
/* Open Management Dialog */
if(isset($_POST['KioskManagementDialog'])){
$this->dialog = new kioskManagementDialog($this->config,$this->dn,$this->newKioskProfiles);
$this->gotoLogonScripts[$tmp['LogonName']]=$tmp;
}
}
-
+
/* Dialog Quit without saving */
if(isset($_POST['LogonCancel'])){
$this->is_dialog= false;
unset($this->dialog);
$this->dialog= NULL;
}
-
+
/* Check Edit Del New Posts for a selected LogonScript */
if(isset($_POST['gotoLogonScriptNew'])||isset($_POST['gotoLogonScriptEdit'])||isset($_POST['gotoLogonScriptDel'])){
if((isset($_POST['gotoLogonScriptDel']))&&(isset($_POST['gotoLogonScript']))){
unset($this->gotoLogonScripts[$_POST['gotoLogonScript']]);
}
-
+
/* In this case we want to edit an existing entry, we open a new Dialog to allow editing.
* There must be an entry selected to perform edit request.
*/
$this->dialog = new logonManagementDialog($this->config,$this->dn,$is_entry);
}
}
-
+
/* Append List to smarty*/
$smarty->assign("gotoLogonScripts", $this->printOutLogonScripts());
$smarty->assign("gotoLogonScriptKeys",array_flip($this->printOutLogonScripts()));
* A user can select one of the given shares and a mount point
* and attach this combination to his setup.
*/
-
+
$smarty->assign("gotoShareSelections", $this->gotoShareSelections);
if(!is_array($this->gotoShareSelections)){
print $this->gotoShareSelections;
if((!isset($_POST['gotoShareMountPoint']))||(empty($_POST['gotoShareMountPoint']))||(preg_match("/[\|]/i",$_POST['gotoShareMountPoint']))){
print_red(_("You must specify a valid mount point."));
}elseif(!(
- preg_match("/^\//",$_POST['gotoShareMountPoint']) ||
- preg_match("/^~/",$_POST['gotoShareMountPoint']) ||
- preg_match("/^\$HOME/",$_POST['gotoShareMountPoint']) ||
- preg_match("/^.HOME/",$_POST['gotoShareMountPoint']) ||
- preg_match("/^\$USER/",$_POST['gotoShareMountPoint']) ||
- preg_match("/^.USER/",$_POST['gotoShareMountPoint']) ||
- preg_match("/^%/",$_POST['gotoShareMountPoint'])
- )
- ){
+ preg_match("/^\//",$_POST['gotoShareMountPoint']) ||
+ preg_match("/^~/",$_POST['gotoShareMountPoint']) ||
+ preg_match("/^\$HOME/",$_POST['gotoShareMountPoint']) ||
+ preg_match("/^.HOME/",$_POST['gotoShareMountPoint']) ||
+ preg_match("/^\$USER/",$_POST['gotoShareMountPoint']) ||
+ preg_match("/^.USER/",$_POST['gotoShareMountPoint']) ||
+ preg_match("/^%/",$_POST['gotoShareMountPoint'])
+ )
+ ){
print_red(_("You must specify a valid mount point."));
}else{
$a_share = $this->gotoAvailableShares[$_POST['gotoShareSelection']];
$divlistShares = new divSelectBox("gotoShares");
$divlistShares->SetHeight(100);
$tmp = $this->printOutAssignedShares();
-
+
foreach($tmp as $key => $value){
$img = "";
-
+
/* Check if entry starts with an ! */
if(preg_match("/^!/",$this->gotoShares[$key]['server'])){
/* If we are currently editing groups environment, skip those ! entries */
if($this->is_group) continue;
-
+
/* Create pwd reset images */
if($this->gotoShares[$key]['PwdHash'] != ""){
$img.= "<input type='image' name='gotoShareResetPwd_".base64_encode($key)." 'src='images/list_reset_password.png' alt='"._("Reset password hash")."'
$this->dialog= NULL;
$this->is_dialog = false;
}
-
+
/* Dialod saved */
if(isset($_POST['HotPlugSave'])){
$this->dialog->save_object();
}else{
$this->dialog->save_object();
$a_tmp = $this->dialog->save();
-
+
if(is_array($a_tmp)){
foreach($a_tmp as $name => $hotplug){
$this->gotoHotplugDevices[$name]= $hotplug;
$this->is_dialog = false;
}
}
-
+
$smarty->assign("gotoHotplugDevices",$this->printOutHotPlugDevices());
$smarty->assign("gotoHotplugDeviceKeys",array_flip($this->printOutHotPlugDevices()));
-
+
/* Printer Assignment will managed below
* A printer can be assigned in two different ways and two different types
* There are 2 types of users assigned to a printer : user and admin
* They only differ in the member attribute they will be assigned to. user: gotoUserPrinter admin: gotoadminPrinter
* The different types of assigning a user are : 1 assigning a user to a printer 2. assigning a group to a printer
*/
-
+
/* First handle Add Post. Open a dialog that allows us to select a printer or two */
if(isset($_POST['gotoPrinterAdd'])){
$this->is_dialog=true;
}
if(isset($_POST['PrinterCancel'])){
- $this->is_dialog=false;
- unset($this->dialog);
- $this->dialog=NULL;
+ $this->is_dialog=false;
+ unset($this->dialog);
+ $this->dialog=NULL;
}
if(isset($_POST['PrinterSave'])){
$this->dialog->save_object();
$tmp = $this->dialog->save();
$tmp2= $this->dialog->getPrinter(true);
-
+
foreach($tmp as $pname){
$this->gotoPrinter[$pname]=$tmp2[$pname];
$this->gotoPrinter[$pname]['mode']="user";
}
-
+
$this->is_dialog=false;
unset($this->dialog);
$this->dialog =NULL;
}
}
-
+
if((isset($_POST['gotoPrinterDel']))&&(isset($_POST['gotoPrinterSel']))&&(!empty($_POST['gotoPrinterSel']))){
$printer = $_POST['gotoPrinterSel'];
foreach($printer as $pname){
$smarty->assign("gotoPrinter",$this->printOutPrinterDevices());
$smarty->assign("gotoPrinterKeys",array_flip($this->printOutPrinterDevices()));
-
+
/* General behavior */
if((isset($this->dialog))&&($this->dialog!=NULL)&&(!empty($this->dialog))){
$this->dialog->save_object();
/* Get all Posted vars
* Setup checkboxes
*/
-
+
if(isset($_POST['iamposted'])){
if(isset($_POST['useProfile'])){
$this->useProfile = true;
{
/* Call common method to give check the hook */
$message= plugin::check();
-
+
if(preg_match("/[^0-9]/",$this->gotoProfileQuota)) {
$message[]=_("Please set a valid profile quota size.");
}
}else{
$this->gotoKioskProfile= array();
}
-
+
plugin::save();
$ldap= $this->config->get_ldap_link();
}
@unlink($file['tmp_name']);
}
-
+
/* Save already used objectClasses */
$ocs = $this->attrs['objectClass'];
unset($ocs['count']);
* 2.2 And each type has two modes, Admin (e.g. 'gotoUserAdminPrinter') and Normal
*/
$types = array( "gotoUserPrinter" => "AddUser",
- "gotoGroupPrinter" => "AddGroup",
- "gotoUserAdminPrinter" => "AddAdminUser",
- "gotoGroupAdminPrinter" => "AddAdminGroup");
+ "gotoGroupPrinter" => "AddGroup",
+ "gotoUserAdminPrinter" => "AddAdminUser",
+ "gotoGroupAdminPrinter" => "AddAdminGroup");
if($this->is_group){
$s_suffix = "Group";
foreach($this->gotoPrinter as $printer){
$printerObj = NULL;
$printerObj = new printtabs($this->config,$this->config->data['TABS']['PRINTTABS'],$printer['dn']);
-
+
if($printer['mode'] == "admin") {
$attribute = "goto".$s_suffix."AdminPrinter";
}else{
$attribute = "goto".$s_suffix."Printer";
}
-
+
$printerObj->by_object['printgeneric']->AddMember($types[$attribute],$this->dn);
$printerObj->by_object['printgeneric']->save();
}
-
+
/* Prepare HotPlug devices */
$this->attrs['gotoHotplugDevice'] = array();
foreach($this->gotoHotplugDevices as $name => $device){
$this->attrs['gotoLogonScript'] = array();
foreach($this->gotoLogonScripts as $name => $script){
$this->attrs['gotoLogonScript'][] = $script['LogonName']."|".
- $script['LogonOverload'].$script['LogonLast']."|".
- $script['LogonPriority']."|".
- base64_encode($script['LogonData'])."|".
- $script['LogonDescription'];
+ $script['LogonOverload'].$script['LogonLast']."|".
+ $script['LogonPriority']."|".
+ base64_encode($script['LogonData'])."|".
+ $script['LogonDescription'];
}
/* Prepare Shares */
if($this->gotoXResolution == "auto") $this->gotoXResolution ="";
$saveThis = array("gotoProfileQuota","gotoXResolution","gotoProfileServer","gotoKioskProfile","gosaDefaultPrinter");
-
+
foreach($saveThis as $tosave){
if(!empty($this->$tosave)){
$this->attrs[$tosave]=$this->$tosave;
$this->attrs[$tosave]=array();
}
}
-
+
/* Prepare Flags */
$this->attrs['gotoProfileFlags'] = array($this->gotoProfileFlagC.$this->gotoProfileFlagL);
if(empty($this->attrs['gotoProfileFlags'][0])){
$this->attrs['gotoProfileFlags']=array();
- }
+ }
if($this->useProfile == false){
$this->attrs['gotoProfileFlags'] = preg_replace("/C/i","",$this->attrs['gotoProfileFlags']);
$this->handle_post_events($mode);
}
-/* Generate ListBox frindly output for the defined shares
- * Possibly Add or remove an attribute here,
- */
+ /* Generate ListBox frindly output for the defined shares
+ * Possibly Add or remove an attribute here,
+ */
function printOutAssignedShares()
{
$a_return = array();
return($a_return);
}
-/* Generate ListBox frindly output for the definedhotplugs
- * Possibly Add or remove an attribute here,
- */
-function printOutHotPlugDevices()
+ /* Generate ListBox frindly output for the definedhotplugs
+ * Possibly Add or remove an attribute here,
+ */
+ function printOutHotPlugDevices()
{
$a_return= array();
if(is_array($this->gotoHotplugDevices)){
/* Return plugin informations for acl handling
- #FIXME these ACLs should work for groups too */
+#FIXME these ACLs should work for groups too */
function plInfo()
{
return (array("plShortName" => _("Environment"),
- "plDescription" => _("Environment settings"), // Description
- "plSelfModify" => TRUE,
- "plDepends" => array("user", "posixAccount"), // This plugin depends on
- "plPriority" => 2, // Position in tabs
- "plSection" => "personal", // This belongs to personal
- "plCategory" => array("users", "groups"), // Add to following categories
- "plOptions" => array("resolution_hook" => array("type" => "string",
- "description" => _("Command to extend the list of possible screen resolutions"))),
-
- "plProvidedAcls" => array(
-
- "gotoProfileFlagL" => _("Resolution changeable during session") ,
- "gotoProfileFlagC" => _("Cache profile localy") ,
-
- "gotoProfileQuota" => _("Profile quota") ,
- "gotoProfileServer" => _("Profile server") ,
-
- "gotoXResolution" => _("Resolution") ,
- "gotoKioskProfile" => _("Kiosk profile") ,
-
- "gosaDefaultPrinter" => _("Default printer") ,
- "gotoLogonScript" => _("Logon script") ,
- "gotoHotplugDevice" => _("Hotplug devices"),
- "gotoShare" => _("Shares"))
- ));
- }
+ "plDescription" => _("Environment settings"), // Description
+ "plSelfModify" => TRUE,
+ "plDepends" => array("user", "posixAccount"), // This plugin depends on
+ "plPriority" => 2, // Position in tabs
+ "plSection" => "personal", // This belongs to personal
+ "plCategory" => array("users", "groups"), // Add to following categories
+ "plOptions" => array("resolution_hook" => array("type" => "string",
+ "description" => _("Command to extend the list of possible screen resolutions"))),
+
+ "plProvidedAcls" => array(
+
+ "gotoProfileFlagL" => _("Resolution changeable during session") ,
+ "gotoProfileFlagC" => _("Cache profile localy") ,
+
+ "gotoProfileQuota" => _("Profile quota") ,
+ "gotoProfileServer" => _("Profile server") ,
+
+ "gotoXResolution" => _("Resolution") ,
+ "gotoKioskProfile" => _("Kiosk profile") ,
+
+ "gosaDefaultPrinter" => _("Default printer") ,
+ "gotoLogonScript" => _("Logon script") ,
+ "gotoHotplugDevice" => _("Hotplug devices"),
+ "gotoShare" => _("Shares"))
+ ));
+ }
}
// vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
index 57439cfbd963a5e5667b561bc0a897ee3710e4fd..37c2c6d63f6418069ec7cf7d938103727c34f654 100644 (file)
$_SESSION['edit']= TRUE;
}
- /* Adjust acl's to mode */
- if (isset($_SESSION['edit'])){
- $acl= get_permissions ($ui->dn, $ui->subtreeACL);
- $environment->acl= get_module_permission($acl, "gotoEnvironment", $ui->dn);
- } else {
- $acl= get_permissions ($ui->dn, $ui->subtreeACL);
- $editacl= get_module_permission($acl, "gotoEnvironment",$ui->dn);
- $environment->acl= "#none#";
- }
-
/* save changes to LDAP and disable edit mode */
if (isset($_POST['edit_finish'])){
} else {
$info= "<img alt=\"\" align=\"middle\" src=\"".get_template_path('images/openlock.png').
"\"> ".$ui->dn." ";
- if (isset($editacl) && $editacl != "#none#"){
+ # if (isset($editacl) && $editacl != "#none#"){
+ echo "FIxme, only display edit button if there is at least one attribute writeable";
$info.= "<img alt=\"\" align=\"middle\" src=\"".get_template_path('images/lamp.png').
"\"> "._("Click the 'Edit' button below to change informations in this dialog");
$display.= "<input type=submit name=\"edit\" value=\""._("Edit")."\">\n";
- }
+ # }
$display.= "<input type=\"hidden\" name=\"ignore\">\n";
}