Merge xnet and xorg wiki code into the same file
[platal.git] / include / wiki / engine.php
CommitLineData
fce088c1 1<?php
2/***************************************************************************
3 * Copyright (C) 2003-2007 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
22require_once 'wiki.inc.php';
23
24$n = wiki_pagename();
25if (!$n) {
26 pl_redirect('');
27}
28
29new_skinned_page('core/wiki.tpl');
30$perms = wiki_get_perms($n);
31
32// Check user perms
33switch (Env::v('action')) {
34 case '': case 'search':
35 break;
36
37 case 'edit':
38 wiki_apply_perms($perms[1]);
39 break;
40
41 default:
42 wiki_apply_perms('admin');
43 break;
44}
45
46if ($p = Post::v('setrperms')) {
47 wiki_apply_perms('admin');
48 if (wiki_set_perms($n, $p, $perms[1])) {
49 $perms = wiki_get_perms($n);
50 $page->trig('Permissions mises à jour');
51 }
52}
53
54if ($p = Post::v('setwperms')) {
55 wiki_apply_perms('admin');
56 if (wiki_set_perms($n, $perms[0], $p)) {
57 $perms = wiki_get_perms($n);
58 $page->trig('Permissions mises à jour');
59 }
60}
61
62// Generate cache even if we don't have access rights
63$wiki_cache = wiki_work_dir().'/cache_'.wiki_filename($n).'.tpl';
64$cache_exists = file_exists($wiki_cache);
65
66if (Env::v('action') || !$cache_exists) {
67 @unlink($wiki_cache);
68
69 // we leave pmwiki do whatever it wants and store everything
70 ob_start();
71 require_once($globals->spoolroot.'/wiki/pmwiki.php');
72
73 $wikiAll = ob_get_clean();
74 // the pmwiki skin we are using (almost empty) has these keywords:
75 $i = strpos($wikiAll, "<!--/HeaderText-->");
76 $j = strpos($wikiAll, "<!--/PageLeftFmt-->", $i);
77}
78
79if (Env::v('action')) {
80 $page->assign('xorg_extra_header', substr($wikiAll, 0, $i));
81 $wikiAll = substr($wikiAll, $j);
82} else {
83 if (!$cache_exists) {
84 $wikiAll = substr($wikiAll, $j);
85 wiki_putfile($wiki_cache, $wikiAll);
86 } else {
87 $wikiAll = file_get_contents($wiki_cache);
88 }
89}
90
91// Check user perms
92wiki_apply_perms($perms[0]);
93
94$page->assign('perms', $perms);
95$page->assign('perms_opts', wiki_perms_options());
96
97$page->assign('canedit', wiki_may_have_perms($perms[1]));
98$page->assign('has_perms', wiki_may_have_perms('admin'));
99
100$page->assign('wikipage', str_replace('.', '/', $n));
101if ($perms[1] == 'admin' && !Env::v('action')) {
102 $page->assign('pmwiki_cache', $wiki_cache);
103} else {
104 $page->assign('pmwiki', $wikiAll);
105 $page->assign('text', true);
106}
107$page->addCssLink('wiki.css');
108$page->addJsLink('wiki.js');
109
110$page->run();
111
112?>