fa8921e87f7ea6c07ecd224f74653216ca3b5cff
[bookreader.git] / BookReaderIA / inc / BookReader.inc
1 <?
2
3 class BookReader
4 {
5
6   // Returns true if can display the book in item with a given prefix (typically the item identifier)
7   public static function canDisplay($item, $prefix, $checkOldScandata = false)
8   {
9     
10     // A "book" is an image stack and scandata.
11     // 1. Old items may have scandata.xml or scandata.zip and itemid_{imageformat}.{zip,tar}
12     // 2. Newer items may have multiple {arbitraryname}_scandata.xml and {arbitraryname}_{imageformat}.{zip,tar}
13         
14     $foundScandata = false;
15     $foundImageStack = false;
16     
17     $targetScandata = $prefix . "_scandata.xml";
18         
19     // $$$ TODO add support for jpg and tar stacks
20     // https://bugs.edge.launchpad.net/gnubook/+bug/323003
21     // https://bugs.edge.launchpad.net/gnubook/+bug/385397
22     $imageFormatRegex = '@' . preg_quote($prefix, '@') . '_(jp2|tif|jpg)\.(zip|tar)$@';
23     
24     $baseLength = strlen($item->metadataGrabber->mainDir . '/');
25     foreach ($item->getFiles() as $location => $fileInfo) {
26         $filename = substr($location, $baseLength);
27         
28         if ($checkOldScandata) {
29             if ($filename == 'scandata.xml' || $filename == 'scandata.zip') {
30                 $foundScandata = $filename;
31             }
32         }
33         
34         if ($filename == $targetScandata) {
35             $foundScandata = $filename;
36         }
37         
38         if (preg_match($imageFormatRegex, $filename)) {
39             $foundImageStack = $filename;
40         }
41     }
42     
43     if ($foundScandata && $foundImageStack) {
44         return true;
45     }
46     
47     return false;
48   }
49   
50   // Finds the prefix to use for the book given the part of the URL trailing after /stream/
51   public static function findPrefix($urlPortion)
52   {
53     if (!preg_match('#[^/&?]+#', $urlPortion, $matches)) {
54         return false;
55     }
56     
57     $prefix = $matches[0]; // identifier
58     
59     // $$$ Currently swallows the rest of the URL.
60     //     If we want to support e.g. /stream/itemid/subdir/prefix/page/23 will need to adjust.
61     if (preg_match('#[^/&?]+/([^&?]+)#', $urlPortion, $matches)) {
62         $prefix = $matches[1]; // sub prefix
63     }
64     
65     return $prefix;
66   }
67
68   // $$$ would be cleaner to use different templates instead of the uiMode param
69   // 
70   // @param subprefix Optional prefix to display a book inside an item (e.g. if does not match identifier)
71   public static function draw($server, $mainDir, $identifier, $subPrefix, $title,
72                               $coverLeaf=null, $titleStart='Internet Archive', $uiMode='full')
73   {
74     // Set title to default if not set
75     if (!$title) {
76         $title = 'BookReader';
77     }
78     
79     $id = $identifier;
80     
81     // manually update with Launchpad version number at each checkin so that browsers
82     // do not use old cached version
83     // see https://bugs.launchpad.net/gnubook/+bug/330748
84     $version = "r25";
85     
86     if (BookReader::getDevHost($server)) {
87         // on dev host - add time to force reload
88         $version .= '_' . time();
89     }
90     
91     if ("" == $id) {
92         echo "No identifier specified!";
93         die(-1);
94     }
95     
96     $metaURL = BookReader::jsMetadataURL($server, $identifier, $mainDir, $subPrefix);
97     
98 ?>
99 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
100 <html>
101 <head>
102     <meta name="viewport" content="width=device-width, maximum-scale=1.0" />
103     <title><? echo $title; ?></title>
104 <!--[if lte IE 6]>
105     <meta http-equiv="refresh" content="2; URL=/bookreader/browserunsupported.php?id=<? echo($id); ?>">
106 <![endif]-->
107     <link rel="stylesheet" type="text/css" href="/bookreader/BookReader.css?v=<? echo($version); ?>">
108 <? if ($uiMode == "embed") { ?>
109     <link rel="stylesheet" type="text/css" href="/bookreader/BookReaderEmbed.css?v=<? echo($version); ?>">
110 <? } elseif ($uiMode == "touch") { ?>
111     <link rel="stylesheet" type="text/css" href="/bookreader/touch/BookReaderTouch.css?v=<? echo($version); ?>">
112 <? } /* uiMode */ ?>
113     <script src="/includes/jquery-1.4.2.min.js" type="text/javascript"></script>
114     <script type="text/javascript" src="/bookreader/jquery-ui-1.8.1.custom.min.js"></script>
115     <script type="text/javascript" src="/bookreader/BookReader.js?v=<? echo($version); ?>"></script>
116 </head>
117 <body style="background-color: #FFFFFF;">
118
119 <? if ($uiMode == 'full') { ?>
120 <div id="BookReader" style="left:10px; right:200px; top:10px; bottom:2em;">Internet Archive BookReader <noscript>requires JavaScript to be enabled.</noscript></div>
121 <? } else { ?>
122 <div id="BookReader" style="left:0; right:0; top:0; bottom:0; border:0">Internet Archive Bookreader <noscript>requires JavaScript to be enabled.</noscript></div>
123 <? } /* uiMode*/ ?>
124
125 <script type="text/javascript">
126   // Set some config variables -- $$$ NB: Config object format has not been finalized
127   var brConfig = {};
128 <? if ($uiMode == 'embed') { ?>
129   brConfig["mode"] = 1;
130   brConfig["reduce"] = 8;
131   brConfig["ui"] = "embed";
132 <? } else { ?>
133   brConfig["mode"] = 2;
134 <? } ?>
135 </script>
136 <!-- The script included below is dynamically generated JavaScript that includes the book metadata and page image access functions -->
137 <script type="text/javascript" src="<? echo($metaURL); ?>"></script>
138
139 <? if ($uiMode == 'full') { ?>
140 <div id="BookReaderSearch" style="width:190px; right:0px; top:10px; bottom:2em;">
141     <form action='javascript:' onsubmit="br.search($('#BookReaderSearchBox').val());">
142         <p style="display: inline">
143             <input id="BookReaderSearchBox" type="text" size="20" value="search..." onfocus="if('search...'==this.value)this.value='';" /><input type="submit" value="go" />
144         </p>
145     </form>
146     <div id="BookReaderSearchResults">
147         Search results
148     </div>
149 </div>
150
151
152 <div id="BRfooter">
153     <div class="BRlogotype">
154         <a href="http://archive.org/" class="BRblack">Internet Archive</a>
155     </div>
156     <div class="BRnavlinks">
157         <!-- <a class="BRblack" href="http://openlibrary.org/dev/docs/bookreader">About the Bookreader</a> | -->
158         <a class="BRblack" href="http://www.archive.org/about/faqs.php#Report_Item">Content Problems</a> |
159         <a class="BRblack" href="https://bugs.launchpad.net/bookreader/+filebug">Report Bugs</a> |
160         <a class="BRblack" href="http://www.archive.org/details/texts">Texts Collection</a> |
161         <a class="BRblack" href="http://www.archive.org/about/contact.php">Contact Us</a>
162     </div>
163 </div>
164 <? } /* uiMode */ ?>
165
166 <script type="text/javascript">
167     // $$$ hack to workaround sizing bug when starting in two-up mode
168     $(document).ready(function() {
169         $(window).trigger('resize');
170     });
171 </script>
172   <?
173     exit;
174   }
175   
176   // Returns the user part of dev host from URL, or null
177   public static function getDevHost($server)
178   {
179       if (preg_match("/^www-(\w+)/", $_SERVER["SERVER_NAME"], $match)) {
180         return $match[1];
181       }
182       
183       return null;
184   }
185
186   
187   public static function serverBaseURL($server)
188   {
189       // Check if we're on a dev vhost and point to JSIA in the user's public_html
190       // on the datanode
191       // $$$ the remapping isn't totally automatic yet and requires user to
192       //     ln -s ~/petabox/www/datanode/BookReader ~/public_html/BookReader
193       //     so we enable it only for known hosts
194       $devhost = BookReader::getDevHost($server);
195       $devhosts = array('mang', 'testflip', 'rkumar');
196       if (in_array($devhost, $devhosts)) {
197         $server = $server . "/~" . $devhost;
198       }
199       return $server;
200   }
201   
202   
203   public static function jsMetadataURL($server, $identifier, $mainDir, $subPrefix = '')
204   {
205     $serverBaseURL = BookReader::serverBaseURL($server);
206
207     $params = array( 'id' => $identifier, 'itemPath' => $mainDir, 'server' => $server );
208     if ($subPrefix) {
209         $params['subPrefix'] = $subPrefix;
210     }
211     
212     $keys = array_keys($params);
213     $lastParam = end($keys);
214     $url = "http://{$serverBaseURL}/BookReader/BookReaderJSIA.php?";
215     foreach($params as $param=>$value) {
216         $url .= $param . '=' . $value;
217         if ($param != $lastParam) {
218             $url .= '&';
219         }
220     }
221     
222     return $url;
223   }
224   
225   // Return the URL for the requested /download/$path, or null
226   public static function getURL($path, $item) {
227     // $path should look like {itemId}/{operator}/{filename}
228     // Other operators may be added
229     
230     $parts = preg_split('#/#', $path, 3);
231     if (count($parts) != 3) {
232         return null;
233     }
234     $identifier = $parts[0];
235     $operator = $parts[1];
236     $filename = $parts[2];
237     
238     $serverBaseURL = BookReader::serverBaseURL($item->getServer());
239             
240     switch ($operator) {
241         case 'page':
242             // Find bookId and which page was requested
243             $pathParts = pathinfo($filename);
244             
245             // Look for preview request
246             if (preg_match('/^(.*)_(cover|title|preview)$/', $pathParts['filename'], $matches) === 0) {
247                 return null;
248             }
249             $bookId = $matches[1];
250             $page = $matches[2];
251             $query = array(
252                 'id' => $identifier,
253                 'bookId' => $bookId,
254                 'itemPath' => $item->getMainDir(),
255                 'server' => $serverBaseURL,
256                 'page' => $page,
257             );
258             return 'http://' . $serverBaseURL . '/BookReader/BookReaderPreview.php?' . http_build_query($query, '', '&');
259         
260         default:
261             return null;            
262     }
263       
264     return null; // was not handled
265   }
266   
267 }
268
269 ?>