1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208
|
<?php // -*-php-*-
rcs_id('$Id: EditMetaData.php,v 1.11 2004/06/01 16:48:11 rurban Exp $');
/**
Copyright 1999, 2000, 2001, 2002 $ThePhpWikiProgrammingTeam
This file is part of PhpWiki.
PhpWiki is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
PhpWiki is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with PhpWiki; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
/**
* Plugin EditMetaData
*
* This plugin shows the current page-level metadata and gives an
* entry box for adding a new field or changing an existing one. (A
* field can be deleted by specifying a blank value.) Certain fields,
* such as 'hits' cannot be changed.
*
* If there is a reason to do so, I will add support for revision-
* level metadata as well.
*
* Access by restricted to ADMIN_USER
*
* Written by MichaelVanDam, to test out some ideas about
* PagePermissions and PageTypes.
*
* Array support added by ReiniUrban.
*/
class WikiPlugin_EditMetaData
extends WikiPlugin
{
function getName () {
return _("EditMetaData");
}
function getDescription () {
return sprintf(_("Edit metadata for %s"), '[pagename]');
}
function getVersion() {
return preg_replace("/[Revision: $]/", '',
"\$Revision: 1.11 $");
}
// Arguments:
//
// page - page whose metadata is editted
function getDefaultArguments() {
return array('page' => '[pagename]'
);
}
function run($dbi, $argstr, &$request, $basepage) {
$this->_args = $this->getArgs($argstr, $request);
extract($this->_args);
if (!$page)
return '';
$hidden_pagemeta = array ('_cached_html');
$readonly_pagemeta = array ('hits');
$dbi = $request->getDbh();
$p = $dbi->getPage($page);
$pagemeta = $p->getMetaData();
// Look at arguments to see if submit was entered. If so,
// process this request before displaying.
//
if ($request->isPost() and $request->_user->isAdmin() and $request->getArg('metaedit')) {
$metafield = trim($request->getArg('metafield'));
$metavalue = trim($request->getArg('metavalue'));
if (!in_array($metafield, $readonly_pagemeta)) {
if (preg_match('/^(.*?)\[(.*?)\]$/', $metafield, $matches)) {
list(,$array_field, $array_key) = $matches;
$array_value = $pagemeta[$array_field];
$array_value[$array_key] = $metavalue;
$p->set($array_field, $array_value);
} else {
$p->set($metafield, $metavalue);
}
}
$dbi->touch();
$url = $request->getURLtoSelf(false,
array('metaedit','metafield','metavalue'));
$request->redirect($url);
// The rest of the output will not be seen due to the
// redirect.
}
// Now we show the meta data and provide entry box for new data.
$html = HTML();
$html->pushContent(fmt("Existing page-level metadata for %s:",
$page));
$dl = HTML::dl();
foreach ($pagemeta as $key => $val) {
if (is_string($val) and (substr($val,0,2) == 'a:')) {
$dl->pushContent(HTML::dt("\n$key => $val\n",
$dl1 = HTML::dl()));
foreach (unserialize($val) as $akey => $aval) {
$dl1->pushContent(HTML::dt(HTML::strong("$key" . '['
. $akey
. "] => $aval\n"))
);
}
$dl->pushContent($dl1);
} elseif (is_array($val)) {
$dl->pushContent(HTML::dt("\n$key:\n", $dl1 = HTML::dl()));
foreach ($val as $akey => $aval) {
$dl1->pushContent(HTML::dt(HTML::strong("$key" . '['
. $akey
. "] => $aval\n"))
);
}
$dl->pushContent($dl1);
} elseif (in_array($key,$hidden_pagemeta)) {
;
} elseif (in_array($key,$readonly_pagemeta)) {
$dl->pushContent(HTML::dt(array('style' => 'background: #dddddd'),
"$key => $val\n"));
} else {
$dl->pushContent(HTML::dt(HTML::strong("$key => $val\n")));
}
}
$html->pushContent($dl);
if ($request->_user->isAdmin()) {
$action = $request->getPostURL();
$hiddenfield = HiddenInputs($request->getArgs());
$instructions = _("Add or change a page-level metadata 'key=>value' pair. Note that you can remove a key by leaving the value-box empty.");
$keyfield = HTML::input(array('name' => 'metafield'), '');
$valfield = HTML::input(array('name' => 'metavalue'), '');
$button = Button('submit:metaedit', _("Submit"), false);
$form = HTML::form(array('action' => $action,
'method' => 'post',
'accept-charset' => $GLOBALS['charset']),
$hiddenfield,
$instructions, HTML::br(),
$keyfield, ' => ', $valfield,
HTML::raw(' '), $button
);
$html->pushContent(HTML::br(), $form);
} else {
$html->pushContent(HTML::em(_("Requires WikiAdmin privileges to edit.")));
}
return $html;
}
};
// $Log: EditMetaData.php,v $
// Revision 1.11 2004/06/01 16:48:11 rurban
// dbi->touch
// security fix to allow post admin only.
//
// Revision 1.10 2004/04/18 01:11:52 rurban
// more numeric pagename fixes.
// fixed action=upload with merge conflict warnings.
// charset changed from constant to global (dynamic utf-8 switching)
//
// Revision 1.9 2004/02/17 12:11:36 rurban
// added missing 4th basepage arg at plugin->run() to almost all plugins. This caused no harm so far, because it was silently dropped on normal usage. However on plugin internal ->run invocations it failed. (InterWikiSearch, IncludeSiteMap, ...)
//
// Revision 1.8 2003/11/27 17:05:41 carstenklapp
// Update: Omit page cache object ('_cached_html') from metadata display.
//
// Revision 1.7 2003/11/22 17:41:42 carstenklapp
// Minor internal change: Removed redundant call to gettext within
// fmt(). (locale make: EditMetaData.php:113: warning: keyword nested in
// keyword arg)
//
// Revision 1.6 2003/02/26 01:56:52 dairiki
// Tuning/fixing of POST action URLs and hidden inputs.
//
// Revision 1.5 2003/02/21 04:17:13 dairiki
// Delete now irrelevant comment.
//
// Revision 1.4 2003/01/18 21:41:01 carstenklapp
// Code cleanup:
// Reformatting & tabs to spaces;
// Added copyleft, getVersion, getDescription, rcs_id.
//
// For emacs users
// Local Variables:
// mode: php
// tab-width: 8
// c-basic-offset: 4
// c-hanging-comment-ender-p: nil
// indent-tabs-mode: nil
// End:
?>
|