forked from tzeumer/JournalTouch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rss.php
32 lines (28 loc) · 1.21 KB
/
rss.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
<?php
/**
* @brief Fetches a rss feed from JournalTocs and set proxy for links
*
* Introduced: 2015-11-16
*
* @author Andreas Bohne-Lang (Medizinische Fakultät Mannheim der Ruprecht-Karls-Universität Heidelberg)
*/
require_once("sys/bootstrap.php");
#This is the Base for the JournalTOCs API, which is freely available for developers to create their own web applications with Table of Contents (TOCs) published by over 16,000 scholarly journals.
# http://www.journaltocs.ac.uk/api/index.php
if (isset($_GET["issn"]) && ! empty( $_GET["issn"]) ){
$rss = '//www.journaltocs.ac.uk/api/journals/'.$_GET["issn"].'?output=articles&user='.$cfg->api->jt->account;
if (!(isset($cfg->prefs->proxy) && !empty($cfg->prefs->proxy))) {
header("Location: $rss");
exit;
} else {
$rss_content=file($rss);
foreach ($rss_content as $ind => $val) {
if( strstr($val,"rdf:about=") || strstr($val,"rdf:resource") || strstr($val,"<content:encoded>")|| strstr($val,"<link>") ){
$rss_content[$ind] = substr($val,0,strpos($val,"http://")) . $cfg->prefs->proxy . substr($val,strpos($val,"http://"));
}
}
}
}
header("Content-Type: application/xml; charset=utf-8");
echo trim(implode("",$rss_content));
?>