Mediawiki RawFile
Introduction
The idea is to be able to download directly a portion of code as a file.
I've numerous code examples in my wiki and I wast an easy way to download them, easier than a copy/paste!
- It must work with pre, nowiki, js, css, code, source, so let's make it general: take the tag that comes after the parser function we'll create and select data up to the closing tag.
2 parts:
- the parser magic word that will be converted into a "Save it as <filename>"
- an extended action=raw that will strip the raw output to keep the desired code
Documentation
- http://www.mediawiki.org/wiki/Manual:Extensions
- http://www.mediawiki.org/wiki/Manual:Magic_words
- http://www.mediawiki.org/wiki/Manual:Parser_functions
- http://meta.wikimedia.org/wiki/Help:Parser_function
- http://www.mediawiki.org/wiki/Manual:Hooks/RawPageViewBeforeOutput
Syntax
{{#rawsnippet: myscript.sh}}
Do we need a MIME type?
Transformation:
{{fullurl:{{PAGENAME}}|action=raw&rawsnippet=myscript.sh}}
Test: save the following code [{{#rawsnippet: myscript.sh}} as myscript.sh]
#!/bin/bash
echo 'Hello world!'
exit 0
{{#rawsnippet: myscript.sh}}
combines in fact 2 elements: the text that will be replaced by the link and the anchor just before the code section.
We can separate both functionalities with:
One such declaration, just before the code section:
{{#rawsnippetAnchor: myscript.sh}}
One or many such declarations to create the download links:
{{#rawsnippetLink: myscript.sh}}
Example: {{#rawsnippetanchor: myotherscript.sh}}
#!/bin/bash
echo 'Hello earth!'
exit 0
[{{#rawsnippetlink: myotherscript.sh}} myotherscript.sh is available now below the code]
Hook on Raw
- Must extract the right paragraph
- Strip all up to the right
rawsnippet: filename
tag - Find the next tag
- Select up to the closure tag
- Strip all up to the right
- Must provide the filename to the browser
- Tells the browser NOT to cache the raw
The code
Which you can of course download just by following [{{#rawsnippet: RawSnippet.php}} this link :-)]
<?php
if (defined('MEDIAWIKI')) {
# Define a setup function
$wgExtensionFunctions[] = 'efRawSnippet_Setup';
# Add a hook to initialise the magic word
$wgHooks['LanguageGetMagic'][] = 'efRawSnippet_Magic';
# Add a hook to intercept the raw output
$wgHooks['RawPageViewBeforeOutput'][] = 'fnRawSnippet_Strip';
function fnRawSnippet_Strip(&$rawPage, &$text) {
if (!isset($_GET['rawsnippet']))
return true;
$filename=$_GET['rawsnippet'];
header("Content-disposition:filename=".$filename);
header("Content-type:application/octetstream");
header("Expires: 0");
header("Content-Transfer-Encoding: binary");
header("Pragma: no-cache");
header("Cache-Control: no-store");
// First: find the right anchor
// We mask nowiki sections
$text2=preg_replace_callback('/<nowiki>(.*?)<\/nowiki>/',
create_function(
'$matches',
'return ereg_replace(".","X",$matches[0]);'
),
$text);
// We search rawsnippet anchor position
if (preg_match_all('/{{#rawsnippetanchor: +'.$filename.' *}}/i', $text2, $matches, PREG_OFFSET_CAPTURE))
$offset=$matches[0][0][1];
else if (preg_match_all('/{{#rawsnippet: +'.$filename.' *}}/i', $text2, $matches, PREG_OFFSET_CAPTURE))
$offset=$matches[0][0][1];
else
// We didn't find our anchor, let's output all the raw...
return true;
// Now let's remove the text up to our anchor
$text = substr($text, $offset);
// What's the type of tag do we have?
$text = substr($text, strpos($text, '<'));
if (!preg_match('/^<([^> ]+)/', $text, $matches))
return true;
$key = $matches[1];
// Let's extract the text up to the closing tag
$begin = strpos($text, '>')+1;
if (ord(substr($text,$begin,1))==10)
$begin++;
if (preg_match_all('/<\/'.$key.'>/', $text, $matches, PREG_OFFSET_CAPTURE))
$text = substr($text, $begin, $matches[0][0][1]-$begin);
else
$text = substr($text, $begin);
header("Content-Length: ".strlen($text));
return true;
//TODO: downloadAs..
}
function efRawSnippet_Setup() {
global $wgParser;
# Set a function hook associating the "rawsnippet" magic word with our function
$wgParser->setFunctionHook( 'rawsnippet', 'efRawSnippet_Render' );
$wgParser->setFunctionHook( 'rawsnippetlink', 'efRawSnippet_Render' );
$wgParser->setFunctionHook( 'rawsnippetanchor', 'efRawSnippet_Empty' );
}
function efRawSnippet_Magic( &$magicWords, $langCode ) {
# Add the magic word
# The first array element is case sensitive, in this case it is not case sensitive
# All remaining elements are synonyms for our parser function
$magicWords['rawsnippet'] = array( 0, 'rawsnippet', 'downloadAs' );
$magicWords['rawsnippetlink'] = array( 0, 'rawsnippetlink', 'downloadLink' );
$magicWords['rawsnippetanchor'] = array( 0, 'rawsnippetanchor', 'downloadAnchor' );
# unless we return true, other parser functions extensions will not get loaded.
return true;
}
function efRawSnippet_Render( &$parser, $filename = '') {
# The parser function itself
# The input parameters are wikitext with templates expanded
# The output should be wikitext too
return '{{fullurl:{{PAGENAME}}|action=raw&rawsnippet='.$filename.'}}';
//TODO+support for other pages
}
function efRawSnippet_Empty( &$parser, $filename = '') {
return '';
}
$wgExtensionCredits['parserhook'][] = array('name' => 'RawSnippet',
'version' => '0.1',
'author' => 'Philippe Teuwen',
// 'url' => 'http://www.mediawiki.org/wiki/Extension:LocalServer',
'url' => 'http://wiki.yobi.be/wiki/Mediawiki_RawSnippet',
'description' => 'Downloads a RAW copy of <nowiki><tag>data</tag></nowiki> in a file<br>'.
'Useful e.g. to download an example code or a patch');
}
?>