more on perms
[platal.git] / htdocs / wiki.php
CommitLineData
bf98922c 1<?php
2/***************************************************************************
50a40a33 3 * Copyright (C) 2003-2006 Polytechnique.org *
bf98922c 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
801fcad8 22require_once 'xorg.inc.php';
f6ce9a88 23require_once 'wiki.inc.php';
2907d401 24
f6ce9a88 25require_once dirname(__FILE__).'/../classes/Platal.php';
26require_once dirname(__FILE__).'/../classes/PLModule.php';
27
28$n = wiki_pagename();
29if (!$n) {
30 pl_redirect('');
d575b75c 31}
bf98922c 32
f6ce9a88 33new_skinned_page('wiki.tpl');
99ce0a25 34$perms = get_perms($n);
f6ce9a88 35
36switch (Env::get('action')) {
37 case '':
99ce0a25 38 wiki_apply_perms($perms[0]);
f6ce9a88 39 break;
06a5e65b 40
f6ce9a88 41 case 'edit':
99ce0a25 42 wiki_apply_perms($perms[1]);
f6ce9a88 43 break;
6bc327ec 44
f6ce9a88 45 default:
46 wiki_apply_perms('admin');
47 break;
48}
6bc327ec 49
f6ce9a88 50$wiki_cache = wiki_work_dir().'/cache_'.$n.'.tpl';
51$cache_exists = file_exists($wiki_cache);
6bc327ec 52
f6ce9a88 53if (Env::get('action') || !$cache_exists) {
54 @unlink($wiki_cache);
55
56 // we leave pmwiki do whatever it wants and store everything
57 ob_start();
58 require_once($globals->spoolroot.'/wiki/pmwiki.php');
6bc327ec 59
f6ce9a88 60 $wikiAll = ob_get_clean();
61 // the pmwiki skin we are using (almost empty) has these keywords:
62 $i = strpos($wikiAll, "<!--/HeaderText-->");
63 $j = strpos($wikiAll, "<!--/PageLeftFmt-->", $i);
64}
65
66if (Env::get('action')) {
67 $page->assign('xorg_extra_header', substr($wikiAll, 0, $i));
68 $wikiAll = substr($wikiAll, $j);
69} else {
70 if (!$cache_exists) {
71 $f = fopen($wiki_cache, 'w');
d1b62b48 72 $wikiAll = substr($wikiAll, $j);
f6ce9a88 73 fputs($f, $wikiAll);
74 fclose($f);
6bc327ec 75 } else {
f6ce9a88 76 $wikiAll = file_get_contents($wiki_cache);
6bc327ec 77 }
33ec1a8f 78}
79
99ce0a25 80$page->assign('perms', $perms);
81$page->assign('perms_opts',
82 array('public' => 'Public', 'logged' => 'Connecté',
83 'mdp' => 'Authentifié', 'admin' => 'Admin'));
84
85$page->assign('canedit', wiki_may_have_perms($perms[1]));
86$page->assign('has_perms', wiki_may_have_perms('admin'));
87
f6ce9a88 88$page->assign('wikipage', str_replace('.', '/', $n));
99ce0a25 89$page->assign('pmwiki', $wikiAll);
90
52165f0e 91$page->addCssLink('css/wiki.css');
bf98922c 92
93$page->run();
94?>