2016-07-18 16:39:37 +00:00
< ? php
requirePHPLib ( 'form' );
requirePHPLib ( 'judger' );
2019-06-14 15:30:02 +00:00
requirePHPLib ( 'data' );
2016-07-18 16:39:37 +00:00
if ( isSuperUser ( $myUser )) {
$new_problem_form = new UOJForm ( 'new_problem' );
$new_problem_form -> handle = function () {
2017-11-25 15:29:18 +00:00
DB :: query ( " insert into problems (title, is_hidden, submission_requirement) values ('New Problem', 1, ' { }') " );
$id = DB :: insert_id ();
DB :: query ( " insert into problems_contents (id, statement, statement_md) values ( $id , '', '') " );
2019-06-14 15:30:02 +00:00
dataNewProblem ( $id );
2016-07-18 16:39:37 +00:00
};
$new_problem_form -> submit_button_config [ 'align' ] = 'right' ;
$new_problem_form -> submit_button_config [ 'class_str' ] = 'btn btn-primary' ;
$new_problem_form -> submit_button_config [ 'text' ] = UOJLocale :: get ( 'problems::add new' );
$new_problem_form -> submit_button_config [ 'smart_confirm' ] = '' ;
$new_problem_form -> runAtServer ();
}
function echoProblem ( $problem ) {
global $myUser ;
if ( isProblemVisibleToUser ( $problem , $myUser )) {
echo '<tr class="text-center">' ;
if ( $problem [ 'submission_id' ]) {
echo '<td class="success">' ;
} else {
echo '<td>' ;
}
echo '#' , $problem [ 'id' ], '</td>' ;
2018-07-09 02:40:30 +00:00
echo '<td class="text-left">' ;
if ( $problem [ 'is_hidden' ]) {
echo ' <span class="text-danger">[隐藏]</span> ' ;
}
echo '<a href="/problem/' , $problem [ 'id' ], '">' , $problem [ 'title' ], '</a>' ;
2016-07-18 16:39:37 +00:00
if ( isset ( $_COOKIE [ 'show_tags_mode' ])) {
foreach ( queryProblemTags ( $problem [ 'id' ]) as $tag ) {
2019-09-10 02:15:20 +00:00
echo '<a class="uoj-problem-tag">' , '<span class="badge badge-pill badge-secondary">' , HTML :: escape ( $tag ), '</span>' , '</a>' ;
2016-07-18 16:39:37 +00:00
}
}
echo '</td>' ;
if ( isset ( $_COOKIE [ 'show_submit_mode' ])) {
$perc = $problem [ 'submit_num' ] > 0 ? round ( 100 * $problem [ 'ac_num' ] / $problem [ 'submit_num' ]) : 0 ;
echo <<< EOD
< td >< a href = " /submissions?problem_id= { $problem [ 'id' ] } &min_score=100&max_score=100 " >& times ;{ $problem [ 'ac_num' ]} </ a ></ td >
< td >< a href = " /submissions?problem_id= { $problem [ 'id' ] } " >& times ;{ $problem [ 'submit_num' ]} </ a ></ td >
< td >
< div class = " progress bot-buffer-no " >
< div class = " progress-bar progress-bar-success " role = " progressbar " aria - valuenow = " $perc " aria - valuemin = " 0 " aria - valuemax = " 100 " style = " width: $perc %; min-width: 20px; " > { $perc } %</ div >
</ div >
</ td >
EOD ;
}
echo '<td class="text-left">' , getClickZanBlock ( 'P' , $problem [ 'id' ], $problem [ 'zan' ]), '</td>' ;
echo '</tr>' ;
}
}
$cond = array ();
$search_tag = null ;
$cur_tab = isset ( $_GET [ 'tab' ]) ? $_GET [ 'tab' ] : 'all' ;
if ( $cur_tab == 'template' ) {
$search_tag = " 模板题 " ;
}
if ( isset ( $_GET [ 'tag' ])) {
$search_tag = $_GET [ 'tag' ];
}
if ( $search_tag ) {
$cond [] = " ' " . DB :: escape ( $search_tag ) . " ' in (select tag from problems_tags where problems_tags.problem_id = problems.id) " ;
}
2020-06-25 12:41:16 +00:00
if ( isset ( $_GET [ " search " ])) {
$cond [] = " title like '% " . DB :: escape ( $_GET [ " search " ]) . " %' or id like '% " . DB :: escape ( $_GET [ " search " ]) . " %' " ;
2017-11-25 04:00:00 +00:00
}
2016-07-18 16:39:37 +00:00
if ( $cond ) {
$cond = join ( $cond , ' and ' );
} else {
$cond = '1' ;
}
$header = '<tr>' ;
$header .= '<th class="text-center" style="width:5em;">ID</th>' ;
$header .= '<th>' . UOJLocale :: get ( 'problems::problem' ) . '</th>' ;
if ( isset ( $_COOKIE [ 'show_submit_mode' ])) {
$header .= '<th class="text-center" style="width:5em;">' . UOJLocale :: get ( 'problems::ac' ) . '</th>' ;
$header .= '<th class="text-center" style="width:5em;">' . UOJLocale :: get ( 'problems::submit' ) . '</th>' ;
$header .= '<th class="text-center" style="width:150px;">' . UOJLocale :: get ( 'problems::ac ratio' ) . '</th>' ;
}
$header .= '<th class="text-center" style="width:180px;">' . UOJLocale :: get ( 'appraisal' ) . '</th>' ;
$header .= '</tr>' ;
$tabs_info = array (
'all' => array (
'name' => UOJLocale :: get ( 'problems::all problems' ),
'url' => " /problems "
),
'template' => array (
'name' => UOJLocale :: get ( 'problems::template problems' ),
'url' => " /problems/template "
)
);
/*
< ? php
echoLongTable ( array ( '*' ),
" problems left join best_ac_submissions on best_ac_submissions.submitter = ' { $myUser [ 'username' ] } ' and problems.id = best_ac_submissions.problem_id " , $cond , 'order by id asc' ,
$header ,
'echoProblem' ,
array ( 'page_len' => 3 ,
'table_classes' => array ( 'table' , 'table-bordered' , 'table-hover' , 'table-striped' ),
'print_after_table' => function () {
global $myUser ;
if ( isSuperUser ( $myUser )) {
global $new_problem_form ;
$new_problem_form -> printHTML ();
}
},
'head_pagination' => true
)
);
?> */
$pag_config = array ( 'page_len' => 100 );
$pag_config [ 'col_names' ] = array ( '*' );
$pag_config [ 'table_name' ] = " problems left join best_ac_submissions on best_ac_submissions.submitter = ' { $myUser [ 'username' ] } ' and problems.id = best_ac_submissions.problem_id " ;
$pag_config [ 'cond' ] = $cond ;
$pag_config [ 'tail' ] = " order by id asc " ;
$pag = new Paginator ( $pag_config );
$div_classes = array ( 'table-responsive' );
$table_classes = array ( 'table' , 'table-bordered' , 'table-hover' , 'table-striped' );
?>
< ? php echoUOJPageHeader ( UOJLocale :: get ( 'problems' )) ?>
< div class = " row " >
< div class = " col-sm-4 " >
< ? = HTML :: tablist ( $tabs_info , $cur_tab , 'nav-pills' ) ?>
</ div >
2019-09-10 02:15:20 +00:00
< div class = " col-sm-4 order-sm-9 checkbox text-right " >
< label class = " checkbox-inline " for = " input-show_tags_mode " >< input type = " checkbox " id = " input-show_tags_mode " < ? = isset ( $_COOKIE [ 'show_tags_mode' ]) ? 'checked="checked" ' : '' ?> /> <?= UOJLocale::get('problems::show tags') ?></label>
< label class = " checkbox-inline " for = " input-show_submit_mode " >< input type = " checkbox " id = " input-show_submit_mode " < ? = isset ( $_COOKIE [ 'show_submit_mode' ]) ? 'checked="checked" ' : '' ?> /> <?= UOJLocale::get('problems::show statistics') ?></label>
2016-07-18 16:39:37 +00:00
</ div >
2019-09-10 02:15:20 +00:00
< div class = " col-sm-4 order-sm-5 " >
< ? php echo $pag -> pagination (); ?>
2016-07-18 16:39:37 +00:00
</ div >
</ div >
< div class = " top-buffer-sm " ></ div >
< script type = " text/javascript " >
$ ( '#input-show_tags_mode' ) . click ( function () {
if ( this . checked ) {
$ . cookie ( 'show_tags_mode' , '' , { path : '/problems' });
} else {
$ . removeCookie ( 'show_tags_mode' , { path : '/problems' });
}
location . reload ();
});
$ ( '#input-show_submit_mode' ) . click ( function () {
if ( this . checked ) {
$ . cookie ( 'show_submit_mode' , '' , { path : '/problems' });
} else {
$ . removeCookie ( 'show_submit_mode' , { path : '/problems' });
}
location . reload ();
});
</ script >
< ? php
echo '<div class="' , join ( $div_classes , ' ' ), '">' ;
echo '<table class="' , join ( $table_classes , ' ' ), '">' ;
echo '<thead>' ;
echo $header ;
echo '</thead>' ;
echo '<tbody>' ;
foreach ( $pag -> get () as $idx => $row ) {
echoProblem ( $row );
2017-11-25 04:00:00 +00:00
echo " \n " ;
}
if ( $pag -> isEmpty ()) {
echo '<tr><td class="text-center" colspan="233">' . UOJLocale :: get ( 'none' ) . '</td></tr>' ;
2016-07-18 16:39:37 +00:00
}
echo '</tbody>' ;
echo '</table>' ;
echo '</div>' ;
if ( isSuperUser ( $myUser )) {
$new_problem_form -> printHTML ();
}
echo $pag -> pagination ();
?>
< ? php echoUOJPageFooter () ?>