]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/plugin/AppendText.php
Update WikiAdminSearchReplace plugin
[SourceForge/phpwiki.git] / lib / plugin / AppendText.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  * Append text to an existing page.
25  *
26  * @Author: Pascal Giard <evilynux@gmail.com>
27  *
28  * See http://sourceforge.net/mailarchive/message.php?msg_id=10141823
29  * why not to use "text" as parameter. Nasty mozilla bug with mult. radio rows.
30  *
31  * Todo: multiple pages. e.g. AppendText s=~[CategoryINtime~] page=<!plugin TitleSearch intime !>
32  */
33 class WikiPlugin_AppendText
34     extends WikiPlugin
35 {
36     function getDescription()
37     {
38         return _("Append text to any page in this wiki.");
39     }
40
41     function getDefaultArguments()
42     {
43         return array('page' => '[pagename]',
44             'pages' => false,
45             's' => '', // Text to append.
46             'before' => '', // Add before (ignores after if defined)
47             'after' => '', // Add after line beginning with this
48             'redirect' => false // Redirect to modified page
49         );
50     }
51
52     private function fallback($addtext, $oldtext, $notfound, &$message)
53     {
54         $message->pushContent(sprintf(_("ā€œ%sā€ not found"), $notfound) . ". " .
55             _("Appending at the end.") . "\n");
56         return $oldtext . "\n" . $addtext;
57     }
58
59     function run($dbi, $argstr, &$request, $basepage)
60     {
61
62         $args = $this->getArgs($argstr, $request);
63         if (!$args['pages'] or !$request->isPost()) {
64             return $this->work($args['page'], $args, $dbi, $request);
65         } else {
66             $html = HTML();
67             if ($args['page'] != $basepage)
68                 $html->pushContent("pages argument overrides page argument. ignored.", HTML::br());
69             foreach ($args['pages'] as $pagename) {
70                 $html->pushContent($this->work($pagename, $args, $dbi, $request));
71             }
72             return $html;
73         }
74     }
75
76     private function work($pagename, $args, $dbi, &$request)
77     {
78         if (empty($args['s'])) {
79             if ($request->isPost()) {
80                 if ($pagename != _("AppendText"))
81                     return HTML($request->redirect(WikiURL($pagename, false, 'absurl'), false));
82             }
83             return HTML();
84         }
85
86         $page = $dbi->getPage($pagename);
87         $message = HTML();
88
89         if (!$page->exists()) { // We might want to create it?
90             $message->pushContent(sprintf(_("Page could not be updated. %s doesn't exist!"),
91                 $pagename));
92             return $message;
93         }
94
95         $current = $page->getCurrentRevision();
96         $oldtext = $current->getPackedContent();
97         $text = $args['s'];
98
99         // If a "before" or "after" is specified but not found, we simply append text to the end.
100         if (!empty($args['before'])) {
101             $before = preg_quote($args['before'], "/");
102             // Insert before
103             $newtext = preg_match("/\n${before}/", $oldtext)
104                 ? preg_replace("/(\n${before})/",
105                     "\n" . preg_quote($text, "/") . "\\1",
106                     $oldtext)
107                 : $this->fallback($text, $oldtext, $args['before'], $message);
108         } elseif (!empty($args['after'])) {
109             // Insert after
110             $after = preg_quote($args['after'], "/");
111             $newtext = preg_match("/\n${after}/", $oldtext)
112                 ? preg_replace("/(\n${after})/",
113                     "\\1\n" . preg_quote($text, "/"),
114                     $oldtext)
115                 : $this->fallback($text, $oldtext, $args['after'], $message);
116         } else {
117             // Append at the end
118             $newtext = $oldtext .
119                 "\n" . $text;
120         }
121
122         require_once 'lib/loadsave.php';
123         $meta = $current->_data;
124         $meta['summary'] = sprintf(_("AppendText to %s"), $pagename);
125         if ($page->save($newtext, $current->getVersion() + 1, $meta)) {
126             $message->pushContent(HTML::p(array('class' => 'feedback'),
127                 _("Page successfully updated.")));
128         }
129
130         // AppendText has been called from the same page that got modified
131         // so we directly show the page.
132         if ($request->getArg($pagename) == $pagename) {
133             // TODO: Just invalidate the cache, if AppendText didn't
134             // change anything before.
135             //
136             return $request->redirect(WikiURL($pagename, false, 'absurl'), false);
137
138             // The user asked to be redirected to the modified page
139         } elseif ($args['redirect']) {
140             return $request->redirect(WikiURL($pagename, false, 'absurl'), false);
141
142         } else {
143             $link = HTML::em(WikiLink($pagename));
144             $message->pushContent(HTML::raw(sprintf(_("Go to %s."), $link->asXml())));
145         }
146
147         return $message;
148     }
149 }
150
151 // Local Variables:
152 // mode: php
153 // tab-width: 8
154 // c-basic-offset: 4
155 // c-hanging-comment-ender-p: nil
156 // indent-tabs-mode: nil
157 // End: