123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308 |
- <?php
-
- /*
- * Yeah, that's right, edit and new are the same place again.
- * It makes the page uglier to read but ultimately better as the alternative means
- * maintaining 2 copies of almost identical files.
- */
-
-
- $NewRequest = $_GET['action'] === 'new';
-
- if (!$NewRequest) {
- $RequestID = $_GET['id'];
- if (!is_number($RequestID)) {
- error(404);
- }
- }
-
- $Disabled = "";
-
- if ($NewRequest && ($LoggedUser['BytesUploaded'] < 250 * 1024 * 1024 || !check_perms('site_submit_requests'))) {
- error('You do not have enough uploaded to make a request.');
- }
-
- if (!$NewRequest) {
- if (empty($ReturnEdit)) {
-
- $Request = Requests::get_request($RequestID);
- if ($Request === false) {
- error(404);
- }
-
- // Define these variables to simplify _GET['groupid'] requests later on
- $CategoryID = $Request['CategoryID'];
- $Title = $Request['Title'];
- $TitleRJ = $Request['TitleRJ'];
- $TitleJP = $Request['TitleJP'];
- $CatalogueNumber = $Request['CatalogueNumber'];
- $DLsiteID = $Request['DLsiteID'];
- $Image = $Request['Image'];
- $GroupID = $Request['GroupID'];
-
- $VoteArray = Requests::get_votes_array($RequestID);
- $VoteCount = count($VoteArray['Voters']);
-
- $IsFilled = !empty($Request['TorrentID']);
- $CategoryName = $Categories[$CategoryID - 1];
-
- $ProjectCanEdit = (check_perms('project_team') && !$IsFilled && $CategoryID === '0');
- $CanEdit = ((!$IsFilled && $LoggedUser['ID'] === $Request['UserID'] && $VoteCount < 2) || $ProjectCanEdit || check_perms('site_moderate_requests'));
-
- if (!$CanEdit) {
- error(403);
- }
-
- $ArtistForm = Requests::get_artists($RequestID);
-
- $Tags = implode(', ', $Request['Tags']);
- }
- }
-
- if ($NewRequest && !empty($_GET['artistid']) && is_number($_GET['artistid'])) {
- $DB->query("
- SELECT Name
- FROM artists_group
- WHERE artistid = ".$_GET['artistid']."
- LIMIT 1");
- list($ArtistName) = $DB->next_record();
- $ArtistForm = array(
- 1 => array(array('name' => trim($ArtistName))),
- );
- } elseif ($NewRequest && !empty($_GET['groupid']) && is_number($_GET['groupid'])) {
- $ArtistForm = Artists::get_artist($_GET['groupid']);
- $DB->query("
- SELECT
- tg.Name,
- tg.NameRJ,
- tg.NameJP,
- tg.Year,
- tg.Studio,
- tg.Series,
- tg.CatalogueNumber,
- tg.DLsiteID,
- tg.WikiImage,
- GROUP_CONCAT(t.Name SEPARATOR ', '),
- tg.CategoryID
- FROM torrents_group AS tg
- JOIN torrents_tags AS tt ON tt.GroupID = tg.ID
- JOIN tags AS t ON t.ID = tt.TagID
- WHERE tg.ID = ".$_GET['groupid']);
- if (list($Title, $TitleRJ, $TitleJP, $Year, $Studio, $Series, $CatalogueNumber, $DLsiteID, $Image, $Tags, $CategoryID) = $DB->next_record()) {
- $GroupID = trim($_REQUEST['groupid']);
- $CategoryName = $Categories[$CategoryID - 1];
- $Disabled = 'readonly="readonly"';
- }
- }
-
- View::show_header(($NewRequest ? 'Create a request' : 'Edit a request'), 'requests,form_validate');
- ?>
- <div class="thin">
- <div class="header">
- <h2><?=($NewRequest ? 'Create a request' : 'Edit a request')?></h2>
- </div>
-
- <div class="box pad">
- <form action="" method="post" id="request_form" onsubmit="Calculate();">
- <div>
- <? if (!$NewRequest) { ?>
- <input type="hidden" name="requestid" value="<?=$RequestID?>" />
- <? } ?>
- <input type="hidden" name="auth" value="<?=$LoggedUser['AuthKey']?>" />
- <input type="hidden" name="action" value="<?=($NewRequest ? 'takenew' : 'takeedit')?>" />
- </div>
-
- <table class="layout">
- <tr>
- <td colspan="2" class="center">Please make sure your request follows <a href="rules.php?p=requests">the request rules</a>!</td>
- </tr>
- <? if ($NewRequest || $CanEdit) { ?>
- <tr>
- <td class="label">
- Type
- </td>
- <td>
- <? if (!empty($Disabled)) { ?>
- <input type="hidden" name="type" value="<?=$CategoryName?>" />
- <select id="categories" name="type" onchange="Categories();" disabled="disabled">
- <? } else { ?>
- <select id="categories" name="type" onchange="Categories();">
- <? } ?>
- <? foreach (Misc::display_array($Categories) as $Cat) { ?>
- <option value="<?=$Cat?>"<?=(!empty($CategoryName) && ($CategoryName === $Cat) ? ' selected="selected"' : '')?>><?=$Cat?></option>
- <? } ?>
- </select>
- </td>
- </tr>
- <tr id="cataloguenumber_tr">
- <td class="label">Catalogue Number</td>
- <td>
- <input type="text" id="catalogue" name="cataloguenumber" size="15" value="<?=(isset($CatalogueNumber)?$CatalogueNumber:'') ?>" <?=$Disabled?>/>
- <? if (empty($Disabled)) { ?>
- ( <input type="button" autofill="jav" value="Autofill" style="font-size:0.8em;"></input> )
- <? } ?>
- </td>
- </tr>
- <tr id="artist_tr">
- <td class="label">Artist(s)</td>
- <td id="artistfields">
- <p id="vawarning" class="hidden">Please use the multiple artists feature rather than adding "Various Artists" as an artist; read <a href="wiki.php?action=article&id=369">this</a> for more information.</p>
- <?
- if (!empty($ArtistForm)) {
- $First = true;
- foreach ($ArtistForm as $Artist) {
- ?>
- <input type="text" id="artist_0" name="artists[]"<? Users::has_autocomplete_enabled('other'); ?> size="45" value="<?=display_str($Artist['name']) ?>" <?=$Disabled?>/>
- <? if (empty($Disabled)) { if ($First) { ?><a class="add_artist_button brackets">+</a> <a class="remove_artist_button brackets">−</a><? } $First = false; } ?>
- <br />
- <?
- }
- } else {
- ?> <input type="text" id="artist_0" name="artists[]"<? Users::has_autocomplete_enabled('other'); ?> size="45" onblur="CheckVA();" <?=$Disabled?>/>
- <? if (empty($Disabled)) { ?>
- <a class="add_artist_button brackets">+</a> <a class="remove_artist_button brackets">−</a>
- <? } ?>
- <?
- }
- ?>
- </td>
- </tr>
- <tr>
- <td class="label">Title</td>
- <td>
- <input type="text" id="title" name="title" size="45" value="<?=(!empty($Title) ? $Title : '')?>" <?=$Disabled?>/>
- </td>
- </tr>
- <tr>
- <td class="label">Romaji Title</td>
- <td>
- <input type="text" id="title_rj" name="title_rj" size="45" value="<?=(!empty($TitleRJ) ? $TitleRJ : '')?>" <?=$Disabled?>/>
- </td>
- </tr>
- <tr>
- <td class="label">Japanese Title</td>
- <td>
- <input type="text" id="title_jp" name="title_jp" size="45" value="<?=!empty($TitleJP)?$TitleJP:''?>" <?=$Disabled?>/>
- </td>
- </tr>
- <tr id="dlsiteid_tr">
- <td class="label">DLSite ID</td>
- <td>
- <input type="text" id="dlsiteid" name="dlsiteid" size="15" value="<?=isset($DLsiteID)?$DLsiteID:''?>" <?=$Disabled?>/>
- </td>
- </tr>
- <? } ?>
- <? if ($NewRequest || $CanEdit) { ?>
- <tr id="image_tr">
- <td class="label">Image</td>
- <td>
- <input type="text" id="image" name="image" size="45" value="<?=(!empty($Image) ? $Image : '')?>" <?=$Disabled?>/>
- </td>
- </tr>
- <? } ?>
- <tr>
- <td class="label">Tags</td>
- <td>
- <?
- $GenreTags = $Cache->get_value('genre_tags');
- if (!$GenreTags) {
- $DB->query('
- SELECT Name
- FROM tags
- WHERE TagType = \'genre\'
- ORDER BY Name');
- $GenreTags = $DB->collect('Name');
- $Cache->cache_value('genre_tags', $GenreTags, 3600 * 6);
- }
-
- if (!empty($Disabled)) {
- ?>
- <select id="genre_tags" name="genre_tags" onchange="add_tag(); return false;" disabled="disabled">
- <? } else { ?>
- <select id="genre_tags" name="genre_tags" onchange="add_tag(); return false;" >
- <? } ?>
- <option>---</option>
- <? foreach (Misc::display_array($GenreTags) as $Genre) { ?>
- <option value="<?=$Genre?>"><?=$Genre?></option>
- <? } ?>
- </select>
- <input type="text" id="tags" name="tags" size="45" value="<?=(!empty($Tags) ? display_str($Tags) : '')?>"<? Users::has_autocomplete_enabled('other'); ?> <?=$Disabled?>/>
- <br />
- Tags should be comma-separated, and you should use a period (".") to separate words inside a tag — e.g. "<strong class="important_text_alt">big.breasts</strong>".
- <br /><br />
- There is a list of official tags to the left of the text box. Please use these tags instead of "unofficial" tags (e.g. use the official "<strong class="important_text_alt">nakadashi</strong>" tag, instead of an unofficial "<strong class="important_text">creampie</strong>" tag.).
- </td>
- </tr>
- <? if ($NewRequest || $CanEdit) { ?>
- <? } ?>
- <tr>
- <td class="label">Description</td>
- <td>
- <textarea id="req_desc" name="description" cols="70" rows="7"><?=(!empty($Request['Description']) ? $Request['Description'] : '')?></textarea> <br />
- </td>
- </tr>
- <? if (check_perms('site_moderate_requests')) { ?>
- <tr>
- <td class="label">Torrent group</td>
- <td>
- <?=site_url()?>torrents.php?id=<input type="text" name="groupid" value="<?=isset($GroupID)?$GroupID:''?>" size="15"/><br />
- If this request matches a torrent group <span style="font-weight: bold;">already existing</span> on the site, please indicate that here.
- </td>
- </tr>
- <? } elseif (!empty($GroupID) && ($CategoryID != 5) && ($CategoryID != 0)) { ?>
- <tr>
- <td class="label">Torrent group</td>
- <td>
- <a href="torrents.php?id=<?=$GroupID?>"><?=site_url()?>torrents.php?id=<?=$GroupID?></a><br />
- This request <?=($NewRequest ? 'will be' : 'is')?> associated with the above torrent group.
- <? if (!$NewRequest) { ?>
- If this is incorrect, please <a href="reports.php?action=report&type=request&id=<?=$RequestID?>">report this request</a> so that staff can fix it.
- <? } ?>
- <input type="hidden" name="groupid" value="<?=$GroupID?>" />
- </td>
- </tr>
- <? }
- if ($NewRequest) { ?>
- <tr id="voting">
- <td class="label">Bounty (MB)</td>
- <td>
- <input type="text" id="amount_box" size="8" value="<?=(!empty($Bounty) ? $Bounty : '100')?>" onchange="Calculate();" />
- <select id="unit" name="unit" onchange="Calculate();">
- <option value="mb"<?=(!empty($_POST['unit']) && $_POST['unit'] === 'mb' ? ' selected="selected"' : '') ?>>MB</option>
- <option value="gb"<?=(!empty($_POST['unit']) && $_POST['unit'] === 'gb' ? ' selected="selected"' : '') ?>>GB</option>
- </select>
- <input type="button" value="Preview" onclick="Calculate();" />
- <strong><?=($RequestTax * 100)?>% of this is deducted as tax by the system.</strong>
- </td>
- </tr>
- <tr>
- <td class="label">Post request information</td>
- <td>
- <input type="hidden" id="amount" name="amount" value="<?=(!empty($Bounty) ? $Bounty : '100')?>" />
- <input type="hidden" id="current_uploaded" value="<?=$LoggedUser['BytesUploaded']?>" />
- <input type="hidden" id="current_downloaded" value="<?=$LoggedUser['BytesDownloaded']?>" />
- Bounty after tax: <strong><span id="bounty_after_tax">90.00 MB</span></strong><br />
- If you add the entered <strong><span id="new_bounty">100.00 MB</span></strong> of bounty, your new stats will be: <br />
- Uploaded: <span id="new_uploaded"><?=Format::get_size($LoggedUser['BytesUploaded'])?></span><br />
- Ratio: <span id="new_ratio"><?=Format::get_ratio_html($LoggedUser['BytesUploaded'], $LoggedUser['BytesDownloaded'])?></span>
- </td>
- </tr>
- <tr>
- <td colspan="2" class="center">
- <input type="submit" id="button" value="Create request" disabled="disabled" />
- </td>
- </tr>
- <? } else { ?>
- <tr>
- <td colspan="2" class="center">
- <input type="submit" id="button" value="Edit request" />
- </td>
- </tr>
- <? } ?>
- </table>
- </form>
- </div>
- </div>
- <?
- View::show_footer();
- ?>
|