]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - wikiadmin.php
Fix deprecated sys_plugins_path
[SourceForge/phpwiki.git] / wikiadmin.php
1 <?php // -*-php-*- $Id$
2 /*
3  * Copyright (C) 2009 Alain Peyrat, Alcatel-Lucent
4  * Copyright (C) 2009-2010 Marc-Etienne Vargenau, Alcatel-Lucent
5  *
6  * This file is part of PhpWiki.
7  *
8  * PhpWiki is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * PhpWiki is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with PhpWiki; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
21 */
22
23 /*
24  * Standard Alcatel-Lucent disclaimer for contributing to open source
25  *
26  * "The Wiki Configurator ("Contribution") has not been tested and/or
27  * validated for release as or in products, combinations with products or
28  * other commercial use. Any use of the Contribution is entirely made at
29  * the user's own responsibility and the user can not rely on any features,
30  * functionalities or performances Alcatel-Lucent has attributed to the
31  * Contribution.
32  *
33  * THE CONTRIBUTION BY ALCATEL-LUCENT IS PROVIDED AS IS, WITHOUT WARRANTY
34  * OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
35  * WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, COMPLIANCE,
36  * NON-INTERFERENCE AND/OR INTERWORKING WITH THE SOFTWARE TO WHICH THE
37  * CONTRIBUTION HAS BEEN MADE, TITLE AND NON-INFRINGEMENT. IN NO EVENT SHALL
38  * ALCATEL-LUCENT BE LIABLE FOR ANY DAMAGES OR OTHER LIABLITY, WHETHER IN
39  * CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
40  * CONTRIBUTION OR THE USE OR OTHER DEALINGS IN THE CONTRIBUTION, WHETHER
41  * TOGETHER WITH THE SOFTWARE TO WHICH THE CONTRIBUTION RELATES OR ON A STAND
42  * ALONE BASIS."
43  */
44
45 require_once dirname(__FILE__)."/../../env.inc.php";
46 require_once $gfcommon.'include/pre.php';
47 require_once forge_get_config('plugins_path').'wiki/common/WikiPlugin.class.php';
48 require_once forge_get_config('plugins_path').'wiki/common/wikiconfig.class.php';
49
50 // the header that displays for the user portion of the plugin
51 function wiki_Project_Header($params) {
52     global $id;
53     $params['toptab']='wiki';
54     $params['group']=$id;
55     /*
56         Show horizontal links
57     */
58     site_project_header($params);
59 }
60
61 $user = session_get_user(); // get the session user
62
63 if (!$user || !is_object($user) || $user->isError() || !$user->isActive()) {
64     exit_error("Invalid User", "Cannot Process your request for this user.");
65 }
66
67 $type = getStringFromRequest('type');
68 $id = getIntFromRequest('id');
69 $pluginname = 'wiki';
70 $config = getArrayFromRequest('config');
71
72 if (!$type) {
73     exit_error("Cannot Process your request","No TYPE specified");
74 } elseif (!$id) {
75     exit_error("Cannot Process your request","No ID specified");
76 } else {
77     if ($type == 'admin_post') {
78         $group = group_get_object($id);
79         if ( !$group) {
80             exit_error(_('Invalid Project'), _('Inexistent Project'));
81         }
82         if (!($group->usesPlugin($pluginname))) { //check if the group has the wiki plugin active
83             exit_error("Error", "First activate the $pluginname plugin through the Project's Admin Interface");
84         }
85         $userperm = $group->getPermission($user); //we'll check if the user belongs to the group
86         if ( !$userperm->IsMember()) {
87             exit_error(_('Access Denied'), _('You are not a member of this project'));
88         }
89         //only project admin can access here
90         if ( $userperm->isAdmin() ) {
91
92             $wc = new WikiConfig($id);
93
94             foreach ($wc->getWikiConfigNames() as $c) {
95                 if ( ! array_key_exists($c, $config)) {
96                     $config[$c] = 0;
97                 }
98             }
99  
100             foreach ($config as $config_name => $config_value) {
101                 $r = $wc->updateWikiConfig($config_name, $config_value);
102                 if (!$r) exit_error("Error", $wc->getErrorMessage());
103             }
104
105             $type = 'admin';
106             $feedback = _('Configuration saved.');
107         } else {
108             exit_error(_('Access Denied'), _('You are not a project Admin'));
109         }
110     }
111     if ($type == 'admin') {
112         $group = group_get_object($id);
113         if ( !$group) {
114             exit_error(_('Invalid Project'), _('Inexistent Project'));
115         }
116         if ( ! ($group->usesPlugin ($pluginname)) ) {//check if the group has the plugin active
117             exit_error("Error", "First activate the $pluginname plugin through the Project's Admin Interface");
118         }
119         $userperm = $group->getPermission($user); //we'll check if the user belongs to the group
120         if ( !$userperm->IsMember()) {
121             exit_error(_('Access Denied'), _('You are not a member of this project'));
122         }
123         //only project admin can access here
124         if ( $userperm->isAdmin() ) {
125             wiki_Project_Header(array('title'=>"Configuration for your project's Wiki",'pagename'=>"$pluginname",'sectionvals'=>array(group_getname($id))));
126
127             $wc = new WikiConfig($id);
128
129             print "\n<h1>"._("Configuration for your project's Wiki")."</h1>\n";
130
131             print "<table>\n";
132             print "<tr>\n";
133             print "<td>\n";
134             print "<fieldset>\n";
135             print "<legend>"._('Wiki Configuration')."</legend>\n";
136             print "<form action=\"/plugins/wiki/wikiadmin.php\" method=\"post\">\n";
137             print "<input type=\"hidden\" name=\"id\" value=\"$id\" />\n";
138             print "<input type=\"hidden\" name=\"pluginname\" value=\"$pluginname\" />\n";
139             print "<input type=\"hidden\" name=\"type\" value=\"admin_post\" />\n";
140
141             print '<table class="listing">';
142             print "\n<thead>\n<tr>\n<th>".
143                     _("Parameter").
144                     "</th>" .
145                     "<th>".
146                     _("Value").
147                     "</th>\n" .
148                     "</tr>\n</thead>\n";
149
150             foreach ($wc->getWikiConfigNames() as $c) {
151                 $checked = $wc->getWikiConfig($c) ? ' checked="checked"' : '';
152                 $desc = $wc->getWikiConfigDescription($c);
153
154                 print "<tr>\n<td>$desc</td>\n" .
155                       "<td align=\"center\">" .
156                       "<input type=\"checkbox\" name=\"config[$c]\" value=\"1\"$checked /></td>\n" .
157                       "</tr>\n";
158             }
159             print "</table>\n";
160             print "<p align=\"right\"><input type=\"submit\" value=\"" .
161                             _("Save Configuration").
162                             "\" /></p>";
163             print "</form>\n";
164             print "</fieldset>\n";
165             print "</td>\n";
166             print "</tr>\n";
167             print "</table>\n";
168         } else {
169             exit_error(_('Access Denied'), _('You are not a project Admin'));
170         }
171     }
172 }
173
174 site_project_footer(array());
175
176 ?>