Gazelle/sections/torrents/editgroup.php

169 lines
5.7 KiB
PHP
Raw Normal View History

2011-03-28 14:21:28 +00:00
<?
/************************************************************************
||------------|| Edit artist wiki page ||------------------------------||
This page is the page that is displayed when someone feels like editing
an artist's wiki page.
It is called when $_GET['action'] == 'edit'. $_GET['artistid'] is the
ID of the artist, and must be set.
The page inserts a new revision into the wiki_artists table, and clears
the cache for the artist page.
************************************************************************/
$GroupID = $_GET['groupid'];
if(!is_number($GroupID) || !$GroupID) { error(0); }
// Get the artist name and the body of the last revision
$DB->query("SELECT
tg.Name,
wt.Image,
wt.Body,
tg.WikiImage,
tg.WikiBody,
tg.Year,
tg.RecordLabel,
tg.CatalogueNumber,
tg.ReleaseType,
tg.CategoryID,
tg.VanityHouse
2011-03-28 14:21:28 +00:00
FROM torrents_group AS tg
LEFT JOIN wiki_torrents AS wt ON wt.RevisionID=tg.RevisionID
WHERE tg.ID='$GroupID'");
if($DB->record_count() == 0) { error(404); }
list($Name, $Image, $Body, $WikiImage, $WikiBody, $Year, $RecordLabel, $CatalogueNumber, $ReleaseType, $CategoryID, $VanityHouse) = $DB->next_record();
2011-03-28 14:21:28 +00:00
if(!$Body) { $Body = $WikiBody; $Image = $WikiImage; }
show_header('Edit torrent group');
// Start printing form
?>
<div class="thin">
2012-08-19 08:00:19 +00:00
<div class="header">
<h2>Edit <a href="torrents.php?id=<?=$GroupID?>"><?=$Name?></a></h2>
</div>
2011-03-28 14:21:28 +00:00
<div class="box pad">
2012-09-15 08:00:25 +00:00
<form class="edit_form" name="torrent_group" action="torrents.php" method="post">
2011-03-28 14:21:28 +00:00
<div>
<input type="hidden" name="action" value="takegroupedit" />
<input type="hidden" name="auth" value="<?=$LoggedUser['AuthKey']?>" />
<input type="hidden" name="groupid" value="<?=$GroupID?>" />
<h3>Image</h3>
<input type="text" name="image" size="92" value="<?=$Image?>" /><br />
<h3>Description</h3>
<textarea name="body" cols="91" rows="20"><?=$Body?></textarea><br />
<? if($CategoryID == 1) { ?>
<select id="releasetype" name="releasetype">
<? foreach ($ReleaseTypes as $Key => $Val) { ?>
<option value='<?=$Key?>' <?=($Key == $ReleaseType ? " selected='selected'" : '')?>>
<?=$Val?>
</option>
<? } ?>
2012-02-22 08:00:31 +00:00
</select>
<? if (check_perms('torrents_edit_vanityhouse')) { ?>
<br />
<h3>Vanity House <input type="checkbox" name="vanity_house" value="1" <?=($VanityHouse ? 'checked="checked"' : '')?> /></h3>
<? }
} ?>
2011-03-28 14:21:28 +00:00
<h3>Edit summary</h3>
<input type="text" name="summary" size="92" /><br />
<div style="text-align: center;">
<input type="submit" value="Submit" />
</div>
</div>
</form>
</div>
<? $DB->query("SELECT UserID FROM torrents WHERE GroupID = ".$GroupID);
//Users can edit the group info if they've uploaded a torrent to the group or have torrents_edit
if(in_array($LoggedUser['ID'], $DB->collect('UserID')) || check_perms('torrents_edit')) { ?>
2012-08-19 08:00:19 +00:00
<h3>Non-wiki group editing</h3>
2011-03-28 14:21:28 +00:00
<div class="box pad">
2012-10-07 08:00:25 +00:00
<form class="edit_form" name="torrent_group" action="torrents.php" method="post">
2011-03-28 14:21:28 +00:00
<input type="hidden" name="action" value="nonwikiedit" />
<input type="hidden" name="auth" value="<?=$LoggedUser['AuthKey']?>" />
<input type="hidden" name="groupid" value="<?=$GroupID?>" />
2012-09-01 08:00:24 +00:00
<table cellpadding="3" cellspacing="1" border="0" class="layout border" width="100%">
2011-03-28 14:21:28 +00:00
<tr>
<td colspan="2" class="center">This is for editing the information related to the <strong>original release</strong> only.</td>
</tr>
<tr>
<td class="label">Year</td>
<td>
<input type="text" name="year" size="10" value="<?=$Year?>" />
</td>
</tr>
<tr>
<td class="label">Record label</td>
<td>
<input type="text" name="record_label" size="40" value="<?=$RecordLabel?>" />
</td>
</tr>
<tr>
<td class="label">Catalogue Number</td>
<td>
<input type="text" name="catalogue_number" size="40" value="<?=$CatalogueNumber?>" />
</td>
</tr>
<? if(check_perms('torrents_freeleech')) { ?>
<tr>
<td class="label">Freeleech <strong>Group</strong></td>
<td>
<input type="checkbox" name="unfreeleech" /> Reset
2011-03-28 14:21:28 +00:00
<input type="checkbox" name="freeleech" /> Freeleech
2012-04-22 08:00:26 +00:00
<input type="checkbox" name="neutralleech" /> Neutral Leech
because
<select name="freeleechtype">
<? $FL = array("N/A", "Staff Pick", "Perma-FL", "Vanity House");
2011-07-11 12:01:08 +00:00
foreach($FL as $Key => $FLType) { ?>
<option value="<?=$Key?>" <?=($Key == $Torrent['FreeLeechType'] ? ' selected="selected"' : '')?>><?=$FLType?></option>
<? } ?>
</select>
2011-03-28 14:21:28 +00:00
</td>
</tr>
<? } ?>
</table>
<input type="submit" value="Edit" />
</form>
</div>
<?
}
if(check_perms('torrents_edit')) {
?>
2012-08-19 08:00:19 +00:00
<h3>Rename (won't merge)</h3>
2011-03-28 14:21:28 +00:00
<div class="box pad">
2012-09-15 08:00:25 +00:00
<form class="rename_form" name="torrent_group" action="torrents.php" method="post">
2011-03-28 14:21:28 +00:00
<div>
<input type="hidden" name="action" value="rename" />
<input type="hidden" name="auth" value="<?=$LoggedUser['AuthKey']?>" />
<input type="hidden" name="groupid" value="<?=$GroupID?>" />
<input type="text" name="name" size="92" value="<?=$Name?>" />
<div style="text-align: center;">
<input type="submit" value="Rename" />
</div>
</div>
</form>
</div>
2012-08-19 08:00:19 +00:00
<h3>Merge with another group</h3>
2011-03-28 14:21:28 +00:00
<div class="box pad">
2012-09-15 08:00:25 +00:00
<form class="merge_form" name="torrent_group" action="torrents.php" method="post">
2011-03-28 14:21:28 +00:00
<div>
<input type="hidden" name="action" value="merge" />
<input type="hidden" name="auth" value="<?=$LoggedUser['AuthKey']?>" />
<input type="hidden" name="groupid" value="<?=$GroupID?>" />
<h3>Target Group ID</h3>
<input type="text" name="targetgroupid" size="10" />
<div style="text-align: center;">
<input type="submit" value="Merge" />
</div>
</div>
</form>
</div>
<? } ?>
</div>
2012-10-07 08:00:25 +00:00
<? show_footer(); ?>