123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343 |
- <?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'), 'bbcode,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>
- <?php if (!$NewRequest) { ?>
- <input type="hidden" name="requestid"
- value="<?=$RequestID?>" />
- <?php } ?>
- <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>
- <?php if ($NewRequest || $CanEdit) { ?>
- <tr>
- <td class="label tooltip" title="What alphabet the sequence uses, n.b., plasmids fit in the Other category">
- Type</td>
- <td>
- <?php if (!empty($Disabled)) { ?>
- <input type="hidden" name="type"
- value="<?=$CategoryName?>" />
- <select id="categories" name="type" onchange="Categories();" disabled="disabled">
- <?php } else { ?>
- <select id="categories" name="type" onchange="Categories();">
- <?php } ?>
- <?php foreach (Misc::display_array($Categories) as $Cat) { ?>
- <option value="<?=$Cat?>" <?=(!empty($CategoryName) && ($CategoryName === $Cat) ? ' selected="selected"' : '')?>><?=$Cat?>
- </option>
- <?php } ?>
- </select>
- </td>
- </tr>
- <tr id="cataloguenumber_tr">
- <td class="label">Accession Number</td>
- <td>
- <input type="text" id="catalogue" name="cataloguenumber" size="15"
- value="<?=(isset($CatalogueNumber)?$CatalogueNumber:'') ?>"
- <?=$Disabled?>/>
- <?php if (empty($Disabled)) { ?>
- <input type="button" autofill="jav" value="Autofill"></input>
- <?php } ?>
- </td>
- </tr>
- <tr id="artist_tr">
- <td class="label">Collaborator(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>
- <?php
- if (!empty($ArtistForm)) {
- $First = true;
- foreach ($ArtistForm as $Artist) {
- ?>
- <input type="text" id="artist_0" name="artists[]" <?php Users::has_autocomplete_enabled('other'); ?>
- size="45" value="<?=display_str($Artist['name']) ?>" <?=$Disabled?>/>
- <?php if (empty($Disabled)) {
- if ($First) { ?><a class="add_artist_button brackets">+</a> <a
- class="remove_artist_button brackets">−</a><?php }
- $First = false;
- } ?>
- <br />
- <?php
- }
- } else {
- ?> <input type="text" id="artist_0" name="artists[]" <?php Users::has_autocomplete_enabled('other'); ?>
- size="45" <?=$Disabled?>/>
- <?php if (empty($Disabled)) { ?>
- <a class="add_artist_button brackets">+</a> <a class="remove_artist_button brackets">−</a>
- <?php } ?>
- <?php
- }
- ?>
- </td>
- </tr>
- <tr>
- <td class="label tooltip" title="FASTA definition line, e.g., Alcohol dehydrogenase ADH1">Sequence Name</td>
- <td>
- <input type="text" id="title" name="title" size="45"
- value="<?=(!empty($Title) ? $Title : '')?>"
- <?=$Disabled?>/>
- </td>
- </tr>
- <tr>
- <td class="label tooltip" title="FASTA organism line binomial nomenclature, e.g., Saccharomyces cerevisiae">
- Organism</td>
- <td>
- <input type="text" id="title_rj" name="title_rj" size="45"
- value="<?=(!empty($TitleRJ) ? $TitleRJ : '')?>"
- <?=$Disabled?>/>
- </td>
- </tr>
- <tr>
- <td class="label tooltip" title="FASTA organism line if applicable, e.g., S288C">Strain/Variety</td>
- <td>
- <input type="text" id="title_jp" name="title_jp" size="45"
- value="<?=!empty($TitleJP)?$TitleJP:''?>"
- <?=$Disabled?>/>
- </td>
- </tr>
- <?php } ?>
- <?php if ($NewRequest || $CanEdit) { ?>
- <tr id="image_tr">
- <td class="label tooltip" title="A meaningful picture, e.g., of the specimen">Picture</td>
- <td>
- <input type="text" id="image" name="image" size="45"
- value="<?=(!empty($Image) ? $Image : '')?>"
- <?=$Disabled?>/>
- </td>
- </tr>
- <?php } ?>
- <tr>
- <td class="label tooltip" title="Comma-seperated list of tags, n.b., use vanity.house for data you produced">
- Tags</td>
- <td>
- <?php
- $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">
- <?php
- } else { ?>
- <select id="genre_tags" name="genre_tags" onchange="add_tag(); return false;">
- <?php } ?>
- <option>---</option>
- <?php foreach (Misc::display_array($GenreTags) as $Genre) { ?>
- <option value="<?=$Genre?>"><?=$Genre?>
- </option>
- <?php } ?>
- </select>
- <input type="text" id="tags" name="tags" size="45"
- value="<?=(!empty($Tags) ? display_str($Tags) : '')?>"
- <?php Users::has_autocomplete_enabled('other'); ?>
- <?=$Disabled?>/>
- </td>
- </tr>
- <?php if ($NewRequest || $CanEdit) { ?>
- <?php } ?>
- <tr>
- <td class="label">Description</td>
- <td>
- <?php new TEXTAREA_PREVIEW('description', 'req_desc', $Request['Description']??''); ?>
- </td>
- </tr>
- <?php 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 <strong>already existing</strong> on the site, please indicate that
- here.
- </td>
- </tr>
- <?php } 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.
- <?php 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.
- <?php } ?>
- <input type="hidden" name="groupid"
- value="<?=$GroupID?>" />
- </td>
- </tr>
- <?php }
- if ($NewRequest) { ?>
- <tr id="voting">
- <td class="label tooltip" title="How much upload credit the fulfiller wins">Bounty</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>
- <?php } else { ?>
- <tr>
- <td colspan="2" class="center">
- <input type="submit" id="button" value="Edit request" />
- </td>
- </tr>
- <?php } ?>
- </table>
- </form>
- </div>
- </div>
- <?php
- View::show_footer();
|