-
Notifications
You must be signed in to change notification settings - Fork 0
/
fetch_bookmarks.php
66 lines (50 loc) · 1.36 KB
/
fetch_bookmarks.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
64
65
66
<?
require_once("db.php");
require_once("utf8.php");
require_once("string.php");
require_once("date.php");
require_once("xmlparse.php");
function _cmp($a, $b)
{
if ($a["date"] == $b["date"])
return 0;
return ($a["date"] > $b["date"]) ? -1 : 1;
}
function fetch($count)
{
ini_set("user_agent", "BlogwalkBot/1.0 (+http://www.blogwalk.se/about/bot)");
$tags = get_most_used_tags(100);
$tagnames = array_keys($tags);
foreach($tagnames as $tag)
{
$tag = urlencode($tag);
echo "<p>fetching $tag</p>";
# hämtar del.icio.us-länkar
$xmldata = @file_get_contents("http://del.icio.us/rss/tag/$tag");
if($xmldata === false)
{
echo "! inget svar från del.icio.us/rss/tag/$tag\n";
continue;
}
$dlinks = parse_rdf($xmldata);
# hämtar furl-länkar
$xmldata = @file_get_contents("http://www.furl.net/members/rss.xml?topic=$tag");
if($xmldata === false)
{
echo "! inget svar från furl.net/members/rss.xml?topic=$tag\n";
continue;
}
$flinks = parse_rss($xmldata);
# lägger ihop länkarna (utgår från att det finns fler på del.icio.us än på furl)
$flinks = array_slice($flinks, 0, $count / 2);
$links = array_merge(array_slice($dlinks, 0, $count - count($flinks)), $flinks);
if(count($links) > 0)
{
usort($links, "_cmp");
save_data($links, "cache/{$tag}_links");
}
}
return $links;
}
$links = fetch(6);
?>