S2OJ/web/app/libs/uoj-validate-lib.php
Masco Skray 96d4a3ecf7 style(judger,web): move code out from subfolder "1"
Due to historical reasons, the code is in subfolder "1".
With SVN removal, we place the code back and remove the annoying "1" folder.
2019-06-14 23:34:41 +08:00

50 lines
1.1 KiB
PHP

<?php
function validateUsername($username) {
return is_string($username) && preg_match('/^[a-zA-Z0-9_]{1,20}$/', $username);
}
function validatePassword($password) {
return is_string($password) && preg_match('/^[a-z0-9]{32}$/', $password);
}
function validateEmail($email) {
return is_string($email) && strlen($email) <= 50 && preg_match('/^(.+)@(.+)$/', $email);
}
function validateQQ($QQ) {
return is_string($QQ) && strlen($QQ) <= 15 && preg_match('/^[0-9]{5,15}$/', $QQ);
}
function validateMotto($motto) {
return is_string($motto) && ($len = mb_strlen($motto, 'UTF-8')) !== false && $len <= 50;
}
function validateUInt($x) { // [0, 1000000000)
if (!is_string($x)) {
return false;
}
if ($x === '0') {
return true;
}
return preg_match('/^[1-9][0-9]{0,8}$/', $x);
}
function validateInt($x) {
if (!is_string($x)) {
return false;
}
if ($x[0] == '-') {
$x = substr($x, 1);
}
return validateUInt($x);
}
function validateUploadedFile($name) {
return isset($_FILES[$name]) && is_uploaded_file($_FILES[$name]['tmp_name']);
}
function validateIP($ip) {
return filter_var($ip, FILTER_VALIDATE_IP) !== false;
}