Update OL loan authorization to point to production service!
[bookreader.git] / BookReaderIA / datanode / BookReaderJSIA.php
1 <?
2 /*
3 Copyright(c)2008 Internet Archive. Software license AGPL version 3.
4
5 This file is part of BookReader.
6
7     BookReader is free software: you can redistribute it and/or modify
8     it under the terms of the GNU Affero General Public License as published by
9     the Free Software Foundation, either version 3 of the License, or
10     (at your option) any later version.
11
12     BookReader is distributed in the hope that it will be useful,
13     but WITHOUT ANY WARRANTY; without even the implied warranty of
14     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15     GNU Affero General Public License for more details.
16
17     You should have received a copy of the GNU Affero General Public License
18     along with BookReader.  If not, see <http://www.gnu.org/licenses/>.
19 */
20
21 header('Content-Type: application/javascript');
22
23 $id = $_REQUEST['id'];
24 $itemPath = $_REQUEST['itemPath'];
25 $subPrefix = $_REQUEST['subPrefix'];
26 $server = $_REQUEST['server'];
27
28 // $$$mang this code has been refactored into BookReaderMeta.inc.php for use e.g. by
29 //         BookReaderPreview.php and BookReaderImages.php.  The code below should be
30 //         taken out and replaced by calls into BookReaderMeta
31
32 // Check if we're on a dev vhost and point to JSIA in the user's public_html on the datanode
33
34 // $$$ TODO consolidate this logic
35 if (strpos($_SERVER["REQUEST_URI"], "/~mang") === 0) { // Serving out of home dir
36     $server .= ':80/~mang';
37 } else if (strpos($_SERVER["REQUEST_URI"], "/~rkumar") === 0) { // Serving out of home dir
38     $server .= ':80/~rkumar';
39 } else if (strpos($_SERVER["REQUEST_URI"], "/~testflip") === 0) { // Serving out of home dir
40     $server .= ':80/~testflip';
41 }
42
43 if (! $subPrefix) {
44     $subPrefix = $id;
45 }
46 $subItemPath = $itemPath . '/' . $subPrefix;
47
48 if ("" == $id) {
49     BRFatal("No identifier specified!");
50 }
51
52 if ("" == $itemPath) {
53     BRFatal("No itemPath specified!");
54 }
55
56 if ("" == $server) {
57     BRFatal("No server specified!");
58 }
59
60 if (!preg_match("|^/\d+/items/{$id}$|", $itemPath)) {
61     BRFatal("Bad id!");
62 }
63
64 // XXX check here that subitem is okay
65
66 $filesDataFile = "$itemPath/${id}_files.xml";
67
68 if (file_exists($filesDataFile)) {
69     $filesData = simplexml_load_file("$itemPath/${id}_files.xml");
70 } else {
71     BRfatal("File metadata not found!");
72 }
73
74 $imageStackInfo = findImageStack($subPrefix, $filesData);
75 if ($imageStackInfo['imageFormat'] == 'unknown') {
76     BRfatal('Couldn\'t find image stack');
77 }
78
79 $imageFormat = $imageStackInfo['imageFormat'];
80 $archiveFormat = $imageStackInfo['archiveFormat'];
81 $imageStackFile = $itemPath . "/" . $imageStackInfo['imageStackFile'];
82
83 if ("unknown" == $imageFormat) {
84   BRfatal("Unknown image format");
85 }
86
87 if ("unknown" == $archiveFormat) {
88   BRfatal("Unknown archive format");
89 }
90
91
92 $scanDataFile = "${subItemPath}_scandata.xml";
93 $scanDataZip  = "$itemPath/scandata.zip";
94 if (file_exists($scanDataFile)) {
95     $scanData = simplexml_load_file($scanDataFile);
96 } else if (file_exists($scanDataZip)) {
97     $cmd  = 'unzip -p ' . escapeshellarg($scanDataZip) . ' scandata.xml';
98     exec($cmd, $output, $retval);
99     if ($retval != 0) BRFatal("Could not unzip ScanData!");
100     
101     $dump = join("\n", $output);
102     $scanData = simplexml_load_string($dump);
103 } else if (file_exists("$itemPath/scandata.xml")) {
104     // For e.g. Scribe v.0 books!
105     $scanData = simplexml_load_file("$itemPath/scandata.xml");
106 } else {
107     BRFatal("ScanData file not found!");
108 }
109
110 $metaDataFile = "$itemPath/{$id}_meta.xml";
111 if (!file_exists($metaDataFile)) {
112     BRFatal("MetaData file not found!");
113 }
114
115
116 $metaData = simplexml_load_file($metaDataFile);
117
118 //$firstLeaf = $scanData->pageData->page[0]['leafNum'];
119 ?>
120
121 br = new BookReader();
122
123 <?
124 /* Output title leaf if marked */
125 $titleLeaf = '';
126 foreach ($scanData->pageData->page as $page) {
127     if (("Title Page" == $page->pageType) || ("Title" == $page->pageType)) {
128         $titleLeaf = "{$page['leafNum']}";
129         break;
130     }
131 }
132     
133 if ('' != $titleLeaf) {
134     printf("br.titleLeaf = %d;\n", $titleLeaf);
135 }
136 ?>
137
138 br.getPageWidth = function(index) {
139     return this.pageW[index];
140 }
141
142 br.getPageHeight = function(index) {
143     return this.pageH[index];
144 }
145
146 // Returns true if page image is available rotated
147 br.canRotatePage = function(index) {
148     return 'jp2' == this.imageFormat; // Assume single format for now
149 }
150
151 // reduce defaults to 1 (no reduction)
152 // rotate defaults to 0 (no rotation)
153 br.getPageURI = function(index, reduce, rotate) {
154     var _reduce;
155     var _rotate;
156
157     if ('undefined' == typeof(reduce)) {
158         _reduce = 1;
159     } else {
160         _reduce = reduce;
161     }
162     if ('undefined' == typeof(rotate)) {
163         _rotate = 0;
164     } else {
165         _rotate = rotate;
166     }
167     
168     var file = this._getPageFile(index);
169         
170     // $$$ add more image stack formats here
171     return 'http://'+this.server+'/BookReader/BookReaderImages.php?zip='+this.zip+'&file='+file+'&scale='+_reduce+'&rotate='+_rotate;
172 }
173
174 br._getPageFile = function(index) {
175     var leafStr = '0000';
176     var imgStr = this.leafMap[index].toString();
177     var re = new RegExp("0{"+imgStr.length+"}$");
178     
179     var insideZipPrefix = this.subPrefix.match('[^/]+$');
180     var file = insideZipPrefix + '_' + this.imageFormat + '/' + insideZipPrefix + '_' + leafStr.replace(re, imgStr) + '.' + this.imageFormat;
181     
182     return file;
183 }
184
185 br.getPageSide = function(index) {
186     //assume the book starts with a cover (right-hand leaf)
187     //we should really get handside from scandata.xml
188     
189     <? // Use special function if we should infer the page sides based off the title page index
190     if (preg_match('/goog$/', $id) && ('' != $titleLeaf)) {
191     ?>
192     // assume page side based on title pagex
193     var titleIndex = br.leafNumToIndex(br.titleLeaf);
194     // assume title page is RHS
195     var delta = titleIndex - index;
196     if (0 == (delta & 0x1)) {
197         // even delta
198         return 'R';
199     } else {
200         return 'L';
201     }
202     <?
203     }
204     ?>
205     
206     // $$$ we should get this from scandata instead of assuming the accessible
207     //     leafs are contiguous
208     if ('rl' != this.pageProgression) {
209         // If pageProgression is not set RTL we assume it is LTR
210         if (0 == (index & 0x1)) {
211             // Even-numbered page
212             return 'R';
213         } else {
214             // Odd-numbered page
215             return 'L';
216         }
217     } else {
218         // RTL
219         if (0 == (index & 0x1)) {
220             return 'L';
221         } else {
222             return 'R';
223         }
224     }
225 }
226
227 br.getPageNum = function(index) {
228     var pageNum = this.pageNums[index];
229     if (pageNum) {
230         return pageNum;
231     } else {
232         return 'n' + index;
233     }
234 }
235
236 // Single images in the Internet Archive scandata.xml metadata are (somewhat incorrectly)
237 // given a "leaf" number.  Some of these images from the scanning process should not
238 // be displayed in the BookReader (for example colour calibration cards).  Since some
239 // of the scanned images will not be displayed in the BookReader (those marked with
240 // addToAccessFormats false in the scandata.xml) leaf numbers and BookReader page
241 // indexes are generally not the same.  This function returns the BookReader page
242 // index given a scanned leaf number.
243 //
244 // This function is used, for example, to map between search results (that use the
245 // leaf numbers) and the displayed pages in the BookReader.
246 br.leafNumToIndex = function(leafNum) {
247     for (var index = 0; index < this.leafMap.length; index++) {
248         if (this.leafMap[index] == leafNum) {
249             return index;
250         }
251     }
252     
253     return null;
254 }
255
256 // This function returns the left and right indices for the user-visible
257 // spread that contains the given index.  The return values may be
258 // null if there is no facing page or the index is invalid.
259 br.getSpreadIndices = function(pindex) {
260     // $$$ we could make a separate function for the RTL case and
261     //      only bind it if necessary instead of always checking
262     // $$$ we currently assume there are no gaps
263     
264     var spreadIndices = [null, null]; 
265     if ('rl' == this.pageProgression) {
266         // Right to Left
267         if (this.getPageSide(pindex) == 'R') {
268             spreadIndices[1] = pindex;
269             spreadIndices[0] = pindex + 1;
270         } else {
271             // Given index was LHS
272             spreadIndices[0] = pindex;
273             spreadIndices[1] = pindex - 1;
274         }
275     } else {
276         // Left to right
277         if (this.getPageSide(pindex) == 'L') {
278             spreadIndices[0] = pindex;
279             spreadIndices[1] = pindex + 1;
280         } else {
281             // Given index was RHS
282             spreadIndices[1] = pindex;
283             spreadIndices[0] = pindex - 1;
284         }
285     }
286     
287     //console.log("   index %d mapped to spread %d,%d", pindex, spreadIndices[0], spreadIndices[1]);
288     
289     return spreadIndices;
290 }
291
292 // Remove the page number assertions for all but the highest index page with
293 // a given assertion.  Ensures there is only a single page "{pagenum}"
294 // e.g. the last page asserted as page 5 retains that assertion.
295 br.uniquifyPageNums = function() {
296     var seen = {};
297     
298     for (var i = br.pageNums.length - 1; i--; i >= 0) {
299         var pageNum = br.pageNums[i];
300         if ( !seen[pageNum] ) {
301             seen[pageNum] = true;
302         } else {
303             br.pageNums[i] = null;
304         }
305     }
306
307 }
308
309 br.cleanupMetadata = function() {
310     br.uniquifyPageNums();
311 }
312
313 // getEmbedURL
314 //________
315 // Returns a URL for an embedded version of the current book
316 br.getEmbedURL = function() {
317     // We could generate a URL hash fragment here but for now we just leave at defaults
318     var url = 'http://' + window.location.host + '/stream/'+this.bookId;
319     if (this.subPrefix != this.bookId) { // Only include if needed
320         url += '/' + this.subPrefix;
321     }
322     url += '?ui=embed';
323     return url;
324 }
325
326 // getEmbedCode
327 //________
328 // Returns the embed code HTML fragment suitable for copy and paste
329 br.getEmbedCode = function() {
330     return "<iframe src='" + this.getEmbedURL() + "' width='480px' height='430px'></iframe>";
331 }
332
333 // getOpenLibraryRecord
334 br.getOpenLibraryRecord = function(callback) {
335     // Try looking up by ocaid first, then by source_record
336     
337     var jsonURL = 'http://openlibrary.org/query.json?type=/type/edition&*=&ocaid=' + br.bookId;
338     $.ajax({
339         url: jsonURL,
340         success: function(data) {
341             if (data && data.length > 0) {
342                 callback(br, data[0]);
343             } else {
344                 // try sourceid
345                 jsonURL = 'http://openlibrary.org/query.json?type=/type/edition&*=&source_records=ia:' + br.bookId;
346                 $.ajax({
347                     url: jsonURL,
348                     success: function(data) {
349                         if (data && data.length > 0) {
350                             callback(br, data[0]);
351                         }
352                     },
353                     dataType: 'jsonp'
354                 });
355             }
356         },
357         dataType: 'jsonp'
358     });
359 }
360
361 br.pageW =  [
362             <?
363             $i=0;
364             foreach ($scanData->pageData->page as $page) {
365                 if (shouldAddPage($page)) {
366                     if(0 != $i) echo ",";   //stupid IE
367                     echo "{$page->cropBox->w}";
368                     $i++;
369                 }
370             }
371             ?>
372             ];
373
374 br.pageH =  [
375             <?
376             $totalHeight = 0;
377             $i=0;            
378             foreach ($scanData->pageData->page as $page) {
379                 if (shouldAddPage($page)) {
380                     if(0 != $i) echo ",";   //stupid IE                
381                     echo "{$page->cropBox->h}";
382                     $totalHeight += intval($page->cropBox->h/4) + 10;
383                     $i++;
384                 }
385             }
386             ?>
387             ];
388 br.leafMap = [
389             <?
390             $i=0;
391             foreach ($scanData->pageData->page as $page) {
392                 if (shouldAddPage($page)) {
393                     if(0 != $i) echo ",";   //stupid IE
394                     echo "{$page['leafNum']}";
395                     $i++;
396                 }
397             }
398             ?>    
399             ];
400
401 br.pageNums = [
402             <?
403             $i=0;
404             foreach ($scanData->pageData->page as $page) {
405                 if (shouldAddPage($page)) {
406                     if(0 != $i) echo ",";   //stupid IE                
407                     if (array_key_exists('pageNumber', $page) && ('' != $page->pageNumber)) {
408                         echo "'{$page->pageNumber}'";
409                     } else {
410                         echo "null";
411                     }
412                     $i++;
413                 }
414             }
415             ?>    
416             ];
417             
418       
419 br.numLeafs = br.pageW.length;
420
421 br.bookId   = '<?echo $id;?>';
422 br.zip      = '<?echo $imageStackFile;?>';
423 br.subPrefix = '<?echo $subPrefix;?>';
424 br.server   = '<?echo $server;?>';
425 br.bookTitle= '<?echo preg_replace("/\'/", "\\'", $metaData->title);?>';
426 br.bookPath = '<?echo $subItemPath;?>';
427 br.bookUrl  = '<?echo "http://www.archive.org/details/$id";?>';
428 br.imageFormat = '<?echo $imageFormat;?>';
429 br.archiveFormat = '<?echo $archiveFormat;?>';
430
431 <?
432
433 # Load some values from meta.xml
434 if ('' != $metaData->{'page-progression'}) {
435   echo "br.pageProgression = '" . $metaData->{"page-progression"} . "';\n";
436 } else {
437   // Assume page progression is Left To Right
438   echo "br.pageProgression = 'lr';\n";
439 }
440
441 if ('browserlending' == $metaData->{'collection'}) {
442     echo "br.olAuth = true;\n";
443 } else {
444     echo "br.olAuth = false; //" . $metaData->{'collection'} ."\n";
445 }
446
447 # Special cases
448 if ('bandersnatchhsye00scarrich' == $id) {
449     echo "br.mode     = 2;\n";
450     echo "br.auto     = true;\n";
451 }
452
453 ?>
454
455 // Check for config object
456 // $$$ change this to use the newer params object
457 if (typeof(brConfig) != 'undefined') {
458     if (typeof(brConfig["ui"]) != 'undefined') {
459         br.ui = brConfig["ui"];
460     }
461
462     if (brConfig['mode'] == 1) {
463         br.mode = 1;
464         if (typeof(brConfig['reduce'] != 'undefined')) {
465             br.reduce = brConfig['reduce'];
466         }
467     } else if (brConfig['mode'] == 2) {
468         br.mode = 2;
469       
470 <?
471         //$$$mang hack to override request for 2up for books with attribution page
472         //   as first page until we can display that page in 2up
473         $needle = 'goog';
474         if (strrpos($id, $needle) === strlen($id)-strlen($needle)) {
475             print "// override for books with attribution page\n";
476             print "br.mode = 1;\n";
477         }
478 ?>
479     }
480 } // brConfig
481
482
483 function OLAuth() {
484     this.authUrl = 'http://openlibrary.org/ia_auth/' + br.bookId;
485     return this;
486 }
487
488 OLAuth.prototype.init = function() {
489     var htmlStr =  '<p style="text-align:center;"><b>Authenticating in-browser loan with openlibrary.org!</b></p>';
490     htmlStr    +=  '<p>Please wait...</p>';
491
492     this.showPopup("#ddd", "#000", htmlStr);
493     $.ajax({url:this.authUrl, dataType:'jsonp', jsonpCallback:'olAuth.initCallback'});
494 }
495
496 OLAuth.prototype.showPopup = function(bgColor, textColor, msg) {
497     this.popup = document.createElement("div");
498     $(this.popup).css({
499         position: 'absolute',
500         top:      '20px',
501         left:     ($('#BookReader').attr('clientWidth')-400)/2 + 'px',
502         width:    '400px',
503         padding:  "20px",
504         border:   "3px double #999999",
505         zIndex:   3,
506         backgroundColor: bgColor,
507         color: textColor
508     }).appendTo('#BookReader');
509
510     this.popup.innerHTML = msg;
511
512 }
513
514 OLAuth.prototype.initCallback = function(obj) {
515     if (false == obj.success) {
516         $(this.popup).css({
517             backgroundColor: "#f00",
518             color: "#fff"
519         });
520
521         this.popup.innerHTML = obj.msg;
522         return;
523     }
524     
525     //user is authenticated
526     this.setCookie(obj.token);
527     this.startPolling();    
528     br.init();
529 }
530
531 OLAuth.prototype.callback = function(obj) {
532     if (false == obj.success) {
533         this.showPopup("#f00", "#fff", obj.msg);
534         clearInterval(this.poller);
535         this.ttsPoller = null;
536     } else {
537         this.setCookie(obj.token);
538     }
539 }
540
541 OLAuth.prototype.setCookie = function(value) {
542     var date = new Date();
543     date.setTime(date.getTime()+(24*60*60*1000));  //one day expiry
544     var expiry = date.toGMTString();
545     var cookie = 'loan-'+br.bookId+'='+value;
546     cookie    += '; expires='+expiry;
547     cookie    += '; path=/; domain=.archive.org;';
548     document.cookie = cookie; 
549 }
550
551 OLAuth.prototype.startPolling = function () {    
552     var self = this;
553     this.poller=setInterval(function(){
554         $.ajax({url:self.authUrl, dataType:'jsonp', jsonpCallback:'olAuth.callback'});
555     },300000);   
556 }
557
558 br.cleanupMetadata();
559 if (br.olAuth) {
560     var olAuth = new OLAuth();
561     olAuth.init();
562 } else {
563     br.init();
564 }
565 <?
566
567
568 function BRFatal($string) {
569     // $$$ TODO log error
570     echo "alert('$string')\n";
571     die(-1);
572 }
573
574 // Returns true if a page should be added based on it's information in
575 // the metadata
576 function shouldAddPage($page) {
577     // Return false only if the page is marked addToAccessFormats false.
578     // If there is no assertion we assume it should be added.
579     if (isset($page->addToAccessFormats)) {
580         if ("false" == strtolower(trim($page->addToAccessFormats))) {
581             return false;
582         }
583     }
584     
585     return true;
586 }
587
588 // Returns { 'imageFormat' => , 'archiveFormat' => '} given a sub-item prefix and loaded xml data
589 function findImageStack($subPrefix, $filesData) {
590
591     // $$$ The order of the image formats determines which will be returned first
592     $imageFormats = array('JP2' => 'jp2', 'TIFF' => 'tif', 'JPEG' => 'jpg');
593     $archiveFormats = array('ZIP' => 'zip', 'Tar' => 'tar');
594     $imageGroup = implode('|', array_keys($imageFormats));
595     $archiveGroup = implode('|', array_keys($archiveFormats));
596     // $$$ Currently only return processed images
597     $imageStackRegex = "/Single Page (Processed) (${imageGroup}) (${archiveGroup})/";
598         
599     foreach ($filesData->file as $file) {        
600         if (strpos($file['name'], $subPrefix) === 0) { // subprefix matches beginning
601             if (preg_match($imageStackRegex, $file->format, $matches)) {
602             
603                 // Make sure we have a regular image stack
604                 $imageFormat = $imageFormats[$matches[2]];
605                 if (strpos($file['name'], $subPrefix . '_' . $imageFormat) === 0) {            
606                     return array('imageFormat' => $imageFormat,
607                                  'archiveFormat' => $archiveFormats[$matches[3]],
608                                  'imageStackFile' => $file['name']);
609                 }
610             }
611         }
612     }
613     
614     return array('imageFormat' => 'unknown', 'archiveFormat' => 'unknown', 'imageStackFile' => 'unknown');
615         
616 }
617
618 ?>
619