-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfunction.php
More file actions
265 lines (224 loc) · 6.62 KB
/
Copy pathfunction.php
File metadata and controls
265 lines (224 loc) · 6.62 KB
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
<?php
/**
* Funciones auxiliares
*
* @author Toni Prieto
* @date 2018-09-18
*/
//Devuelve el JSON descodificado del resultado
// de llamar a la url
function getJSONresponse($url)
{
try {
$client = new \GuzzleHttp\Client();
// hacemos las peticiones con un delay de 1/2 segundo
$res = $client->request('GET', $url, ["delay" => 500]);
if ($res->getStatusCode() == 200) {
return json_decode($res->getBody());
} else {
return array();
}
} catch(\GuzzleHttp\Exception\ClientException $e) {
//echo "Se ha producido un error en la petición a la API: " . $e->getMessage() . "\n";
return array();
}
}
//Variables globales para guardar los datos del fichero
//descargados por OAI
$initRepoList = false;
$repoListDois = array();
$repoListUrls = array();
//Para mejorar el rendimiento se peiude
function getLocalInfo($values)
{
global $initRepoList, $repoListDois, $repoListUrls;
if (!$initRepoList) {
loadOAIFile();
}
if (isset($values['doi']))
{
if (isset($repoListDois[$values['doi']])) {
return $repoListDois[$values['doi']];
}
}
else if (isset($values['url']))
{
if (isset($repoListUrls[$values['url']])) {
return $repoListUrls[$values['url']];
}
}
//Sino devolemos valor no encontrado
$response["status"] = "NOTFOUND";
$response["url"] = "";
$response["embargodate"] = "";
return $response;
}
function loadOAIFile()
{
global $initRepoList, $repoListDois, $repoListUrls;
echo "Cargando lista de dois y urls descargadas del repositorio...\n";
//Abrimos el archivo con los dois/urls descargadas
if (file_exists("./dois-repositorio.txt")) {
if (($file = fopen("./dois-repositorio.txt", "r")) !== FALSE) {
while (($datos = fgetcsv($file, 1000, "\t")) !== FALSE) {
//0 => doi
$doi = $datos[0];
//1 => url
$urls = $datos[1];
//2 => rights
$rights = $datos[2];
//3 => embargoDate
$embargoDate = $datos[3];
$urlArray = explode(";", $urls);
//Guardamos el doi obtenido
if ($doi != "") {
if (!isset($repoListDois[$doi])) {
$repoListDois[$doi] = array("status" => $rights, "url" => $urls, "embargodate" => $embargoDate);
}
}
//Guardamos todas la urls obtenidas
foreach ($urlArray as $num => $url) {
if (!isset($repoListUrls[$url])) {
$repoListUrls[$url] = array("status" => $rights, "url" => $url, "embargodate" => $embargoDate);
}
}
}
fclose($file);
}
echo "\t" . sizeof($repoListDois) . " DOIs cargadas\n";
echo "\t" . sizeof($repoListUrls) . " URLs cargadas\n";
echo "\n";
}
else
{
echo "\nATENCIÓN! El archivo dois-repositorio.txt no existe. Calculando sin datos del repositorio local\n\n";
}
$initRepoList = true;
}
// Devuelve true si el segundo parametro (array de Strings)
// contiene el valor del primer parametro (String)
function containsDomain($url,$domains)
{
if (!isset($domains)) return false;
if (!is_array($domains))
{
if(stripos($url,$domains) > 0) return true;
}
else
{
foreach($domains as $num => $domain)
{
if(stripos($url,$domain) > 0) return true;
}
}
return false;
}
// Devuelve la primera url que contiene algun dominia del segundo parametro
// $urlValues: lista de urls separadas por comas
// $domains: String o Array
function getLocalUrlValue($urlsValue,$domains)
{
if (!isset($domains)) return null;
$urls = explode(",",$urlsValue);
foreach($urls as $num => $url)
{
if (!is_array($domains))
{
if(stripos($url,$domains) > 0) return $url;
}
else
{
foreach($domains as $num => $domain)
{
if(stripos($url,$domain) > 0) return $url;
}
}
}
return null;
}
// Devuelve true si empieza por 10.
function isDOI($doi)
{
if ($doi != null && (substr($doi, 0, strlen("10.")) === "10."))
return true;
else
return false;
}
// Devuelve true si se trata de un doi en sus diferentes formas
function isDOIExtended($doi)
{
if (startsWith($doi,"http://doi.org/")) {
$doi = str_replace("http://doi.org/","",$doi);
} else if (startsWith($doi,"https://doi.org/")) {
$doi = str_replace("https://doi.org/","",$doi);
} else if (startsWith($doi,"http://doi.org/")) {
$doi = str_replace("http://dx.doi.org/","",$doi);
} else if (startsWith($doi,"https://dx.doi.org/")) {
$doi = str_replace("https://dx.doi.org/","",$doi);
} else if (startsWith($doi,"info:eu-repo/semantics/altIdentifier/doi/")) {
$doi = str_replace("info:eu-repo/semantics/altIdentifier/doi/","",$doi);
}
if ($doi != null && (substr($doi, 0, strlen("10.")) === "10."))
return true;
else
return false;
}
// normaliza el valor de un doi
// pasando url o identificador openaire a doi simple
function getDOIValue($doi)
{
if (startsWith($doi,"http://doi.org/")) {
$doi = str_replace("http://doi.org/","",$doi);
} else if (startsWith($doi,"https://doi.org/")) {
$doi = str_replace("https://doi.org/","",$doi);
} else if (startsWith($doi,"http://dx.doi.org/")) {
$doi = str_replace("http://dx.doi.org/","",$doi);
} else if (startsWith($doi,"https://dx.doi.org/")) {
$doi = str_replace("https://dx.doi.org/","",$doi);
} else if (startsWith($doi,"info:eu-repo/semantics/altIdentifier/doi/")) {
$doi = str_replace("info:eu-repo/semantics/altIdentifier/doi/","",$doi);
}
return $doi;
}
// escribe los valores del csv
function writeValues(&$file,$headers,$values)
{
$row = array();
foreach($headers as $id => $name)
{
if (isset($values[$id])) {
if ($values[$id] === false) {
$row[] = "0";
} else {
$row[] = $values[$id];
}
} else {
$row[] = "-";
}
}
fputcsv($file,$row,',','"');
}
// escribe la cabecera del csv
function writeHeader(&$file, $headers)
{
$row = array();
foreach($headers as $id => $name)
{
$row[] = $name;
}
fputcsv($file,$row,',','"');
}
//función auxiliar
function startsWith($haystack, $needle)
{
$length = strlen($needle);
return (substr($haystack, 0, $length) === $needle);
}
//función auxiliar
function endsWith($haystack, $needle)
{
$length = strlen($needle);
return $length === 0 ||
(substr($haystack, -$length) === $needle);
}
?>