3 * Copyright (C) 2003-2004 Polytechnique.org
4 * http://opensource.polytechnique.org/
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 require_once 'Barrel/Page.php';
22 require_once 'Barrel/Options.php';
23 require_once 'diogenes/diogenes.flagset.inc.php';
26 /** This class describes a Diogenes Barrel.
30 /** The barrel's alias. */
33 /** The database table holding the menus */
36 /** The database table holding the pages */
39 /** The site's flags. */
42 /** The site's options. */
45 /** Cache of the homepage ID */
48 /** Handle to the spool */
51 /** If the barrel is running on a virtualhost. */
57 /** File containing the tree cache. */
60 /** Cache of the plugins */
63 /** File containing the plugin cache. */
64 var $pluginsCacheFile;
67 /** Construct a Diogenes Barrel.
71 function Diogenes_Barrel($alias)
76 // Retrieve site-wide info from database
77 $res = $globals->db
->query("select alias,vhost,flags from diogenes_site where alias='$alias'");
78 if (!list($this->alias
,$this->vhost
,$flags) = mysql_fetch_row($res)) {
81 mysql_free_result($res);
83 $this->table_menu
= "{$this->alias}_menu";
84 $this->table_page
= "{$this->alias}_page";
85 $this->treeCacheFile
= $globals->spoolroot
."/diogenes_c/". $this->alias
.".tree";
86 $this->pluginsCacheFile
= $globals->plugins
->cacheFile($this->alias
);
88 $this->flags
= new flagset($flags);
89 $this->options
= new Diogenes_Barrel_Options($this->alias
);
90 $this->spool
= new DiogenesSpool($this,$this->alias
);
96 /** Create a new Diogenes barrel. This creates the database, RCS and
97 * spool entries for the new barrel.
102 function create($alias, &$caller)
107 if (!preg_match("/^[a-zA-Z0-9_]+$/",$alias) or
108 in_array($alias, $globals->invalidaliases
))
110 $caller->info("Invalid barrel name!");
114 $res = $globals->db
->query("select alias from diogenes_site where alias='$alias'");
115 if (mysql_num_rows($res) > 0) {
116 $caller->info("Entry '{$alias}' already exists in table 'diogenes_site'!");
120 if (file_exists("{$globals->rcsroot}/$alias")) {
121 $caller->info("Directory '{$globals->rcsroot}/$alias' already exists!");
125 if (!is_dir($globals->rcsroot
) ||
!is_writable($globals->rcsroot
)) {
126 $caller->info("Directory '{$globals->rcsroot}' is not writable!");
131 $caller->log("barrel_create","$alias:*");
133 /* create DB entry */
134 $globals->db
->query("insert into diogenes_site set alias='$alias'");
136 $globals->db
->query("CREATE TABLE {$alias}_menu ("
137 . "MID int(10) unsigned NOT NULL auto_increment,"
138 . "MIDpere int(10) unsigned NOT NULL,"
139 . "ordre int(10) unsigned NOT NULL,"
140 . "title tinytext NOT NULL,"
141 . "link text NOT NULL,"
142 . "PID int(10) unsigned NOT NULL,"
143 . "PRIMARY KEY (MID)"
146 $globals->db
->query("CREATE TABLE {$alias}_page ("
147 . "PID int(10) unsigned NOT NULL auto_increment,"
148 . "parent INT( 10 ) UNSIGNED NOT NULL default '0',"
149 . "location tinytext NOT NULL,"
150 . "title tinytext NOT NULL,"
151 . "status tinyint(1) unsigned NOT NULL default '0',"
152 . "perms enum('public','auth','user','admin','forbidden') NOT NULL default 'public',"
153 . "wperms enum('public','auth','user','admin','forbidden') NOT NULL default 'admin',"
154 . "template varchar(255) NOT NULL,"
155 . "PRIMARY KEY (PID)"
158 /* set the barrel's title */
159 $opt = new Diogenes_Barrel_Options($alias);
160 $opt->updateOption('title',$alias);
162 /* create entry for the homepage */
163 $globals->db
->query("insert into {$alias}_page set location='temp'");
164 $homepage = mysql_insert_id();
165 $globals->db
->query("update {$alias}_page set location='',title='Home',perms='public' where PID='$homepage'");
167 /* create home page & copy CSS template */
168 $rcs = new $globals->rcs($caller,$alias,$_SESSION['session']->username
,true
);
169 $rcs->newdir("",$homepage);
170 $rcs->commit($homepage,$globals->htmlfile
,"");
171 $rcs->commit($homepage,$globals->cssfile
,
172 file_get_contents("{$globals->root}/{$globals->cssfile}") );
176 /** Destroy a Diogenes barrel. This removes the related database, RCS
182 function destroy($alias, &$caller) {
187 $caller->info("Empty alias supplied!");
192 $caller->log("barrel_delete","$alias:*");
194 system(escapeshellcmd("rm -rf ".escapeshellarg("{$globals->spoolroot}/$alias")));
195 system(escapeshellcmd("rm -rf ".escapeshellarg("{$globals->rcsroot}/$alias")));
196 system(escapeshellcmd("rm -f ".escapeshellarg("{$globals->spoolroot}/diogenes_c/$alias.tree")));
197 system(escapeshellcmd("rm -f ".escapeshellarg($globals->plugins
->cacheFile($alias))));
198 $globals->db
->query("drop table {$alias}_menu");
199 $globals->db
->query("drop table {$alias}_page");
200 $globals->db
->query("delete from diogenes_perm where alias='$alias'");
201 $globals->db
->query("delete from diogenes_site where alias='$alias'");
202 $globals->db
->query("delete from diogenes_option where barrel='$alias'");
203 $globals->db
->query("delete from diogenes_plugin where barrel='$alias'");
207 /** Return the location corresponding to a given page ID
211 function getLocation($PID)
213 return array_search($PID, $this->treeCache
);
218 /** Return all the barrel's pages.
225 $res = $globals->db
->query("select * from {$this->table_page}");
226 while ($props = mysql_fetch_assoc($res)) {
227 $bpages[$props['PID']] = new Diogenes_Barrel_Page($this, $props);
229 mysql_free_result($res);
234 /** Return the page ID matching a given directory location
238 function getPID($dir)
240 if (isset($this->treeCache
[$dir]))
241 return $this->treeCache
[$dir];
247 /** List the plugins that are active in a given context
251 function getPlugins($page = 0)
254 foreach ($this->pluginsCache
as $plug)
256 if ($plug['page'] == $page)
258 array_push($plugins, $plug);
265 /** Check whether the barrel has a given flag
269 function hasFlag($flag)
271 return $this->flags
->hasFlag($flag);
275 /** Compile the directory tree
277 function compileTree()
281 if (!$fp = fopen($this->treeCacheFile
, "w")) {
282 trigger_error("failed to open '{$this->treeCacheFile}' for writing", E_USER_ERROR
);
286 // load all the pages
287 $res = $globals->db
->query("select * from {$this->table_page}");
289 while ($props = mysql_fetch_assoc($res))
291 $tpage = new Diogenes_Barrel_Page($this, $props);
292 $tpages[$props['PID']] = $tpage;
293 if (!strlen($props['location']))
295 $homepage = $props['PID'];
299 // recursively build the tree, starting at the homepage
300 $str = $this->compilePageTree($tpages, $homepage, '');
306 /** Compile a single page
308 function compilePageTree(&$tpages, $PID, $ploc)
312 $cpage = $tpages[$PID];
313 $ploc = ($ploc ?
"$ploc/" : "") . $cpage->props
['location'];
316 $out = "$ploc\t$PID\t".$cpage->props
['parent']."\n";
319 $res = $globals->db
->query("select PID from {$this->table_page} where parent='$PID'");
320 while (list($child) = mysql_fetch_row($res))
322 $out .= $this->compilePageTree($tpages, $child, $ploc);
324 mysql_free_result($res);
329 /** Load all plugins for the specified page.
333 function loadPlugins(&$bpage)
337 $plugins = $this->getPlugins($bpage->props
['PID']);
340 foreach ($plugins as $plugentry)
342 $loaded[$plugentry['plugin']] =& $globals->plugins
->load($plugentry);
348 /** Read the compiled plugin cache
350 function readPlugins()
354 $this->pluginsCache
= $globals->plugins
->readCache($this->pluginsCacheFile
, $this->alias
);
358 /** Read the compiled directory tree
364 // if the tree cache does not exits, try to init it
365 if (!file_exists($this->treeCacheFile
)) {
366 $this->compileTree();
369 if (!$fp = fopen($this->treeCacheFile
, "r")) {
370 trigger_error("failed to open '{$this->treeCacheFile}' for reading", E_USER_ERROR
);
374 $locations = array();
375 while ($line = fgets($fp))
377 $line = substr($line, 0, -1);
378 $bits = explode("\t", $line);
379 list($loc, $pid, $parent) = $bits;
380 $locations[$loc] = $pid;
384 $this->treeCache
= $locations;