Nix is useful, reinstate it !
[platal.git] / htdocs / wiki.php
1 <?php
2 /***************************************************************************
3 * Copyright (C) 2003-2006 Polytechnique.org *
4 * http://opensource.polytechnique.org/ *
5 * *
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. *
10 * *
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. *
15 * *
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., *
19 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *
20 ***************************************************************************/
21
22 require_once 'xorg.inc.php';
23 require_once 'wiki.inc.php';
24
25 require_once dirname(__FILE__).'/../classes/Platal.php';
26 require_once dirname(__FILE__).'/../classes/PLModule.php';
27
28 $n = wiki_pagename();
29 if (!$n) {
30 pl_redirect('');
31 }
32
33 new_skinned_page('wiki.tpl');
34 $perms = wiki_get_perms($n);
35
36 switch (Env::get('action')) {
37 case '':
38 wiki_apply_perms($perms[0]);
39 break;
40
41 case 'edit':
42 wiki_apply_perms($perms[1]);
43 break;
44
45 default:
46 wiki_apply_perms('admin');
47 break;
48 }
49
50 if ($p = Post::get('setrperms')) {
51 wiki_apply_perms('admin');
52 if (wiki_set_perms($n, $p, $perms[1])) {
53 $perms = wiki_get_perms($n);
54 $page->trig('Permissions mises à jour');
55 }
56 }
57
58 if ($p = Post::get('setwperms')) {
59 wiki_apply_perms('admin');
60 if (wiki_set_perms($n, $perms[0], $p)) {
61 $perms = wiki_get_perms($n);
62 $page->trig('Permissions mises à jour');
63 }
64 }
65
66 $wiki_cache = wiki_work_dir().'/cache_'.$n.'.tpl';
67 $cache_exists = file_exists($wiki_cache);
68
69 if (Env::get('action') || !$cache_exists) {
70 @unlink($wiki_cache);
71
72 // we leave pmwiki do whatever it wants and store everything
73 ob_start();
74 require_once($globals->spoolroot.'/wiki/pmwiki.php');
75
76 $wikiAll = ob_get_clean();
77 // the pmwiki skin we are using (almost empty) has these keywords:
78 $i = strpos($wikiAll, "<!--/HeaderText-->");
79 $j = strpos($wikiAll, "<!--/PageLeftFmt-->", $i);
80 }
81
82 if (Env::get('action')) {
83 $page->assign('xorg_extra_header', substr($wikiAll, 0, $i));
84 $wikiAll = substr($wikiAll, $j);
85 } else {
86 if (!$cache_exists) {
87 $wikiAll = substr($wikiAll, $j);
88 wiki_putfile($wiki_cache, $wikiAll);
89 } else {
90 $wikiAll = file_get_contents($wiki_cache);
91 }
92 }
93
94 $page->assign('perms', $perms);
95 $page->assign('perms_opts',
96 array('public' => 'Public', 'logged' => 'Connecté',
97 'mdp' => 'Authentifié', 'admin' => 'Admin'));
98
99 $page->assign('canedit', wiki_may_have_perms($perms[1]));
100 $page->assign('has_perms', wiki_may_have_perms('admin'));
101
102 $page->assign('wikipage', str_replace('.', '/', $n));
103 $page->assign('pmwiki', $wikiAll);
104
105 $page->addCssLink('css/wiki.css');
106 $page->addJsLink('javascript/wiki.js');
107
108 $page->run();
109 ?>