-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsyntax.php
183 lines (162 loc) · 6.63 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
172
173
174
175
176
177
178
179
180
181
182
183
<?php
/**
* Plugin Iframe: Inserts an iframe element to include the specified url
*
* @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
* @author Christopher Smith <[email protected]>
*/
// must be run within Dokuwiki
if(!defined('DOKU_INC')) die();
if(!defined('DOKU_PLUGIN')) define('DOKU_PLUGIN',DOKU_INC.'lib/plugins/');
require_once(DOKU_PLUGIN.'syntax.php');
/**
* All DokuWiki plugins to extend the parser/rendering mechanism
* need to inherit from this class
*/
class syntax_plugin_iframe extends DokuWiki_Syntax_Plugin {
function getType() { return 'substition'; }
function getSort() { return 305; }
function connectTo($mode) { $this->Lexer->addSpecialPattern('{{flashit>.*?}}',$mode,'plugin_iframe'); }
function handle($match, $state, $pos, Doku_Handler $handler){
$match = substr($match, 6, -2);
list($url, $alt) = explode('|',$match,2);
list($url, $param) = explode(' ',$url,2);
// javascript pseudo uris allowed?
if (!$this->getConf('js_ok') && substr($url,0,11) == 'javascript:'){
$url = false;
}
// set defaults
$opts = array(
'url' => $url,
'width' => '98%',
'height' => '400px',
'alt' => $alt,
'scroll' => true,
'border' => true,
'align' => false,
);
// handle size parameters
$matches=array();
if(preg_match('/\[?(\d+(em|%|pt|px)?)\s*([,xX]\s*(\d+(em|%|pt|px)?))?\]?/',$param,$matches)){
if($matches[4]){
// width and height was given
$opts['width'] = $matches[1];
if(!$matches[2]) $opts['width'] .= 'px'; //default to pixel when no unit was set
$opts['height'] = $matches[4];
if(!$matches[5]) $opts['height'] .= 'px'; //default to pixel when no unit was set
}elseif($matches[2]){
// only height was given
$opts['height'] = $matches[1];
if(!$matches[2]) $opts['height'] .= 'px'; //default to pixel when no unit was set
}
}
// handle other parameters
if(preg_match('/noscroll(bars?|ing)?/',$param)){
$opts['scroll'] = false;
}
if(preg_match('/no(frame)?border/',$param)){
$opts['border'] = false;
}
if(preg_match('/(left|right)/',$param,$matches)){
$opts['align'] = $matches[1];
}
return $opts;
}
function render($mode, Doku_Renderer $R, $data) {
if($mode != 'xhtml') return false;
if(!plugin_isdisabled('tag')) {
$tag =& plugin_load('helper', 'tag');
if($tag) {
$taggedPages = $tag->getTopic('notes', NULL, 'flashit');
}
}
$this->make_card_page($taggedPages);
$R->doc .= '<iframe src="lib/plugins/flashit/flashit/index.php" height="600px" width="100%" style="border:none;"></iframe>';
return true;
}
function make_card_page($taggedPages){
$out_string = '<?xml version="1.0" encoding="UTF-8"?>' . PHP_EOL;
$out_string .= '<flashcards>' . PHP_EOL;
$out_string .= '<categories>' . PHP_EOL;
$out_string .= '<category name="All questions" order="1" id="1">' . PHP_EOL;
$out_string .= '<set name="Questions" id="1"/>' . PHP_EOL;
$out_string .= '</category>' . PHP_EOL;
$out_string .= '</categories>' . PHP_EOL;
$out_string .= '<cards>' . PHP_EOL;
$num = 1;
foreach($taggedPages as $page){
$out_string .= $this->make_card($page['id'], $num) . PHP_EOL;
}
$out_string .= '</cards>' . PHP_EOL;
$out_string .= '</flashcards>';
file_put_contents($_SERVER['DOCUMENT_ROOT'] . '/lib/plugins/flashit/flashit/sets/set.xml', $out_string);
return true;
}
function make_card($page, &$num){
$page_content = file_get_contents(wikiFN($page));
$parts = explode("\n", $page_content);
$parts = new SplFileObject(wikiFN($page));
$out_string = '';
$insideWRAP = FALSE;
$insideQuestion = FALSE;
$insideAnswer = FALSE;
$insideMoreInfo = FALSE;
foreach ($parts as $line) {
if($insideWRAP == TRUE){
if(strpos($line, '</WRAP>') !== false){
if($insideQuestion == FALSE && $insideAnswer == FALSE && $insideMoreInfo == FALSE){
$insideWRAP = FALSE;
$out_string .= $this->make_card_helper($num, $question, $answer, $moreinfo);
$num++;
}
if($insideQuestion){
$insideQuestion = FALSE;
}
if($insideAnswer){
$insideAnswer = FALSE;
}
if($insideMoreInfo){
$insideMoreInfo = FALSE;
}
}else{
if($insideQuestion !== FALSE){
$question .= $line;
}
if($insideAnswer !== FALSE){
$answer .= $line;
}
if($insideMoreInfo !== FALSE){
$moreinfo .= $line;
}
if(strpos($line, '<WRAP question>') !== false){
$insideQuestion = TRUE;
}
if(strpos($line, '<WRAP answer>') !== false){
$insideAnswer = TRUE;
}
if(strpos($line, '<WRAP moreinfo>') !== false){
$insideMoreInfo = TRUE;
}
}
}
if(strpos($line, '<WRAP flashit>') !== false){
$insideWRAP = TRUE;
$question = '';
$answer = '';
$moreinfo = '';
}
}
return $out_string;
}
function make_card_helper($num, $question, $answer, $moreinfo){
$out_string = '<card id="' . $num . '">' . PHP_EOL;
$out_string .= '<question>' . $question . '</question>' . PHP_EOL;
$out_string .= '<answer>' . $answer . '</answer>' . PHP_EOL;
if(strlen($moreinfo) > 1){
$out_string .= '<moreinfo>' . $moreinfo .'</moreinfo>' . PHP_EOL;
}
$out_string .= '<associated_sets>1</associated_sets>' . PHP_EOL;
$out_string .= '</card>' . PHP_EOL;
return $out_string;
}
}