2 ** $Id: pz2.js,v 1.70 2008-03-12 11:36:57 jakub Exp $
3 ** pz2.js - pazpar2's javascript client library.
6 //since explorer is flawed
8 window.Node = new Object();
10 Node.ATTRIBUTE_NODE = 2;
12 Node.CDATA_SECTION_NODE = 4;
13 Node.ENTITY_REFERENCE_NODE = 5;
15 Node.PROCESSING_INSTRUCTION_NODE = 7;
16 Node.COMMENT_NODE = 8;
17 Node.DOCUMENT_NODE = 9;
18 Node.DOCUMENT_TYPE_NODE = 10;
19 Node.DOCUMENT_FRAGMENT_NODE = 11;
20 Node.NOTATION_NODE = 12;
23 // prevent execution of more than once
24 if(typeof window.pz2 == "undefined") {
25 window.undefined = window.undefined;
27 var pz2 = function ( paramArray )
30 // at least one callback required
32 throw new Error("Pz2.js: Array with parameters has to be suplied.");
34 //supported pazpar2's protocol version
35 this.suppProtoVer = '1';
36 if (typeof paramArray.pazpar2path != "undefined")
37 this.pz2String = paramArray.pazpar2path;
39 this.pz2String = "/pazpar2/search.pz2";
40 this.useSessions = true;
42 this.stylesheet = paramArray.detailstylesheet || null;
43 //load stylesheet if required in async mode
44 if( this.stylesheet ) {
46 var request = new pzHttpRequest( this.stylesheet );
47 request.get( {}, function ( doc ) { context.xslDoc = doc; } );
50 this.errorHandler = paramArray.errorhandler || null;
53 this.initCallback = paramArray.oninit || null;
54 this.statCallback = paramArray.onstat || null;
55 this.showCallback = paramArray.onshow || null;
56 this.termlistCallback = paramArray.onterm || null;
57 this.recordCallback = paramArray.onrecord || null;
58 this.bytargetCallback = paramArray.onbytarget || null;
59 this.resetCallback = paramArray.onreset || null;
62 this.termKeys = paramArray.termlist || "subject";
64 // some configurational stuff
65 this.keepAlive = 50000;
67 if ( paramArray.keepAlive < this.keepAlive )
68 this.keepAlive = paramArray.keepAlive;
70 this.sessionID = null;
71 this.initStatusOK = false;
72 this.pingStatusOK = false;
73 this.searchStatusOK = false;
76 this.currentSort = "relevance";
79 this.currentStart = 0;
82 // last full record retrieved
83 this.currRecID = null;
86 this.currQuery = null;
88 //current raw record offset
89 this.currRecOffset = null;
92 this.statTime = paramArray.stattime || 1000;
93 this.statTimer = null;
94 this.termTime = paramArray.termtime || 1000;
95 this.termTimer = null;
96 this.showTime = paramArray.showtime || 1000;
97 this.showTimer = null;
98 this.showFastCount = 4;
99 this.bytargetTime = paramArray.bytargettime || 1000;
100 this.bytargetTimer = null;
101 this.recordTime = paramArray.recordtime || 500;
102 this.recordTimer = null;
104 // counters for each command and applied delay
105 this.dumpFactor = 500;
106 this.showCounter = 0;
107 this.termCounter = 0;
108 this.statCounter = 0;
109 this.bytargetCounter = 0;
110 this.recordCounter = 0;
112 // active clients, updated by stat and show
113 // might be an issue since bytarget will poll accordingly
114 this.activeClients = 1;
116 // if in proxy mode no need to init
117 if (paramArray.usesessions != undefined) {
118 this.useSessions = paramArray.usesessions;
119 this.initStatusOK = true;
121 // else, auto init session or wait for a user init?
122 if (this.useSessions && paramArray.autoInit !== false) {
129 //error handler for async error throws
130 throwError: function (errMsg, errCode)
132 var err = new Error(errMsg);
133 if (errCode) err.code = errCode;
135 if (this.errorHandler) {
136 this.errorHandler(err);
143 // stop activity by clearing tiemouts
146 clearTimeout(this.statTimer);
147 clearTimeout(this.showTimer);
148 clearTimeout(this.termTimer);
149 clearTimeout(this.bytargetTimer);
152 // reset status variables
155 if ( this.useSessions ) {
156 this.sessionID = null;
157 this.initStatusOK = false;
158 this.pingStatusOK = false;
160 this.searchStatusOK = false;
163 if ( this.resetCallback )
164 this.resetCallback();
167 init: function ( sessionId )
171 // session id as a param
172 if ( sessionId != undefined && this.useSessions ) {
173 this.initStatusOK = true;
174 this.sessionID = sessionId;
176 // old school direct pazpar2 init
177 } else if (this.useSessions) {
179 var request = new pzHttpRequest(this.pz2String, this.errorHandler);
181 { "command": "init" },
183 if ( data.getElementsByTagName("status")[0]
184 .childNodes[0].nodeValue == "OK" ) {
185 if ( data.getElementsByTagName("protocol")[0]
186 .childNodes[0].nodeValue
187 != context.suppProtoVer )
189 "Server's protocol not supported by the client"
191 context.initStatusOK = true;
193 data.getElementsByTagName("session")[0]
194 .childNodes[0].nodeValue;
201 if ( context.initCallback )
202 context.initCallback();
205 context.throwError('Init failed. Malformed WS resonse.',
209 // when through proxy no need to init
211 this.initStatusOK = true;
214 // no need to ping explicitly
217 // pinging only makes sense when using pazpar2 directly
218 if( !this.initStatusOK || !this.useSessions )
220 'Pz2.js: Ping not allowed (proxy mode) or session not initialized.'
223 var request = new pzHttpRequest(this.pz2String, this.errorHandler);
225 { "command": "ping", "session": this.sessionID },
227 if ( data.getElementsByTagName("status")[0]
228 .childNodes[0].nodeValue == "OK" ) {
229 context.pingStatusOK = true;
238 context.throwError('Ping failed. Malformed WS resonse.',
243 search: function (query, num, sort, filter, showfrom, addParamsArr)
245 clearTimeout(this.statTimer);
246 clearTimeout(this.showTimer);
247 clearTimeout(this.termTimer);
248 clearTimeout(this.bytargetTimer);
250 this.showCounter = 0;
251 this.termCounter = 0;
252 this.bytargetCounter = 0;
253 this.statCounter = 0;
256 if( !this.initStatusOK )
257 throw new Error('Pz2.js: session not initialized.');
259 if( query !== undefined )
260 this.currQuery = query;
262 throw new Error("Pz2.js: no query supplied to the search command.");
264 if ( showfrom !== undefined )
265 var start = showfrom;
271 "query": this.currQuery,
272 "session": this.sessionID
275 if (filter !== undefined)
276 searchParams["filter"] = filter;
278 // copy additional parmeters, do not overwrite
279 if (addParamsArr != undefined) {
280 for (var prop in addParamsArr) {
281 if (!searchParams.hasOwnProperty(prop))
282 searchParams[prop] = addParamsArr[prop];
287 var request = new pzHttpRequest(this.pz2String, this.errorHandler);
291 if ( data.getElementsByTagName("status")[0]
292 .childNodes[0].nodeValue == "OK" ) {
293 context.searchStatusOK = true;
295 context.show(start, num, sort);
296 if ( context.statCallback )
298 if ( context.termlistCallback )
300 if ( context.bytargetCallback )
304 context.throwError('Search failed. Malformed WS resonse.',
311 if( !this.initStatusOK )
312 throw new Error('Pz2.js: session not initialized.');
314 // if called explicitly takes precedence
315 clearTimeout(this.statTimer);
318 var request = new pzHttpRequest(this.pz2String, this.errorHandler);
320 { "command": "stat", "session": this.sessionID },
322 if ( data.getElementsByTagName("stat") ) {
324 Number( data.getElementsByTagName("activeclients")[0]
325 .childNodes[0].nodeValue );
326 context.activeClients = activeClients;
328 var stat = Element_parseChildNodes(data.documentElement);
330 context.statCounter++;
331 var delay = context.statTime
332 + context.statCounter * context.dumpFactor;
334 if ( activeClients > 0 )
342 context.statCallback(stat);
345 context.throwError('Stat failed. Malformed WS resonse.',
350 show: function(start, num, sort)
352 if( !this.searchStatusOK && this.useSessions )
354 'Pz2.js: show command has to be preceded with a search command.'
357 // if called explicitly takes precedence
358 clearTimeout(this.showTimer);
360 if( sort !== undefined )
361 this.currentSort = sort;
362 if( start !== undefined )
363 this.currentStart = Number( start );
364 if( num !== undefined )
365 this.currentNum = Number( num );
368 var request = new pzHttpRequest(this.pz2String, this.errorHandler);
372 "session": this.sessionID,
373 "start": this.currentStart,
374 "num": this.currentNum,
375 "sort": this.currentSort,
379 if ( data.getElementsByTagName("status")[0]
380 .childNodes[0].nodeValue == "OK" ) {
381 // first parse the status data send along with records
382 // this is strictly bound to the format
384 Number( data.getElementsByTagName("activeclients")[0]
385 .childNodes[0].nodeValue );
386 context.activeClients = activeClients;
388 "activeclients": activeClients,
390 Number( data.getElementsByTagName("merged")[0]
391 .childNodes[0].nodeValue ),
393 Number( data.getElementsByTagName("total")[0]
394 .childNodes[0].nodeValue ),
396 Number( data.getElementsByTagName("start")[0]
397 .childNodes[0].nodeValue ),
399 Number( data.getElementsByTagName("num")[0]
400 .childNodes[0].nodeValue ),
403 // parse all the first-level nodes for all <hit> tags
404 var hits = data.getElementsByTagName("hit");
405 for (i = 0; i < hits.length; i++)
406 show.hits[i] = Element_parseChildNodes(hits[i]);
408 context.showCounter++;
409 var delay = context.showTime;
410 if (context.showCounter > context.showFastCount)
411 delay += context.showCounter * context.dumpFactor;
412 if ( activeClients > 0 )
413 context.showTimer = setTimeout(
419 context.showCallback(show);
422 context.throwError('Show failed. Malformed WS resonse.',
427 record: function(id, offset, syntax, handler)
429 // we may call record with no previous search if in proxy mode
430 if(!this.searchStatusOK && this.useSessions)
432 'Pz2.js: record command has to be preceded with a search command.'
435 if( id !== undefined )
440 "session": this.sessionID,
444 this.currRecOffset = null;
445 if (offset != undefined) {
446 recordParams["offset"] = offset;
447 this.currRecOffset = offset;
450 if (syntax != undefined)
451 recordParams['syntax'] = syntax;
453 //overwrite default callback id needed
454 var callback = this.recordCallback;
455 var args = undefined;
456 if (handler != undefined) {
457 callback = handler['callback'];
458 args = handler['args'];
462 var request = new pzHttpRequest(this.pz2String, this.errorHandler);
470 if (context.currRecOffset !== null) {
471 record = new Array();
472 record['xmlDoc'] = data;
473 record['offset'] = context.currRecOffset;
474 callback(record, args);
476 } else if ( recordNode =
477 data.getElementsByTagName("record")[0] ) {
478 // if stylesheet was fetched do not parse the response
479 if ( context.xslDoc ) {
480 record = new Array();
481 record['xmlDoc'] = data;
482 record['xslDoc'] = context.xslDoc;
484 recordNode.getElementsByTagName("recid")[0]
485 .firstChild.nodeValue;
488 record = Element_parseChildNodes(recordNode);
491 Number( data.getElementsByTagName("activeclients")[0]
492 .childNodes[0].nodeValue );
493 context.activeClients = activeClients;
494 context.recordCounter++;
495 var delay = context.recordTime + context.recordCounter * context.dumpFactor;
496 if ( activeClients > 0 )
497 context.recordTimer =
500 context.record(id, offset, syntax, handler);
504 callback(record, args);
507 context.throwError('Record failed. Malformed WS resonse.',
515 if( !this.searchStatusOK && this.useSessions )
517 'Pz2.js: termlist command has to be preceded with a search command.'
520 // if called explicitly takes precedence
521 clearTimeout(this.termTimer);
524 var request = new pzHttpRequest(this.pz2String, this.errorHandler);
527 "command": "termlist",
528 "session": this.sessionID,
529 "name": this.termKeys
532 if ( data.getElementsByTagName("termlist") ) {
534 Number( data.getElementsByTagName("activeclients")[0]
535 .childNodes[0].nodeValue );
536 context.activeClients = activeClients;
537 var termList = { "activeclients": activeClients };
538 var termLists = data.getElementsByTagName("list");
540 for (i = 0; i < termLists.length; i++) {
541 var listName = termLists[i].getAttribute('name');
542 termList[listName] = new Array();
543 var terms = termLists[i].getElementsByTagName('term');
544 //for each term in the list
545 for (j = 0; j < terms.length; j++) {
548 (terms[j].getElementsByTagName("name")[0]
550 ? terms[j].getElementsByTagName("name")[0]
551 .childNodes[0].nodeValue
555 .getElementsByTagName("frequency")[0]
556 .childNodes[0].nodeValue || 'ERROR'
560 terms[j].getElementsByTagName("id");
561 if(terms[j].getElementsByTagName("id").length)
563 termIdNode[0].childNodes[0].nodeValue;
564 termList[listName][j] = term;
568 context.termCounter++;
569 var delay = context.termTime
570 + context.termCounter * context.dumpFactor;
571 if ( activeClients > 0 )
580 context.termlistCallback(termList);
583 context.throwError('Termlist failed. Malformed WS resonse.',
591 if( !this.initStatusOK && this.useSessions )
593 'Pz2.js: bytarget command has to be preceded with a search command.'
596 // no need to continue
597 if( !this.searchStatusOK )
600 // if called explicitly takes precedence
601 clearTimeout(this.bytargetTimer);
604 var request = new pzHttpRequest(this.pz2String, this.errorHandler);
606 { "command": "bytarget", "session": this.sessionID },
608 if ( data.getElementsByTagName("status")[0]
609 .childNodes[0].nodeValue == "OK" ) {
610 var targetNodes = data.getElementsByTagName("target");
611 var bytarget = new Array();
612 for ( i = 0; i < targetNodes.length; i++) {
613 bytarget[i] = new Array();
614 for( j = 0; j < targetNodes[i].childNodes.length; j++ ) {
615 if ( targetNodes[i].childNodes[j].nodeType
616 == Node.ELEMENT_NODE ) {
618 targetNodes[i].childNodes[j].nodeName;
620 targetNodes[i].childNodes[j]
621 .firstChild.nodeValue;
622 bytarget[i][nodeName] = nodeText;
627 context.bytargetCounter++;
628 var delay = context.bytargetTime
629 + context.bytargetCounter * context.dumpFactor;
630 if ( context.activeClients > 0 )
631 context.bytargetTimer =
639 context.bytargetCallback(bytarget);
642 context.throwError('Bytarget failed. Malformed WS resonse.',
648 // just for testing, probably shouldn't be here
649 showNext: function(page)
651 var step = page || 1;
652 this.show( ( step * this.currentNum ) + this.currentStart );
655 showPrev: function(page)
657 if (this.currentStart == 0 )
659 var step = page || 1;
660 var newStart = this.currentStart - (step * this.currentNum );
661 this.show( newStart > 0 ? newStart : 0 );
664 showPage: function(pageNum)
666 //var page = pageNum || 1;
667 this.show(pageNum * this.currentNum);
672 ********************************************************************************
673 ** AJAX HELPER CLASS ***********************************************************
674 ********************************************************************************
676 var pzHttpRequest = function ( url, errorHandler ) {
677 this.maxUrlLength = 2048;
680 this.errorHandler = errorHandler || null;
682 this.requestHeaders = {};
684 if ( window.XMLHttpRequest ) {
685 this.request = new XMLHttpRequest();
686 } else if ( window.ActiveXObject ) {
688 this.request = new ActiveXObject( 'Msxml2.XMLHTTP' );
690 this.request = new ActiveXObject( 'Microsoft.XMLHTTP' );
695 pzHttpRequest.prototype =
697 safeGet: function ( params, callback )
699 var encodedParams = this.encodeParams(params);
700 var url = this._urlAppendParams(encodedParams);
701 if (url.length >= this.maxUrlLength) {
702 this.requestHeaders["Content-Type"]
703 = "application/x-www-form-urlencoded";
704 this._send( 'POST', this.url, encodedParams, callback );
706 this._send( 'GET', url, '', callback );
710 get: function ( params, callback )
712 this._send( 'GET', this._urlAppendParams(this.encodeParams(params)),
716 post: function ( params, data, callback )
718 this._send( 'POST', this._urlAppendParams(this.encodeParams(params)),
725 this.request.open( 'GET', this.url, this.async );
726 this.request.send('');
727 if ( this.request.status == 200 )
728 return this.request.responseXML;
731 encodeParams: function (params)
735 for (var key in params) {
736 if (params[key] != null) {
737 encoded += sep + key + '=' + encodeURIComponent(params[key]);
744 _send: function ( type, url, data, callback)
747 this.callback = callback;
749 this.request.open( type, url, this.async );
750 for (var key in this.requestHeaders)
751 this.request.setRequestHeader(key, this.requestHeaders[key]);
752 this.request.onreadystatechange = function () {
753 context._handleResponse();
755 this.request.send(data);
758 _urlAppendParams: function (encodedParams)
761 return this.url + "?" + encodedParams;
766 _handleResponse: function ()
768 if ( this.request.readyState == 4 ) {
769 // pick up appplication errors first
771 if (this.request.responseXML &&
772 (errNode = this.request.responseXML.documentElement)
773 && errNode.nodeName == 'error') {
774 var errMsg = errNode.getAttribute("msg");
775 var errCode = errNode.getAttribute("code");
777 if (errNode.childNodes.length)
778 errAddInfo = ': ' + errNode.childNodes[0].nodeValue;
780 var err = new Error(errMsg + errAddInfo);
783 if (this.errorHandler) {
784 this.errorHandler(err);
789 } else if (this.request.status == 200) {
790 this.callback(this.request.responseXML);
792 var err = new Error("HTTP response not OK: "
793 + this.request.status + " - "
794 + this.request.statusText );
795 err.code = '00' + this.request.status;
797 if (this.errorHandler) {
798 this.errorHandler(err);
809 ********************************************************************************
810 ** XML HELPER FUNCTIONS ********************************************************
811 ********************************************************************************
816 if ( window.ActiveXObject) {
817 var DOMDoc = document;
819 var DOMDoc = Document.prototype;
822 DOMDoc.newXmlDoc = function ( root )
826 if (document.implementation && document.implementation.createDocument) {
827 doc = document.implementation.createDocument('', root, null);
828 } else if ( window.ActiveXObject ) {
829 doc = new ActiveXObject("MSXML2.DOMDocument");
830 doc.loadXML('<' + root + '/>');
832 throw new Error ('No XML support in this browser');
839 DOMDoc.parseXmlFromString = function ( xmlString )
843 if ( window.DOMParser ) {
844 var parser = new DOMParser();
845 doc = parser.parseFromString( xmlString, "text/xml");
846 } else if ( window.ActiveXObject ) {
847 doc = new ActiveXObject("MSXML2.DOMDocument");
848 doc.loadXML( xmlString );
850 throw new Error ("No XML parsing support in this browser.");
856 DOMDoc.transformToDoc = function (xmlDoc, xslDoc)
858 if ( window.XSLTProcessor ) {
859 var proc = new XSLTProcessor();
860 proc.importStylesheet( xslDoc );
861 return proc.transformToDocument(xmlDoc);
862 } else if ( window.ActiveXObject ) {
863 return document.parseXmlFromString(xmlDoc.transformNode(xslDoc));
865 alert( 'Unable to perform XSLT transformation in this browser' );
871 Element_removeFromDoc = function (DOM_Element)
873 DOM_Element.parentNode.removeChild(DOM_Element);
876 Element_emptyChildren = function (DOM_Element)
878 while( DOM_Element.firstChild ) {
879 DOM_Element.removeChild( DOM_Element.firstChild )
883 Element_appendTransformResult = function ( DOM_Element, xmlDoc, xslDoc )
885 if ( window.XSLTProcessor ) {
886 var proc = new XSLTProcessor();
887 proc.importStylesheet( xslDoc );
889 docFrag = proc.transformToFragment( xmlDoc, DOM_Element.ownerDocument );
890 DOM_Element.appendChild(docFrag);
891 } else if ( window.ActiveXObject ) {
892 DOM_Element.innerHTML = xmlDoc.transformNode( xslDoc );
894 alert( 'Unable to perform XSLT transformation in this browser' );
898 Element_appendTextNode = function (DOM_Element, tagName, textContent )
900 var node = DOM_Element.ownerDocument.createElement(tagName);
901 var text = DOM_Element.ownerDocument.createTextNode(textContent);
903 DOM_Element.appendChild(node);
904 node.appendChild(text);
909 Element_setTextContent = function ( DOM_Element, textContent )
911 if (typeof DOM_Element.textContent !== "undefined") {
912 DOM_Element.textContent = textContent;
913 } else if (typeof DOM_Element.innerText !== "undefined" ) {
914 DOM_Element.innerText = textContent;
916 throw new Error("Cannot set text content of the node, no such method.");
920 Element_getTextContent = function (DOM_Element)
922 if ( typeof DOM_Element.textContent != 'undefined' ) {
923 return DOM_Element.textContent;
924 } else if (typeof DOM_Element.text != 'undefined') {
925 return DOM_Element.text;
927 throw new Error("Cannot get text content of the node, no such method.");
931 Element_parseChildNodes = function (node)
934 var hasChildElems = false;
936 if (node.hasChildNodes()) {
937 var children = node.childNodes;
938 for (var i = 0; i < children.length; i++) {
939 var child = children[i];
940 if (child.nodeType == Node.ELEMENT_NODE) {
941 hasChildElems = true;
942 var nodeName = child.nodeName;
943 if (!(nodeName in parsed))
944 parsed[nodeName] = [];
945 parsed[nodeName].push(Element_parseChildNodes(child));
950 var attrs = node.attributes;
951 for (var i = 0; i < attrs.length; i++) {
952 var attrName = '@' + attrs[i].nodeName;
953 var attrValue = attrs[i].nodeValue;
954 parsed[attrName] = attrValue;
957 // if no nested elements, get text content
958 if (node.hasChildNodes() && !hasChildElems) {
959 if (node.attributes.length)
960 parsed['textContent'] = node.firstChild.nodeValue;
962 parsed = node.firstChild.nodeValue;
968 /* do not remove trailing bracket */