mirror of
https://github.com/WhatCD/Gazelle.git
synced 2024-12-13 10:56:26 +00:00
55 lines
1.9 KiB
PHP
55 lines
1.9 KiB
PHP
<?
|
|
//global $Cache, $DB;
|
|
include(SERVER_ROOT.'/sections/torrents/ranking_funcs.php');
|
|
|
|
$Top10 = $Cache->get_value('similar_albums_'.$GroupID);
|
|
if ($Top10 === False || isset($Top10[$GroupID])) {
|
|
|
|
$VotePairs = $Cache->get_value('vote_pairs_'.$GroupID, true);
|
|
if ($VotePairs === False|| isset($VotePairs[$GroupID])) {
|
|
$DB->query("SELECT v.GroupID, SUM(IF(v.Type='Up',1,0)) AS Ups, COUNT(1) AS Total
|
|
FROM (SELECT UserID FROM users_votes WHERE GroupID = $GroupID AND Type='Up') AS a
|
|
JOIN users_votes AS v USING (UserID)
|
|
WHERE v.GroupID <> $GroupID
|
|
GROUP BY v.GroupID
|
|
HAVING Ups > 0");
|
|
$VotePairs = $DB->to_array('GroupID', MYSQL_ASSOC, false);
|
|
$Cache->cache_value('vote_pairs_'.$GroupID, $VotePairs);
|
|
}
|
|
|
|
$GroupScores = array();
|
|
foreach ($VotePairs as $RatingGroup) {
|
|
// Cutting out the junk should speed the sort significantly
|
|
$Score = binomial_score($RatingGroup['Ups'], $RatingGroup['Total']);
|
|
if ($Score > 0.3) {
|
|
$GroupScores[$RatingGroup['GroupID']] = binomial_score($RatingGroup['Ups'], $RatingGroup['Total']);
|
|
}
|
|
}
|
|
|
|
arsort($GroupScores);
|
|
$Top10 = array_slice($GroupScores, 0, 10, true);
|
|
$Cache->cache_value('similar_albums_'.$GroupID, $Top10, .5*3600);
|
|
}
|
|
if (count($Top10) > 0) {
|
|
?>
|
|
<table class="vote_matches_table" id="vote_matches">
|
|
<tr class="colhead">
|
|
<td><a href="#">↑</a> People who like this album also liked... <a href="#" onclick="$('.votes_rows').toggle(); return false;">(Show)</a></td>
|
|
</tr>
|
|
<?
|
|
$Top10Groups = array_keys($Top10);
|
|
|
|
$Groups = Torrents::get_groups($Top10Groups, true, true, false);
|
|
$i = 0;
|
|
foreach ($Groups['matches'] as $MatchGroupID => $MatchGroup) {
|
|
$i++;
|
|
$Str = Artists::display_artists($MatchGroup['ExtendedArtists']).'<a href="torrents.php?id='.$MatchGroupID.'">'.$MatchGroup['Name'].'</a>';
|
|
?>
|
|
<tr class="votes_rows hidden <?=($i%2?'rowb':'rowa')?>">
|
|
<td><span class="like_ranks"><?=$i?>.</span> <?=$Str?></td>
|
|
</tr>
|
|
<? } ?>
|
|
</table>
|
|
<?
|
|
}
|
|
?>
|