ILIAS  eassessment Revision 61809
 All Data Structures Namespaces Files Functions Variables Groups Pages
class.ilSoapInstallationInfoXMLWriter.php
Go to the documentation of this file.
1 <?php
2 
3 /* Copyright (c) 1998-2009 ILIAS open source, Extended GPL, see docs/LICENSE */
4 
5 
6 include_once "./Services/Xml/classes/class.ilXmlWriter.php";
7 
9 {
10  private $exportAdvMDDefs = false;
11  private $exportUDFDefs = false;
12 
21  {
23  }
24 
30  public function setSettings($settings) {
31  $this->settings = $settings;
32  }
33 
34  public function start()
35  {
36  $this->__buildHeader();
37  $this->__buildInstallationInfo();
38  $this->xmlStartTag("Clients");
39  }
40 
41  public function addClient ($client) {
42  if (is_object($client))
43  {
44  $this->__buildClient ($client);
45  }
46 
47  }
48 
49  public function end() {
50  $this->xmlEndTag("Clients");
51  $this->__buildFooter();
52 
53  }
54 
55  public function getXML()
56  {
57  return $this->xmlDumpMem(FALSE);
58  }
59 
60  private function __buildHeader()
61  {
62  // we have to build the http path here since this request is client independent!
63  $httpPath = ilSoapFunctions::buildHTTPPath();
64  $this->xmlSetDtdDef("<!DOCTYPE Installation PUBLIC \"-//ILIAS//DTD Group//EN\" \"".$httpPath ."/xml/ilias_client_3_10.dtd\">");
65  $this->xmlSetGenCmt("Export of ILIAS clients.");
66  $this->xmlHeader();
67  $this->xmlStartTag("Installation",
68  array (
69  "version" => ILIAS_VERSION,
70  "path" => $httpPath,
71  ));
72 
73  return true;
74  }
75 
76  private function __buildFooter()
77  {
78  $this->xmlEndTag('Installation');
79  }
80 
86  private function __buildClient($setting) {
87  $auth_modes = ilAuthUtils::_getActiveAuthModes();
88  $auth_mode_default = strtoupper(ilAuthUtils::_getAuthModeName(array_shift($auth_modes)));
89  $auth_mode_names = array();
90  foreach ($auth_modes as $mode) {
91  $auth_mode_names[] = strtoupper(ilAuthUtils::_getAuthModeName($mode));
92  }
93  // determine skins/styles
94  $skin_styles = array();
95  $styleDefinition = new ilStyleDefinition();
96  include_once("./Services/Style/classes/class.ilObjStyleSettings.php");
97  $templates = $styleDefinition->getAllTemplates();
98 
99  if (is_array($templates))
100  {
101 
102  foreach($templates as $template)
103  {
104  // get styles information of template
105  $styleDef =& new ilStyleDefinition($template["id"]);
106  $styleDef->startParsing();
107  $styles = $styleDef->getStyles();
108 
109  foreach($styles as $style)
110  {
111  if (!ilObjStyleSettings::_lookupActivatedStyle($template["id"],$style["id"]))
112  {
113  continue;
114  }
115  $skin_styles [] = $template["id"].":".$style["id"];
116  }
117  }
118  }
119  // timezones
120  include_once('Services/Calendar/classes/class.ilTimeZone.php');
121 
122 
123  $this->xmlStartTag("Client",
124  array(
125  "inst_id" => $setting->get("inst_id"),
126  "id" => $setting->clientid,
127  "enabled" => $setting->access == 1 ? "TRUE" : "FALSE",
128  "default_lang" => $setting->language,
129 
130  ));
131  $this->xmlElement ("Name", null, $setting->get("inst_name"));
132  $this->xmlElement ("Description", null, $setting->description);
133  $this->xmlElement ("Institution", null, $setting->get("inst_institution"));
134  $this->xmlStartTag("Responsible");
135  $this->xmlElement ("Firstname", null, $setting->get("admin_firstname"));
136  $this->xmlElement ("Lastname", null, $setting->get("admin_lastname"));
137  $this->xmlElement ("Title", null, $setting->get("admin_title"));
138  $this->xmlElement ("Institution", null, $setting->get("admin_institution"));
139  $this->xmlElement ("Position", null, $setting->get("admin_position"));
140  $this->xmlElement ("Email", null, $setting->get("admin_email"));
141  $this->xmlElement ("Street ", null, $setting->get("admin_street"));
142  $this->xmlElement ("ZipCode ", null, $setting->get("admin_zipcode"));
143  $this->xmlElement ("City", null, $setting->get("admin_city"));
144  $this->xmlElement ("Country", null, $setting->get("admin_country"));
145  $this->xmlElement ("Phone", null, $setting->get("admin_phone"));
146  $this->xmlEndTag("Responsible");
147  $this->xmlStartTag("Settings");
148  $this->xmlElement("Setting", array("key" => "error_recipient"), $setting->get("error_recipient"));
149  $this->xmlElement("Setting", array("key" => "feedback_recipient"), $setting->get("feedback_recipient"));
150  $this->xmlElement("Setting", array("key" => "session_expiration"), $setting->session);
151  $this->xmlElement("Setting", array("key" => "soap_enabled"), $setting->get("soap_user_administration"));
152  $this->xmlElement("Setting", array("key" => "authentication_methods"), join(",", $auth_mode_names));
153  $this->xmlElement("Setting", array("key" => "authentication_default_method"), $auth_mode_default);
154  $this->xmlElement("Setting", array("key" => "skins"), join(",", $skin_styles));
155  $this->xmlElement("Setting", array("key" => "default_skin"), $setting->default_skin_style);
156  $this->xmlElement("Setting", array("key" => "default_timezone"), ilTimeZone::_getDefaultTimeZone());
157  $this->xmlElement("Setting", array("key" => "default_hits_per_page"), $setting->default_hits_per_page);
158  $this->xmlElement("Setting", array("key" => "default_show_users_online"), $setting->default_show_users_online);
159  $this->xmlEndTag("Settings");
160 
161  if ($this->exportAdvMDDefs)
162  {
163  // create advanced meta data record xml
164  include_once 'Services/AdvancedMetaData/classes/class.ilAdvancedMDRecord.php';
165  include_once 'Services/AdvancedMetaData/classes/class.ilAdvancedMDRecordXMLWriter.php';
166 
167  $record_ids = array();
169 
170  foreach($record_types as $type) {
172  foreach ($records as $record){
173  $record_ids [] = $record->getRecordId();
174  }
175  }
176  $record_ids = array_unique($record_ids);
177  $this->xmlStartTag('AdvancedMetaDataRecords');
178 
179  if (count($record_ids) > 0)
180  {
181  foreach($record_ids as $record_id)
182  {
183  $record_obj = ilAdvancedMDRecord::_getInstanceByrecordId($record_id);
184  $record_obj->toXML($this);
185  }
186  }
187  $this->xmlEndTag('AdvancedMetaDataRecords');
188  }
189 
190  if ($this->exportUDFDefs)
191  {
192  // create user defined fields record xml
193  include_once ("./Services/User/classes/class.ilUserDefinedFields.php");
194  $udf_data = & ilUserDefinedFields::_newInstance();
195  $udf_data->addToXML($this);
196  }
197 
198 
199  $this->xmlEndTag("Client");
200  }
201 
202  private function __buildInstallationInfo()
203  {
204  $this->xmlStartTag("Settings");
205  $this->xmlElement("Setting", array("key" => "default_client"), $GLOBALS['ilIliasIniFile']->readVariable("clients","default"));
206  $this->xmlElement("Setting", array("key" => "post_max_size"), ilSoapAdministration::return_bytes(ini_get("post_max_size")));
207  $this->xmlElement("Setting", array("key" => "upload_max_filesize"), ilSoapAdministration::return_bytes(ini_get("upload_max_filesize")));
208  $this->xmlEndTag("Settings");
209  }
210 
216  public function setExportAdvancedMetaDataDefinitions ($value) {
217  $this->exportAdvMDDefs = $value ? true : false;
218  }
219 
220 
226  public function setExportUDFDefinitions ($value)
227  {
228  $this->exportUDFDefs = $value ? true: false;
229  }
230 
231 }
232 
233 ?>