mediawiki-extensions-Visual.../modules/parser/ext.core.TemplateHandler.js

531 lines
16 KiB
JavaScript
Raw Normal View History

/**
* Template and template argument handling, first cut.
*
* AsyncTokenTransformManager objects provide preprocessor-frame-like
* functionality once template args etc are fully expanded, and isolate
2012-01-20 00:49:27 +00:00
* individual transforms from concurrency issues. Template expansion is
* controlled using a tplExpandData structure created independently for each
* handled template tag.
*
* @author Gabriel Wicke <gwicke@wikimedia.org>
* @author Brion Vibber <brion@wikimedia.org>
*/
var $ = require('jquery'),
request = require('request'),
events = require('events'),
qs = require('querystring'),
ParserFunctions = require('./ext.core.ParserFunctions.js').ParserFunctions,
AttributeTransformManager = require('./mediawiki.TokenTransformManager.js')
.AttributeTransformManager;
function TemplateHandler ( manager ) {
this.reset();
this.register( manager );
this.parserFunctions = new ParserFunctions( manager );
}
2012-01-17 20:01:21 +00:00
TemplateHandler.prototype.reset = function ( token ) {
return {token: token};
};
// constants
TemplateHandler.prototype.rank = 1.1;
TemplateHandler.prototype.register = function ( manager ) {
this.manager = manager;
// Register for template and templatearg tag tokens
manager.addTransform( this.onTemplate.bind(this),
this.rank, 'tag', 'template' );
// Template argument expansion
manager.addTransform( this.onTemplateArg.bind(this),
this.rank, 'tag', 'templatearg' );
};
/**
* Main template token handler
*
* Expands target and arguments (both keys and values) and either directly
* calls or sets up the callback to _expandTemplate, which then fetches and
* processes the template.
*/
TemplateHandler.prototype.onTemplate = function ( token, cb ) {
//console.log('onTemplate! ' + JSON.stringify( token, null, 2 ) +
// ' args: ' + JSON.stringify( this.manager.args ));
// create a new temporary frame for argument and title expansions
2012-01-20 00:49:27 +00:00
var tplExpandData = {
args: {},
manager: this.manager,
cb: cb,
origToken: token,
resultTokens: [],
attribsAsync: true,
overallAsync: false,
expandDone: false
},
transformCB,
i = 0,
kvs = [],
res,
kv;
var attributes = [[[{ type: 'TEXT', value: '' }] , token.target ]]
.concat( this._nameArgs( token.orderedArgs ) );
//this.manager.env.dp( 'before AttributeTransformManager: ' +
// JSON.stringify( attributes, null, 2 ) );
new AttributeTransformManager(
this.manager,
2012-01-20 00:49:27 +00:00
this._returnAttributes.bind( this, tplExpandData )
).process( attributes );
// Unblock finish
2012-01-20 00:49:27 +00:00
if ( ! tplExpandData.attribsAsync ) {
// Attributes were transformed synchronously
this.manager.env.dp (
'sync attribs for ' + JSON.stringify( tplExpandData.target ),
tplExpandData.expandedArgs
);
// All attributes are fully expanded synchronously (no IO was needed)
2012-01-20 00:49:27 +00:00
return this._expandTemplate ( tplExpandData );
} else {
// Async attribute expansion is going on
this.manager.env.dp( 'async return for ' + JSON.stringify( token ));
2012-01-20 00:49:27 +00:00
tplExpandData.overallAsync = true;
return { async: true };
}
};
/**
* Create positional (number) keys for arguments without explicit keys
*/
TemplateHandler.prototype._nameArgs = function ( orderedArgs ) {
var n = 1,
out = [];
for ( var i = 0, l = orderedArgs.length; i < l; i++ ) {
// FIXME: Also check for whitespace-only named args!
if ( ! orderedArgs[i][0].length ) {
out.push( [[{ type: 'TEXT', value: n }], orderedArgs[i][1]]);
n++;
} else {
out.push( orderedArgs[i] );
}
}
this.manager.env.dp( '_nameArgs: ' + JSON.stringify( out ) );
return out;
};
/**
* Callback for argument (including target) expansion in AttributeTransformManager
*/
2012-01-20 00:49:27 +00:00
TemplateHandler.prototype._returnAttributes = function ( tplExpandData,
attributes )
{
this.manager.env.dp( 'TemplateHandler._returnAttributes: ' + JSON.stringify(attributes) );
// Remove the target from the attributes
2012-01-20 00:49:27 +00:00
tplExpandData.attribsAsync = false;
tplExpandData.target = attributes[0][1];
attributes.shift();
2012-01-20 00:49:27 +00:00
tplExpandData.expandedArgs = attributes;
if ( tplExpandData.overallAsync ) {
this._expandTemplate ( tplExpandData );
}
};
/**
* Fetch, tokenize and token-transform a template after all arguments and the
* target were expanded.
*/
2012-01-20 00:49:27 +00:00
TemplateHandler.prototype._expandTemplate = function ( tplExpandData ) {
//console.log('TemplateHandler.expandTemplate: ' +
2012-01-20 00:49:27 +00:00
// JSON.stringify( tplExpandData, null, 2 ) );
2012-01-20 00:49:27 +00:00
if ( ! tplExpandData.target ) {
this.manager.env.dp( 'No target! ' +
2012-01-20 00:49:27 +00:00
JSON.stringify( tplExpandData, null, 2 ) );
console.trace();
}
2012-01-20 00:49:27 +00:00
// TODO:
// check for 'subst:'
// check for variable magic names
// check for msg, msgnw, raw magics
// check for parser functions
// First, check the target for loops
var target = this.manager.env.normalizeTitle(
2012-01-20 00:49:27 +00:00
this.manager.env.tokensToString( tplExpandData.target )
);
var args = this.manager.env.KVtoHash( tplExpandData.expandedArgs );
this.manager.env.dp( 'argHash: ', args );
var prefix = target.split(':', 1)[0].toLowerCase();
if ( prefix && 'pf_' + prefix in this.parserFunctions ) {
var funcArg = target.substr( prefix.length + 1 );
this.manager.env.dp( 'entering prefix', funcArg, args );
var res = this.parserFunctions[ 'pf_' + prefix ]( funcArg,
tplExpandData.expandDone, args );
// XXX: support async parser functions!
if ( tplExpandData.overallAsync ) {
this.manager.env.dp( 'TemplateHandler._expandTemplate: calling back ' +
'after parser func ' + prefix + ' with res:' + JSON.stringify( res ) );
return tplExpandData.cb( res, false );
} else {
this.manager.env.dp( 'TemplateHandler._expandTemplate: sync return ' +
'after parser func ' + prefix + ' with res:' + JSON.stringify( res ) );
return { tokens: res };
//data.reset();
}
}
var checkRes = this.manager.loopAndDepthCheck.check( target );
if( checkRes ) {
// Loop detected, abort!
return {
tokens: [
{
type: 'TEXT',
value: checkRes
2012-01-17 20:01:21 +00:00
},
{
type: 'TAG',
name: 'a',
attrib: [['href', target]]
},
{
type: 'TEXT',
value: target
},
{
type: 'ENDTAG',
name: 'a'
}
]
};
}
2012-01-20 00:49:27 +00:00
// Get a nested transformation pipeline for the input type. The input
// pipeline includes the tokenizer, synchronous stage-1 transforms for
// 'text/wiki' input and asynchronous stage-2 transforms).
var inputPipeline = this.manager.newChildPipeline(
this.manager.inputType || 'text/wiki',
args,
2012-01-20 00:49:27 +00:00
tplExpandData.target
);
2012-01-20 00:49:27 +00:00
// Hook up the inputPipeline output events to our handlers
inputPipeline.addListener( 'chunk', this._onChunk.bind ( this, tplExpandData ) );
inputPipeline.addListener( 'end', this._onEnd.bind ( this, tplExpandData ) );
// Resolve a possibly relative link
var templateName = this.manager.env.resolveTitle(
target,
'Template'
);
2012-01-20 00:49:27 +00:00
// XXX: notes from brion's mediawiki.parser.environment
// resolve template name
// load template w/ canonical name
// load template w/ variant names (language variants)
// For now, just fetch the template and pass the callback for further
// processing along.
this._fetchTemplateAndTitle(
templateName,
this._processTemplateAndTitle.bind( this, inputPipeline ),
2012-01-20 00:49:27 +00:00
tplExpandData
);
2012-01-20 00:49:27 +00:00
// If nothing was async so far and the template source was retrieved and
// fully processed without async requests (using the cache), then
// expandDone is set to true in our _onEnd handler.
if ( tplExpandData.overallAsync ||
! tplExpandData.expandDone ) {
tplExpandData.overallAsync = true;
this.manager.env.dp( 'Async return from _expandTemplate for ' +
2012-01-20 00:49:27 +00:00
JSON.stringify ( tplExpandData.target ) );
return { async: true };
} else {
this.manager.env.dp( 'Sync return from _expandTemplate for ' +
2012-01-20 00:49:27 +00:00
JSON.stringify( tplExpandData.target ) + ' : ' +
JSON.stringify( tplExpandData.result )
);
2012-01-20 00:49:27 +00:00
return tplExpandData.result;
}
};
/**
* Handle chunk emitted from the input pipeline after feeding it a template
*/
2012-01-20 00:49:27 +00:00
TemplateHandler.prototype._onChunk = function( tplExpandData, chunk ) {
// We encapsulate the output by default, so collect tokens here.
this.manager.env.dp( 'TemplateHandler._onChunk' + JSON.stringify( chunk ) );
2012-01-20 00:49:27 +00:00
tplExpandData.resultTokens = tplExpandData.resultTokens.concat( chunk );
};
/**
* Handle the end event emitted by the parser pipeline after fully processing
* the template source.
*/
2012-01-20 00:49:27 +00:00
TemplateHandler.prototype._onEnd = function( tplExpandData, token ) {
this.manager.env.dp( 'TemplateHandler._onEnd' + JSON.stringify( tplExpandData.resultTokens ) );
tplExpandData.expandDone = true;
var res = tplExpandData.resultTokens;
2012-01-17 20:01:21 +00:00
// Remove 'end' token from end
if ( res.length && res[res.length - 1].type === 'END' ) {
this.manager.env.dp( 'TemplateHandler, stripping end ' );
2012-01-17 20:01:21 +00:00
res.pop();
}
2012-01-20 00:49:27 +00:00
// Could also encapsulate the template tokens here, if that turns out
// better for the editor.
//console.log( 'TemplateHandler._onEnd: ' + JSON.stringify( res, null, 2 ) );
2012-01-20 00:49:27 +00:00
if ( tplExpandData.overallAsync ) {
this.manager.env.dp( 'TemplateHandler._onEnd: calling back with res:' +
JSON.stringify( res ) );
2012-01-20 00:49:27 +00:00
tplExpandData.cb( res, false );
} else {
this.manager.env.dp( 'TemplateHandler._onEnd: synchronous return!' );
2012-01-20 00:49:27 +00:00
tplExpandData.result = { tokens: res };
//data.reset();
}
};
/**
* Process a fetched template source
*/
TemplateHandler.prototype._processTemplateAndTitle = function( pipeline, src, title ) {
// Feed the pipeline. XXX: Support different formats.
this.manager.env.dp( 'TemplateHandler._processTemplateAndTitle: ' + src );
pipeline.process ( src );
};
/**
* Fetch a template
*/
2012-01-20 00:49:27 +00:00
TemplateHandler.prototype._fetchTemplateAndTitle = function ( title, callback, tplExpandData ) {
// @fixme normalize name?
var self = this;
if ( title in this.manager.env.pageCache ) {
// Unwind the stack
2012-01-20 00:49:27 +00:00
process.nextTick(
function () {
callback( self.manager.env.pageCache[title], title );
2012-01-20 00:49:27 +00:00
}
);
} else if ( ! this.manager.env.fetchTemplates ) {
callback( 'Page/template fetching disabled, and no cache for ' + title, title );
} else {
2012-01-20 00:49:27 +00:00
// We are about to start an async request for a template, so mark this
// template expansion as such.
tplExpandData.overallAsync = true;
this.manager.env.dp( 'trying to fetch ' + title );
// Start a new request if none is outstanding
this.manager.env.dp( 'requestQueue: ', this.manager.env.requestQueue);
if ( this.manager.env.requestQueue[title] === undefined ) {
this.manager.env.requestQueue[title] = new TemplateRequest( this.manager, title );
}
// Append a listener to the request
this.manager.env.requestQueue[title].addListener( 'src', callback );
}
};
/*********************** Template argument expansion *******************/
/**
* Expand template arguments with tokens from the containing frame.
*/
TemplateHandler.prototype.onTemplateArg = function ( token, cb, frame ) {
var attributes = [[token.argname, token.defaultvalue]];
token.resultTokens = false;
new AttributeTransformManager(
this.manager,
this._returnArgAttributes.bind( this, token, cb, frame )
).process( attributes );
if ( token.resultTokens !== false ) {
// synchronous return
//console.log( 'synchronous attribute expand: ' + JSON.stringify( token.resultTokens ) );
return { tokens: token.resultTokens };
} else {
//console.log( 'asynchronous attribute expand: ' + JSON.stringify( token, null, 2 ) );
// asynchronous return
token.resultTokens = [];
return { async: true };
}
};
TemplateHandler.prototype._returnArgAttributes = function ( token, cb, frame, attributes ) {
//console.log( '_returnArgAttributes: ' + JSON.stringify( attributes ));
var argName = this.manager.env.tokensToString( attributes[0][0] ).trim(),
defaultValue = attributes[0][1],
res;
if ( argName in this.manager.args ) {
// return tokens for argument
//console.log( 'templateArg found: ' + argName +
// ' vs. ' + JSON.stringify( this.manager.args ) );
res = this.manager.args[argName];
} else {
this.manager.env.dp( 'templateArg not found: ' + argName +
' vs. ' + JSON.stringify( this.manager.args ) );
if ( defaultValue.length ) {
res = defaultValue;
} else {
res = [{ type: 'TEXT', value: '{{{' + argName + '}}}' }];
}
}
if ( token.resultTokens !== false ) {
cb( res );
} else {
token.resultTokens = res;
}
};
/***************** Template fetch request helper class ********/
function TemplateRequest ( manager, title ) {
// Increase the number of maximum listeners a bit..
this.setMaxListeners( 1000 );
var self = this,
url = manager.env.wgScriptPath + '/api' +
manager.env.wgScriptExtension +
'?' +
qs.stringify( {
format: 'json',
action: 'query',
prop: 'revisions',
rvprop: 'content',
titles: title
} );
//'?format=json&action=query&prop=revisions&rvprop=content&titles=' + title;
request({
method: 'GET',
followRedirect: true,
url: url,
headers: {
'User-Agent': 'Mozilla/5.0 (X11; Linux x86_64; rv:9.0.1) ' +
'Gecko/20100101 Firefox/9.0.1 Iceweasel/9.0.1'
}
},
function (error, response, body) {
//console.log( 'response for ' + title + ' :' + body + ':' );
if(error) {
manager.env.dp(error);
self.emit('src', 'Page/template fetch failure for title ' + title, title);
} else if(response.statusCode == 200) {
var src = '',
data,
normalizedTitle;
try {
//console.log( 'body: ' + body );
data = JSON.parse( body );
} catch(e) {
console.log( "Error: while parsing result. Error was: " );
console.log( e );
console.log( "Response that didn't parse was:");
console.log( "------------------------------------------\n" + body );
console.log( "------------------------------------------" );
}
try {
$.each( data.query.pages, function(i, page) {
if (page.revisions && page.revisions.length) {
src = page.revisions[0]['*'];
normalizeTitle = page.title;
}
});
} catch ( e2 ) {
console.log( 'Did not find page revisions in the returned body:' + body );
src = '';
}
//console.log( 'Page ' + title + ': got ' + src );
manager.env.dp( 'Success for ' + title + ' :' + body + ':' );
manager.env.pageCache[title] = src;
manager.env.dp(data);
self.emit( 'src', src, title );
}
// XXX: handle other status codes
// Remove self from request queue
manager.env.dp( 'trying to remove ' + title + ' from requestQueue' );
delete manager.env.requestQueue[title];
manager.env.dp( 'after deletion:', manager.env.requestQueue );
});
}
/*
* XXX: The jQuery version does not quite work with node, but we keep
* it around for now.
$.ajax({
url: url,
data: {
format: 'json',
action: 'query',
prop: 'revisions',
rvprop: 'content',
titles: title
},
success: function(data, statusString, xhr) {
console.log( 'Page ' + title + ' success ' + JSON.stringify( data ) );
var src = null, title = null;
$.each(data.query.pages, function(i, page) {
if (page.revisions && page.revisions.length) {
src = page.revisions[0]['*'];
title = page.title;
}
});
if (typeof src !== 'string') {
console.log( 'Page ' + title + 'not found! Got ' + src );
callback( 'Page ' + title + ' not found' );
} else {
// Add to cache
console.log( 'Page ' + title + ': got ' + src );
this.manager.env.pageCache[title] = src;
callback(src, title);
}
},
error: function(xhr, msg, err) {
console.log( 'Page/template fetch failure for title ' +
title + ', url=' + url + JSON.stringify(xhr) + ', err=' + err );
callback('Page/template fetch failure for title ' + title);
},
dataType: 'json',
cache: false, // @fixme caching, versions etc?
crossDomain: true
});
*/
// Inherit from EventEmitter
TemplateRequest.prototype = new events.EventEmitter();
TemplateHandler.prototype.constructor = TemplateRequest;
if (typeof module == "object") {
module.exports.TemplateHandler = TemplateHandler;
}