Gazelle/sections/index/private.php

488 lines
16 KiB
PHP
Raw Normal View History

2011-03-28 14:21:28 +00:00
<?
include(SERVER_ROOT.'/classes/class_text.php');
$Text = new TEXT;
if (!$News = $Cache->get_value('news')) {
$DB->query("SELECT
ID,
Title,
Body,
Time
FROM news
ORDER BY Time DESC
LIMIT 5");
$News = $DB->to_array(false,MYSQLI_NUM,false);
$Cache->cache_value('news',$News,3600*24*30);
$Cache->cache_value('news_latest_id', $News[0][0], 0);
}
if ($LoggedUser['LastReadNews'] != $News[0][0]) {
$Cache->begin_transaction('user_info_heavy_'.$UserID);
$Cache->update_row(false, array('LastReadNews' => $News[0][0]));
$Cache->commit_transaction(0);
$DB->query("UPDATE users_info SET LastReadNews = '".$News[0][0]."' WHERE UserID = ".$UserID);
$LoggedUser['LastReadNews'] = $News[0][0];
}
show_header('News','bbcode');
?>
<div class="thin">
<div class="sidebar">
<?
$FeaturedAlbum = $Cache->get_value('featured_album');
if($FeaturedAlbum === false) {
$DB->query("SELECT fa.GroupID, tg.Name, tg.WikiImage, fa.ThreadID, fa.Title FROM featured_albums AS fa JOIN torrents_group AS tg ON tg.ID=fa.GroupID WHERE Ended = 0");
$FeaturedAlbum = $DB->next_record();
2011-07-04 08:00:07 +00:00
2011-03-28 14:21:28 +00:00
$Cache->cache_value('featured_album', $FeaturedAlbum, 0);
}
if(is_number($FeaturedAlbum['GroupID'])) {
$Artists = get_artist($FeaturedAlbum['GroupID']);
?>
<div class="box">
2011-10-21 08:00:14 +00:00
<div class="head colhead_dark"><strong>Featured Album</strong></div>
2011-03-28 14:21:28 +00:00
<div class="center pad"><?=display_artists($Artists, true, true)?><a href="torrents.php?id=<?=$FeaturedAlbum['GroupID']?>"><?=$FeaturedAlbum['Name']?></a></div>
<div class="center"><a href="torrents.php?id=<?=$FeaturedAlbum['GroupID']?>" title="<?=display_artists($Artists, false, false)?> - <?=$FeaturedAlbum['Name']?>"><img src="<?=$FeaturedAlbum['WikiImage']?>" alt="<?=display_artists($Artists, false, false)?> - <?=$FeaturedAlbum['Name']?>" width="100%" /></a></div>
2012-05-04 08:00:14 +00:00
<div class="center pad"><a href="forums.php?action=viewthread&amp;threadid=<?=$FeaturedAlbum['ThreadID']?>"><em>Read the interview with the artist, discuss here</em></a></div>
2011-03-28 14:21:28 +00:00
</div>
<?
}
2012-01-25 08:00:20 +00:00
if (check_perms('users_mod')) {
2011-03-28 14:21:28 +00:00
?>
2012-01-25 08:00:20 +00:00
<div class="box">
<div class="head colhead_dark"><strong><a href="staffblog.php">Latest staff blog posts</a></strong></div>
<?
if(($Blog = $Cache->get_value('staff_blog')) === false) {
$DB->query("SELECT
b.ID,
um.Username,
b.Title,
b.Body,
b.Time
FROM staff_blog AS b LEFT JOIN users_main AS um ON b.UserID=um.ID
ORDER BY Time DESC
LIMIT 20");
$Blog = $DB->to_array();
$Cache->cache_value('staff_blog',$Blog,1209600);
}
if(($ReadTime = $Cache->get_value('staff_blog_read_'.$LoggedUser['ID'])) === false) {
$DB->query("SELECT Time FROM staff_blog_visits WHERE UserID = ".$LoggedUser['ID']);
if (list($ReadTime) = $DB->next_record()) {
$ReadTime = strtotime($ReadTime);
} else {
$ReadTime = 0;
}
$Cache->cache_value('staff_blog_read_'.$LoggedUser['ID'],$ReadTime,1209600);
}
?>
<ul class="stats nobullet">
<?
if(count($Blog) < 5) {
$Limit = count($Blog);
} else {
$Limit = 5;
}
for($i = 0; $i < $Limit; $i++) {
list($BlogID, $Author, $Title, $Body, $BlogTime, $ThreadID) = $Blog[$i];
?>
<li>
<?=($ReadTime < strtotime($BlogTime))?'<strong>':''?><?=($i + 1)?>. <a href="staffblog.php#blog<?=$BlogID?>"><?=$Title?></a><?=($ReadTime < strtotime($BlogTime))?'</strong>':''?>
</li>
<?
}
?>
</ul>
</div>
<? } ?>
2011-03-28 14:21:28 +00:00
<div class="box">
<div class="head colhead_dark"><strong><a href="blog.php">Latest blog posts</a></strong></div>
<?
if(($Blog = $Cache->get_value('blog')) === false) {
$DB->query("SELECT
b.ID,
um.Username,
b.Title,
b.Body,
b.Time,
b.ThreadID
FROM blog AS b LEFT JOIN users_main AS um ON b.UserID=um.ID
ORDER BY Time DESC
LIMIT 20");
$Blog = $DB->to_array();
$Cache->cache_value('blog',$Blog,1209600);
}
?>
<ul class="stats nobullet">
<?
if(count($Blog) < 5) {
$Limit = count($Blog);
} else {
$Limit = 5;
}
for($i = 0; $i < $Limit; $i++) {
list($BlogID, $Author, $Title, $Body, $BlogTime, $ThreadID) = $Blog[$i];
?>
<li>
<?=($i + 1)?>. <a href="blog.php#blog<?=$BlogID?>"><?=$Title?></a>
</li>
<?
}
?>
</ul>
</div>
<div class="box">
<div class="head colhead_dark"><strong>Stats</strong></div>
<ul class="stats nobullet">
<? if (USER_LIMIT>0) { ?>
<li>Maximum Users: <?=number_format(USER_LIMIT) ?></li>
<?
}
if(($UserCount = $Cache->get_value('stats_user_count')) === false){
$DB->query("SELECT COUNT(ID) FROM users_main WHERE Enabled='1'");
list($UserCount) = $DB->next_record();
$Cache->cache_value('stats_user_count', $UserCount, 0); //inf cache
}
$UserCount = (int)$UserCount;
?>
<li>Enabled Users: <?=number_format($UserCount)?> [<a href="stats.php?action=users">Details</a>]</li>
<?
if (($UserStats = $Cache->get_value('stats_users')) === false) {
$DB->query("SELECT COUNT(ID) FROM users_main WHERE Enabled='1' AND LastAccess>'".time_minus(3600*24)."'");
list($UserStats['Day']) = $DB->next_record();
$DB->query("SELECT COUNT(ID) FROM users_main WHERE Enabled='1' AND LastAccess>'".time_minus(3600*24*7)."'");
list($UserStats['Week']) = $DB->next_record();
$DB->query("SELECT COUNT(ID) FROM users_main WHERE Enabled='1' AND LastAccess>'".time_minus(3600*24*30)."'");
list($UserStats['Month']) = $DB->next_record();
$Cache->cache_value('stats_users',$UserStats,0);
}
?>
<li>Users active today: <?=number_format($UserStats['Day'])?> (<?=number_format($UserStats['Day']/$UserCount*100,2)?>%)</li>
<li>Users active this week: <?=number_format($UserStats['Week'])?> (<?=number_format($UserStats['Week']/$UserCount*100,2)?>%)</li>
<li>Users active this month: <?=number_format($UserStats['Month'])?> (<?=number_format($UserStats['Month']/$UserCount*100,2)?>%)</li>
<?
if(($TorrentCount = $Cache->get_value('stats_torrent_count')) === false) {
$DB->query("SELECT COUNT(ID) FROM torrents");
list($TorrentCount) = $DB->next_record();
$Cache->cache_value('stats_torrent_count', $TorrentCount, 0); //inf cache
}
if(($AlbumCount = $Cache->get_value('stats_album_count')) === false) {
$DB->query("SELECT COUNT(ID) FROM torrents_group WHERE CategoryID='1'");
list($AlbumCount) = $DB->next_record();
$Cache->cache_value('stats_album_count', $AlbumCount, 0); //inf cache
}
if(($ArtistCount = $Cache->get_value('stats_artist_count')) === false) {
$DB->query("SELECT COUNT(ArtistID) FROM artists_group");
list($ArtistCount) = $DB->next_record();
$Cache->cache_value('stats_artist_count', $ArtistCount, 0); //inf cache
}
if (($PerfectCount = $Cache->get_value('stats_perfect_count')) === false) {
$DB->query("SELECT COUNT(ID) FROM torrents WHERE ((LogScore = 100 AND Format = 'FLAC') OR (Media = 'Vinyl' AND Format = 'FLAC') OR (Media = 'WEB' AND Format = 'FLAC') OR (Media = 'DVD' AND Format = 'FLAC') OR (Media = 'Soundboard' AND Format = 'FLAC'))");
list($PerfectCount) = $DB->next_record();
$Cache->cache_value('stats_perfect_count', $PerfectCount, 0);
}
?>
<li>Torrents: <?=number_format($TorrentCount)?></li>
<li>Releases: <?=number_format($AlbumCount)?></li>
<li>Artists: <?=number_format($ArtistCount)?></li>
<li>"Perfect" FLACs: <?=number_format($PerfectCount)?></li>
<?
//End Torrent Stats
if (($RequestStats = $Cache->get_value('stats_requests')) === false) {
$DB->query("SELECT COUNT(ID) FROM requests");
list($RequestCount) = $DB->next_record();
$DB->query("SELECT COUNT(ID) FROM requests WHERE FillerID > 0");
list($FilledCount) = $DB->next_record();
$Cache->cache_value('stats_requests',array($RequestCount,$FilledCount),11280);
} else {
list($RequestCount,$FilledCount) = $RequestStats;
}
?>
<li>Requests: <?=number_format($RequestCount)?> (<?=number_format($FilledCount/$RequestCount*100, 2)?>% filled)</li>
<?
if ($SnatchStats = $Cache->get_value('stats_snatches')) {
?>
<li>Snatches: <?=number_format($SnatchStats)?></li>
<?
}
if(($PeerStats = $Cache->get_value('stats_peers')) === false) {
//Cache lock!
2012-04-24 08:00:23 +00:00
$PeerStatsLocked = $Cache->get_value('stats_peers_lock');
if(!$PeerStatsLocked) {
$Cache->cache_value('stats_peers_lock', 1, 30);
2011-11-09 08:00:14 +00:00
$DB->query("SELECT IF(remaining=0,'Seeding','Leeching') AS Type, COUNT(uid) FROM xbt_files_users WHERE active=1 GROUP BY Type");
$PeerCount = $DB->to_array(0, MYSQLI_NUM, false);
2012-04-24 08:00:23 +00:00
$SeederCount = $PeerCount['Seeding'][1] ?: 0;
$LeecherCount = $PeerCount['Leeching'][1] ?: 0;
$Cache->cache_value('stats_peers', array($LeecherCount,$SeederCount), 0);
$Cache->delete_value('stats_peers_lock');
2011-03-28 14:21:28 +00:00
}
} else {
2012-04-24 08:00:23 +00:00
$PeerStatsLocked = false;
2011-03-28 14:21:28 +00:00
list($LeecherCount,$SeederCount) = $PeerStats;
}
2012-04-24 08:00:23 +00:00
if(!$PeerStatsLocked) {
$Ratio = ratio($SeederCount, $LeecherCount);
$PeerCount = number_format($SeederCount + $LeecherCount);
$SeederCount = number_format($SeederCount);
$LeecherCount = number_format($LeecherCount);
} else {
$PeerCount = $SeederCount = $LeecherCount = $Ratio = 'Server busy';
}
2011-03-28 14:21:28 +00:00
?>
2012-04-24 08:00:23 +00:00
<li>Peers: <?=$PeerCount?></li>
<li>Seeders: <?=$SeederCount?></li>
<li>Leechers: <?=$LeecherCount?></li>
2011-03-28 14:21:28 +00:00
<li>Seeder/Leecher Ratio: <?=$Ratio?></li>
</ul>
</div>
<?
if(($TopicID = $Cache->get_value('polls_featured')) === false) {
$DB->query("SELECT TopicID FROM forums_polls ORDER BY Featured DESC LIMIT 1");
list($TopicID) = $DB->next_record();
$Cache->cache_value('polls_featured',$TopicID,0);
}
if($TopicID) {
if(($Poll = $Cache->get_value('polls_'.$TopicID)) === false) {
$DB->query("SELECT Question, Answers, Featured, Closed FROM forums_polls WHERE TopicID='".$TopicID."'");
list($Question, $Answers, $Featured, $Closed) = $DB->next_record(MYSQLI_NUM, array(1));
$Answers = unserialize($Answers);
$DB->query("SELECT Vote, COUNT(UserID) FROM forums_polls_votes WHERE TopicID='$TopicID' AND Vote <> '0' GROUP BY Vote");
$VoteArray = $DB->to_array(false, MYSQLI_NUM);
$Votes = array();
foreach ($VoteArray as $VoteSet) {
list($Key,$Value) = $VoteSet;
$Votes[$Key] = $Value;
}
for ($i = 1, $il = count($Answers); $i <= $il; ++$i) {
if (!isset($Votes[$i])) {
$Votes[$i] = 0;
}
}
$Cache->cache_value('polls_'.$TopicID, array($Question,$Answers,$Votes,$Featured,$Closed), 0);
} else {
list($Question,$Answers,$Votes,$Featured,$Closed) = $Poll;
}
if (!empty($Votes)) {
$TotalVotes = array_sum($Votes);
$MaxVotes = max($Votes);
} else {
$TotalVotes = 0;
$MaxVotes = 0;
}
$DB->query("SELECT Vote FROM forums_polls_votes WHERE UserID='".$LoggedUser['ID']."' AND TopicID='$TopicID'");
list($UserResponse) = $DB->next_record();
if (!empty($UserResponse) && $UserResponse != 0) {
$Answers[$UserResponse] = '&raquo; '.$Answers[$UserResponse];
}
?>
<div class="box">
<div class="head colhead_dark"><strong>Poll<? if ($Closed) { echo ' ['.'Closed'.']'; } ?></strong></div>
<div class="pad">
<p><strong><?=display_str($Question)?></strong></p>
<? if ($UserResponse !== null || $Closed) { ?>
<ul class="poll nobullet">
<? for ($i = 1, $il = count($Answers); $i <= $il; $i++) {
if ($TotalVotes > 0) {
$Ratio = $Votes[$i]/$MaxVotes;
$Percent = $Votes[$i]/$TotalVotes;
} else {
$Ratio=0;
$Percent=0;
}
?> <li><?=display_str($Answers[$i])?> (<?=number_format($Percent*100,2)?>%)</li>
<li class="graph">
<span class="left_poll"></span>
<span class="center_poll" style="width:<?=round($Ratio*140)?>px;"></span>
<span class="right_poll"></span>
<br />
</li>
<? } ?>
</ul>
<strong>Votes:</strong> <?=number_format($TotalVotes)?><br />
<? } else { ?>
<div id="poll_results">
<form id="polls" action="">
<input type="hidden" name="action" value="poll"/>
<input type="hidden" name="auth" value="<?=$LoggedUser['AuthKey']?>"/>
<input type="hidden" name="topicid" value="<?=$TopicID?>" />
<? for ($i = 1, $il = count($Answers); $i <= $il; $i++) { ?>
<input type="radio" name="vote" id="answer_<?=$i?>" value="<?=$i?>" />
<label for="answer_<?=$i?>"><?=display_str($Answers[$i])?></label><br />
<? } ?>
<br /><input type="radio" name="vote" id="answer_0" value="0" /> <label for="answer_0">Blank - Show the results!</label><br /><br />
<input type="button" onclick="ajax.post('index.php','polls',function(response){$('#poll_results').raw().innerHTML = response});" value="Vote" />
</form>
</div>
<? } ?>
<br /><strong>Topic:</strong> <a href="forums.php?action=viewthread&amp;threadid=<?=$TopicID?>">Visit</a>
</div>
</div>
<?
}
//polls();
?>
</div>
<div class="main_column">
<?
$Recommend = $Cache->get_value('recommend');
$Recommend_artists = $Cache->get_value('recommend_artists');
if (!is_array($Recommend) || !is_array($Recommend_artists)) {
$DB->query("SELECT
tr.GroupID,
tr.UserID,
u.Username,
2012-02-05 08:00:20 +00:00
tg.Name,
tg.TagList
2011-03-28 14:21:28 +00:00
FROM torrents_recommended AS tr
JOIN torrents_group AS tg ON tg.ID=tr.GroupID
LEFT JOIN users_main AS u ON u.ID=tr.UserID
ORDER BY tr.Time DESC LIMIT 10
");
$Recommend = $DB->to_array();
$Cache->cache_value('recommend',$Recommend,1209600);
$Recommend_artists = get_artists($DB->collect('GroupID'));
$Cache->cache_value('recommend_artists',$Recommend_artists,1209600);
}
if (count($Recommend) >= 4) {
$Cache->increment('usage_index');
?>
<div class="box" id="recommended">
<div class="head colhead_dark">
<strong>Latest vanity house additions</strong>
<a href="#" onclick="$('#vanityhouse').toggle();return false;">(View)</a>
</div>
<table class="hidden" id="vanityhouse">
<?
foreach($Recommend as $Recommendations) {
2012-02-05 08:00:20 +00:00
list($GroupID, $UserID, $Username, $GroupName, $TagList) = $Recommendations;
$TagsStr = '';
if ($TagList) {
// No vanity.house tag.
2012-03-04 08:00:21 +00:00
$Tags = explode(' ', str_replace('_', '.', $TagList));
2012-02-05 08:00:20 +00:00
$TagLinks = array();
foreach ($Tags as $Tag) {
2012-03-04 08:00:21 +00:00
if ($Tag == 'vanity.house') {
continue;
}
2012-02-05 08:00:20 +00:00
$TagLinks[] = "<a href=\"torrents.php?action=basic&taglist=$Tag\">$Tag</a> ";
}
$TagStr = "<br />\n<div class=\"tags\">".implode(', ', $TagLinks).'</div>';
}
2011-03-28 14:21:28 +00:00
?>
<tr>
2012-02-05 08:00:20 +00:00
<td>
<?=display_artists($Recommend_artists[$GroupID]) ?>
2012-03-28 08:00:20 +00:00
<a href="torrents.php?id=<?=$GroupID?>"><?=$GroupName?></a> (by <?=format_username($UserID, false, false, false)?>)
2012-02-05 08:00:20 +00:00
<?=$TagStr?>
</td>
2011-03-28 14:21:28 +00:00
</tr>
<? } ?>
</table>
</div>
<!-- END recommendations section -->
<?
}
$Count = 0;
foreach ($News as $NewsItem) {
list($NewsID,$Title,$Body,$NewsTime) = $NewsItem;
if (strtotime($NewsTime) > time()) {
continue;
}
?>
<div id="news<?=$NewsID?>" class="box">
<div class="head">
<strong><?=$Text->full_format($Title)?></strong> <?=time_diff($NewsTime);?>
<? if(check_perms('admin_manage_news')) {?>
- <a href="tools.php?action=editnews&amp;id=<?=$NewsID?>">[Edit]</a>
<? } ?>
</div>
<div class="pad"><?=$Text->full_format($Body)?></div>
</div>
<?
if (++$Count > 4) {
break;
}
}
?>
<div id="more_news" class="box">
<div class="head">
<em>For older news posts, <a href="forums.php?action=viewforum&amp;forumid=19">click here</a></em>
</div>
</div>
</div>
</div>
<?
show_footer(array('disclaimer'=>true));
function contest() {
global $DB, $Cache, $LoggedUser;
list($Contest, $TotalPoints) = $Cache->get_value('contest');
if(!$Contest) {
$DB->query("SELECT
UserID,
SUM(Points),
Username
FROM users_points AS up
JOIN users_main AS um ON um.ID=up.UserID
GROUP BY UserID
ORDER BY SUM(Points) DESC
LIMIT 20");
$Contest = $DB->to_array();
$DB->query("SELECT SUM(Points) FROM users_points");
list($TotalPoints) = $DB->next_record();
$Cache->cache_value('contest', array($Contest,$TotalPoints), 600);
}
?>
<!-- Contest Section -->
<div class="box">
<div class="head colhead_dark"><strong>Quality time scoreboard</strong></div>
<div class="pad">
<ol style="padding-left:5px;">
<?
foreach ($Contest as $User) {
list($UserID, $Points, $Username) = $User;
?>
2012-03-28 08:00:20 +00:00
<li><?=format_username($UserID, false, false, false)?> (<?=number_format($Points)?>)</li>
2011-03-28 14:21:28 +00:00
<?
}
?>
</ol>
Total uploads: <?=$TotalPoints?><br />
<a href="index.php?action=scoreboard">Full scoreboard</a>
</div>
</div>
<!-- END contest Section -->
<? } // contest()
?>