Set viewport and disable scaling
[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 ("" == $id) {
87         echo "No identifier specified!";
88         die(-1);
89     }
90     
91     $metaURL = BookReader::jsMetadataURL($server, $identifier, $mainDir, $subPrefix);
92     
93 ?>
94 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
95 <html>
96 <head>
97     <meta name="viewport" content="width=device-width, maximum-scale=1.0" />
98     <title><? echo $title; ?></title>
99 <!--[if lte IE 6]>
100     <meta http-equiv="refresh" content="2; URL=/bookreader/browserunsupported.php?id=<? echo($id); ?>">
101 <![endif]-->
102     <link rel="stylesheet" type="text/css" href="/bookreader/BookReader.css?v=<? echo($version); ?>">
103 <? if ($uiMode == "embed") { ?>
104     <link rel="stylesheet" type="text/css" href="/bookreader/BookReaderEmbed.css?v=<? echo($version); ?>">
105 <? } /* uiMode */ ?>
106     <script src="/includes/jquery-1.4.2.min.js" type="text/javascript"></script>
107     <script type="text/javascript" src="/bookreader/jquery-ui-1.8.1.custom.min.js"></script>
108     <script type="text/javascript" src="/bookreader/BookReader.js?v=<? echo($version); ?>"></script>
109 </head>
110 <body style="background-color: #FFFFFF;">
111
112 <? if ($uiMode == 'full') { ?>
113 <div id="BookReader" style="left:10px; right:200px; top:10px; bottom:2em;">Internet Archive BookReader <noscript>requires JavaScript to be enabled.</noscript></div>
114 <? } else { ?>
115 <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>
116 <? } /* uiMode*/ ?>
117
118 <script type="text/javascript">
119   // Set some config variables -- $$$ NB: Config object format has not been finalized
120   var brConfig = {};
121 <? if ($uiMode == 'embed') { ?>
122   brConfig["mode"] = 1;
123   brConfig["reduce"] = 8;
124   brConfig["ui"] = "embed";
125 <? } else { ?>
126   brConfig["mode"] = 2;
127 <? } ?>
128 </script>
129 <!-- The script included below is dynamically generated JavaScript that includes the book metadata and page image access functions -->
130 <script type="text/javascript" src="<? echo($metaURL); ?>"></script>
131
132 <? if ($uiMode == 'full') { ?>
133 <div id="BookReaderSearch" style="width:190px; right:0px; top:10px; bottom:2em;">
134     <form action='javascript:' onsubmit="br.search($('#BookReaderSearchBox').val());">
135         <p style="display: inline">
136             <input id="BookReaderSearchBox" type="text" size="20" value="search..." onfocus="if('search...'==this.value)this.value='';" /><input type="submit" value="go" />
137         </p>
138     </form>
139     <div id="BookReaderSearchResults">
140         Search results
141     </div>
142 </div>
143
144
145 <div id="BRfooter">
146     <div class="BRlogotype">
147         <a href="http://archive.org/" class="BRblack">Internet Archive</a>
148     </div>
149     <div class="BRnavlinks">
150         <!-- <a class="BRblack" href="http://openlibrary.org/dev/docs/bookreader">About the Bookreader</a> | -->
151         <a class="BRblack" href="http://www.archive.org/about/faqs.php#Report_Item">Content Problems</a> |
152         <a class="BRblack" href="https://bugs.launchpad.net/bookreader/+filebug">Report Bugs</a> |
153         <a class="BRblack" href="http://www.archive.org/details/texts">Texts Collection</a> |
154         <a class="BRblack" href="http://www.archive.org/about/contact.php">Contact Us</a>
155     </div>
156 </div>
157 <? } /* uiMode */ ?>
158
159 <script type="text/javascript">
160     // $$$ hack to workaround sizing bug when starting in two-up mode
161     $(document).ready(function() {
162         $(window).trigger('resize');
163     });
164 </script>
165   <?
166     exit;
167   }
168
169   
170   public static function serverBaseURL($server)
171   {
172     // Check if we're on a dev vhost and point to JSIA in the user's public_html
173     // on the datanode
174     if (preg_match("/^www-(\w+)/", $_SERVER["SERVER_NAME"], $match)) {
175       // $$$ the remapping isn't totally automatic yet and requires user to
176       //     ln -s ~/petabox/www/datanode/BookReader ~/public_html/BookReader
177       //     so we enable it only for known hosts
178       $devhosts = array('mang', 'testflip', 'rkumar');
179       if (in_array($match[1], $devhosts)) {
180         $server = $server . "/~" . $match[1];
181       }
182     }
183     return $server;
184   }
185   
186   
187   public static function jsMetadataURL($server, $identifier, $mainDir, $subPrefix = '')
188   {
189     $serverBaseURL = BookReader::serverBaseURL($server);
190
191     $params = array( 'id' => $identifier, 'itemPath' => $mainDir, 'server' => $server );
192     if ($subPrefix) {
193         $params['subPrefix'] = $subPrefix;
194     }
195     
196     $keys = array_keys($params);
197     $lastParam = end($keys);
198     $url = "http://{$serverBaseURL}/BookReader/BookReaderJSIA.php?";
199     foreach($params as $param=>$value) {
200         $url .= $param . '=' . $value;
201         if ($param != $lastParam) {
202             $url .= '&';
203         }
204     }
205     
206     return $url;
207   }
208   
209   // Return the URL for the requested /download/$path, or null
210   public static function getURL($path, $item) {
211     // $path should look like {itemId}/{operator}/{filename}
212     // Other operators may be added
213     
214     $parts = preg_split('#/#', $path, 3);
215     if (count($parts) != 3) {
216         return null;
217     }
218     $identifier = $parts[0];
219     $operator = $parts[1];
220     $filename = $parts[2];
221     
222     $serverBaseURL = BookReader::serverBaseURL($item->getServer());
223             
224     switch ($operator) {
225         case 'page':
226             // Find bookId and which page was requested
227             $pathParts = pathinfo($filename);
228             
229             // Look for preview request
230             if (preg_match('/^(.*)_(cover|title|preview)$/', $pathParts['filename'], $matches) === 0) {
231                 return null;
232             }
233             $bookId = $matches[1];
234             $page = $matches[2];
235             $query = array(
236                 'id' => $identifier,
237                 'bookId' => $bookId,
238                 'itemPath' => $item->getMainDir(),
239                 'server' => $serverBaseURL,
240                 'page' => $page,
241             );
242             return 'http://' . $serverBaseURL . '/BookReader/BookReaderPreview.php?' . http_build_query($query, '', '&');
243         
244         default:
245             return null;            
246     }
247       
248     return null; // was not handled
249   }
250   
251 }
252
253 ?>