2011-10-04 03:11:56 -04:00
|
|
|
<?php
|
|
|
|
//***************************************************************************//
|
|
|
|
// index_data.php
|
|
|
|
// Collect data from various services and store locally for later display.
|
|
|
|
//***************************************************************************//
|
|
|
|
|
|
|
|
$dataSources = array(
|
2011-10-04 03:22:50 -04:00
|
|
|
//function, cache_duration
|
2011-10-04 03:11:56 -04:00
|
|
|
'twitter' => 300,
|
|
|
|
'github' => 300,
|
|
|
|
'hulu' => 600,
|
|
|
|
'lastfm' => 60,
|
|
|
|
'sc2ranks' => 43200,
|
|
|
|
'steam' => 3600,
|
|
|
|
);
|
|
|
|
|
2011-10-04 03:37:44 -04:00
|
|
|
$cacheData = json_decode(file_get_contents('../data/cache.txt'),true);
|
2011-10-04 03:11:56 -04:00
|
|
|
$sourceData = json_decode(file_get_contents('../data/index.txt'),true);
|
|
|
|
foreach($dataSources as $dataSource=>$refreshTime) {
|
|
|
|
// check last time the data was updated
|
2011-10-04 03:37:44 -04:00
|
|
|
$lastModified = (array_key_exists($dataSource, $cacheData)) ?
|
|
|
|
$cacheData[$dataSource] : 0;
|
2011-10-04 03:11:56 -04:00
|
|
|
|
|
|
|
// and see if we need to retrieve new information
|
|
|
|
if(time() - $lastModified > $refreshTime) {
|
2011-10-04 03:37:44 -04:00
|
|
|
$cacheData[$dataSource] = time();
|
2011-10-04 03:11:56 -04:00
|
|
|
|
|
|
|
$sourceData[$dataSource] = call_user_func($dataSource);
|
|
|
|
}
|
|
|
|
}
|
2011-10-04 04:32:36 -04:00
|
|
|
print_r($sourceData);
|
2011-10-04 03:37:44 -04:00
|
|
|
file_put_contents('../data/cache.txt',json_encode($cacheData));
|
2011-10-04 03:11:56 -04:00
|
|
|
file_put_contents('../data/index.txt',json_encode($sourceData));
|
|
|
|
|
|
|
|
|
|
|
|
//***************************************************************************//
|
|
|
|
// Data sources
|
|
|
|
//***************************************************************************//
|
|
|
|
function twitter() {
|
|
|
|
$url = 'http://www.twitter.com/statuses/user_timeline/atomaka.json?count=1';
|
|
|
|
$tweetInfo = json_decode(file_get_contents($url));
|
|
|
|
|
|
|
|
if(empty($tweetInfo)) {
|
|
|
|
return array(
|
|
|
|
'text' => 'Last post was a retweet and cannot be listed.',
|
|
|
|
'timeSince' => 0,
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
$tweet = urlify($tweetInfo->text);
|
|
|
|
$timeSince = ($tweetInfo->created_at != 0) ?
|
|
|
|
time_since(strtotime($tweetInfo->created_at)) : 0;
|
|
|
|
|
|
|
|
return array(
|
|
|
|
'text' => $tweet,
|
|
|
|
'timeSince' => $timeSince,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function github() {
|
|
|
|
// get the last repo we worked on
|
|
|
|
$url = 'https://api.github.com/users/atomaka/repos';
|
|
|
|
$repos = json_decode(curl_request($url));
|
|
|
|
|
|
|
|
usort(&$repos,'github_sort');
|
|
|
|
|
|
|
|
// and then get the last commit to that repo
|
|
|
|
$url = sprintf('https://api.github.com/repos/atomaka/%s/commits',
|
|
|
|
$repos[0]->name);
|
|
|
|
$commits = json_decode(curl_request($url));
|
|
|
|
|
|
|
|
return array(
|
|
|
|
'commit' => $commits[0]->commit->message,
|
|
|
|
'repo' => $repos[0]->name,
|
2011-10-04 04:32:36 -04:00
|
|
|
'url' => $commits[0]->commit->url,
|
2011-10-04 03:11:56 -04:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
function lastfm() {
|
|
|
|
$url = 'http://ws.audioscrobbler.com/2.0/?method=user.getrecenttracks&user=atomaka&limit=1&api_key=27ea07733c17562cf1fe512586954825';
|
2011-10-04 03:22:50 -04:00
|
|
|
$xml = simplexml_load_file($url);
|
2011-10-04 03:11:56 -04:00
|
|
|
$latestSong = $xml->recenttracks->track[0];
|
|
|
|
|
|
|
|
$timeSince = ((bool)$latestSong->attributes()->nowplaying) ?
|
|
|
|
'Listening now' : time_since(strtotime($latestSong->date . ' UTC')) . ' ago';
|
|
|
|
$cover = (is_array($latestSong->image)) ?
|
|
|
|
'img/lastfm/blank_album64.png' : (string)$latestSong->image[1];
|
|
|
|
|
|
|
|
return array(
|
|
|
|
'song' => (string)$latestSong->name,
|
|
|
|
'artist' => (string)$latestSong->artist,
|
|
|
|
'timeSince' => $timeSince,
|
|
|
|
'url' => (string)$latestSong->url,
|
|
|
|
'cover' => $cover,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
function sc2ranks() {
|
|
|
|
$url = 'http://sc2ranks.com/api/base/teams/us/Gaffer$888.json?appKey=whoisandrew.com';
|
|
|
|
$profile = json_decode(file_get_contents($url));
|
|
|
|
|
|
|
|
// find the 1v1 team
|
|
|
|
foreach($profile->teams as $team) {
|
|
|
|
if($team->bracket == 1) break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return array(
|
|
|
|
'league' => $team->league,
|
|
|
|
'division' => $team->division,
|
|
|
|
'rank' => $team->division_rank,
|
|
|
|
'points' => $team->points,
|
|
|
|
'wins' => $team->wins,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
function hulu() {
|
|
|
|
$url = 'http://www.hulu.com/feed/history/atomaka';
|
2011-10-04 03:22:50 -04:00
|
|
|
$xml = simplexml_load_file($url);
|
2011-10-04 03:11:56 -04:00
|
|
|
|
|
|
|
// data for last show
|
|
|
|
$lastShow = $xml->channel->item[0];
|
|
|
|
|
|
|
|
$timeSince = time_since(strtotime($lastShow->pubDate));
|
|
|
|
$title = explode(' - ', $lastShow->title);
|
|
|
|
preg_match('/<img src="(.*)" align="right"/',(string)$lastShow->description,$thumb);
|
|
|
|
|
|
|
|
return array(
|
|
|
|
'title' => $title[2],
|
|
|
|
'series' => $title[0],
|
|
|
|
'timeSince' => $timeSince,
|
|
|
|
'url' => (string)$lastShow->link,
|
|
|
|
'thumb' => $thumb[1],
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
function steam() {
|
|
|
|
$url = 'http://steamcommunity.com/profiles/76561197993725971/?xml=1';
|
2011-10-04 03:22:50 -04:00
|
|
|
$xml = simplexml_load_file($url);
|
2011-10-04 03:11:56 -04:00
|
|
|
|
|
|
|
// find the most recently played games
|
|
|
|
$recentGames = array();
|
|
|
|
if(isset($xml->mostPlayedGames)) {
|
|
|
|
foreach($xml->mostPlayedGames->mostPlayedGame as $game) {
|
|
|
|
$recentGames[] = array(
|
|
|
|
'name' => (string)$game->gameName,
|
|
|
|
'link' => (string)$game->gameLink,
|
|
|
|
'hours' => (float)$game->hoursPlayed,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return array(
|
|
|
|
'hours' => (float)$xml->hoursPlayed2Wk,
|
|
|
|
'recent' => $recentGames,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//***************************************************************************//
|
|
|
|
// Helper functions
|
|
|
|
//***************************************************************************//
|
|
|
|
function curl_request($url) {
|
|
|
|
$curl = curl_init();
|
|
|
|
|
|
|
|
curl_setopt($curl, CURLOPT_URL, $url);
|
|
|
|
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
|
|
|
|
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
|
|
|
|
|
|
|
|
$contents = curl_exec($curl);
|
|
|
|
curl_close($curl);
|
|
|
|
|
|
|
|
return $contents;
|
|
|
|
}
|
|
|
|
|
|
|
|
function time_since($time) {
|
|
|
|
$periods = array(
|
2011-10-04 03:22:50 -04:00
|
|
|
'minute' => 60,
|
|
|
|
'hour' => 60 * 60,
|
|
|
|
'day' => 60 * 60 * 24,
|
|
|
|
'week' => 60 * 60 * 24 * 7,
|
|
|
|
'month' => 60 * 60 * 24 * 30,
|
2011-10-04 03:11:56 -04:00
|
|
|
'year' => 60 * 60 * 24 * 365,
|
|
|
|
);
|
|
|
|
|
|
|
|
$now = time();
|
|
|
|
$since = $now - $time;
|
|
|
|
|
|
|
|
$formatted_since = array($since,'seconds');
|
2011-10-04 03:22:50 -04:00
|
|
|
foreach($periods as $period => $seconds) {
|
2011-10-04 03:11:56 -04:00
|
|
|
$quotient = floor($since / $seconds);
|
|
|
|
|
|
|
|
if($quotient >= 1) $formatted_since = array($quotient,$period);
|
|
|
|
else break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if($formatted_since[0] > 1) $formatted_since[1] .= 's';
|
|
|
|
return implode(' ',$formatted_since);
|
|
|
|
}
|
|
|
|
|
|
|
|
function urlify($string) {
|
|
|
|
$pattern ="{\\b((https?|telnet|gopher|file|wais|ftp) : [\\w/\\#~:.?+=&%@!\\-]+?) (?= [.:?\\-]* (?:[^\\w/\\#~:.?+=&%@!\\-] |$) ) }x";
|
|
|
|
return preg_replace($pattern,"<a href=\"$1\">$1</a>", $string);
|
|
|
|
}
|
|
|
|
|
|
|
|
function github_sort($a, $b) {
|
|
|
|
return strtotime($a->pushed_at) < strtotime($b->pushed_at);
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|