This repository has been archived by the owner on Mar 19, 2024. It is now read-only.
forked from karlmoritz/publistx
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsyntax.php
171 lines (143 loc) · 5.74 KB
/
syntax.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
<?php
/**
* DokuWiki Plugin publistf (Syntax Component)
*
* @license GPL 2 http://www.gnu.org/licenses/gpl-2.0.html
* @author Raphael Reitzig <code@verrech.net>
* @author Hans-Nikolai Viessmann <hans@viess.mn>
*/
// must be run within Dokuwiki
if (!defined('DOKU_INC')) die();
if (!defined('DOKU_LF')) define('DOKU_LF', "\n");
if (!defined('DOKU_TAB')) define('DOKU_TAB', "\t");
if (!defined('DOKU_PLUGIN')) define('DOKU_PLUGIN',DOKU_INC.'lib/plugins/');
require_once DOKU_PLUGIN.'syntax.php';
class syntax_plugin_publistf extends DokuWiki_Syntax_Plugin {
function getType() {
return 'substition';
}
function getPType() {
return 'block';
}
function getSort() {
return 105;
}
function connectTo($mode) {
$this->Lexer->addSpecialPattern('\[publist\|.+?\]',$mode,'plugin_publistf');
}
function handle($match, $state, $pos, Doku_Handler $handler){
$data = array();
// Partition properly
$matches = array();
$pattern = '/\[publist(?:\|(page|file|url):(.+?))(?:\|(wiki|html):(page|file|url):(.+?))(?:\|(.+?(?:\|.+?)*))?\]/';
if ( 0 === preg_match($pattern, $match, $matches) ) {
$data['error'] = 'Not valid publistf syntax: '.$match;
}
else {
$data['bibtex'] = array('type' => $matches[1], 'ref' => $matches[2]);
$data['template'] = array('target' => $matches[3], 'type' => $matches[4], 'ref' => $matches[5]);
$data['options'] = array();
// Set default language. Get current lang from translation plugin
// if installed & enabled or fall back to default lang in conf.
if (!plugin_isdisabled('translation')) {
$trans =& plugin_load('helper', 'translation');
global $ID;
$mylang = $trans->getLangPart($ID);
} else {
global $conf;
$mylang = $conf['lang'];
}
$data['options']['lang'] = $mylang;
if ( !empty($matches[6]) ) {
$matches = explode('|', $matches[6]);
foreach ( $matches as $opt ) {
$optparts = array();
if ( preg_match('/(.+?):(.+)/', $opt, $optparts) ) {
$optparts[2] = explode(';', $optparts[2]);
$option = array();
foreach ( $optparts[2] as $single ) {
$single = explode('=', $single);
if (count($single) == 1 && count($optparts[2]) == 1) {
$option = $single[0];
}
else {
$option[$single[0]] = str_replace(',', '|', $single[1]);
}
}
$data['options'][$optparts[1]] = $option;
}
}
}
if ($data['options']['authors'])
{
$tmp = explode(':', $data['options']['authors'],2);
$data['authors'] = array('type' => $tmp[0], 'ref' => $tmp[1]);
}
}
return $data;
}
function render($mode, Doku_Renderer $renderer, $data) {
if($mode != 'xhtml') return false;
if ( empty($data['error']) ) {
// Retrieve BibTeX source
$bibtex = $this->_load($data, 'bibtex');
if ( empty($bibtex) ) {
$data['error'] .= $data['bibtex']['type'].' '.$data['bibtex']['ref'].' does not exist<br />';
}
// Retrieve Template source
$template = $this->_load($data, 'template');
if ( empty($template) ) {
$data['error'] .= $data['template']['type'].' '.$data['template']['ref'].' does not exist<br />';
}
$authors = null;
if ($data['authors']) {
// Retrieve Authors source
$authors = $this->_load($data, 'authors');
if ( empty($authors) ) {
$data['error'] .= $data['authors']['type'].' '.$data['authors']['ref'].' does not exist<br />';
}
}
if ( !empty($bibtex) && !empty($template) ) {
require_once(dirname(__FILE__).'/bib2tpl/bibtex_converter.php');
if ( is_readable(dirname(__FILE__).'/sanitiser.php')) {
include(dirname(__FILE__).'/sanitiser.php');
}
if ( empty($sanitiser) ) {
$sanitiser = create_function('$i', 'return $i;');
}
$parser = new BibtexConverter($data['options'],$sanitiser,$authors);
$code = $parser->convert($bibtex, $template);
if ( $data['template']['target'] == 'wiki' ) {
$code = p_render($mode, p_get_instructions($code), $info);
}
$renderer->doc .= $code;
}
}
if ( !empty($data['error']) ) {
$renderer->doc .= $data['error'];
}
/* user settable */
// activate caching of results
$renderer->info['cache'] = $this->getConf('cache');
return true;
}
function _load($data, $kind) {
global $INFO;
if ( $data[$kind]['type'] == 'url' ) {
return file_get_contents($data[$kind]['ref']);
}
if ( $data[$kind]['type'] == 'file' ) {
return file_get_contents(dirname(__FILE__).'/'.$kind.'/'.$data[$kind]['ref']);
}
else if ( $data[$kind]['type'] == 'page' ) {
$exists = false;
$id = $data[$kind]['ref'];
resolve_pageid($INFO['namespace'], $id, $exists);
if ( $exists ) {
return rawWiki($id);
}
}
return null;
}
}
// vim:ts=4:sw=4:et