mirror of
https://github.com/WhatCD/Gazelle.git
synced 2024-12-13 19:06:27 +00:00
81 lines
2.1 KiB
PHP
81 lines
2.1 KiB
PHP
|
<?
|
||
|
enforce_login();
|
||
|
function get_request_artists($RequestID) {
|
||
|
global $Cache, $DB;
|
||
|
$Artists = $Cache->get_value('request_artists_'.$RequestID);
|
||
|
if(is_array($Artists)) {
|
||
|
$Results = $Artists;
|
||
|
} else {
|
||
|
$Results = array();
|
||
|
$DB->query("SELECT ra.ArtistID,
|
||
|
aa.Name,
|
||
|
ra.Importance
|
||
|
FROM requests_artists AS ra
|
||
|
JOIN artists_alias AS aa ON ra.AliasID = aa.AliasID
|
||
|
WHERE ra.RequestID = ".$RequestID."
|
||
|
ORDER BY ra.Importance ASC,
|
||
|
aa.Name ASC;");
|
||
|
|
||
|
$ArtistRaw = $DB->to_array();
|
||
|
foreach($ArtistRaw as $ArtistRow) {
|
||
|
list($ArtistID, $ArtistName, $ArtistImportance) = $ArtistRow;
|
||
|
$Results[$ArtistImportance][] = array('id' => $ArtistID, 'name' => $ArtistName);
|
||
|
}
|
||
|
$Cache->cache_value('request_artists_'.$RequestID, $Results);
|
||
|
}
|
||
|
return $Results;
|
||
|
}
|
||
|
|
||
|
function get_request_tags($RequestID) {
|
||
|
global $DB;
|
||
|
$DB->query("SELECT rt.TagID,
|
||
|
t.Name
|
||
|
FROM requests_tags AS rt
|
||
|
JOIN tags AS t ON rt.TagID=t.ID
|
||
|
WHERE rt.RequestID = ".$RequestID."
|
||
|
ORDER BY rt.TagID ASC");
|
||
|
$Tags = $DB->to_array();
|
||
|
$Results = array();
|
||
|
foreach($Tags as $TagsRow) {
|
||
|
list($TagID, $TagName) = $TagsRow;
|
||
|
$Results[$TagID]= $TagName;
|
||
|
}
|
||
|
return $Results;
|
||
|
}
|
||
|
|
||
|
function get_votes_array($RequestID) {
|
||
|
global $Cache, $DB;
|
||
|
|
||
|
$RequestVotes = $Cache->get_value('request_votes_'.$RequestID);
|
||
|
if(!is_array($RequestVotes)) {
|
||
|
$DB->query("SELECT rv.UserID,
|
||
|
rv.Bounty,
|
||
|
u.Username
|
||
|
FROM requests_votes as rv
|
||
|
LEFT JOIN users_main AS u ON u.ID=rv.UserID
|
||
|
WHERE rv.RequestID = ".$RequestID."
|
||
|
ORDER BY rv.Bounty DESC");
|
||
|
if($DB->record_count() < 1) {
|
||
|
error(0);
|
||
|
} else {
|
||
|
$Votes = $DB->to_array();
|
||
|
|
||
|
$RequestVotes = array();
|
||
|
$RequestVotes['TotalBounty'] = array_sum($DB->collect('Bounty'));
|
||
|
|
||
|
foreach($Votes as $Vote) {
|
||
|
list($UserID, $Bounty, $Username) = $Vote;
|
||
|
$VoteArray = array();
|
||
|
$VotesArray[] = array('UserID' => $UserID,
|
||
|
'Username' => $Username,
|
||
|
'Bounty' => $Bounty);
|
||
|
}
|
||
|
|
||
|
$RequestVotes['Voters'] = $VotesArray;
|
||
|
$Cache->cache_value('request_votes_'.$RequestID, $RequestVotes);
|
||
|
}
|
||
|
}
|
||
|
return $RequestVotes;
|
||
|
}
|
||
|
?>
|