XResolutions= array( "640x480" => "640x480", "800x600" => "800x600", "1024x768" => "1024x768", "1152x864" => "1152x864", "1280x1024" => "1280x1024", "1400x1050" => "1400x1050", "1600x1200" => "1600x1200"); if($this->config->get_cfg_value("resolutions") != ""){ $file = $this->config->get_cfg_value("resolutions"); if(is_readable($file)){ $str = file_get_contents($file); $lines = split("\n",$str); foreach($lines as $line){ $line = trim($line); if(!empty($line)){ $this->XResolutions[$line]=$line; } } //natcasesort($this->gotoXResolutions); }else{ msg_dialog::display(_("Configuration error"), msgPool::cannotReadFile($file), WARNING_DIALOG); } } /* Get list of available xdrivers */ foreach($this->getListOfXDrivers() as $xdriver) { $this->XDrivers[$xdriver] = $xdriver; } if (isset($this->attrs['gosaGroupObjects'])) { array_unshift($this->XDrivers, "["._("manual/auto")."]"); } else { array_unshift($this->XDrivers, "["._("unknown")."]"); } $this->XColordepths= array( "8" => "8 " ._("bit"), "15" => "15 "._("bit"), "16" => "16 "._("bit"), "24" => "24 "._("bit")); foreach(array ("btc9000", "chicony", "compaq", "dell", "dell101", "everex", "flexpro", "geniuscomfy", "hp", "itouch", "jp106", "logicordless", "logiinetnav", "logiinternet", "macintosh", "microsoft", "microsoftpro", "omnikey101", "pc101", "pc102", "pc104", "pc105", "rapidaccess", "rapidaccess2", "winbook") as $type){ $this->XKbModels[$type] = $type; } $this->MouseTypes= array("auto" => "auto", "explorerps/2" => "explorerps/2", "ImPS/2" => "ImPS/2", "PS/2" => "PS/2", "Microsoft" => "Microsoft", "Logitech" => "Logitech",); $this->MousePorts= array("/dev/input/mice" => "/dev/input/mice", "/dev/mouse" => "/dev/mouse", "/dev/psaux" => "/dev/psaux", "/dev/ttyS0" => "/dev/ttyS0", "/dev/ttyS1" => "/dev/ttyS1",); /* Additional values will be extracted from CONFIG_DIR./keyboardLayouts */ $this->XKbLayouts = array("de"=> "de","en" =>"en", "es" => "es", "us" =>"us", "fr" => "fr"); $this->XKbVariants= array ("nodeadkeys"=>"nodeadkeys", "basic"=>"basic"); /* try to read additional keyboard layouts */ if(file_exists(CONFIG_DIR."/keyboardLayouts")){ if(is_readable(CONFIG_DIR."/keyboardLayouts")){ $str = file_get_contents(CONFIG_DIR."/keyboardLayouts"); $tmp = split("\n",$str); foreach($tmp as $entry){ if((!empty($entry)) && (!preg_match("/^#/",$entry))){ $entry = trim($entry); $tmp2 = split ("\:",$entry); $la = trim($tmp2[0]); // What would be saved to ldap $da = trim($tmp2[1]); // This wis displayed in the listbox $this->XKbLayouts [ $la] = $da; } } } } $this->orig_dn= $this->dn; /* Load phone hardware list */ $tmp = get_sub_list("(objectClass=goFonHardware)","",array(get_ou("phoneRDN")), $this->config->current['BASE'],array("cn","description"), GL_NO_ACL_CHECK); foreach($tmp as $attrs){ $cn= $attrs['cn'][0]; $description= ""; if (isset($attrs['description'])){ $description= " - ".$attrs['description'][0]; } $this->hardware_list[$cn]= "$cn$description"; } $this->hardware_list["automatic"]= _("automatic"); ksort($this->hardware_list); /* These departments may contain objects that have goFonHardware set. */ $deps_a = array( get_people_ou(), get_ou("ogroupRDN"), get_ou("serverRDN"), get_ou("terminalRDN"), get_ou("workstationRDN"), get_ou("printerRDN"), get_ou("componentRDN"), get_ou("phoneRDN")); $tmp = get_sub_list("(goFonHardware=*)","",$deps_a,$this->config->current['BASE'], array('cn','dn','goFonHardware'),GL_NO_ACL_CHECK); foreach($tmp as $attrs){ $cn = $attrs['goFonHardware'][0]; if(isset($this->hardware_list[$cn])){ $this->used_hardware[$cn]= $cn; } } if(preg_match("/\+/",$this->gotoXHsync)){ $this->AutoSync = true; $this->gotoXHsync = preg_replace("/\+/","-",$this->gotoXHsync); $this->gotoXVsync = preg_replace("/\+/","-",$this->gotoXVsync); } if (isset($this->attrs['gotoXHsync']) && isset($this->attrs['gotoXVsync'])) { if(!empty($this->attrs['gotoXHsync'][0]) && !empty($this->attrs['gotoXVsync'][0])) { $this->InheritXYSync = FALSE; } } else { if($this->dn == "new") { $this->InheritXYSync = FALSE; } } /* Workaround to fill in inherited values if we've specified an objectclass */ $SelectedSystemType = session::get("SelectedSystemType"); if (isset($SelectedSystemType['ogroup']) && $SelectedSystemType['ogroup'] != 'none'){ $this->XDrivers=array('default' => _("inherited")); $this->XResolutions= array('default' => _("inherited")); $this->XColordepths= array('default' => _("inherited")); $this->XKbModels= array('default' => _("inherited")); $this->XKbLayouts= array('default' => _("inherited")); $this->XKbVariants= array('default' => _("inherited")); $this->MouseTypes= array('default' => _("inherited")); $this->MousePorts= array('default' => _("inherited")); $this->member_of_ogroup = TRUE; } } function execute() { /* Call parent execute */ plugin::execute(); /* Load hardware list */ $this->loadHardwareList(); if(preg_match("/\+/",$this->gotoXHsync)){ $this->AutoSync = true; $this->gotoXHsync = preg_replace("/\+/","-",$this->gotoXHsync); $this->gotoXVsync = preg_replace("/\+/","-",$this->gotoXVsync); } if($this->is_account && !$this->view_logged){ $this->view_logged = TRUE; new log("view","workstation/".get_class($this),$this->dn); } /* Do we need to flip is_account state? */ if (isset($_POST['modify_state'])){ $this->is_account= !$this->is_account; } /* Do we need to flip is_account state? */ if(isset($_POST['modify_state'])){ if($this->is_account && $this->acl_is_removeable()){ $this->is_account= FALSE; }elseif(!$this->is_account && $this->acl_is_createable()){ $this->is_account= TRUE; } } /* Show main page */ $smarty= get_smarty(); /* Assign ACLs */ $tmp = $this->plInfo(); foreach($tmp['plProvidedAcls'] as $name => $translated){ $smarty->assign($name."ACL",$this->getacl($name)); } $smarty->assign("member_of_ogroup", $this->member_of_ogroup); /* Arrays */ foreach(array("XDrivers", "XResolutions", "XColordepths", "XKbModels", "XKbVariants", "MouseTypes", "MousePorts") as $val){ $smarty->assign("$val", $this->$val); } $smarty->assign("XKbLayouts" ,$this->XKbLayouts); $smarty->assign("XKbLayoutKeys" ,array_flip($this->XKbLayouts)); $smarty->assign("xdmcpservers", $this->config->data['SERVERS']['TERMINAL']); $smarty->assign("nfsservers", $this->config->data['SERVERS']['NFS']); $smarty->assign("nfsservers", $this->config->data['SERVERS']['NFS']); /* Variables - select */ foreach(array( "gotoXDriver", "gotoXResolution", "gotoXColordepth", "gotoXKbModel", "gotoXKbLayout","gotoScannerEnable", "gotoXKbVariant", "gotoXMouseType", "gotoXMouseport") as $val){ $smarty->assign($val."_select", $this->$val); } /* Variables */ foreach(array("gotoXHsync", "gotoXVsync") as $val){ $smarty->assign($val, $this->$val); } $smarty->assign("staticAddress", ""); /* Checkboxes */ foreach(array("gotoScannerEnable") as $val){ if ($this->$val == TRUE) { $smarty->assign("$val", "checked"); } else { $smarty->assign("$val", ""); } } /* Phone stuff */ $smarty->assign ("goFonHardware", $this->goFonHardware); $perms = ""; if(!$this->acl_is_writeable("goFonHardware")){ $perms = " disabled "; } $hl= "\n"; $smarty->assign ("hardware_list", $hl); $smarty->assign ("gotoXMonitor", $this->gotoXMonitor); if($this->AutoSync){ $smarty->assign("AutoSyncCHK"," checked "); $smarty->assign("hiddenState"," disabled "); }else{ $smarty->assign("AutoSyncCHK"," "); $smarty->assign("hiddenState",""); } if($this->InheritXYSync && !isset($this->parent->by_object['ogroup'])) { $smarty->assign("InheritXYSync", " checked "); $smarty->assign("hiddenState", " disabled "); $smarty->assign("AutoSynchiddenState", " disabled "); } else { $smarty->assign("InheritXYSync", ""); $smarty->assign("AutoSynchiddenState", ""); } /* Show main page */ return($smarty->fetch (get_template_path('workstationService.tpl',TRUE,dirname(__FILE__)))); } function remove_from_parent() { /* Cancel if there's nothing to do here */ if ((!$this->acl_is_removeable())){ return; } /* Remove and write to LDAP */ plugin::remove_from_parent(); $ldap = $this->config->get_ldap_link(); $ldap->cd($this->dn); $this->cleanup(); $ldap->modify($this->attrs); $this->handle_post_events("remove"); new log("remove","workstation/".get_class($this),$this->dn); } /* Save data to object */ function save_object() { plugin::save_object(); if((isset($_POST['workservicePosted'])) && $this->acl_is_writeable("AutoSync")) { if(isset($_POST['AutoSync'])){ $this->AutoSync = true; }else{ $this->AutoSync = false; } } if(isset($_POST['workservicePosted'])) { if(isset($_POST['InheritXYSync'])) { $this->InheritXYSync = TRUE; }else { $this->InheritXYSync = FALSE; } } } /* Check supplied data */ function check() { /* Call common method to give check the hook */ $message= plugin::check(); /* Default entries can use blank hsync/vsync entries */ if ($this->dn != "" && $this->cn != "default" && $this->cn != "wdefault"){ /* But only if no auto sync is enabled... */ if (!$this->AutoSync && !$this->InheritXYSync){ $vsync_empty = FALSE; $hsync_empty = FALSE; /* Check vsync for correct usage */ $val= preg_replace ("/\s/", "", $this->gotoXVsync); if($this->acl_is_writeable("gotoXVsync")){ if(empty($val)){ $vsync_empty = TRUE; }elseif (!preg_match ("/^\d+(\.\d+)?([-]\d+(\.\d+)?)?$/", $val)){ $message[]= msgPool::invalid(_("VSync")); } else{ list($v1,$v2)= preg_split ("/[-+]/", $val); if ($v2 != ""){ if ($v1 > $v2){ $message[]= msgPool::invalid(_("VSync")); } } } } /* Check hsync for correct usage */ $val= preg_replace ("/\s/", "", $this->gotoXHsync); if($this->acl_is_writeable("gotoXHsync")){ if(empty($val)){ $hsync_empty = TRUE; }elseif (!preg_match ("/^\d+(\.\d+)?([-]\d+(\.\d+)?)?$/", $val)){ $message[]= msgPool::invalid(_("HSync")); } else{ list($v1,$v2)= preg_split ("/[-+]/", $val); if ($v2 != ""){ if ($v1 > $v2){ $message[]= msgPool::invalid(_("HSync")); } } } } /* Decide weither show empty value errors, if this is not an object group it * will always be shown... */ $show_errors = TRUE; if ($vsync_empty || $hsync_empty) { if (isset($this->attrs['gosaGroupObjects'])) { /* ... but an object group can contain empty values if both values are empty */ if ($vsync_empty != $hsync_empty) { $show_errors = TRUE; } else { $show_errors = FALSE; } } if ($show_errors && $vsync_empty) { $message[]= msgPool::required(_("VSync")); } if ($show_errors && $hsync_empty) { $message[] = msgPool::required(_("HSync")); } } } } return ($message); } /* Save to LDAP */ function save() { /* remove objectclass GOhard if this is an ogroup tab */ if(isset($this->parent->by_object['ogroup'])){ $this->objectclasses = array(); } plugin::save(); /* Strip out 'default' values */ foreach(array( "gotoXDriver", "gotoXResolution", "gotoXColordepth", "gotoXKbModel", "gotoXKbLayout", "gotoXDriver", "gotoXKbVariant", "gotoXMouseType", "gotoXMouseport") as $val){ if ($this->attrs[$val] == "default"){ $this->attrs[$val]= array(); } } if($this->InheritXYSync) { $this->attrs['gotoXHsync'] = array(); $this->attrs['gotoXVsync'] = array(); } elseif ($this->AutoSync) { $this->attrs['gotoXHsync'] = "30+55"; $this->attrs['gotoXVsync'] = "50+70"; } /* Write back to ldap */ $ldap= $this->config->get_ldap_link(); $ldap->cd($this->dn); $this->cleanup(); $ldap->modify ($this->attrs); new log("modify","workstation/".get_class($this),$this->dn,array_keys($this->attrs),$ldap->get_error()); if (!$ldap->success()){ msg_dialog::display(_("LDAP error"), msgPool::ldaperror($ldap->get_error(), $this->dn, LDAP_MOD, get_class())); } $this->handle_post_events("modify"); /* Send goto reload event to gosaSupportDaemon */ if(count($this->attrs)){ $this->send_goto_reload(); } } function loadHardwareList() { $ldap= $this->config->get_ldap_link(); if ($this->ogroup) { $ldap->cat($this->ogroup); } else { $ldap->cd($this->config->current['BASE']); $ldap->search("(&(objectClass=gotoWorkstationTemplate)(member=".LDAP::prepare4filter($this->dn)."))"); } if ($ldap->count() >= 1){ $this->member_of_ogroup = TRUE; $attrs= $ldap->fetch(); $map= array("gotoXResolution", "gotoXColordepth", "gotoXKbModel", "gotoXKbLayout", "gotoXKbVariant", "gotoXMouseType", "gotoXMouseport", "gotoXDriver", "gotoXVsync", "gotoXHsync" ); foreach ($map as $name){ if (!isset($attrs[$name][0])){ continue; } switch ($name){ case 'gotoXHsync': if (empty($this->$name) && !empty($attrs[$name])) { $this->$name = $attrs[$name][0]; $this->InheritXYSync = TRUE; } break; case 'gotoXVsync': if (empty($this->$name) && !empty($attrs[$name])) { $this->$name = $attrs[$name][0]; $this->InheritXYSync = TRUE; } break; case 'gotoXDriver': $ogroup_driver = $attrs['gotoXDriver'][0]; if (in_array($ogroup_driver, $this->XDrivers) && (empty($this->attrs['gotoXDriver']))) { $this->XDrivers = array('default' => _("inherited").' ['.$attrs[$name][0].']' ) + $this->XDrivers; } break; case 'gotoXResolution': $this->XResolutions= array('default' => _("inherited").' ['.$attrs[$name][0].']' ) + $this->XResolutions; break; case 'gotoXColordepth': $this->XColordepths= array('default' => _("inherited").' ['.$attrs[$name][0].' '._('Bit').']') + $this->XColordepths; break; case 'gotoXKbModel': $this->XKbModels= array('default' => _("inherited").' ['.$attrs[$name][0].']') + $this->XKbModels; break; case 'gotoXKbLayout': $this->XKbLayouts= array('default' => _("inherited").' ['.$attrs[$name][0].']' ) + $this->XKbLayouts; break; case 'gotoXKbVariant': $this->XKbVariants= array('default' => _("inherited").' ['.$attrs[$name][0].']' ) + $this->XKbVariants; break; case 'gotoXMouseType': $this->MouseTypes= array('default' => _("inherited").' ['.$attrs[$name][0].']' ) + $this->MouseTypes; break; case 'gotoXMouseport': $this->MousePorts= array('default' => _("inherited").' ['.$attrs[$name][0].']' ) + $this->MousePorts; break; } } } } function getListOfXDrivers() { /* Generate a list of xdrivers from CONFIG_DIR./xdrivers */ $drivers = array(); if (file_exists(CONFIG_DIR.'/xdrivers')){ $xdrivers = file (CONFIG_DIR.'/xdrivers'); foreach ($xdrivers as $line){ if (!preg_match ("/^#/", $line)){ $drivers[]= trim($line); } } } else { $drivers = array("ati", "atimisc", "chips", "cirrus", "cyrix", "fbdev", "fglrx", "i128", "i740", "i810", "intel", "imstt", "mga", "neomagic", "newport", "nsc", "nv", "nvidia", "r128", "radeon", "rendition", "s3", "s3virge", "savage", "siliconmotion", "sis", "tdfx", "tga", "trident", "tseng", "vboxvideo", "vesa", "vga", "vmware"); } return($drivers); } /* Return plugin informations for acl handling */ static function plInfo() { return (array( "plShortName" => _("Service"), "plDescription" => _("Workstation service"), "plSelfModify" => FALSE, "plDepends" => array(), "plPriority" => 10, "plSection" => array("administration"), "plCategory" => array("workstation","ogroups"), "plProvidedAcls"=> array( "gotoXMonitor" => _("Monitor"), "gotoXDriver" => _("Gfx driver"), "gotoXResolution" => _("Gfx resolution"), "gotoXColordepth" => _("Gfx color depth"), "gotoXHsync" => _("HSync"), "gotoXVsync" => _("VSync"), "AutoSync" => _("Use DDC"), "gotoScannerEnable" => _("Scanner enabled"), "gotoXKbModel" => _("Keyboard model"), "gotoXKbLayout" => _("Keyboard layout"), "gotoXKbVariant" => _("Keyboard variant"), "gotoXMouseType" => _("Mouse type"), "gotoXMouseport" => _("Mouse port"), "goFonHardware" => _("Telephone hardware")) )); } /*! \brief Send goto_reload event to support daemon */ function send_goto_reload() { if(count($this->attrs) && class_available("DaemonEvent")){ $events = DaemonEvent::get_event_types(SYSTEM_EVENT | HIDDEN_EVENT); $o_queue = new gosaSupportDaemon(); if(isset($events['TRIGGERED']['DaemonEvent_goto_reload'])){ $evt = $events['TRIGGERED']['DaemonEvent_goto_reload']; $macs = array(); /* Get list of macAddresses */ if(isset($this->parent->by_object['ogroup'])){ /* If we are an object group, add all member macs */ $p = $this->parent->by_object['ogroup']; foreach($p->memberList as $dn => $obj){ if(preg_match("/".preg_quote(get_ou("systemIncomingRDN"), '/')."/",$dn)) continue; if(isset($p->objcache[$dn]['macAddress']) && !empty($p->objcache[$dn]['macAddress'])){ $macs[] = $p->objcache[$dn]['macAddress']; } } }elseif(isset($this->parent->by_object['workgeneric']->netConfigDNS->macAddress)){ /* We are a workstation. Add current mac. */ $mac = $this->parent->by_object['workgeneric']->netConfigDNS->macAddress; if(!empty($mac) && !preg_match("/".preg_quote(get_ou("systemIncomingRDN"), '/')."/",$this->orig_dn)){ $macs[] = $mac; } } /* Trigger event for all member objects */ if(count($macs)){ $tmp = new $evt['CLASS_NAME']($this->config); $tmp->set_type(TRIGGERED_EVENT); $target = $o_queue->get_host().":".$o_queue->get_port(); $tmp->add_targets(array($target)); $tmp->set_macs($macs); if(!$o_queue->append($tmp,TRUE)){ msg_dialog::display(_("Service infrastructure"),msgPool::siError($o_queue->get_error()),ERROR_DIALOG); } } } } } function PrepareForCopyPaste($source) { plugin::PrepareForCopyPaste($source); if(preg_match("/\+/",$this->gotoXHsync)){ $this->AutoSync = true; $this->gotoXHsync = preg_replace("/\+/","-",$this->gotoXHsync); $this->gotoXVsync = preg_replace("/\+/","-",$this->gotoXVsync); } } } // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler: ?>