S2OJ/web/app/libs/uoj-form-lib.php

846 lines
24 KiB
PHP
Raw Normal View History

2016-07-18 16:39:37 +00:00
<?php
2022-11-06 02:26:21 +00:00
define('SCRIPT_REFRESH_AS_GET', '<script>;window.location = window.location.origin + window.location.pathname + (window.location.search.length ? window.location.search + "&" : "?") + "_refresh_" + (+new Date()) + "=" + (+new Date()) + window.location.hash;</script>');
class UOJBs4Form {
public $form_name;
public $succ_href;
public $back_href = null;
public $no_submit = false;
public $ctrl_enter_submit = false;
public $extra_validator = null;
public $is_big = false;
public $has_file = false;
public $ajax_submit_js = null;
public $run_at_server_handler = array();
private $data = array();
private $vdata = array();
private $main_html = '';
public $max_post_size = 15728640; // 15M
public $max_file_size_mb = 10; // 10M
public $handle;
public $submit_button_config = [];
public $control_label_config = ['class' => 'col-sm-2'];
public $input_config = ['class' => 'col-sm-3'];
public $textarea_config = ['class' => 'col-sm-10'];
public function __construct($form_name) {
$this->form_name = $form_name;
$this->succ_href = UOJContext::requestURI();
$this->handle = function (&$vdata) {
};
$this->run_at_server_handler["check-{$this->form_name}"] = function () {
die(json_encode($this->validateAtServer()));
};
$this->run_at_server_handler["submit-{$this->form_name}"] = function () {
if ($this->no_submit) {
UOJResponse::page404();
}
foreach ($this->data as $field) {
if (!isset($field['no_val']) && !isset($_POST[$field['name']])) {
UOJResponse::message('The form is incomplete.');
2016-07-18 16:39:37 +00:00
}
2022-11-06 02:26:21 +00:00
}
if (UOJContext::requestMethod() == 'POST') {
$len = UOJContext::contentLength();
if ($len === null) {
UOJResponse::page403();
} elseif ($len > $this->max_post_size) {
UOJResponse::message('The form is too large.');
2016-07-18 16:39:37 +00:00
}
2022-11-06 02:26:21 +00:00
}
2016-07-18 16:39:37 +00:00
2022-11-06 02:26:21 +00:00
crsf_defend();
$errors = $this->validateAtServer();
if ($errors) {
$err_str = '';
foreach ($errors as $name => $err) {
$esc_err = htmlspecialchars($err);
$err_str .= "$name: $esc_err<br />";
}
UOJResponse::message($err_str);
}
$fun = $this->handle;
$fun($this->vdata);
2022-09-19 23:49:45 +00:00
2022-11-06 02:26:21 +00:00
if ($this->succ_href !== 'none') {
redirectTo($this->succ_href);
2022-09-19 23:49:45 +00:00
}
2022-11-06 02:26:21 +00:00
die();
};
}
2022-09-19 23:49:45 +00:00
2022-11-06 02:26:21 +00:00
public function setAjaxSubmit($js) {
$GLOBALS['REQUIRE_LIB']['jquery.form'] = '';
$this->ajax_submit_js = $js;
}
2016-07-18 16:39:37 +00:00
2022-11-06 02:26:21 +00:00
public function add($name, $html, $validator_php, $validator_js) {
$this->main_html .= $html;
$this->data[] = array(
'name' => $name,
'validator_php' => $validator_php,
'validator_js' => $validator_js
);
}
public function appendHTML($html) {
$this->main_html .= $html;
}
2016-07-18 16:39:37 +00:00
2022-11-06 02:26:21 +00:00
public function addNoVal($name, $html) {
$this->main_html .= $html;
$this->data[] = array(
'name' => $name,
'validator_js' => 'always_ok',
'no_val' => ''
);
}
2016-07-18 16:39:37 +00:00
2022-11-06 02:26:21 +00:00
public function addHidden($name, $default_value, $validator_php, $validator_js) {
$default_value = htmlspecialchars($default_value);
$html = <<<EOD
<input type="hidden" name="$name" id="input-$name" value="$default_value" />
EOD;
$this->add($name, $html, $validator_php, $validator_js);
}
public function addInput($name, $type, $label_text, $default_value, $validator_php, $validator_js) {
$default_value = htmlspecialchars($default_value);
$html = <<<EOD
<div class="form-group" id="div-$name">
<label for="input-$name" class="{$this->control_label_config['class']} control-label">$label_text</label>
<div class="{$this->input_config['class']}">
<input class="form-control" type="$type" class="form-control" name="$name" id="input-$name" value="$default_value" />
<span class="help-block" id="help-$name"></span>
</div>
</div>
EOD;
$this->add($name, $html, $validator_php, $validator_js);
}
public function addSelect($name, $options, $label_text, $default_value) {
$default_value = htmlspecialchars($default_value);
$html = <<<EOD
<div id="div-$name">
<label for="input-$name" class="{$this->control_label_config['class']} control-label">$label_text</label>
<div class="{$this->input_config['class']}">
<select class="form-select" id="input-content" name="$name">
EOD;
foreach ($options as $opt_name => $opt_label) {
if ($opt_name != $default_value) {
$html .= <<<EOD
<option value="$opt_name">$opt_label</option>
EOD;
} else {
$html .= <<<EOD
<option value="$opt_name" selected="selected">$opt_label</option>
EOD;
2016-07-18 16:39:37 +00:00
}
2022-11-06 02:26:21 +00:00
}
$html .= <<<EOD
</select>
</div>
</div>
EOD;
$this->add(
$name,
$html,
function ($opt) use ($options) {
return isset($options[$opt]) ? '' : "无效选项";
},
null
);
}
2016-07-18 16:39:37 +00:00
2022-11-06 02:26:21 +00:00
public function addVInput($name, $type, $label_text, $default_value, $validator_php, $validator_js) {
$html = HTML::div_vinput($name, $type, $label_text, $default_value);
$this->add($name, $html, $validator_php, $validator_js);
}
public function addVSelect($name, $options, $label_text, $default_value) {
$default_value = htmlspecialchars($default_value);
$html = <<<EOD
<div id="div-$name">
<label for="input-$name" class="form-label">$label_text</label>
<select class="form-select" id="input-{$name}" name="$name">
2016-07-18 16:39:37 +00:00
2022-11-06 02:26:21 +00:00
EOD;
foreach ($options as $opt_name => $opt_label) {
if ($opt_name != $default_value) {
$html .= <<<EOD
<option value="$opt_name">$opt_label</option>
2016-07-18 16:39:37 +00:00
2022-11-06 02:26:21 +00:00
EOD;
} else {
$html .= <<<EOD
<option value="$opt_name" selected="selected">$opt_label</option>
EOD;
2016-07-18 16:39:37 +00:00
}
}
2022-11-06 02:26:21 +00:00
$html .= <<<EOD
</select>
</div>
EOD;
$this->add(
$name,
$html,
function ($opt) use ($options) {
return isset($options[$opt]) ? '' : "无效选项";
},
null
);
}
public function addTextArea($name, $label_text, $default_value, $validator_php, $validator_js) {
$default_value = htmlspecialchars($default_value);
$this->is_big = true;
$html = <<<EOD
<div id="div-$name" class="form-group">
<label for="input-$name" class="{$this->control_label_config['class']} control-label">$label_text</label>
<div class="{$this->textarea_config['class']}">
<textarea class="form-control" name="$name" id="input-$name">$default_value</textarea>
<span class="invalid-feedback" id="help-$name"></span>
</div>
</div>
EOD;
$this->add($name, $html, $validator_php, $validator_js);
}
public function addVTextArea($name, $label_text, $default_value, $validator_php, $validator_js) {
$default_value = htmlspecialchars($default_value);
$this->is_big = true;
$html = <<<EOD
<div id="div-$name">
<label for="input-$name" class="form-label">$label_text</label>
<textarea class="form-control" name="$name" id="input-$name">$default_value</textarea>
<span class="invalid-feedback" id="help-$name"></span>
</div>
EOD;
$this->add($name, $html, $validator_php, $validator_js);
}
public function addCheckBox($name, $label_text, $default_value) {
$default_value = htmlspecialchars($default_value);
$status = $default_value ? 'checked="checked" ' : '';
$html = <<<EOD
<div class="form-checkbox">
<input class="form-check-input" type="checkbox" id="input-$name" name="$name" $status/>
<label class="form-check-label" for="input-$name">
$label_text
</label>
</div>
EOD;
$this->addNoVal($name, $html);
}
public function addVCheckboxes($name, $options, $label_text, $default_value) {
$default_value = htmlspecialchars($default_value);
$html = <<<EOD
2022-10-20 02:02:53 +00:00
<div id="div-$name" class="input-group mb-3">
2022-11-06 02:26:21 +00:00
<label class="form-label me-3">$label_text</label>
2022-10-20 02:02:53 +00:00
EOD;
2022-11-06 02:26:21 +00:00
foreach ($options as $opt_name => $opt_label) {
$html .= <<<EOD
<div class="form-check ms-2">
2022-10-20 02:02:53 +00:00
EOD;
2022-11-06 02:26:21 +00:00
if ($opt_name != $default_value) {
$html .= <<<EOD
<input class="form-check-input" type="radio" id="input-$name-$opt_name" name="$name" value="$opt_name">
2022-10-20 02:02:53 +00:00
EOD;
2022-11-06 02:26:21 +00:00
} else {
2022-10-20 02:02:53 +00:00
$html .= <<<EOD
2022-11-06 02:26:21 +00:00
<input class="form-check-input" type="radio" id="input-$name-$opt_name" name="$name" value="$opt_name" checked="checked">
2022-10-20 02:02:53 +00:00
EOD;
}
$html .= <<<EOD
2022-11-06 02:26:21 +00:00
<label class="form-check-label" for="input-$name-$opt_name">$opt_label</label>
2022-10-20 02:02:53 +00:00
</div>
EOD;
2022-11-06 02:26:21 +00:00
}
$html .= <<<EOD
2016-07-18 16:39:37 +00:00
</div>
EOD;
2022-11-06 02:26:21 +00:00
$this->add(
$name,
$html,
function ($opt) use ($options) {
return isset($options[$opt]) ? '' : "无效选项";
},
null
);
}
public function addCKEditor($name, $label_text, $default_value, $validator_php, $validator_js) {
$default_value = htmlspecialchars($default_value);
global $REQUIRE_LIB;
$REQUIRE_LIB['ckeditor'] = '';
$this->is_big = true;
$html = <<<EOD
<div id="div-$name">
<label for="input-$name" class="control-label">$label_text</label>
<textarea class="ckeditor" name="$name" id="input-$name">$default_value</textarea>
<span class="help-block" id="help-$name"></span>
</div>
EOD;
$this->add($name, $html, $validator_php, $validator_js);
}
static public function uploadedFileTmpName($name) {
if (isset($_FILES[$name]) && is_uploaded_file($_FILES[$name]['tmp_name'])) {
return $_FILES[$name]['tmp_name'];
} else {
return null;
}
}
public function addSourceCodeInput($name, $text, $languages, $preferred_lang = null) {
$this->add(
"{$name}_upload_type",
'',
function ($type, &$vdata) use ($name) {
if ($type == 'editor') {
if (!isset($_POST["{$name}_editor"])) {
return '你在干啥……怎么什么都没交过来……?';
2016-07-18 16:39:37 +00:00
}
2022-11-06 02:26:21 +00:00
} elseif ($type == 'file') {
} else {
return '……居然既不是用编辑器上传也不是用文件上传的……= =……';
2016-07-18 16:39:37 +00:00
}
2022-11-06 02:26:21 +00:00
},
'always_ok'
);
$this->addNoVal("{$name}_editor", '');
$this->addNoVal("{$name}_file", '');
$this->add(
"{$name}_language",
'',
function ($lang) use ($languages) {
if (!isset($languages[$lang])) {
return '该语言不被支持';
2016-07-18 16:39:37 +00:00
}
2022-11-06 02:26:21 +00:00
return '';
},
'always_ok'
);
if ($preferred_lang == null || !isset($languages[$preferred_lang])) {
$preferred_lang = Cookie::get('uoj_preferred_language');
}
if ($preferred_lang == null || !isset($languages[$preferred_lang])) {
$preferred_lang = UOJLang::$default_preferred_language;
2016-07-18 16:39:37 +00:00
}
2022-11-06 02:26:21 +00:00
$langs_options_str = '';
foreach ($languages as $lang_code => $lang_display) {
$langs_options_str .= '<option';
$langs_options_str .= ' value="' . $lang_code . '"';
if ($lang_code == $preferred_lang) {
$langs_options_str .= ' selected="selected"';
2016-07-18 16:39:37 +00:00
}
2022-11-06 02:26:21 +00:00
$langs_options_str .= ">$lang_display</option>";
2016-07-18 16:39:37 +00:00
}
2022-11-06 02:26:21 +00:00
$langs_options_json = json_encode($langs_options_str);
$this->appendHTML(
<<<EOD
<div class="form-group" id="form-group-$name"></div>
<script type="text/javascript">
$('#form-group-$name').source_code_form_group('$name', '$text', $langs_options_json);
</script>
EOD
);
$this->is_big = true;
$this->has_file = true;
}
public function addTextFileInput($name, $text) {
$this->add(
"{$name}_upload_type",
'',
function ($type, &$vdata) use ($name) {
if ($type == 'editor') {
if (!isset($_POST["{$name}_editor"])) {
return '你在干啥……怎么什么都没交过来……?';
2016-07-18 16:39:37 +00:00
}
2022-11-06 02:26:21 +00:00
} elseif ($type == 'file') {
} else {
return '……居然既不是用编辑器上传也不是用文件上传的……= =……';
2016-07-18 16:39:37 +00:00
}
2022-11-06 02:26:21 +00:00
},
'always_ok'
);
$this->addNoVal("{$name}_editor", '');
$this->addNoVal("{$name}_file", '');
$this->appendHTML(
<<<EOD
<div class="form-group" id="form-group-$name"></div>
<script type="text/javascript">
$('#form-group-$name').text_file_form_group('$name', '$text');
</script>
EOD
);
$this->is_big = true;
$this->has_file = true;
}
public function printHTML() {
$form_entype_str = $this->is_big ? ' enctype="multipart/form-data"' : '';
$form_class = "form-horizontal";
if ($this->submit_button_config['align'] == 'inline') {
$form_class .= " uoj-bs4-form-inline";
}
if ($this->submit_button_config['align'] == 'compressed') {
$form_class .= " uoj-bs4-form-compressed";
}
echo '<form action="', $_SERVER['REQUEST_URI'], '" method="post" class="', $form_class, '" id="form-', $this->form_name, '"', $form_entype_str, '>';
echo HTML::hiddenToken();
echo $this->main_html;
if (!$this->no_submit) {
if (!isset($this->submit_button_config['align'])) {
$this->submit_button_config['align'] = 'center';
2016-07-18 16:39:37 +00:00
}
2022-11-06 02:26:21 +00:00
if (!isset($this->submit_button_config['text'])) {
$this->submit_button_config['text'] = UOJLocale::get('submit');
2022-03-17 11:35:43 +00:00
}
2022-11-06 02:26:21 +00:00
if (!isset($this->submit_button_config['class_str'])) {
$this->submit_button_config['class_str'] = 'btn btn-secondary mt-2';
2022-03-17 11:35:43 +00:00
}
2022-11-06 02:26:21 +00:00
if ($this->submit_button_config['align'] == 'offset') {
echo '<div class="form-group">';
echo '<div class="col-sm-offset-2 col-sm-3">';
} else {
echo '<div class="text-', $this->submit_button_config['align'], '">';
2022-03-17 11:35:43 +00:00
}
2022-11-06 02:26:21 +00:00
if ($this->back_href !== null) {
echo '<div class="btn-toolbar">';
}
echo HTML::tag('button', [
'type' => 'submit', 'id' => "button-submit-{$this->form_name}", 'name' => "submit-{$this->form_name}",
'value' => $this->form_name, 'class' => $this->submit_button_config['class_str']
], $this->submit_button_config['text']);
if ($this->back_href !== null) {
echo HTML::tag('a', [
'class' => 'btn btn-secondary', 'href' => $this->back_href
], '返回');
}
if ($this->back_href !== null) {
2016-07-18 16:39:37 +00:00
echo '</div>';
}
2022-11-06 02:26:21 +00:00
if ($this->submit_button_config['align'] == 'offset') {
echo '</div>';
2016-07-18 16:39:37 +00:00
}
2022-11-06 02:26:21 +00:00
echo '</div>';
}
2016-07-18 16:39:37 +00:00
2022-11-06 02:26:21 +00:00
echo '</form>';
if ($this->no_submit) {
return;
2016-07-18 16:39:37 +00:00
}
2022-11-06 02:26:21 +00:00
echo <<<EOD
<script type="text/javascript">
$(document).ready(function() {
EOD;
if ($this->ctrl_enter_submit) {
2016-07-18 16:39:37 +00:00
echo <<<EOD
2022-11-06 02:26:21 +00:00
$('#form-{$this->form_name}').keydown(function(e) {
if (e.keyCode == 13 && e.ctrlKey) {
$('#button-submit-{$this->form_name}').click();
}
});
2016-07-18 16:39:37 +00:00
2022-11-06 02:26:21 +00:00
EOD;
}
echo <<<EOD
$('#form-{$this->form_name}').submit(function(e) {
var ok = true;
EOD;
$need_ajax = false;
if ($this->extra_validator) {
$need_ajax = true;
}
foreach ($this->data as $field) {
if ($field['validator_js'] != null) {
if ($field['validator_js'] != 'always_ok') {
echo <<<EOD
var {$field['name']}_err = ({$field['validator_js']})($('#input-{$field['name']}').val());
2016-07-18 16:39:37 +00:00
2022-11-06 02:26:21 +00:00
EOD;
2016-07-18 16:39:37 +00:00
}
2022-11-06 02:26:21 +00:00
} else {
$need_ajax = true;
2016-07-18 16:39:37 +00:00
}
2022-11-06 02:26:21 +00:00
}
2016-07-18 16:39:37 +00:00
2022-11-06 02:26:21 +00:00
if ($need_ajax) {
echo <<<EOD
var post_data = {};
2016-07-18 16:39:37 +00:00
2022-11-06 02:26:21 +00:00
EOD;
foreach ($this->data as $field) {
if ($field['validator_js'] == null) {
echo <<<EOD
var {$field['name']}_err = 'Unknown error';
post_data.{$field['name']} = $('#input-{$field['name']}').val();
2016-07-18 16:39:37 +00:00
2022-11-06 02:26:21 +00:00
EOD;
2016-07-18 16:39:37 +00:00
}
2022-11-06 02:26:21 +00:00
}
echo <<<EOD
post_data['check-{$this->form_name}'] = "";
$.ajax({
url : '{$_SERVER['REQUEST_URI']}',
type : 'POST',
dataType : 'json',
async : false,
2016-07-18 16:39:37 +00:00
2022-11-06 02:26:21 +00:00
data : post_data,
success : function(data) {
2016-07-18 16:39:37 +00:00
2022-11-06 02:26:21 +00:00
EOD;
2016-07-18 16:39:37 +00:00
foreach ($this->data as $field) {
2022-11-06 02:26:21 +00:00
if ($field['validator_js'] == null) {
2016-07-18 16:39:37 +00:00
echo <<<EOD
2022-11-06 02:26:21 +00:00
{$field['name']}_err = data.${field['name']};
EOD;
2016-07-18 16:39:37 +00:00
}
}
2022-11-06 02:26:21 +00:00
echo <<<EOD
if (data.extra != undefined) {
alert(data.extra);
ok = false;
}
}
});
EOD;
2016-07-18 16:39:37 +00:00
}
2022-11-06 02:26:21 +00:00
foreach ($this->data as $field) {
if ($field['validator_js'] != 'always_ok') {
2016-07-18 16:39:37 +00:00
echo <<<EOD
2022-11-06 02:26:21 +00:00
if (${field['name']}_err) {
$('#div-${field['name']}').addClass('has-validation has-error');
$('#div-${field['name']}').addClass('is-invalid');
$('#input-${field['name']}').addClass('is-invalid');
$('#help-${field['name']}').text(${field['name']}_err);
ok = false;
} else {
$('#div-${field['name']}').removeClass('has-validation has-error');
$('#div-${field['name']}').removeClass('is-invalid');
$('#input-${field['name']}').removeClass('is-invalid');
$('#help-${field['name']}').text('');
}
EOD;
2016-07-18 16:39:37 +00:00
}
2022-11-06 02:26:21 +00:00
}
2016-07-18 16:39:37 +00:00
2022-11-06 02:26:21 +00:00
if (isset($this->submit_button_config['smart_confirm'])) {
$this->submit_button_config['confirm_text'] = '你真的要' . $this->submit_button_config['text'] . '吗?';
}
if (isset($this->submit_button_config['confirm_text'])) {
echo <<<EOD
if (!confirm('{$this->submit_button_config['confirm_text']}')) {
ok = false;
}
2016-07-18 16:39:37 +00:00
2022-11-06 02:26:21 +00:00
EOD;
}
if ($this->has_file) {
echo <<<EOD
$(this).find("input[type='file']").each(function() {
for (var i = 0; i < this.files.length; i++) {
if (this.files[i].size > {$this->max_file_size_mb} * 1024 * 1024) {
$('#div-' + $(this).attr('name')).addClass('has-error');
$('#help-' + $(this).attr('name')).text('文件大小不能超过{$this->max_file_size_mb}M');
ok = false;
} else {
$('#div-' + $(this).attr('name')).removeClass('has-error');
$('#help-' + $(this).attr('name')).text('');
}
}
});
EOD;
2016-07-18 16:39:37 +00:00
}
2022-11-06 02:26:21 +00:00
if ($this->ajax_submit_js !== null) {
echo <<<EOD
e.preventDefault();
if (ok) {
$(this).ajaxSubmit({
beforeSubmit: function(formData) {
formData.push({name: 'submit-{$this->form_name}', value: '{$this->form_name}', type: 'submit'});
},
success : {$this->ajax_submit_js}
});
}
EOD;
} else {
echo <<<EOD
return ok;
2016-07-18 16:39:37 +00:00
2022-11-06 02:26:21 +00:00
EOD;
}
echo <<<EOD
});
});
</script>
EOD;
}
private function validateAtServer() {
$errors = array();
if ($this->extra_validator) {
$fun = $this->extra_validator;
$err = $fun();
if ($err) {
$errors['extra'] = $err;
2016-07-18 16:39:37 +00:00
}
}
2022-11-06 02:26:21 +00:00
foreach ($this->data as $field) {
if (!isset($field['no_val']) && isset($_POST[$field['name']])) {
$fun = $field['validator_php'];
$ret = $fun($_POST[$field['name']], $this->vdata, $field['name']);
if (is_array($ret) && isset($ret['error'])) {
$err = $ret['error'];
} else {
$err = $ret;
}
2016-07-18 16:39:37 +00:00
if ($err) {
2022-11-06 02:26:21 +00:00
$errors[$field['name']] = $err;
2016-07-18 16:39:37 +00:00
}
2022-11-06 02:26:21 +00:00
if (is_array($ret) && isset($ret['store'])) {
$this->vdata[$field['name']] = $ret['store'];
2016-07-18 16:39:37 +00:00
}
}
}
2022-11-06 02:26:21 +00:00
return $errors;
}
public function runAtServer() {
foreach ($this->run_at_server_handler as $type => $handler) {
if (isset($_POST[$type])) {
$handler();
2016-07-18 16:39:37 +00:00
}
}
}
2022-11-06 02:26:21 +00:00
}
function newAddDelCmdForm($form_name, $validate, $handle, $final = null) {
$form = new UOJBs4Form($form_name);
$form->addVTextArea(
$form_name . '_cmds',
'命令',
'',
function ($str, &$vdata) use ($validate) {
$cmds = array();
foreach (explode("\n", $str) as $line_id => $raw_line) {
$line = trim($raw_line);
if ($line == '') {
continue;
}
if ($line[0] != '+' && $line[0] != '-') {
return '第' . ($line_id + 1) . '行:格式错误';
}
$obj = trim(substr($line, 1));
if ($err = $validate($obj, $vdata)) {
return '第' . ($line_id + 1) . '行:' . $err;
}
$cmds[] = array('type' => $line[0], 'obj' => $obj);
}
$vdata['cmds'] = $cmds;
return '';
},
null
);
if (!isset($final)) {
$form->handle = function (&$vdata) use ($handle) {
foreach ($vdata['cmds'] as $cmd) {
$handle($cmd['type'], $cmd['obj'], $vdata);
}
};
} else {
$form->handle = function (&$vdata) use ($handle, $final) {
foreach ($vdata['cmds'] as $cmd) {
$handle($cmd['type'], $cmd['obj'], $vdata);
}
$final();
};
}
return $form;
}
function newSubmissionForm($form_name, $requirement, $zip_file_name_gen, $handle) {
$form = new UOJBs4Form($form_name);
foreach ($requirement as $req) {
if ($req['type'] == "source code") {
$languages = UOJLang::getAvailableLanguages(isset($req['languages']) ? $req['languages'] : null);
$form->addSourceCodeInput("{$form_name}_{$req['name']}", UOJLocale::get('problems::source code') . ':' . $req['name'], $languages);
} elseif ($req['type'] == "text") {
$form->addTextFileInput("{$form_name}_{$req['name']}", UOJLocale::get('problems::text file') . ':' . $req['file_name']);
2016-07-18 16:39:37 +00:00
}
}
2022-11-06 02:26:21 +00:00
$form->handle = function (&$vdata) use ($form_name, $requirement, $zip_file_name_gen, $handle) {
global $myUser;
if ($myUser == null) {
redirectToLogin();
}
$tot_size = 0;
$zip_file_name = $zip_file_name_gen();
$zip_file = new ZipArchive();
if ($zip_file->open(UOJContext::storagePath() . $zip_file_name, ZipArchive::CREATE) !== true) {
UOJResponse::message('提交失败');
}
$content = array();
$content['file_name'] = $zip_file_name;
$content['config'] = array();
2016-07-18 16:39:37 +00:00
foreach ($requirement as $req) {
if ($req['type'] == "source code") {
2022-11-06 02:26:21 +00:00
$content['config'][] = ["{$req['name']}_language", $_POST["{$form_name}_{$req['name']}_language"]];
2016-07-18 16:39:37 +00:00
}
}
2022-11-06 02:26:21 +00:00
foreach ($requirement as $req) {
if ($_POST["{$form_name}_{$req['name']}_upload_type"] == 'editor') {
$zip_file->addFromString($req['file_name'], $_POST["{$form_name}_{$req['name']}_editor"]);
} else {
$tmp_name = UOJBs4Form::uploadedFileTmpName("{$form_name}_{$req['name']}_file");
if ($tmp_name == null) {
$zip_file->addFromString($req['file_name'], '');
2016-07-18 16:39:37 +00:00
} else {
2022-11-06 02:26:21 +00:00
$zip_file->addFile($tmp_name, $req['file_name']);
2016-07-18 16:39:37 +00:00
}
2022-11-06 02:26:21 +00:00
}
$stat = $zip_file->statName($req['file_name']);
if ($req['type'] == 'source code') {
$max_size = isset($req['size']) ? (int)$req['size'] : 50;
if ($stat['size'] > $max_size * 1024) {
$zip_file->close();
unlink(UOJContext::storagePath() . $zip_file_name);
UOJResponse::message("源代码长度不能超过 {$max_size}KB。");
2016-07-18 16:39:37 +00:00
}
}
2022-11-06 02:26:21 +00:00
$tot_size += $stat['size'];
}
$zip_file->close();
$handle($zip_file_name, $content, $tot_size);
};
return $form;
}
function newZipSubmissionForm($form_name, $requirement, $zip_file_name_gen, $handle) {
$form = new UOJBs4Form($form_name);
$name = "zip_ans_{$form_name}";
$text = UOJLocale::get('problems::zip file upload introduction', implode(', ', array_map(fn ($req) => $req['file_name'], $requirement)));
$browse_text = UOJLocale::get('browse');
$html = <<<EOD
2016-07-18 16:39:37 +00:00
<div id="div-{$name}">
2022-11-06 02:26:21 +00:00
<label for="input-{$name}">$text</label>
<input type="file" id="input-{$name}" name="{$name}" style="display:none;" onchange="$('#input-{$name}_path').val($('#input-{$name}').val());" />
<div class="input-group bot-buffer-md">
<input id="input-{$name}_path" class="form-control" type="text" readonly="readonly" />
<span class="input-group-append">
<button type="button" class="btn btn-primary" style="width:100px; !important" onclick="$('#input-{$name}').click();"><span class="glyphicon glyphicon-folder-open"></span> $browse_text</button>
</span>
</div>
<span class="help-block invalid-feedback" id="help-{$name}"></span>
2016-07-18 16:39:37 +00:00
</div>
EOD;
2022-11-06 02:26:21 +00:00
$form->addNoVal($name, $html);
$form->is_big = true;
$form->has_file = true;
$form->handle = function () use ($name, $requirement, $zip_file_name_gen, $handle) {
global $myUser;
if ($myUser == null) {
redirectToLogin();
}
if (!isset($_FILES[$name])) {
becomeMsgPage('你在干啥……怎么什么都没交过来……?');
} elseif (!is_uploaded_file($_FILES[$name]['tmp_name'])) {
becomeMsgPage('上传出错,貌似你什么都没交过来……?');
}
$up_zip_file = new ZipArchive();
if ($up_zip_file->open($_FILES[$name]['tmp_name']) !== true) {
becomeMsgPage('不是合法的zip压缩文件');
}
$tot_size = 0;
$zip_content = array();
foreach ($requirement as $req) {
$stat = $up_zip_file->statName($req['file_name']);
if ($stat === false) {
$zip_content[$req['name']] = '';
} else {
$tot_size += $stat['size'];
if ($stat['size'] > 20 * 1024 * 1024) {
becomeMsgPage("文件 {$req['file_name']} 实际大小过大。");
}
$ret = $up_zip_file->getFromName($req['file_name']);
if ($ret === false) {
2016-07-18 16:39:37 +00:00
$zip_content[$req['name']] = '';
} else {
2022-11-06 02:26:21 +00:00
$zip_content[$req['name']] = $ret;
2016-07-18 16:39:37 +00:00
}
}
2022-11-06 02:26:21 +00:00
}
$up_zip_file->close();
2022-10-21 05:23:36 +00:00
2022-11-06 02:26:21 +00:00
$zip_file_name = $zip_file_name_gen();
2022-10-21 12:42:48 +00:00
2022-11-06 02:26:21 +00:00
$zip_file = new ZipArchive();
if ($zip_file->open(UOJContext::storagePath() . $zip_file_name, ZipArchive::CREATE) !== true) {
becomeMsgPage('提交失败');
}
foreach ($requirement as $req) {
$zip_file->addFromString($req['file_name'], $zip_content[$req['name']]);
}
$zip_file->close();
$content = array();
$content['file_name'] = $zip_file_name;
$content['config'] = array();
$handle($zip_file_name, $content, $tot_size);
};
return $form;
}
function dieWithJsonData($data) {
header('Content-Type: application/json');
die(json_encode($data));
}
function dieWithAlert($str) {
die('<script>alert(decodeURIComponent("' . rawurlencode($str) . '"));</script>' . SCRIPT_REFRESH_AS_GET);
}