1f206a5db00eb9d0654389d1bd4dc3ae0d5283e8
[platal.git] / htdocs / xnet.php
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
22 $GLOBALS['IS_XNET_SITE'] = true;
23
24 require_once dirname(__FILE__).'/../include/xnet.inc.php';
25
26 if (!($path = Env::v('n')) || substr($path, 0, 4) != 'Xnet') {
27 $platal = new Xnet('xnet', 'xnetgrp', 'xnetlists', 'xnetevents', 'geoloc', 'payment');
28 $platal->run();
29
30 exit;
31 }
32
33 /*** WIKI CODE ***/
34
35 require_once 'wiki.inc.php';
36
37 $n = wiki_pagename();
38 if (!$n) {
39 pl_redirect('');
40 }
41
42 new_skinned_page('core/wiki.tpl');
43 $perms = wiki_get_perms($n);
44
45 if ($p = Post::v('setrperms')) {
46 wiki_apply_perms('admin');
47 if (wiki_set_perms($n, $p, $perms[1])) {
48 $perms = wiki_get_perms($n);
49 $page->trig('Permissions mises à jour');
50 }
51 }
52
53 if ($p = Post::v('setwperms')) {
54 wiki_apply_perms('admin');
55 if (wiki_set_perms($n, $perms[0], $p)) {
56 $perms = wiki_get_perms($n);
57 $page->trig('Permissions mises à jour');
58 }
59 }
60
61 $wiki_cache = wiki_work_dir().'/cache_'.wiki_filename($n).'.tpl';
62 $cache_exists = file_exists($wiki_cache);
63
64 if (Env::v('action') || !$cache_exists) {
65 @unlink($wiki_cache);
66
67 // we leave pmwiki do whatever it wants and store everything
68 ob_start();
69 require_once($globals->spoolroot.'/wiki/pmwiki.php');
70
71 $wikiAll = ob_get_clean();
72 // the pmwiki skin we are using (almost empty) has these keywords:
73 $i = strpos($wikiAll, "<!--/HeaderText-->");
74 $j = strpos($wikiAll, "<!--/PageLeftFmt-->", $i);
75 }
76
77 if (Env::v('action')) {
78 $page->assign('xorg_extra_header', substr($wikiAll, 0, $i));
79 $wikiAll = substr($wikiAll, $j);
80 } else {
81 if (!$cache_exists) {
82 $wikiAll = substr($wikiAll, $j);
83 wiki_putfile($wiki_cache, $wikiAll);
84 } else {
85 $wikiAll = file_get_contents($wiki_cache);
86 }
87 }
88
89 switch (Env::v('action')) {
90 case '': case 'search':
91 wiki_apply_perms($perms[0]);
92 break;
93
94 case 'edit':
95 wiki_apply_perms($perms[1]);
96 break;
97
98 default:
99 wiki_apply_perms('admin');
100 break;
101 }
102
103 $page->assign('perms', $perms);
104 $page->assign('perms_opts', wiki_perms_options());
105
106 $page->assign('canedit', wiki_may_have_perms($perms[1]));
107 $page->assign('has_perms', wiki_may_have_perms('admin'));
108
109 $page->assign('wikipage', str_replace('.', '/', $n));
110 $page->assign('wikipage', str_replace('.', '/', $n));
111 if ($perms[1] == 'admin' && !Env::v('action')) {
112 $page->assign('pmwiki_cache', $wiki_cache);
113 } else {
114 $page->assign('pmwiki', $wikiAll);
115 $page->assign('text', true);
116 }
117
118 $page->addCssLink('wiki.css');
119 $page->addJsLink('wiki.js');
120
121 $page->useMenu();
122 $page->run();
123
124 ?>