]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/plugin/PageDump.php
Remove history
[SourceForge/phpwiki.git] / lib / plugin / PageDump.php
1 <?php // -*-php-*-
2 rcs_id('$Id$');
3 /**
4  * PhpWikiPlugin for PhpWiki developers to generate single page dumps
5  * for checking into cvs, or for users or the admin to produce a
6  * downloadable page dump of a single page.
7  * 
8  * This plugin will also be useful to (semi-)automatically sync pages
9  * directly between two wikis. First the LoadFile function of
10  * PhpWikiAdministration needs to be updated to handle URLs again, and
11  * add loading capability from InterWiki addresses.
12
13  * Multiple revisions in one file handled by format=backup
14  *
15  * TODO: What about comments/summary field? quoted-printable?
16  *
17  * Usage:
18  *  Direct URL access:
19  *   http://...phpwiki/PageDump?page=HomePage?format=forcvs
20  *   http://...phpwiki/index.php?PageDump&page=HomePage
21  *   http://...phpwiki/index.php?PageDump&page=HomePage&download=1
22  *  Static:
23  *   <?plugin PageDump page=HomePage?>
24  *  Dynamic form (put both on the page):
25  *   <?plugin PageDump?>
26  *   <?plugin-form PageDump?>
27  *  Typical usage: as actionbar button
28  */
29
30 class WikiPlugin_PageDump
31 extends WikiPlugin
32 {
33     var $MessageId;
34
35     function getName() {
36         return _("PageDump");
37     }
38     function getDescription() {
39         return _("View a single page dump online.");
40     }
41
42     function getVersion() {
43         return preg_replace("/[Revision: $]/", '',
44                             "\$Revision$");
45     }
46
47     function getDefaultArguments() {
48         return array('s'    => false,
49                      'page' => '[pagename]',
50                      //'encoding' => 'binary', // 'binary', 'quoted-printable'
51                      'format' => false, // 'normal', 'forcvs', 'backup'
52                      // display within WikiPage or give a downloadable
53                      // raw pgsrc?
54                      'download' => false);
55     }
56
57     function run($dbi, $argstr, &$request, $basepage) {
58         extract($this->getArgs($argstr, $request));
59         // allow plugin-form
60         if (!empty($s))
61             $page = $s;
62         if (!$page)
63             return '';
64         if (! $dbi->isWikiPage($page) )
65             return fmt("Page %s not found.",
66                        WikiLink($page, 'unknown'));
67
68         $p = $dbi->getPage($page);
69         include_once("lib/loadsave.php");
70         $mailified = MailifyPage($p, ($format == 'backup') ? 99 : 1);
71
72         // fixup_headers massages the page dump headers depending on
73         // the 'format' argument, 'normal'(default) or 'forcvs'.
74         //
75         // Normal: Don't add X-Rcs-Id, add unique Message-Id, don't
76         // strip any fields from Content-Type.
77         //
78         // ForCVS: Add empty X-Rcs-Id, strip attributes from
79         // Content-Type field: "author", "version", "lastmodified",
80         // "author_id", "hits".
81
82         $this->pagename = $page;
83         $this->generateMessageId($mailified);
84         if ($format == 'forcvs')
85             $this->fixup_headers_forcvs($mailified);
86         else // backup or normal
87             $this->fixup_headers($mailified);
88
89         if ($download) {
90             // TODO: we need a way to hook into the generated headers, to override 
91             // Content-Type, Set-Cookie, Cache-control, ...
92             $request->discardOutput(); // Hijack the http request from PhpWiki.
93             ob_end_clean();            // clean up after hijacking $request
94             //ob_end_flush(); //debugging
95             $filename = FilenameForPage($page);
96             Header("Content-disposition: attachment; filename=\""
97                    . $filename . "\"");
98             // Read charset from generated page itself.
99             // Inconsequential at the moment, since loadsave.php
100             // always generates headers.
101             $charset = $p->get('charset');
102             if (!$charset) $charset = $GLOBALS['charset'];
103             // We generate 3 Content-Type headers! first in loadsave,
104             // then here and the mimified string $mailified also has it!
105             // This one is correct and overwrites the others.
106             Header("Content-Type: application/octet-stream; name=\""
107                    . $filename . "\"; charset=\"" . $charset
108                    . "\"");
109             $request->checkValidators();
110             // let $request provide last modified & etag
111             Header("Content-Id: <" . $this->MessageId . ">");
112             // be nice to http keepalive~s
113             Header("Content-Length: " . strlen($mailified)); 
114
115             // Here comes our prepared mime file
116             echo $mailified;
117             exit; // noreturn! php exits.
118             return;
119         }
120         // We are displaing inline preview in a WikiPage, so wrap the
121         // text if it is too long--unless quoted-printable (TODO).
122         $mailified = safe_wordwrap($mailified, 70);
123
124         $dlcvs = Button(array(//'page' => $page,
125                               'action' => $this->getName(),
126                               'format'=> 'forcvs',
127                               'download'=> true),
128                         _("Download for CVS"),
129                         $page);
130         $dl = Button(array(//'page' => $page,
131                            'action' => $this->getName(),
132                            'download'=> true),
133                      _("Download for backup"),
134                      $page);
135         $dlall = Button(array(//'page' => $page,
136                            'action' => $this->getName(),
137                            'format'=> 'backup',
138                            'download'=> true),
139                      _("Download all revisions for backup"),
140                      $page);
141
142         $h2 = HTML::h2(fmt("Preview: Page dump of %s",
143                            WikiLink($page, 'auto')));
144         global $WikiTheme;
145         if (!$Sep = $WikiTheme->getButtonSeparator())
146             $Sep = " ";
147
148         if ($format == 'forcvs') {
149             $desc = _("(formatted for PhpWiki developers as pgsrc template, not for backing up)");
150             $altpreviewbuttons = HTML(
151                                       Button(array('action' => $this->getName()),
152                                              _("Preview as normal format"),
153                                              $page),
154                                       $Sep,
155                                       Button(array(
156                                                    'action' => $this->getName(),
157                                                    'format'=> 'backup'),
158                                              _("Preview as backup format"),
159                                              $page));
160         }
161         elseif ($format == 'backup') {
162             $desc = _("(formatted for backing up: all revisions)"); // all revisions
163             $altpreviewbuttons = HTML(
164                                       Button(array('action' => $this->getName(),
165                                                    'format'=> 'forcvs'),
166                                              _("Preview as developer format"),
167                                              $page),
168                                       $Sep,
169                                       Button(array(
170                                                    'action' => $this->getName(),
171                                                    'format'=> ''),
172                                              _("Preview as normal format"),
173                                              $page));
174         } else {
175             $desc = _("(normal formatting: latest revision only)");
176             $altpreviewbuttons = HTML(
177                                       Button(array('action' => $this->getName(),
178                                                    'format'=> 'forcvs'),
179                                              _("Preview as developer format"),
180                                              $page),
181                                       $Sep,
182                                       Button(array(
183                                                    'action' => $this->getName(),
184                                                    'format'=> 'backup'),
185                                              _("Preview as backup format"),
186                                              $page));
187         }
188         $warning = HTML(
189 _("Please use one of the downloadable versions rather than copying and pasting from the above preview.")
190 . " " .
191 _("The wordwrap of the preview doesn't take nested markup or list indentation into consideration!")
192 . " ",
193 HTML::em(
194 _("PhpWiki developers should manually inspect the downloaded file for nested markup before rewrapping with emacs and checking into CVS.")
195          )
196                         );
197
198         return HTML($h2, HTML::em($desc),
199                     HTML::pre($mailified),
200                     $altpreviewbuttons,
201                     HTML::div(array('class' => 'errors'),
202                               HTML::strong(_("Warning:")),
203                               " ", $warning),
204                     $dl, $Sep, $dlall, $Sep, $dlcvs
205                     );
206     }
207
208     // function handle_plugin_args_cruft(&$argstr, &$args) {
209     // }
210
211     function generateMessageId($mailified) {
212         $array = explode("\n", $mailified);
213         // Extract lastmodifed from mailified document for Content-Id
214         // and/or Message-Id header, NOT from DB (page could have been
215         // edited by someone else since we started).
216         $m1 = preg_grep("/^\s+lastmodified\=(.*);/", $array);
217         $m1 = array_values($m1); //reset resulting keys
218         unset($array);
219         $m2 = preg_split("/(^\s+lastmodified\=)|(;)/", $m1[0], 2,
220                          PREG_SPLIT_NO_EMPTY);
221
222         // insert message id into actual message when appropriate, NOT
223         // into http header should be part of fixup_headers, in the
224         // format:
225         // <abbrphpwikiversion.mtimeepochTZ%InterWikiLinktothispage@hostname>
226         // Hopefully this provides a unique enough identifier without
227         // using md5. Even though this particular wiki may not
228         // actually be part of InterWiki, including this info provides
229         // the wiki name and name of the page which is being
230         // represented as a text message.
231         $this->MessageId = implode('', explode('.', PHPWIKI_VERSION))
232             . "-" . $m2[0] . date("O")
233             //. "-". rawurlencode(WIKI_NAME.":" . $request->getURLtoSelf())
234             . "-". rawurlencode(WIKI_NAME.":" . $this->pagename)
235             . "@". rawurlencode(SERVER_NAME);
236     }
237
238     function fixup_headers(&$mailified) {
239         $return = explode("\n", $mailified);
240
241         // Leave message intact for backing up, just add Message-Id header before transmitting.
242         $item_to_insert = "Message-Id: <" . $this->MessageId .">";
243         $insert_into_key_position = 2;
244         $returnval_ignored = array_splice($return,
245                                           $insert_into_key_position,
246                                           0, $item_to_insert);
247
248         $mailified = implode("\n", array_values($return));
249     }
250
251     function fixup_headers_forcvs(&$mailified) {
252         $array = explode("\n", $mailified);
253
254         // Massage headers to prepare for developer checkin to CVS.
255         $item_to_insert = "X-Rcs-Id: \$Id\$";
256         $insert_into_key_position = 2;
257         $returnval_ignored = array_splice($array,
258                                           $insert_into_key_position,
259                                           0, $item_to_insert);
260
261         $item_to_insert = "  pgsrc_version=\"2 \$Revision\$\";";
262         $insert_into_key_position = 5;
263         $returnval_ignored = array_splice($array,
264                                           $insert_into_key_position,
265                                           0, $item_to_insert);
266         /*
267             Strip out all this junk:
268             author=MeMe;
269             version=74;
270             lastmodified=1041561552;
271             author_id=127.0.0.1;
272             hits=146;
273         */
274         $killme = array("author", "version", "lastmodified",
275                         "author_id", "hits", "owner", "acl");
276         // UltraNasty, fixme:
277         foreach ($killme as $pattern) {
278             $array = preg_replace("/^\s\s$pattern\=.*;/",
279                                   /*$replacement =*/"zzzjunk", $array);
280         }
281         // remove deleted values from array
282         for ($i = 0; $i < count($array); $i++ ) {
283             if(trim($array[$i]) != "zzzjunk") { //nasty, fixme
284             //trigger_error("'$array[$i]'");//debugging
285                 $return[] = $array[$i];
286             }
287         }
288
289         $mailified = implode("\n", $return);
290     }
291 };
292
293 // For emacs users
294 // Local Variables:
295 // mode: php
296 // tab-width: 8
297 // c-basic-offset: 4
298 // c-hanging-comment-ender-p: nil
299 // indent-tabs-mode: nil
300 // End:
301 ?>