]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/PageType.php
more maps: Talk, User
[SourceForge/phpwiki.git] / lib / PageType.php
1 <?php // -*-php-*-
2 rcs_id('$Id: PageType.php,v 1.41 2005-02-02 19:34:09 rurban Exp $');
3 /*
4  Copyright 1999,2000,2001,2002,2003,2004,2005 $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
19  along with PhpWiki; if not, write to the Free Software
20  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
21  */
22
23 require_once('lib/CachedMarkup.php');
24
25 /** A cacheable formatted wiki page.
26  */
27 class TransformedText extends CacheableMarkup {
28     /** Constructor.
29      *
30      * @param WikiDB_Page $page
31      * @param string $text  The packed page revision content.
32      * @param hash $meta    The version meta-data.
33      * @param string $type_override  For markup of page using a different
34      *        pagetype than that specified in its version meta-data.
35      */
36     function TransformedText($page, $text, $meta, $type_override=false) {
37         $pagetype = false;
38         if ($type_override)
39             $pagetype = $type_override;
40         elseif (isset($meta['pagetype']))
41             $pagetype = $meta['pagetype'];
42         $this->_type = PageType::GetPageType($pagetype);
43         $this->CacheableMarkup($this->_type->transform($page, $text, $meta),
44                                $page->getName());
45     }
46
47     function getType() {
48         return $this->_type;
49     }
50 }
51
52 /**
53  * A page type descriptor.
54  *
55  * Encapsulate information about page types.
56  *
57  * Currently the only information encapsulated is how to format
58  * the specific page type.  In the future or capabilities may be
59  * added, e.g. the abilities to edit different page types (differently.)
60  * e.g. Support for the javascript htmlarea editor, which can only edit 
61  * pure HTML.
62  *
63  * IMPORTANT NOTE: Since the whole PageType class gets stored (serialized)
64  * as of the cached marked-up page, it is important that the PageType classes
65  * not have large amounts of class data.  (No class data is even better.)
66  */
67 class PageType {
68     /**
69      * Get a page type descriptor.
70      *
71      * This is a static member function.
72      *
73      * @param string $pagetype  Name of the page type.
74      * @return PageType  An object which is a subclass of PageType.
75      */
76     function GetPageType ($name=false) {
77         if (!$name)
78             $name = 'wikitext';
79         $class = "PageType_" . (string)$name;
80         if (class_exists($class))
81             return new $class;
82         trigger_error(sprintf("PageType '%s' unknown", (string)$name),
83                       E_USER_WARNING);
84         return new PageType_wikitext;
85     }
86
87     /**
88      * Get the name of this page type.
89      *
90      * @return string  Page type name.
91      */
92     function getName() {
93         if (!preg_match('/^PageType_(.+)$/i', get_class($this), $m))
94             trigger_error("Bad class name for formatter(?)", E_USER_ERROR);
95         return $m[1];
96     }
97
98     /**
99      * Transform page text.
100      *
101      * @param WikiDB_Page $page
102      * @param string $text
103      * @param hash $meta Version meta-data
104      * @return XmlContent The transformed page text.
105      */
106     function transform(&$page, &$text, $meta) {
107         $fmt_class = 'PageFormatter_' . $this->getName();
108         $formatter = new $fmt_class($page, $meta);
109         return $formatter->format($text);
110     }
111 }
112
113 class PageType_wikitext extends PageType {}
114 class PageType_html extends PageType {}
115 class PageType_pdf extends PageType {}
116
117 class PageType_wikiblog extends PageType {}
118 class PageType_comment extends PageType {}
119 class PageType_wikiforum extends PageType {}
120
121 /* To prevent from PHP5 Fatal error: Using $this when not in object context */
122 function getInterwikiMap ($pagetext = false) {
123     $map = new PageType_interwikimap($pagetext);
124     return $map;
125 }
126
127 class PageType_interwikimap extends PageType
128 {
129     function PageType_interwikimap($pagetext = false) {
130         if (!$pagetext) {
131             $dbi = $GLOBALS['request']->getDbh();
132             $page = $dbi->getPage(_("InterWikiMap"));
133             if ($page->get('locked')) {
134                 $current = $page->getCurrentRevision();
135                 $pagetext = $current->getPackedContent();
136                 $intermap = $this->_getMapFromWikiText($pagetext);
137             } elseif ($page->exists()) {
138                 trigger_error(_("WARNING: InterWikiMap page is unlocked, so not using those links."));
139                 $intermap = false;
140             }
141             else 
142                 $intermap = false;
143         } else {
144             $intermap = $this->_getMapFromWikiText($pagetext);
145         }
146         if (!$intermap && defined('INTERWIKI_MAP_FILE'))
147             $intermap = $this->_getMapFromFile(INTERWIKI_MAP_FILE);
148
149         $this->_map = $this->_parseMap($intermap);
150         $this->_regexp = $this->_getRegexp();
151     }
152
153     function GetMap ($pagetext = false) {
154         /*PHP5 Fatal error: Using $this when not in object context */
155         if (empty($this->_map)) {
156             $map = new PageType_interwikimap($pagetext);
157             return $map;
158         } else {
159             return $this;
160         }
161     }
162
163     function getRegexp() {
164         return $this->_regexp;
165     }
166
167     function link ($link, $linktext = false) {
168         list ($moniker, $page) = split (":", $link, 2);
169         
170         if (!isset($this->_map[$moniker])) {
171             return HTML::span(array('class' => 'bad-interwiki'),
172                               $linktext ? $linktext : $link);
173         }
174
175         $url = $this->_map[$moniker];
176         
177         // Urlencode page only if it's a query arg.
178         // FIXME: this is a somewhat broken heuristic.
179         $page_enc = strstr($url, '?') ? rawurlencode($page) : $page;
180
181         if (strstr($url, '%s'))
182             $url = sprintf($url, $page_enc);
183         else
184             $url .= $page_enc;
185
186         $link = HTML::a(array('href' => $url));
187
188         if (!$linktext) {
189             $link->pushContent(PossiblyGlueIconToText('interwiki', "$moniker:"),
190                                HTML::span(array('class' => 'wikipage'), $page));
191             $link->setAttr('class', 'interwiki');
192         }
193         else {
194             $link->pushContent(PossiblyGlueIconToText('interwiki', $linktext));
195             $link->setAttr('class', 'named-interwiki');
196         }
197         
198         return $link;
199     }
200
201
202     function _parseMap ($text) {
203         if (!preg_match_all("/^\s*(\S+)\s+(\S+)/m",
204                             $text, $matches, PREG_SET_ORDER))
205             return false;
206
207         foreach ($matches as $m) {
208             $map[$m[1]] = $m[2];
209         }
210
211         // Add virtual monikers: Upload:, Talk:, User:
212         if (empty($map['Upload'])) 
213             $map['Upload'] = getUploadDataPath();
214         if (empty($map["Talk"])) {
215             $pagename = $GLOBALS['request']->getArg('pagename');
216             if (string_ends_with($pagename, SUBPAGE_SEPARATOR._("Discussion")))
217                 $map["Talk"] = WikiURL($pagename);
218             else
219                 $map["Talk"] = WikiURL($pagename.SUBPAGE_SEPARATOR._("Discussion"));
220         }
221         // User:ReiniUrban => ReiniUrban or Users/ReiniUrban
222         // Can be easily overriden by a customized InterWikiMap: 
223         //   User Users/%s
224         if (empty($map["User"])) {
225             $map["User"] = "%s";
226         }
227
228         // Maybe add other monikers also (SemanticWeb link predicates?)
229         // Should they be defined in a RDF? (strict mode)
230         // Or should the SemanticWeb lib add it by itself? 
231         // (adding only a subset dependent on the context = model)
232         return $map;
233     }
234
235     function _getMapFromWikiText ($pagetext) {
236         if (preg_match('|^<verbatim>\n(.*)^</verbatim>|ms', $pagetext, $m)) {
237             return $m[1];
238         }
239         return false;
240     }
241
242     function _getMapFromFile ($filename) {
243         if (defined('WARN_NONPUBLIC_INTERWIKIMAP') and WARN_NONPUBLIC_INTERWIKIMAP) {
244             $error_html = sprintf(_("Loading InterWikiMap from external file %s."), $filename);
245             trigger_error( $error_html, E_USER_NOTICE );
246         }
247         if (!file_exists($filename)) {
248             $finder = new FileFinder();
249             $filename = $finder->findFile(INTERWIKI_MAP_FILE);
250         }
251         @$fd = fopen ($filename, "rb");
252         @$data = fread ($fd, filesize($filename));
253         @fclose ($fd);
254
255         return $data;
256     }
257
258     function _getRegexp () {
259         if (!$this->_map)
260             return '(?:(?!a)a)'; //  Never matches.
261         
262         foreach (array_keys($this->_map) as $moniker)
263             $qkeys[] = preg_quote($moniker, '/');
264         return "(?:" . join("|", $qkeys) . ")";
265     }
266 }
267
268
269 /** How to transform text.
270  */
271 class PageFormatter {
272     /** Constructor.
273      *
274      * @param WikiDB_Page $page
275      * @param hash $meta Version meta-data.
276      */
277     function PageFormatter(&$page, $meta) {
278         $this->_page = $page;
279         $this->_meta = $meta;
280         if (!empty($meta['markup']))
281             $this->_markup = $meta['markup'];
282         else
283             $this->_markup = 1; // dump used old-markup as empty. 
284         // to be able to restore it we must keep markup 1 as default.
285         // new policy: default = new markup (old crashes quite often)
286     }
287
288     function _transform(&$text) {
289         include_once('lib/BlockParser.php');
290         return TransformText($text, $this->_markup);
291     }
292
293     /** Transform the page text.
294      *
295      * @param string $text  The raw page content (e.g. wiki-text).
296      * @return XmlContent   Transformed content.
297      */
298     function format($text) {
299         trigger_error("pure virtual", E_USER_ERROR);
300     }
301 }
302
303 class PageFormatter_wikitext extends PageFormatter 
304 {
305     function format(&$text) {
306         return HTML::div(array('class' => 'wikitext'),
307                          $this->_transform($text));
308     }
309 }
310
311 class PageFormatter_interwikimap extends PageFormatter
312 {
313     function format($text) {
314         return HTML::div(array('class' => 'wikitext'),
315                          $this->_transform($this->_getHeader($text)),
316                          $this->_formatMap($text),
317                          $this->_transform($this->_getFooter($text)));
318     }
319
320     function _getHeader($text) {
321         return preg_replace('/<verbatim>.*/s', '', $text);
322     }
323
324     function _getFooter($text) {
325         return preg_replace('@.*?(</verbatim>|\Z)@s', '', $text, 1);
326     }
327     
328     function _getMap($pagetext) {
329         $map = getInterwikiMap($pagetext);
330         return $map->_map;
331     }
332     
333     function _formatMap($pagetext) {
334         $map = $this->_getMap($pagetext);
335         if (!$map)
336             return HTML::p("<No interwiki map found>"); // Shouldn't happen.
337
338         $mon_attr = array('class' => 'interwiki-moniker');
339         $url_attr = array('class' => 'interwiki-url');
340         
341         $thead = HTML::thead(HTML::tr(HTML::th($mon_attr, _("Moniker")),
342                                       HTML::th($url_attr, _("InterWiki Address"))));
343         foreach ($map as $moniker => $interurl) {
344             $rows[] = HTML::tr(HTML::td($mon_attr, new Cached_WikiLinkIfKnown($moniker)),
345                                HTML::td($url_attr, HTML::tt($interurl)));
346         }
347         
348         return HTML::table(array('class' => 'interwiki-map'),
349                            $thead,
350                            HTML::tbody(false, $rows));
351     }
352 }
353
354 class FakePageRevision {
355     function FakePageRevision($meta) {
356         $this->_meta = $meta;
357     }
358
359     function get($key) {
360         if (empty($this->_meta[$key]))
361             return false;
362         return $this->_meta[$key];
363     }
364 }
365
366 // abstract base class
367 class PageFormatter_attach extends PageFormatter
368 {
369     var $type, $prefix;
370     
371     // Display templated contents for wikiblog, comment and wikiforum
372     function format($text) {
373         if (empty($this->type))
374             trigger_error('PageFormatter_attach->format: $type missing');
375         include_once('lib/Template.php');
376         global $request;
377         $tokens['CONTENT'] = $this->_transform($text);
378         $tokens['page'] = $this->_page;
379         $tokens['rev'] = new FakePageRevision($this->_meta);
380
381         $name = new WikiPageName($this->_page->getName());
382         $tokens[$this->prefix."_PARENT"] = $name->getParent();
383
384         $meta = $this->_meta[$this->type];
385         foreach(array('ctime', 'creator', 'creator_id') as $key)
386             $tokens[$this->prefix . "_" . strtoupper($key)] = $meta[$key];
387         
388         return new Template($this->type, $request, $tokens);
389     }
390 }
391
392 class PageFormatter_wikiblog extends PageFormatter_attach {
393     var $type = 'wikiblog', $prefix = "BLOG";
394 }
395 class PageFormatter_comment extends PageFormatter_attach {
396     var $type = 'comment', $prefix = "COMMENT";
397 }
398 class PageFormatter_wikiforum extends PageFormatter_attach {
399     var $type = 'wikiforum', $prefix = "FORUM";
400 }
401
402 /** wikiabuse for htmlarea editing. not yet used.  
403  *
404  * Warning! Once a page is edited with a htmlarea like control it is
405  * stored in HTML and cannot be converted back to WikiText as long as
406  * we have no HTML => WikiText or any other interim format (WikiExchangeFormat e.g. XML) 
407  * converter. See lib/HtmlParser.php for ongoing work on that. 
408  * So it has a viral effect and certain plugins will not work anymore.
409  * But a lot of wikiusers seem to like it.
410  */
411 class PageFormatter_html extends PageFormatter
412 {
413     function _transform($text) {
414         return $text;
415     }
416     function format($text) {
417         return $text;
418     }
419 }
420
421 /**
422  *  FIXME. not yet used
423  */
424 class PageFormatter_pdf extends PageFormatter
425 {
426
427     function _transform($text) {
428         include_once('lib/BlockParser.php');
429         return TransformText($text, $this->_markup);
430     }
431
432     // one page or set of pages?
433     // here we try to format only a single page
434     function format($text) {
435         include_once('lib/Template.php');
436         global $request;
437         $tokens['page']    = $this->_page;
438         $tokens['CONTENT'] = $this->_transform($text);
439         $pagename = $this->_page->getName();
440
441         // This is a XmlElement tree, which must be converted to PDF
442
443         // We can make use of several pdf extensions. This one - fpdf
444         // - is pure php and very easy, but looks quite ugly and has a
445         // terrible interface, as terrible as most of the othes. 
446         // The closest to HTML is htmldoc which needs an external cgi
447         // binary.
448         // We use a custom HTML->PDF class converter from PHPWebthings
449         // to be able to use templates for PDF.
450         require_once('lib/fpdf.php');
451         require_once('lib/pdf.php');
452
453         $pdf = new PDF();
454         $pdf->SetTitle($pagename);
455         $pdf->SetAuthor($this->_page->get('author'));
456         $pdf->SetCreator(WikiURL($pagename,false,1));
457         $pdf->AliasNbPages();
458         $pdf->AddPage();
459         //TODO: define fonts
460         $pdf->SetFont('Times','',12);
461         //$pdf->SetFont('Arial','B',16);
462
463         // PDF pagelayout from a special template
464         $template = new Template('pdf', $request, $tokens);
465         $pdf->ConvertFromHTML($template);
466
467         // specify filename, destination
468         $pdf->Output($pagename.".pdf",'I'); // I for stdin or D for download
469
470         // Output([string name [, string dest]])
471         return $pdf;
472     }
473 }
474 // $Log: not supported by cvs2svn $
475 // Revision 1.40  2005/01/31 12:15:08  rurban
476 // avoid some cornercase intermap warning. Thanks to Stefan <sonstiges@bayern-mail.de>
477 //
478 // Revision 1.39  2005/01/25 06:59:35  rurban
479 // fix bogus InterWikiMap warning
480 //
481 // Revision 1.38  2004/12/26 17:10:44  rurban
482 // just docs or whitespace
483 //
484 // Revision 1.37  2004/12/06 19:49:55  rurban
485 // enable action=remove which is undoable and seeable in RecentChanges: ADODB ony for now.
486 // renamed delete_page to purge_page.
487 // enable action=edit&version=-1 to force creation of a new version.
488 // added BABYCART_PATH config
489 // fixed magiqc in adodb.inc.php
490 // and some more docs
491 //
492
493 // Local Variables:
494 // mode: php
495 // tab-width: 8
496 // c-basic-offset: 4
497 // c-hanging-comment-ender-p: nil
498 // indent-tabs-mode: nil
499 // End:
500 ?>