2 ** pz2.js - pazpar2's javascript client library.
5 //since explorer is flawed
7 window.Node = new Object();
9 Node.ATTRIBUTE_NODE = 2;
11 Node.CDATA_SECTION_NODE = 4;
12 Node.ENTITY_REFERENCE_NODE = 5;
14 Node.PROCESSING_INSTRUCTION_NODE = 7;
15 Node.COMMENT_NODE = 8;
16 Node.DOCUMENT_NODE = 9;
17 Node.DOCUMENT_TYPE_NODE = 10;
18 Node.DOCUMENT_FRAGMENT_NODE = 11;
19 Node.NOTATION_NODE = 12;
22 // prevent execution of more than once
23 if(typeof window.pz2 == "undefined") {
24 window.undefined = window.undefined;
26 var pz2 = function ( paramArray )
29 // at least one callback required
31 throw new Error("Pz2.js: Array with parameters has to be suplied.");
33 //supported pazpar2's protocol version
34 this.suppProtoVer = '1';
35 if (typeof paramArray.pazpar2path != "undefined")
36 this.pz2String = paramArray.pazpar2path;
38 this.pz2String = "/pazpar2/search.pz2";
39 this.useSessions = true;
41 this.stylesheet = paramArray.detailstylesheet || null;
42 //load stylesheet if required in async mode
43 if( this.stylesheet ) {
45 var request = new pzHttpRequest( this.stylesheet );
46 request.get( {}, function ( doc ) { context.xslDoc = doc; } );
49 this.errorHandler = paramArray.errorhandler || null;
52 this.initCallback = paramArray.oninit || null;
53 this.statCallback = paramArray.onstat || null;
54 this.showCallback = paramArray.onshow || null;
55 this.termlistCallback = paramArray.onterm || null;
56 this.recordCallback = paramArray.onrecord || null;
57 this.bytargetCallback = paramArray.onbytarget || null;
58 this.resetCallback = paramArray.onreset || null;
61 this.termKeys = paramArray.termlist || "subject";
63 // some configurational stuff
64 this.keepAlive = 50000;
66 if ( paramArray.keepAlive < this.keepAlive )
67 this.keepAlive = paramArray.keepAlive;
69 this.sessionID = null;
70 this.initStatusOK = false;
71 this.pingStatusOK = false;
72 this.searchStatusOK = false;
75 this.currentSort = "relevance";
78 this.currentStart = 0;
81 // last full record retrieved
82 this.currRecID = null;
85 this.currQuery = null;
87 //current raw record offset
88 this.currRecOffset = null;
91 this.statTime = paramArray.stattime || 1000;
92 this.statTimer = null;
93 this.termTime = paramArray.termtime || 1000;
94 this.termTimer = null;
95 this.showTime = paramArray.showtime || 1000;
96 this.showTimer = null;
97 this.showFastCount = 4;
98 this.bytargetTime = paramArray.bytargettime || 1000;
99 this.bytargetTimer = null;
100 this.recordTime = paramArray.recordtime || 500;
101 this.recordTimer = null;
103 // counters for each command and applied delay
104 this.dumpFactor = 500;
105 this.showCounter = 0;
106 this.termCounter = 0;
107 this.statCounter = 0;
108 this.bytargetCounter = 0;
109 this.recordCounter = 0;
111 // active clients, updated by stat and show
112 // might be an issue since bytarget will poll accordingly
113 this.activeClients = 1;
115 // if in proxy mode no need to init
116 if (paramArray.usesessions != undefined) {
117 this.useSessions = paramArray.usesessions;
118 this.initStatusOK = true;
120 // else, auto init session or wait for a user init?
121 if (this.useSessions && paramArray.autoInit !== false) {
128 //error handler for async error throws
129 throwError: function (errMsg, errCode)
131 var err = new Error(errMsg);
132 if (errCode) err.code = errCode;
134 if (this.errorHandler) {
135 this.errorHandler(err);
142 // stop activity by clearing tiemouts
145 clearTimeout(this.statTimer);
146 clearTimeout(this.showTimer);
147 clearTimeout(this.termTimer);
148 clearTimeout(this.bytargetTimer);
151 // reset status variables
154 if ( this.useSessions ) {
155 this.sessionID = null;
156 this.initStatusOK = false;
157 this.pingStatusOK = false;
159 this.searchStatusOK = false;
162 if ( this.resetCallback )
163 this.resetCallback();
166 init: function ( sessionId )
170 // session id as a param
171 if ( sessionId != undefined && this.useSessions ) {
172 this.initStatusOK = true;
173 this.sessionID = sessionId;
175 // old school direct pazpar2 init
176 } else if (this.useSessions) {
178 var request = new pzHttpRequest(this.pz2String, this.errorHandler);
180 { "command": "init" },
182 if ( data.getElementsByTagName("status")[0]
183 .childNodes[0].nodeValue == "OK" ) {
184 if ( data.getElementsByTagName("protocol")[0]
185 .childNodes[0].nodeValue
186 != context.suppProtoVer )
188 "Server's protocol not supported by the client"
190 context.initStatusOK = true;
192 data.getElementsByTagName("session")[0]
193 .childNodes[0].nodeValue;
200 if ( context.initCallback )
201 context.initCallback();
204 context.throwError('Init failed. Malformed WS resonse.',
208 // when through proxy no need to init
210 this.initStatusOK = true;
213 // no need to ping explicitly
216 // pinging only makes sense when using pazpar2 directly
217 if( !this.initStatusOK || !this.useSessions )
219 'Pz2.js: Ping not allowed (proxy mode) or session not initialized.'
222 var request = new pzHttpRequest(this.pz2String, this.errorHandler);
224 { "command": "ping", "session": this.sessionID },
226 if ( data.getElementsByTagName("status")[0]
227 .childNodes[0].nodeValue == "OK" ) {
228 context.pingStatusOK = true;
237 context.throwError('Ping failed. Malformed WS resonse.',
242 search: function (query, num, sort, filter, showfrom, addParamsArr)
244 clearTimeout(this.statTimer);
245 clearTimeout(this.showTimer);
246 clearTimeout(this.termTimer);
247 clearTimeout(this.bytargetTimer);
249 this.showCounter = 0;
250 this.termCounter = 0;
251 this.bytargetCounter = 0;
252 this.statCounter = 0;
255 if( !this.initStatusOK )
256 throw new Error('Pz2.js: session not initialized.');
258 if( query !== undefined )
259 this.currQuery = query;
261 throw new Error("Pz2.js: no query supplied to the search command.");
263 if ( showfrom !== undefined )
264 var start = showfrom;
270 "query": this.currQuery,
271 "session": this.sessionID
274 if (filter !== undefined)
275 searchParams["filter"] = filter;
277 // copy additional parmeters, do not overwrite
278 if (addParamsArr != undefined) {
279 for (var prop in addParamsArr) {
280 if (!searchParams.hasOwnProperty(prop))
281 searchParams[prop] = addParamsArr[prop];
286 var request = new pzHttpRequest(this.pz2String, this.errorHandler);
290 if ( data.getElementsByTagName("status")[0]
291 .childNodes[0].nodeValue == "OK" ) {
292 context.searchStatusOK = true;
294 context.show(start, num, sort);
295 if ( context.statCallback )
297 if ( context.termlistCallback )
299 if ( context.bytargetCallback )
303 context.throwError('Search failed. Malformed WS resonse.',
310 if( !this.initStatusOK )
311 throw new Error('Pz2.js: session not initialized.');
313 // if called explicitly takes precedence
314 clearTimeout(this.statTimer);
317 var request = new pzHttpRequest(this.pz2String, this.errorHandler);
319 { "command": "stat", "session": this.sessionID },
321 if ( data.getElementsByTagName("stat") ) {
323 Number( data.getElementsByTagName("activeclients")[0]
324 .childNodes[0].nodeValue );
325 context.activeClients = activeClients;
327 var stat = Element_parseChildNodes(data.documentElement);
329 context.statCounter++;
330 var delay = context.statTime
331 + context.statCounter * context.dumpFactor;
333 if ( activeClients > 0 )
341 context.statCallback(stat);
344 context.throwError('Stat failed. Malformed WS resonse.',
349 show: function(start, num, sort)
351 if( !this.searchStatusOK && this.useSessions )
353 'Pz2.js: show command has to be preceded with a search command.'
356 // if called explicitly takes precedence
357 clearTimeout(this.showTimer);
359 if( sort !== undefined )
360 this.currentSort = sort;
361 if( start !== undefined )
362 this.currentStart = Number( start );
363 if( num !== undefined )
364 this.currentNum = Number( num );
367 var request = new pzHttpRequest(this.pz2String, this.errorHandler);
371 "session": this.sessionID,
372 "start": this.currentStart,
373 "num": this.currentNum,
374 "sort": this.currentSort,
378 if ( data.getElementsByTagName("status")[0]
379 .childNodes[0].nodeValue == "OK" ) {
380 // first parse the status data send along with records
381 // this is strictly bound to the format
383 Number( data.getElementsByTagName("activeclients")[0]
384 .childNodes[0].nodeValue );
385 context.activeClients = activeClients;
387 "activeclients": activeClients,
389 Number( data.getElementsByTagName("merged")[0]
390 .childNodes[0].nodeValue ),
392 Number( data.getElementsByTagName("total")[0]
393 .childNodes[0].nodeValue ),
395 Number( data.getElementsByTagName("start")[0]
396 .childNodes[0].nodeValue ),
398 Number( data.getElementsByTagName("num")[0]
399 .childNodes[0].nodeValue ),
402 // parse all the first-level nodes for all <hit> tags
403 var hits = data.getElementsByTagName("hit");
404 for (i = 0; i < hits.length; i++)
405 show.hits[i] = Element_parseChildNodes(hits[i]);
407 context.showCounter++;
408 var delay = context.showTime;
409 if (context.showCounter > context.showFastCount)
410 delay += context.showCounter * context.dumpFactor;
411 if ( activeClients > 0 )
412 context.showTimer = setTimeout(
418 context.showCallback(show);
421 context.throwError('Show failed. Malformed WS resonse.',
426 record: function(id, offset, syntax, handler)
428 // we may call record with no previous search if in proxy mode
429 if(!this.searchStatusOK && this.useSessions)
431 'Pz2.js: record command has to be preceded with a search command.'
434 if( id !== undefined )
439 "session": this.sessionID,
443 this.currRecOffset = null;
444 if (offset != undefined) {
445 recordParams["offset"] = offset;
446 this.currRecOffset = offset;
449 if (syntax != undefined)
450 recordParams['syntax'] = syntax;
452 //overwrite default callback id needed
453 var callback = this.recordCallback;
454 var args = undefined;
455 if (handler != undefined) {
456 callback = handler['callback'];
457 args = handler['args'];
461 var request = new pzHttpRequest(this.pz2String, this.errorHandler);
469 if (context.currRecOffset !== null) {
470 record = new Array();
471 record['xmlDoc'] = data;
472 record['offset'] = context.currRecOffset;
473 callback(record, args);
475 } else if ( recordNode =
476 data.getElementsByTagName("record")[0] ) {
477 // if stylesheet was fetched do not parse the response
478 if ( context.xslDoc ) {
479 record = new Array();
480 record['xmlDoc'] = data;
481 record['xslDoc'] = context.xslDoc;
483 recordNode.getElementsByTagName("recid")[0]
484 .firstChild.nodeValue;
487 record = Element_parseChildNodes(recordNode);
490 Number( data.getElementsByTagName("activeclients")[0]
491 .childNodes[0].nodeValue );
492 context.activeClients = activeClients;
493 context.recordCounter++;
494 var delay = context.recordTime + context.recordCounter * context.dumpFactor;
495 if ( activeClients > 0 )
496 context.recordTimer =
499 context.record(id, offset, syntax, handler);
503 callback(record, args);
506 context.throwError('Record failed. Malformed WS resonse.',
514 if( !this.searchStatusOK && this.useSessions )
516 'Pz2.js: termlist command has to be preceded with a search command.'
519 // if called explicitly takes precedence
520 clearTimeout(this.termTimer);
523 var request = new pzHttpRequest(this.pz2String, this.errorHandler);
526 "command": "termlist",
527 "session": this.sessionID,
528 "name": this.termKeys
531 if ( data.getElementsByTagName("termlist") ) {
533 Number( data.getElementsByTagName("activeclients")[0]
534 .childNodes[0].nodeValue );
535 context.activeClients = activeClients;
536 var termList = { "activeclients": activeClients };
537 var termLists = data.getElementsByTagName("list");
539 for (i = 0; i < termLists.length; i++) {
540 var listName = termLists[i].getAttribute('name');
541 termList[listName] = new Array();
542 var terms = termLists[i].getElementsByTagName('term');
543 //for each term in the list
544 for (j = 0; j < terms.length; j++) {
547 (terms[j].getElementsByTagName("name")[0]
549 ? terms[j].getElementsByTagName("name")[0]
550 .childNodes[0].nodeValue
554 .getElementsByTagName("frequency")[0]
555 .childNodes[0].nodeValue || 'ERROR'
559 terms[j].getElementsByTagName("id");
560 if(terms[j].getElementsByTagName("id").length)
562 termIdNode[0].childNodes[0].nodeValue;
563 termList[listName][j] = term;
567 context.termCounter++;
568 var delay = context.termTime
569 + context.termCounter * context.dumpFactor;
570 if ( activeClients > 0 )
579 context.termlistCallback(termList);
582 context.throwError('Termlist failed. Malformed WS resonse.',
590 if( !this.initStatusOK && this.useSessions )
592 'Pz2.js: bytarget command has to be preceded with a search command.'
595 // no need to continue
596 if( !this.searchStatusOK )
599 // if called explicitly takes precedence
600 clearTimeout(this.bytargetTimer);
603 var request = new pzHttpRequest(this.pz2String, this.errorHandler);
605 { "command": "bytarget", "session": this.sessionID },
607 if ( data.getElementsByTagName("status")[0]
608 .childNodes[0].nodeValue == "OK" ) {
609 var targetNodes = data.getElementsByTagName("target");
610 var bytarget = new Array();
611 for ( i = 0; i < targetNodes.length; i++) {
612 bytarget[i] = new Array();
613 for( j = 0; j < targetNodes[i].childNodes.length; j++ ) {
614 if ( targetNodes[i].childNodes[j].nodeType
615 == Node.ELEMENT_NODE ) {
617 targetNodes[i].childNodes[j].nodeName;
619 targetNodes[i].childNodes[j]
620 .firstChild.nodeValue;
621 bytarget[i][nodeName] = nodeText;
626 context.bytargetCounter++;
627 var delay = context.bytargetTime
628 + context.bytargetCounter * context.dumpFactor;
629 if ( context.activeClients > 0 )
630 context.bytargetTimer =
638 context.bytargetCallback(bytarget);
641 context.throwError('Bytarget failed. Malformed WS resonse.',
647 // just for testing, probably shouldn't be here
648 showNext: function(page)
650 var step = page || 1;
651 this.show( ( step * this.currentNum ) + this.currentStart );
654 showPrev: function(page)
656 if (this.currentStart == 0 )
658 var step = page || 1;
659 var newStart = this.currentStart - (step * this.currentNum );
660 this.show( newStart > 0 ? newStart : 0 );
663 showPage: function(pageNum)
665 //var page = pageNum || 1;
666 this.show(pageNum * this.currentNum);
671 ********************************************************************************
672 ** AJAX HELPER CLASS ***********************************************************
673 ********************************************************************************
675 var pzHttpRequest = function ( url, errorHandler ) {
676 this.maxUrlLength = 2048;
679 this.errorHandler = errorHandler || null;
681 this.requestHeaders = {};
683 if ( window.XMLHttpRequest ) {
684 this.request = new XMLHttpRequest();
685 } else if ( window.ActiveXObject ) {
687 this.request = new ActiveXObject( 'Msxml2.XMLHTTP' );
689 this.request = new ActiveXObject( 'Microsoft.XMLHTTP' );
694 pzHttpRequest.prototype =
696 safeGet: function ( params, callback )
698 var encodedParams = this.encodeParams(params);
699 var url = this._urlAppendParams(encodedParams);
700 if (url.length >= this.maxUrlLength) {
701 this.requestHeaders["Content-Type"]
702 = "application/x-www-form-urlencoded";
703 this._send( 'POST', this.url, encodedParams, callback );
705 this._send( 'GET', url, '', callback );
709 get: function ( params, callback )
711 this._send( 'GET', this._urlAppendParams(this.encodeParams(params)),
715 post: function ( params, data, callback )
717 this._send( 'POST', this._urlAppendParams(this.encodeParams(params)),
724 this.request.open( 'GET', this.url, this.async );
725 this.request.send('');
726 if ( this.request.status == 200 )
727 return this.request.responseXML;
730 encodeParams: function (params)
734 for (var key in params) {
735 if (params[key] != null) {
736 encoded += sep + key + '=' + encodeURIComponent(params[key]);
743 _send: function ( type, url, data, callback)
746 this.callback = callback;
748 this.request.open( type, url, this.async );
749 for (var key in this.requestHeaders)
750 this.request.setRequestHeader(key, this.requestHeaders[key]);
751 this.request.onreadystatechange = function () {
752 context._handleResponse(url); /// url used ONLY for error reporting
754 this.request.send(data);
757 _urlAppendParams: function (encodedParams)
760 return this.url + "?" + encodedParams;
765 _handleResponse: function (savedUrlForErrorReporting)
767 if ( this.request.readyState == 4 ) {
768 // pick up appplication errors first
770 if (this.request.responseXML &&
771 (errNode = this.request.responseXML.documentElement)
772 && errNode.nodeName == 'error') {
773 var errMsg = errNode.getAttribute("msg");
774 var errCode = errNode.getAttribute("code");
776 if (errNode.childNodes.length)
777 errAddInfo = ': ' + errNode.childNodes[0].nodeValue;
779 var err = new Error(errMsg + errAddInfo);
782 if (this.errorHandler) {
783 this.errorHandler(err);
788 } else if (this.request.status == 200 &&
789 this.request.responseXML == null) {
790 var err = new Error("XML response is empty but no error " +
791 "for " + savedUrlForErrorReporting);
793 if (this.errorHandler) {
794 this.errorHandler(err);
798 } else if (this.request.status == 200) {
799 this.callback(this.request.responseXML);
801 var err = new Error("HTTP response not OK: "
802 + this.request.status + " - "
803 + this.request.statusText );
804 err.code = '00' + this.request.status;
806 if (this.errorHandler) {
807 this.errorHandler(err);
818 ********************************************************************************
819 ** XML HELPER FUNCTIONS ********************************************************
820 ********************************************************************************
825 if ( window.ActiveXObject) {
826 var DOMDoc = document;
828 var DOMDoc = Document.prototype;
831 DOMDoc.newXmlDoc = function ( root )
835 if (document.implementation && document.implementation.createDocument) {
836 doc = document.implementation.createDocument('', root, null);
837 } else if ( window.ActiveXObject ) {
838 doc = new ActiveXObject("MSXML2.DOMDocument");
839 doc.loadXML('<' + root + '/>');
841 throw new Error ('No XML support in this browser');
848 DOMDoc.parseXmlFromString = function ( xmlString )
852 if ( window.DOMParser ) {
853 var parser = new DOMParser();
854 doc = parser.parseFromString( xmlString, "text/xml");
855 } else if ( window.ActiveXObject ) {
856 doc = new ActiveXObject("MSXML2.DOMDocument");
857 doc.loadXML( xmlString );
859 throw new Error ("No XML parsing support in this browser.");
865 DOMDoc.transformToDoc = function (xmlDoc, xslDoc)
867 if ( window.XSLTProcessor ) {
868 var proc = new XSLTProcessor();
869 proc.importStylesheet( xslDoc );
870 return proc.transformToDocument(xmlDoc);
871 } else if ( window.ActiveXObject ) {
872 return document.parseXmlFromString(xmlDoc.transformNode(xslDoc));
874 alert( 'Unable to perform XSLT transformation in this browser' );
880 Element_removeFromDoc = function (DOM_Element)
882 DOM_Element.parentNode.removeChild(DOM_Element);
885 Element_emptyChildren = function (DOM_Element)
887 while( DOM_Element.firstChild ) {
888 DOM_Element.removeChild( DOM_Element.firstChild )
892 Element_appendTransformResult = function ( DOM_Element, xmlDoc, xslDoc )
894 if ( window.XSLTProcessor ) {
895 var proc = new XSLTProcessor();
896 proc.importStylesheet( xslDoc );
898 docFrag = proc.transformToFragment( xmlDoc, DOM_Element.ownerDocument );
899 DOM_Element.appendChild(docFrag);
900 } else if ( window.ActiveXObject ) {
901 DOM_Element.innerHTML = xmlDoc.transformNode( xslDoc );
903 alert( 'Unable to perform XSLT transformation in this browser' );
907 Element_appendTextNode = function (DOM_Element, tagName, textContent )
909 var node = DOM_Element.ownerDocument.createElement(tagName);
910 var text = DOM_Element.ownerDocument.createTextNode(textContent);
912 DOM_Element.appendChild(node);
913 node.appendChild(text);
918 Element_setTextContent = function ( DOM_Element, textContent )
920 if (typeof DOM_Element.textContent !== "undefined") {
921 DOM_Element.textContent = textContent;
922 } else if (typeof DOM_Element.innerText !== "undefined" ) {
923 DOM_Element.innerText = textContent;
925 throw new Error("Cannot set text content of the node, no such method.");
929 Element_getTextContent = function (DOM_Element)
931 if ( typeof DOM_Element.textContent != 'undefined' ) {
932 return DOM_Element.textContent;
933 } else if (typeof DOM_Element.text != 'undefined') {
934 return DOM_Element.text;
936 throw new Error("Cannot get text content of the node, no such method.");
940 Element_parseChildNodes = function (node)
943 var hasChildElems = false;
945 if (node.hasChildNodes()) {
946 var children = node.childNodes;
947 for (var i = 0; i < children.length; i++) {
948 var child = children[i];
949 if (child.nodeType == Node.ELEMENT_NODE) {
950 hasChildElems = true;
951 var nodeName = child.nodeName;
952 if (!(nodeName in parsed))
953 parsed[nodeName] = [];
954 parsed[nodeName].push(Element_parseChildNodes(child));
959 var attrs = node.attributes;
960 for (var i = 0; i < attrs.length; i++) {
961 var attrName = '@' + attrs[i].nodeName;
962 var attrValue = attrs[i].nodeValue;
963 parsed[attrName] = attrValue;
966 // if no nested elements, get text content
967 if (node.hasChildNodes() && !hasChildElems) {
968 if (node.attributes.length)
969 parsed['textContent'] = node.firstChild.nodeValue;
971 parsed = node.firstChild.nodeValue;
977 /* do not remove trailing bracket */