1<?php 2/** 3 * popoutviewer Plugin 4 * 5 * @license GPL 2 (http://www.gnu.org/licenses/gpl.html) 6 * @author i-net software <tools@inetsoftware.de> 7 * @author Gerry Weissbach <gweissbach@inetsoftware.de> 8 */ 9 10// must be run within Dokuwiki 11if(!defined('DOKU_INC')) die(); 12if (!defined('DOKU_PLUGIN')) define('DOKU_PLUGIN',DOKU_INC.'lib/plugins/'); 13 14require_once(DOKU_PLUGIN.'syntax.php'); 15 16class syntax_plugin_popupviewer_viewer extends DokuWiki_Syntax_Plugin { 17 18 private $headers = array(); 19 20 function getInfo(){ 21 return array_merge(confToHash(dirname(__FILE__).'/plugin.info.txt'), array( 22 'name' => 'PopUpViewer Linking Component', 23 'desc' => 'Takes a Page to be diplayed in an overlay pop-out' 24 )); 25 } 26 27 function getType() { return 'substition'; } 28 function getPType() { return 'normal'; } 29 function getSort() { return 98; } 30 31 function connectTo($mode) { 32 33 $this->Lexer->addSpecialPattern('{{popup>[^}]+}}}}', $mode, 'plugin_popupviewer_viewer'); 34 $this->Lexer->addSpecialPattern('{{popup>[^}]+}}', $mode, 'plugin_popupviewer_viewer'); 35 $this->Lexer->addSpecialPattern('{{popupclose>[^}]+}}}}', $mode, 'plugin_popupviewer_viewer'); 36 $this->Lexer->addSpecialPattern('{{popupclose>[^}]+}}', $mode, 'plugin_popupviewer_viewer'); 37 } 38 39 function handle($match, $state, $pos, Doku_Handler $handler) { 40 41 $close = strstr( $match, "{{popupclose>") !== false; 42 43 $orig = substr($match, $close ? 13 : 8, -2); 44 list($id, $name) = explode('|', $orig, 2); // find ID/Params + Name Extension 45 list($name, $title) = explode('%', $name, 2); // find Name and Title 46 list($id, $param) = explode('?', $id, 2); // find ID + Params 47 48 $params = explode('&', strtolower($param)); 49 $w = $h = $keepOpen = null; 50 foreach( $params as $p ) { 51 if ( $p === 'keepOpen' ) { 52 $keepOpen = true; 53 } else { 54 list($w, $h) = explode('x', $p, 2); // find Size 55 } 56 } 57 58 return array(trim($id), $name, $title, $w, $h, $orig, $close, null, $keepOpen); 59 } 60 61 function render($mode, Doku_Renderer $renderer, $data) { 62 global $ID, $conf, $JSINFO; 63 64 if ( $mode != 'xhtml' ) { return true; } 65 66 list($id, $name, $title, $w, $h, $orig, $close, $isImageMap, $keepOpen) = $data; 67 68 $exists = false; 69 if ( !empty($id) ) { 70 $origID = $id; 71 resolve_mediaid(getNS($ID),$id,$exists); 72 if ( !$exists ) { 73 $id = $origID; 74 } 75 } 76 77 $scID = sectionID(noNs($id), $this->headers); 78 $more = 'id="' . $scID . '"'; 79 $script = ''; 80 81 if ( $exists ) { 82 // is Media 83 84 $p1 = Doku_Handler_Parse_Media($orig); 85 86 if ( empty($name) ) { 87 88 if ( !method_exists($renderer, '_media') ) { 89 $p = array(); 90 $p['alt'] = $id; 91 $p['class'] = 'popupimage'; 92 $p['title'] = $title; 93 $p['id'] = 'popupimage_' . $scID; 94 if ($p1['width']) $p['width'] = $p1['width']; 95 if ($p1['height']) $p['height'] = $p1['height']; 96 if ($p1['title'] && !$p['title']) { $p['title'] = $p1['title']; $p['alt'] = $p1['title']; } 97 if ($p1['align']) $p['class'] .= ' media' . $p1['align']; 98 99 $p2 = buildAttributes($p); 100 $name = '<img src="' . ml($id, array( 'w' => $p['width'], 'h' => $p['height'] ) ) . '" '.$p2.'/>'; 101 } else { 102 $name = $renderer->_media($id, ($title ? $title : ($p1['title'] ? $p1['title'] : $id) ), ' popupimage' . ($p1['align'] ? ' media' . $p1['align'] : '' ), $p1['width'], $p1['height']); 103 } 104 } else { 105 $name = trim(p_render($mode, p_get_instructions(trim($name)), $info)); 106 $name = trim(preg_replace("%^(\s|\r|\n)*?<a.+?>(.*)?</a>(\s|\r|\n)*?$%is", "$2", preg_replace("%^(\s|\r|\n)*?<p.*?>(.*)?</p>(\s|\r|\n)*?$%is", "$2", $name))); 107 108 $name = preg_replace("%^(<img[^>]*?)>%", "$1 id=\"popupimage_$scID\">", $name); 109 } 110 111 $more = $this->_getOnClickHandler($close, array('isImage' => true, 'id' => $id)); 112 $id = ml($id); 113 114 } else { 115 // is Page 116 resolve_pageid(getNS($ID),$id,$exists); 117 if ( empty($name) ) { 118 $name = htmlspecialchars(noNS($id),ENT_QUOTES,'UTF-8'); 119 if ($conf['useheading'] && $id ) { 120 $heading = p_get_first_heading($id,true); 121 if ($heading) { 122 $name = htmlspecialchars($heading,ENT_QUOTES,'UTF-8'); 123 } 124 } 125 } else { 126 $name = trim(p_render($mode, p_get_instructions(trim($name)), $info)); 127 } 128 129 $data = array( 130 'width' => $w, 131 'height' => $h, 132 'id' => $id 133 ); 134 135 if ( $keepOpen ) { 136 $data['keepOpen'] = true; 137 } 138 139 // Add ID for AJAX - this.href for offline versions 140 $more = $this->_getOnClickHandler($close, $data); 141 $id=wl($id); 142 } 143 144 $renderer->doc .= $this->_renderFinalPopupImage($id, $exists, $more, $name, $isImageMap, $script); 145 146 return true; 147 } 148 149 function _renderFinalPopupImage($id, $exists, $more, $name, $isImageMap, $script, $class='') { 150 151 $more .= ' class="wikilink' . ($exists?1:2) . (!empty($class) ? ' ' . $class : '' ). '"'; 152 $name = trim(preg_replace("%^(\s|\r|\n)*?<a.+?>(.*)?</a>(\s|\r|\n)*?$%is", "$2", preg_replace("%^(\s|\r|\n)*?<p.*?>(.*)?</p>(\s|\r|\n)*?$%is", "$2", $name))); 153 154 if ( !is_array($isImageMap) ) { 155 return '<a href="'.$id.'" ' . trim($more) . ' >' . $name . '</a>' . $script; 156 } else { 157 $return = '<area href="'.$id.'" ' . trim($more) . ''; 158 $return .= ' title="'.$name.'" alt="'.$name.'"'; 159 $return .= ' shape="'.$isImageMap['shape'].'" coords="'.$isImageMap['coords'].'" />' . $script; 160 161 return $return; 162 } 163 } 164 165 function _getOnClickHandler($close, $data=array()) { 166 if ( !$close ) { 167 return ' data-popupviewer="' . htmlentities(json_encode(array_filter($data))) . '"'; 168 } else { 169 return ' data-popupviewerclose'; 170 } 171 } 172 173 /** 174 * Implements API from imagemap 175 */ 176 function convertToImageMapArea($imagemap, $data, $pos) { 177 178 list($id, $name, $title, $w, $h, $orig, $close) = $data; 179 180 if ( !preg_match('/^(.*)@([^@]+)$/u', array_pop(explode('|', $name)), $match)) { 181 return; 182 } 183 184 $coords = explode(',',$match[2]); 185 if (count($coords) == 3) { 186 $shape = 'circle'; 187 } elseif (count($coords) == 4) { 188 $shape = 'rect'; 189 } elseif (count($coords) >= 6) { 190 $shape = 'poly'; 191 } else { 192 return; 193 } 194 195 $coords = array_map('trim', $coords); 196 $name = trim($match[1]); 197 $imagemap->CallWriter->writeCall(array('plugin', array('popupviewer_viewer', array($id, $name, $title, $w, $h, $orig, $close, array('shape' => $shape, 'coords' => join(',',$coords))), DOKU_LEXER_MATCHED), $pos)); 198 } 199} 200// vim:ts=4:sw=4:et:enc=utf-8: 201