This repository has been archived by the owner on Apr 8, 2021. It is now read-only.
forked from borkweb/BootstrapMediaWiki
-
Notifications
You must be signed in to change notification settings - Fork 128
/
BootstrapMediaWiki.skin.php
488 lines (441 loc) · 17 KB
/
BootstrapMediaWiki.skin.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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
<?php
/**
* Bootstrap - A basic MediaWiki skin based on Twitter's excellent Bootstrap CSS framework
*
* @Version 1.0.0
* @Author Matthew Batchelder <[email protected]>
* @Author Creative Commons Corporation <[email protected]>
* @Copyright Matthew Batchelder 2012 - http://borkweb.com/
* @Copyright Creative Commons Corporation 2015 - https://github.com/creativecommons/bootstrap-mediawiki
* @License: GPLv2 (http://www.gnu.org/copyleft/gpl.html)
*/
if ( ! defined( 'MEDIAWIKI' ) ) {
die( -1 );
}//end if
//File removed on new mediawiki versions (1.24.1 at least).
//require_once('includes/SkinTemplate.php');
if(file_exists('includes/SkinTemplate.php')){
require_once('includes/SkinTemplate.php');
}
/**
* Inherit main code from SkinTemplate, set the CSS and template filter.
* @package MediaWiki
* @subpackage Skins
*/
class SkinBootstrapMediaWiki extends SkinTemplate {
/** Using Bootstrap */
public $skinname = 'bootstrap-mediawiki';
public $stylename = 'bootstrap-mediawiki';
public $template = 'BootstrapMediaWikiTemplate';
public $useHeadElement = true;
/**
* initialize the page
*/
public function initPage( OutputPage $out ) {
global $wgSiteJS;
parent::initPage( $out );
$out->addModuleScripts( 'skins.bootstrapmediawiki' );
$out->addMeta( 'viewport', 'width=device-width, initial-scale=1, maximum-scale=1' );
}//end initPage
/**
* prepares the skin's CSS
*/
public function setupSkinUserCss( OutputPage $out ) {
global $wgSiteCSS;
parent::setupSkinUserCss( $out );
$out->addModuleStyles( 'skins.bootstrapmediawiki' );
// we need to include this here so the file pathing is right
$out->addStyle( 'bootstrap-mediawiki/font-awesome/css/font-awesome.min.css' );
}//end setupSkinUserCss
}
/**
* @package MediaWiki
* @subpackage Skins
*/
class BootstrapMediaWikiTemplate extends QuickTemplate {
/**
* @var Cached skin object
*/
//public $skin;
/**
* Template filter callback for Bootstrap skin.
* Takes an associative array of data set from a SkinTemplate-based
* class, and a wrapper for MediaWiki's localization database, and
* outputs a formatted page.
*
* @access private
*/
public function execute() {
global $wgRequest, $wgUser, $wgSitename, $wgSitenameshort, $wgCopyrightLink, $wgCopyright, $wgBootstrap, $wgArticlePath, $wgGoogleAnalyticsID, $wgSiteCSS;
global $wgEnableUploads;
global $wgLogo;
global $wgTOCLocation;
global $wgNavBarClasses;
global $wgSubnavBarClasses;
//$this->skin = $this->data['skin'];
$action = $wgRequest->getText( 'action' );
$url_prefix = str_replace( '$1', '', $wgArticlePath );
// Suppress warnings to prevent notices about missing indexes in $this->data
wfSuppressWarnings();
$this->html('headelement');
?>
<div class="navbar navbar-default navbar-fixed-top <?php echo $wgNavBarClasses; ?>" role="navigation">
<div class="container">
<!-- .btn-navbar is used as the toggle for collapsed navbar content -->
<div class="navbar-header">
<button class="navbar-toggle collapsed" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="<?php echo $this->data['nav_urls']['mainpage']['href'] ?>" title="<?php echo $wgSitename ?>"><?php echo isset( $wgLogo ) && $wgLogo ? "<img src='{$wgLogo}' alt='Logo'/> " : ''; echo $wgSitenameshort ?: $wgSitename; ?></a>
</div>
<div class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li>
<a href="<?php echo $this->data['nav_urls']['mainpage']['href'] ?>">Home</a>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Tools <span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="<?php echo $url_prefix; ?>Special:RecentChanges" class="recent-changes"><i class="fa fa-edit"></i> Recent Changes</a></li>
<li><a href="<?php echo $url_prefix; ?>Special:SpecialPages" class="special-pages"><i class="fa fa-star-o"></i> Special Pages</a></li>
<?php if ( $wgEnableUploads ) { ?>
<li><a href="<?php echo $url_prefix; ?>Special:Upload" class="upload-a-file"><i class="fa fa-upload"></i> Upload a File</a></li>
<?php } ?>
</ul>
</li>
<?php echo $this->nav( $this->get_page_links( 'Bootstrap:TitleBar' ) ); ?>
</ul>
<?php
if ( $wgUser->isLoggedIn() ) {
if ( count( $this->data['personal_urls'] ) > 0 ) {
$user_icon = '<span class="user-icon"><img src="https://secure.gravatar.com/avatar/'.md5(strtolower( $wgUser->getEmail())).'.jpg?s=20&r=g"/></span>';
$user_nav = $this->get_array_links( $this->data['personal_urls'], $user_icon . $wgUser->getName(), 'user' );
?>
<ul<?php $this->html('userlangattributes') ?> class="nav navbar-nav navbar-right">
<?php echo $user_nav; ?>
</ul>
<?php
}//end if
if ( count( $this->data['content_actions']) > 0 ) {
$content_nav = $this->get_array_links( $this->data['content_actions'], 'Page', 'page' );
?>
<ul class="nav navbar-nav navbar-right content-actions"><?php echo $content_nav; ?></ul>
<?php
}//end if
} else { // else if is logged in
?>
<ul class="nav navbar-nav navbar-right">
<li>
<?php echo Linker::linkKnown( SpecialPage::getTitleFor( 'Userlogin' ), wfMessage( 'login' ), array(/*"title" => wfMessage( 'login' )*/), array("returnto" => trim($_GET['title']))); ?>
</li>
</ul>
<?php
}
?>
<form class="navbar-search navbar-form navbar-right" action="<?php $this->text( 'wgScript' ) ?>" id="searchform" role="search">
<div>
<input class="form-control" type="search" name="search" placeholder="Search" title="Search <?php echo $wgSitename; ?> [ctrl-option-f]" accesskey="f" id="searchInput" autocomplete="off">
<input type="hidden" name="title" value="Special:Search">
</div>
</form>
</div>
</div>
</div><!-- topbar -->
<?php
if( $subnav_links = $this->get_page_links('Bootstrap:Subnav') ) {
?>
<div class="subnav subnav-fixed">
<div class="container">
<?php
$subnav_select = $this->nav_select( $subnav_links );
if ( trim( $subnav_select ) ) {
?>
<select id="subnav-select">
<?php echo $subnav_select; ?>
</select>
<?php
}//end if
?>
<ul class="nav nav-pills">
<?php echo $this->nav( $subnav_links ); ?>
</ul>
</div>
</div>
<?php
}//end if
?>
<div id="wiki-outer-body">
<div id="wiki-body" class="container">
<?php
if ( 'sidebar' == $wgTOCLocation ) {
?>
<div class="row">
<section class="col-md-3 toc-sidebar"></section>
<section class="col-md-9 wiki-body-section">
<?php
}//end if
?>
<?php if( $this->data['sitenotice'] ) { ?><div id="siteNotice" class="alert-message warning"><?php $this->html('sitenotice') ?></div><?php } ?>
<?php if ( $this->data['undelete'] ): ?>
<!-- undelete -->
<div id="contentSub2"><?php $this->html( 'undelete' ) ?></div>
<!-- /undelete -->
<?php endif; ?>
<?php if($this->data['newtalk'] ): ?>
<!-- newtalk -->
<div class="usermessage"><?php $this->html( 'newtalk' ) ?></div>
<!-- /newtalk -->
<?php endif; ?>
<div class="pagetitle page-header">
<h1><?php $this->html( 'title' ) ?> <small><?php $this->html('subtitle') ?></small></h1>
</div>
<div class="body">
<?php $this->html( 'bodytext' ) ?>
</div>
<?php if ( $this->data['catlinks'] ): ?>
<div class="category-links">
<!-- catlinks -->
<?php $this->html( 'catlinks' ); ?>
<!-- /catlinks -->
</div>
<?php endif; ?>
<?php if ( $this->data['dataAfterContent'] ): ?>
<div class="data-after-content">
<!-- dataAfterContent -->
<?php $this->html( 'dataAfterContent' ); ?>
<!-- /dataAfterContent -->
</div>
<?php endif; ?>
<?php
if ( 'sidebar' == $wgTOCLocation ) {
?>
</section></section>
<?php
}//end if
?>
</div><!-- container -->
</div>
<div class="bottom">
<div class="container">
<footer>
<div class="row"><div class="col-md-6">This wiki is licensed to the public under a <a class="external" rel="nofollow" href="https://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0</a> license.<br> Your use of this wiki is governed by the <a href="/CcWiki:Terms_of_Use">Terms of Use</a>.<br><a href="/wiki/CCWiki:Privacy_policy" title="CCWiki:Privacy policy">Privacy policy</a><br><a href="/wiki/CCWiki:About" title="CCWiki:About">About Creative Commons</a><br><a href="/wiki/CCWiki:General_disclaimer" title="CCWiki:General disclaimer">Disclaimers</a></div>
<div class="col-md-6"><?php echo $this->data['lastmod']; ?><br>Theme based on <a href="https://github.com/creativecommons/bootstrap-mediawiki">bootstrap-mediawiki</a> by BorkWeb.<br><br><a href="https://creativecommons.org/licenses/by/4.0/"><img src="https://licensebuttons.net/l/by/4.0/88x31.png" alt="Creative Commons Attribution 4.0" width="88" height="31"></a> <a href="//www.mediawiki.org/"><img src="/resources/assets/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" srcset="/resources/assets/poweredby_mediawiki_132x47.png 1.5x, /resources/assets/poweredby_mediawiki_176x62.png 2x" width="88" height="31"></div></div>
</footer>
</div><!-- container -->
</div><!-- bottom -->
<?php
$this->html('bottomscripts'); /* JS call to runBodyOnloadHook */
$this->html('reporttime');
if ( $this->data['debug'] ) {
?>
<!-- Debug output:
<?php $this->text( 'debug' ); ?>
-->
<?php
}//end if
?>
</body>
</html>
<?php
}//end execute
/**
* Render one or more navigations elements by name, automatically reveresed
* when UI is in RTL mode
*/
private function nav( $nav ) {
$output = '';
foreach ( $nav as $topItem ) {
$pageTitle = Title::newFromText( $topItem['link'] ?: $topItem['title'] );
if ( array_key_exists( 'sublinks', $topItem ) ) {
$output .= '<li class="dropdown">';
$output .= '<a href="#" class="dropdown-toggle" data-toggle="dropdown">' . $topItem['title'] . ' <b class="caret"></b></a>';
$output .= '<ul class="dropdown-menu">';
foreach ( $topItem['sublinks'] as $subLink ) {
if ( 'divider' == $subLink ) {
$output .= "<li class='divider'></li>\n";
} elseif ( $subLink['textonly'] ) {
$output .= "<li class='nav-header'>{$subLink['title']}</li>\n";
} else {
if( $subLink['local'] && $pageTitle = Title::newFromText( $subLink['link'] ) ) {
$href = $pageTitle->getLocalURL();
} else {
$href = $subLink['link'];
}//end else
$slug = strtolower( str_replace(' ', '-', preg_replace( '/[^a-zA-Z0-9 ]/', '', trim( strip_tags( $subLink['title'] ) ) ) ) );
$output .= "<li {$subLink['attributes']}><a href='{$href}' class='{$subLink['class']} {$slug}'>{$subLink['title']}</a>";
}//end else
}
$output .= '</ul>';
$output .= '</li>';
} else {
if( $pageTitle ) {
$output .= '<li' . ($this->data['title'] == $topItem['title'] ? ' class="active"' : '') . '><a href="' . ( $topItem['external'] ? $topItem['link'] : $pageTitle->getLocalURL() ) . '">' . $topItem['title'] . '</a></li>';
}//end if
}//end else
}//end foreach
return $output;
}//end nav
/**
* Render one or more navigations elements by name, automatically reveresed
* when UI is in RTL mode
*/
private function nav_select( $nav ) {
$output = '';
foreach ( $nav as $topItem ) {
$pageTitle = Title::newFromText( $topItem['link'] ?: $topItem['title'] );
$output .= '<optgroup label="'.strip_tags( $topItem['title'] ).'">';
if ( array_key_exists( 'sublinks', $topItem ) ) {
foreach ( $topItem['sublinks'] as $subLink ) {
if ( 'divider' == $subLink ) {
$output .= "<option value='' disabled='disabled' class='unclickable'>----</option>\n";
} elseif ( $subLink['textonly'] ) {
$output .= "<option value='' disabled='disabled' class='unclickable'>{$subLink['title']}</option>\n";
} else {
if( $subLink['local'] && $pageTitle = Title::newFromText( $subLink['link'] ) ) {
$href = $pageTitle->getLocalURL();
} else {
$href = $subLink['link'];
}//end else
$output .= "<option value='{$href}'>{$subLink['title']}</option>";
}//end else
}//end foreach
} elseif ( $pageTitle ) {
$output .= '<option value="' . $pageTitle->getLocalURL() . '">' . $topItem['title'] . '</option>';
}//end else
$output .= '</optgroup>';
}//end foreach
return $output;
}//end nav_select
private function get_page_links( $source ) {
$titleBar = $this->getPageRawText( $source );
$nav = array();
foreach(explode("\n", $titleBar) as $line) {
if(trim($line) == '') continue;
if( preg_match('/^\*\*\s*divider/', $line ) ) {
$nav[ count( $nav ) - 1]['sublinks'][] = 'divider';
continue;
}//end if
$sub = false;
$link = false;
$external = false;
if(preg_match('/^\*\s*([^\*]*)\[\[:?(.+)\]\]/', $line, $match)) {
$sub = false;
$link = true;
}elseif(preg_match('/^\*\s*([^\*\[]*)\[([^\[ ]+) (.+)\]/', $line, $match)) {
$sub = false;
$link = true;
$external = true;
}elseif(preg_match('/^\*\*\s*([^\*\[]*)\[([^\[ ]+) (.+)\]/', $line, $match)) {
$sub = true;
$link = true;
$external = true;
}elseif(preg_match('/\*\*\s*([^\*]*)\[\[:?(.+)\]\]/', $line, $match)) {
$sub = true;
$link = true;
}elseif(preg_match('/\*\*\s*([^\* ]*)(.+)/', $line, $match)) {
$sub = true;
$link = false;
}elseif(preg_match('/^\*\s*(.+)/', $line, $match)) {
$sub = false;
$link = false;
}
if( strpos( $match[2], '|' ) !== false ) {
$item = explode( '|', $match[2] );
$item = array(
'title' => $match[1] . $item[1],
'link' => $item[0],
'local' => true,
);
} else {
if( $external ) {
$item = $match[2];
$title = $match[1] . $match[3];
} else {
$item = $match[1] . $match[2];
$title = $item;
}//end else
if( $link ) {
$item = array('title'=> $title, 'link' => $item, 'local' => ! $external , 'external' => $external );
} else {
$item = array('title'=> $title, 'link' => $item, 'textonly' => true, 'external' => $external );
}//end else
}//end else
if( $sub ) {
$nav[count( $nav ) - 1]['sublinks'][] = $item;
} else {
$nav[] = $item;
}//end else
}
return $nav;
}//end get_page_links
private function get_array_links( $array, $title, $which ) {
$nav = array();
$nav[] = array('title' => $title );
foreach( $array as $key => $item ) {
$link = array(
'id' => Sanitizer::escapeId( $key ),
'attributes' => $item['attributes'],
'link' => htmlspecialchars( $item['href'] ),
'key' => $item['key'],
'class' => htmlspecialchars( $item['class'] ),
'title' => htmlspecialchars( $item['text'] ),
);
if( 'page' == $which ) {
switch( $link['title'] ) {
case 'Page': $icon = 'file'; break;
case 'Discussion': $icon = 'comment'; break;
case 'Edit': $icon = 'pencil'; break;
case 'History': $icon = 'clock-o'; break;
case 'Delete': $icon = 'remove'; break;
case 'Move': $icon = 'arrows'; break;
case 'Protect': $icon = 'lock'; break;
case 'Watch': $icon = 'eye-open'; break;
case 'Unwatch': $icon = 'eye-slash'; break;
}//end switch
$link['title'] = '<i class="fa fa-' . $icon . '"></i> ' . $link['title'];
} elseif( 'user' == $which ) {
switch( $link['title'] ) {
case 'My talk': $icon = 'comment'; break;
case 'My preferences': $icon = 'cog'; break;
case 'My watchlist': $icon = 'eye-close'; break;
case 'My contributions': $icon = 'list-alt'; break;
case 'Log out': $icon = 'off'; break;
default: $icon = 'user'; break;
}//end switch
$link['title'] = '<i class="fa fa-' . $icon . '"></i> ' . $link['title'];
}//end elseif
$nav[0]['sublinks'][] = $link;
}//end foreach
return $this->nav( $nav );
}//end get_array_links
function getPageRawText($title) {
global $wgParser, $wgUser;
$pageTitle = Title::newFromText($title);
if(!$pageTitle->exists()) {
return 'Create the page [[Bootstrap:TitleBar]]';
} else {
$article = new Article($pageTitle);
$wgParserOptions = new ParserOptions($wgUser);
// get the text as static wiki text, but with already expanded templates,
// which also e.g. to use {{#dpl}} (DPL third party extension) for dynamic menus.
$parserOutput = $wgParser->preprocess($article->getRawText(), $pageTitle, $wgParserOptions );
return $parserOutput;
}
}
function includePage($title) {
global $wgParser, $wgUser;
$pageTitle = Title::newFromText($title);
if(!$pageTitle->exists()) {
echo 'The page [[' . $title . ']] was not found.';
} else {
$article = new Article($pageTitle);
$wgParserOptions = new ParserOptions($wgUser);
$parserOutput = $wgParser->parse($article->getRawText(), $pageTitle, $wgParserOptions);
echo $parserOutput->getText();
}
}
public static function link() { }
}