]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/plugin/CreatePage.php
function run: @return mixed
[SourceForge/phpwiki.git] / lib / plugin / CreatePage.php
1 <?php
2
3 /**
4  * Copyright 2004,2007 $ThePhpWikiProgrammingTeam
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 along
19  * with PhpWiki; if not, write to the Free Software Foundation, Inc.,
20  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21  */
22
23 /**
24  * This allows you to create a page getting the new pagename from a
25  * forms-based interface, and optionally with the initial content from
26  * some template, plus expansion of some variables via %%variable%% statements
27  * in the template.
28  *
29  * Put <?plugin-form CreatePage ?> at some page, browse this page,
30  * enter the name of the page to create, then click the button.
31  *
32  * Usage: <?plugin-form CreatePage template=SomeTemplatePage vars="year=2004&name=None" ?>
33  * @authors: Dan Frankowski, Reini Urban
34  */
35
36 include_once 'lib/plugin/Template.php';
37
38 class WikiPlugin_CreatePage
39     extends WikiPlugin_Template
40 {
41     function getDescription()
42     {
43         return _("Create a wiki page by the provided name.");
44     }
45
46     function getDefaultArguments()
47     {
48         return array('s' => false,
49             'initial_content' => '',
50             'template' => false,
51             'vars' => false,
52             'overwrite' => false,
53             'verify' => false, // true or a pagename
54             //'buttontext' => false,
55             //'method'     => 'POST'
56         );
57     }
58
59     /**
60      * @param WikiDB $dbi
61      * @param string $argstr
62      * @param WikiRequest $request
63      * @param string $basepage
64      * @return mixed
65      */
66     function run($dbi, $argstr, &$request, $basepage)
67     {
68         extract($this->getArgs($argstr, $request));
69         // Prevent spaces at the start and end of a page name
70         $s = trim($s);
71         if (!$s) {
72             return $this->error(_("Cannot create page with empty name!"));
73         }
74         // TODO: javascript warning if "/" or SUBPAGE_SEPARATOR in s
75         if ($verify) {
76             $head = _("CreatePage failed");
77             if ($dbi->isWikiPage($verify)) {
78                 $msg = _("Do you really want to create the page ā€œ%sā€?");
79             } else {
80                 $msg = _("Do you really want to create the page ā€œ%sā€?");
81             }
82             if (isSubPage($s)) {
83                 if (!$dbi->isWikiPage(subPageSlice(0))) {
84                     $msg .= "\n" . _("The new page you want to create will be a subpage.")
85                         . "\n" . _("Subpages cannot be created unless the parent page exists.");
86                     return alert($head, $msg);
87                 } else {
88                     $msg .= "\n" . _("The new page you want to create will be a subpage.");
89                 }
90             }
91             if (strpos($s, " \/")) {
92                 $msg .= "\n" . _("Subpages with ending space are not allowed as directory name on Windows.");
93                 return alert($head, $msg);
94             }
95         }
96
97         $param = array('action' => 'edit');
98         if ($template and $dbi->isWikiPage($template)) {
99             $param['template'] = $template;
100         } elseif (!empty($initial_content)) {
101             // Warning! Potential URI overflow here on the GET redirect. Better use template.
102             $param['initial_content'] = $initial_content;
103         }
104         // If the initial_content is too large, pre-save the content in the page
105         // and redirect without that argument.
106         // URI length limit:
107         //   http://www.w3.org/Protocols/rfc2616/rfc2616-sec3.html#sec3.2.1
108         $url = WikiURL($s, $param, 'absurl');
109         // FIXME: expand vars in templates here.
110         if (strlen($url) > 255
111             or ($param['template'])
112             or preg_match('/%%\w+%%/', $initial_content)
113         ) // need variable expansion
114         {
115             unset($param['initial_content']);
116             $url = WikiURL($s, $param, 'absurl');
117             $page = $dbi->getPage($s);
118             $current = $page->getCurrentRevision();
119             $version = $current->getVersion();
120             // overwrite empty (deleted) pages
121             if ($version and !$current->hasDefaultContents() and !$overwrite) {
122                 return $this->error(fmt("%s already exists", WikiLink($s)));
123             } else {
124                 $user = $request->getUser();
125                 $meta = array('author' => $user->getId());
126                 if (!empty($param['template']) and !$initial_content) {
127                     $tmplpage = $dbi->getPage($template);
128                     $currenttmpl = $tmplpage->getCurrentRevision();
129                     $initial_content = $currenttmpl->getPackedContent();
130
131                     if (preg_match('/<noinclude>.+<\/noinclude>/s', $initial_content)) {
132                         $initial_content = preg_replace("/<noinclude>.+?<\/noinclude>/s", "",
133                             $initial_content);
134                     }
135                 }
136                 $meta['summary'] = _("Created by CreatePage");
137                 $content = $this->doVariableExpansion($initial_content, $vars, $s, $request);
138
139                 if ($content !== $initial_content) {
140                     // need to destroy the template so that editpage doesn't overwrite it.
141                     unset($param['template']);
142                     $url = WikiURL($s, $param, 'absurl');
143                 }
144
145                 $page->save($content, $version + 1, $meta);
146             }
147         }
148         return HTML($request->redirect($url, true));
149     }
150 }
151
152 // Local Variables:
153 // mode: php
154 // tab-width: 8
155 // c-basic-offset: 4
156 // c-hanging-comment-ender-p: nil
157 // indent-tabs-mode: nil
158 // End: