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
|
<?php // -*-php-*-
rcs_id('$Id: CreatePage.php,v 1.7 2004/09/06 10:22:15 rurban Exp $');
/**
Copyright 2004 $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
*/
/**
* This allows you to create a page geting the new pagename from a
* forms-based interface, and optionally with the initial content from
* some template, plus expansion of some variables via %%variable%% statements
* in the template.
*
* Put it <?plugin-form CreatePage ?> at some page, browse this page,
* enter the name of the page to create, then click the button.
*
* Usage: <?plugin-form CreatePage template=SomeTemplatePage vars="year=2004&name=None" ?>
* @authors: Dan Frankowski, Reini Urban
*/
class WikiPlugin_CreatePage
extends WikiPlugin
{
function getName() {
return _("CreatePage");
}
function getDescription() {
return _("Create a Wiki page by the provided name.");
}
function getVersion() {
return preg_replace("/[Revision: $]/", '',
"\$Revision: 1.7 $");
}
function getDefaultArguments() {
return array('s' => false,
'initial_content' => '',
'template' => false,
'vars' => false,
'overwrite' => false,
//'buttontext' => false,
//'method' => 'POST'
);
}
function run($dbi, $argstr, &$request, $basepage) {
extract($this->getArgs($argstr, $request));
if (!$s)
return '';
// Prevent spaces at the start and end of a page name
$s = trim($s);
$param = array('action' => 'edit');
if ($template and $dbi->isWikiPage($template)) {
$param['template'] = $template;
} elseif (!empty($initial_content)) {
// Warning! Potential URI overflow here on the GET redirect. Better use template.
$param['initial_content'] = $initial_content;
}
// If the initial_content is too large, pre-save the content in the page
// and redirect without that argument.
// URI length limit:
// http://www.w3.org/Protocols/rfc2616/rfc2616-sec3.html#sec3.2.1
$url = WikiURL($s, $param, 'absurl');
// FIXME: expand vars in templates here.
if (strlen($url) > 255
or (!empty($vars) and !empty($param['template']))
or preg_match('/%%\w+%%/', $initial_content)) // need variable expansion
{
unset($param['initial_content']);
$url = WikiURL($s, $param, 'absurl');
$page = $dbi->getPage($s);
$current = $page->getCurrentRevision();
$version = $current->getVersion();
if ($version and !$overwrite) {
return $this->error(fmt("%s already exists", WikiLink($s)));
} else {
$user = $request->getUser();
$meta = array('markup' => 2.0,
'author' => $user->getId());
if (!empty($param['template']) and !$initial_content) {
$tmplpage = $dbi->getPage($template);
$currenttmpl = $tmplpage->getCurrentRevision();
$initial_content = $currenttmpl->getPackedContent();
$meta['markup'] = $currenttmpl->_data['markup'];
}
$meta['summary'] = _("Created by CreatePage");
// expand variables in $initial_content
if (preg_match('/%%\w+%%/', $initial_content)) {
$var = array();
if (!empty($vars)) {
foreach (split("&",$vars) as $pair) {
list($key,$val) = split("=",$pair);
$var[$key] = $val;
}
}
if (empty($var['pagename']))
$var['pagename'] = $s;
if (empty($var['ctime']) and preg_match('/%%ctime%%/', $initial_content))
$var['ctime'] = $GLOBALS['WikiTheme']->formatDateTime(time());
if (empty($var['author']) and preg_match('/%%author%%/', $initial_content))
$var['author'] = $user->getId();
foreach ($var as $key => $val) {
$initial_content = preg_replace("/%%$key%%/",$val,$initial_content);
}
// need to destroy the template so that editpage doesn't overwrite it.
unset($param['template']);
$url = WikiURL($s, $param, 'absurl');
}
$page->save($initial_content, $version+1, $meta);
}
}
return HTML($request->redirect($url, true));
}
};
// $Log: CreatePage.php,v $
// Revision 1.7 2004/09/06 10:22:15 rurban
// oops, forgot global request
//
// Revision 1.6 2004/09/06 08:35:32 rurban
// support template variables (not yet working)
//
// Revision 1.5 2004/07/08 20:30:07 rurban
// plugin->run consistency: request as reference, added basepage.
// encountered strange bug in AllPages (and the test) which destroys ->_dbi
//
// Revision 1.4 2004/04/21 16:14:50 zorloc
// Prevent spaces at the start and end of a created page name -- submitted by Dan Frankowski (dfrankow).
//
// Revision 1.3 2004/03/24 19:41:04 rurban
// fixed the name
//
// Revision 1.2 2004/03/17 15:37:41 rurban
// properly support initial_content and template with URI length overflow workaround
//
// Revision 1.3 2004/03/16 16:25:05 dfrankow
// Support initial_content parameter
//
// Revision 1.2 2004/03/09 16:28:45 dfrankow
// Merge the RATING branch onto the main line
//
// Revision 1.1 2004/03/08 18:57:59 rurban
// Allow WikiForm overrides, such as method => POST, targetpage => [pagename]
// in the plugin definition.
// New simple CreatePage plugin by dfrankow.
//
// Revision 1.1.2.2 2004/02/23 21:22:29 dfrankow
// Add a little doc
//
// Revision 1.1.2.1 2004/02/21 15:29:19 dfrankow
// Allow a CreatePage edit box, as GUI syntactic sugar
//
// Revision 1.1.1.1 2004/01/29 14:30:28 dfrankow
// Right out of the 1.3.7 package
//
// Local Variables:
// mode: php
// tab-width: 8
// c-basic-offset: 4
// c-hanging-comment-ender-p: nil
// indent-tabs-mode: nil
// End:
?>
|