fa25a7d5f9d745e2cc1554ed501231e3dc45cc42
[gnucomo.git] / src / gcm_daemon / classes / configuration.class.php
1 <?php
2 /**************************************************************************
3 **  (c) Copyright 2002, Andromeda Technology & Automation
4 ** This is free software; you can redistribute it and/or modify it under the
5 ** terms of the GNU General Public License, see the file COPYING.
6 ***************************************************************************/
7
8
9 /*
10 ///////////////////////////////////////////////////////////////////////////
11 //  NAME           : configuration
12 //  BASECLASS      :
13 //  MEMBERS        : 
14 //  OPERATORS      :
15 //  METHODS        : read
16 //
17 //  DESCRIPTION    : Handle configurational parameters for the application.
18 //                   Many applications need some permanently stored configurational
19 //                   data. The information is usually stored in two places: A system-
20 //                   wide configuration file and a configuration file per user.
21 //                   The content of the configuration file is in XML format.
22 //                   The configuration base class takes care of finding the configuration
23 //                   files, e.g. in /etc/app.conf or in /usr/loca/etc/app.conf
24 //                   The config files are parsed with the gnome XML parser and a
25 //                   framework is provided to find configurational items.
26 //
27 //  RELATIONS      : 
28 //  SEE ALSO       :
29 //  LAST MODIFIED  : Jul 29, 2002
30 ///////////////////////////////////////////////////////////////////////////
31 */
32
33
34 class configuration
35 {
36    var   $system, $user;
37
38    function configuration()
39    {
40       $system = false;
41       $user   = false;
42    }
43
44    function xmlFindTag($node, $tag)
45    {
46       $element = false;
47       $i = 0;
48
49       while (!$element && $i < sizeof($node))
50       {
51          if ($node[$i]->type == XML_ELEMENT_NODE && $node[$i]->tagname == $tag)
52          {
53             $element = $node[$i];
54          }
55          $i++;
56       }
57
58       return $element;
59    }
60
61    function read($app_name)
62    {
63       $filename = "/etc/" . $app_name . ".conf";
64       $this->system = xmldocfile($filename);
65
66       if (!$this->system)
67       {
68          $filename = "/usr/local/etc/" . $app_name . ".conf";
69          $this->system = xmldocfile($filename);
70       }
71
72       if ($this->system)
73       {
74          $root = $this->system->root();
75
76          if ($root->tagname != $app_name)
77          {
78             print("Configuration error: Wrong configuration file.<br>");
79             $this->system = false;
80          }
81       }
82       else
83       {
84          print("Configuration error: Configuration file for $app_name not found.<br>");
85       }
86    }
87
88    function find_parameter($section, $parameter)
89    {
90       $param_value = "";
91
92       if ($this->system)
93       {
94          $root_node = $this->system->root();
95          $section_node = $this->xmlFindTag($root_node->children(), $section);
96          if ($section_node)
97          {
98             $param_node = $this->xmlFindTag($section_node->children(), $parameter);
99             if ($param_node)
100             {
101                $param_node = $param_node->children();
102             }
103             if ($param_node && $param_node[0]->type == XML_TEXT_NODE)
104             {
105                $param_value = $param_node[0]->content;
106             }
107          }
108       }
109
110       return $param_value;
111    }
112 }
113
114 ?>