mirror of
https://github.com/slawkens/myaac.git
synced 2025-04-26 01:09:21 +02:00
93 lines
1.9 KiB
PHP
93 lines
1.9 KiB
PHP
<?php
|
|
/**
|
|
* Ajax validator
|
|
* Returns xml file with result
|
|
*
|
|
* @package MyAAC
|
|
* @author Slawkens <slawkens@gmail.com>
|
|
* @copyright 2017 MyAAC
|
|
* @version 0.4.2
|
|
* @link http://my-aac.org
|
|
*/
|
|
|
|
// we need some functions
|
|
require('../common.php');
|
|
require(LIBS . 'validator.php');
|
|
require(SYSTEM . 'functions.php');
|
|
require(SYSTEM . 'init.php');
|
|
|
|
echo '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';
|
|
if(isset($_GET['account']))
|
|
{
|
|
$account = $_GET['account'];
|
|
$tmp = strtoupper($account);
|
|
|
|
$error = '';
|
|
if(USE_ACCOUNT_NAME)
|
|
{
|
|
if(!check_account_name($tmp, $error))
|
|
error_($error);
|
|
}
|
|
else if(!check_account_id($account, $error))
|
|
error_($error);
|
|
|
|
$_account = new OTS_Account();
|
|
if(USE_ACCOUNT_NAME)
|
|
$_account->find($tmp);
|
|
else
|
|
$_account->load($tmp);
|
|
|
|
if($_account->isLoaded())
|
|
error_('Account with this name already exist.');
|
|
|
|
success_('Good account' . (USE_ACCOUNT_NAME ? ' name' : '') . ' ( ' . $account . ' ).');
|
|
}
|
|
else if(isset($_GET['email']))
|
|
{
|
|
$email = $_GET['email'];
|
|
if(strlen($email) >= 255)
|
|
error_('E-mail is too long (max. 255 chars).');
|
|
|
|
if(!Validator::email($email))
|
|
error_('Invalid e-mail format.');
|
|
|
|
if($config['account_mail_unique'])
|
|
{
|
|
$account = new OTS_Account();
|
|
$account->findByEMail($email);
|
|
if($account->isLoaded())
|
|
error_('Account with this e-mail already exist.');
|
|
}
|
|
|
|
success_('Good e-mail.');
|
|
}
|
|
else if(isset($_GET['name']))
|
|
{
|
|
$name = strtolower(stripslashes($_GET['name']));
|
|
$error = '';
|
|
if(!check_name($name, $error))
|
|
error_($error);
|
|
|
|
if(!check_name_new_char($name, $error))
|
|
error_($error);
|
|
|
|
success_('Good. Your name will be:<br /><b>' . ucwords($name) . '</b>');
|
|
}
|
|
else
|
|
error_('Error: no input specified.');
|
|
|
|
/**
|
|
* Output message & exit.
|
|
*
|
|
* @param string $desc Description
|
|
*/
|
|
function success_($desc) {
|
|
echo '<font color="green">' . $desc . '</font>';
|
|
exit();
|
|
}
|
|
function error_($desc) {
|
|
echo '<font color="red">' . $desc . '</font>';
|
|
exit();
|
|
}
|
|
|
|
?>
|