2023-03-20 08:53:58 +00:00
|
|
|
--- UOJ-System/web/app/cli.php 2022-12-30 09:54:05.452022649 +0800
|
2023-03-20 10:45:40 +00:00
|
|
|
+++ UOJ-Luogu-RemoteJudge/web/app/cli.php 2023-03-20 18:44:11.532475876 +0800
|
|
|
|
@@ -1,10 +1,24 @@
|
|
|
|
<?php
|
|
|
|
|
|
|
|
+error_reporting(E_ALL ^ E_NOTICE ^ E_DEPRECATED);
|
|
|
|
+
|
|
|
|
$_SERVER['DOCUMENT_ROOT'] = dirname(__DIR__);
|
2023-03-20 08:53:58 +00:00
|
|
|
|
|
|
|
require $_SERVER['DOCUMENT_ROOT'] . '/app/libs/uoj-lib.php';
|
|
|
|
|
|
|
|
+requirePHPLib('luogu');
|
|
|
|
+requirePHPLib('data');
|
|
|
|
+
|
|
|
|
// TODO: more beautiful argv parser
|
2023-03-20 10:32:20 +00:00
|
|
|
+$my_args = array();
|
|
|
|
+
|
|
|
|
+for ($i = 1; $i < count($argv); $i++) {
|
|
|
|
+ if (preg_match('/^--([^=]+)[=](.*)/', $argv[$i], $match)) {
|
|
|
|
+ $my_args[$match[1]] = $match[2];
|
|
|
|
+ } else if (preg_match('/^--(.*)/', $argv[$i], $match)) {
|
|
|
|
+ $my_args[$match[1]] = $argv[++$i];
|
|
|
|
+ }
|
|
|
|
+}
|
2023-03-20 08:53:58 +00:00
|
|
|
|
|
|
|
$handlers = [
|
2023-03-20 10:32:20 +00:00
|
|
|
'upgrade:up' => function ($name) {
|
2023-03-20 10:45:40 +00:00
|
|
|
@@ -61,7 +75,67 @@
|
2023-03-20 08:53:58 +00:00
|
|
|
});
|
|
|
|
die("finished!\n");
|
|
|
|
},
|
|
|
|
- 'help' => 'showHelp'
|
2023-03-20 10:32:20 +00:00
|
|
|
+ 'luogu:add-problem' => function () use ($argv, $my_args) {
|
|
|
|
+ DB::init();
|
|
|
|
+
|
|
|
|
+ $db = array();
|
2023-03-20 08:53:58 +00:00
|
|
|
+
|
2023-03-20 10:32:20 +00:00
|
|
|
+ if (!isset($my_args['file'])) {
|
2023-03-20 08:53:58 +00:00
|
|
|
+ echo "No database file specified, fetching online instead.\n\n";
|
2023-03-20 10:32:20 +00:00
|
|
|
+ } else {
|
|
|
|
+ echo "Reading local database: {$my_args['file']}\n\n";
|
|
|
|
+
|
|
|
|
+ $file = file_get_contents($my_args['file']);
|
|
|
|
+
|
|
|
|
+ foreach (explode("\n", $file) as $line) {
|
|
|
|
+ if (strlen($line) == 0) continue;
|
|
|
|
+
|
|
|
|
+ $line_data = json_decode($line, true);
|
|
|
|
+ $db[$line_data['pid']] = $line_data;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ $db_count = count($db);
|
|
|
|
+ echo "Loaded {$db_count} items.\n\n";
|
2023-03-20 08:53:58 +00:00
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ // TODO: read database from local file
|
|
|
|
+
|
2023-03-20 10:32:20 +00:00
|
|
|
+ $problems = array_filter($argv, function ($id) {
|
2023-03-20 08:53:58 +00:00
|
|
|
+ if (!validateLuoguProblemId($id)) return false;
|
|
|
|
+
|
|
|
|
+ return true;
|
|
|
|
+ });
|
|
|
|
+
|
|
|
|
+ if (empty($problems)) {
|
|
|
|
+ echo "No problems to be added.\n";
|
|
|
|
+
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ echo "Problems to be added: " . implode(', ', $problems) . "\n\n";
|
|
|
|
+
|
|
|
|
+ readline("Press Enter to continue, or Ctrl+C to abort.");
|
|
|
|
+
|
|
|
|
+ foreach ($problems as $pid) {
|
|
|
|
+ try {
|
2023-03-20 10:32:20 +00:00
|
|
|
+ if (!isset($db[$pid])) {
|
|
|
|
+ if (!empty($db)) {
|
|
|
|
+ echo "[WARN] $pid: fallback to fetch data online\n";
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ $id = newLuoguRemoteProblem($pid);
|
|
|
|
+ } else {
|
|
|
|
+ $parsed = parseLuoguProblemData($db[$pid]);
|
|
|
|
+ $id = newLuoguRemoteProblemFromData($parsed);
|
|
|
|
+ }
|
2023-03-20 08:53:58 +00:00
|
|
|
+
|
|
|
|
+ echo "$pid: $id\n";
|
|
|
|
+ } catch (Exception $e) {
|
|
|
|
+ echo "$pid: failed\n";
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ 'help' => 'showHelp',
|
|
|
|
];
|
|
|
|
|
|
|
|
function showHelp() {
|