This repository has been archived by the owner on Dec 5, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhathilookup.php
63 lines (44 loc) · 2.14 KB
/
hathilookup.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<?php
/*Bengtson-Fu 13 3 |\| ( ][ 5 () |\| - |= |_|!!!!!!*/
/*created by Jason Bengtson, MLIS, MA : Available under GNU GPL license*/
/*This file is part of hathiGenius
Copyright 2018, Kansas State University Libraries
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.*/
/*Bengtson-Fu is the best Kung Fu!!!*/
/*Built for Kansas State University -- Go Wildcats!!!*/
/*hathiGenius-----an app built to determine availability of hathitrust materials*/
error_reporting(E_ERROR | E_PARSE);
ini_set('log_startup_errors',1);
ini_set("log_errors", True);
ini_set("error_log", "../klib/logs/hathigenius-errors.log");
$datasink=$_GET["datasink"];
$checko=strlen($datasink);
$datasink=json_decode($datasink);
/*this area contains our proprietary tests that we use, in concert with rules on the server, to protect from misuse. The
tests migrate into numerical values for the $test1 and $test2 variables in the conditional below.
Omit those vars from the conditional in the absence of such testing in this block*/
if(($checko>3) && ($test1>0) && ($test2>0)) {
foreach ($datasink as &$value) {
$query="https://catalog.hathitrust.org/api/volumes/brief/htid/".$value->article.".json";
$thisjson = file_get_contents($query);
$thisjson=json_decode($thisjson);
$code2="EXLResultStatusMaybeAvailable";
foreach ($thisjson->items as &$jason) {
if($jason->htid===$value->article) {
$code=$jason->usRightsString;
if($code==="Full view") {
$code2="EXLResultStatusAvailable";
}
}
}
$value->article=$code2;
}
echo("var datareturn='".json_encode($datasink)."';");
}
?>