Subversion Repositories oidplus

Compare Revisions

Regard whitespace Rev 1200 → Rev 1201

/trunk/plugins/viathinksoft/publicPages/200_viathinksoft_freeoid/OIDplusPagePublicFreeOID.class.php
42,10 → 42,10
/**
* @param string $email
* @param bool $getId
* @return bool|null
* @return string|null|bool If $getId=true, then returns ID or NULL. If $getId=False, then returns TRUE or FALSE.
* @throws OIDplusException
*/
public static function alreadyHasFreeOid(string $email, bool $getId = false)/*: ?bool*/ {
public static function alreadyHasFreeOid(string $email, bool $getId = false) {
$res = OIDplus::db()->query("select id from ###objects where ra_email = ? and id like ?", array($email, self::getFreeRootOid(true).'.%'));
$res->naturalSortByField('id');
if ($row = $res->fetch_array()) {
69,7 → 69,7
$email = $params['email'];
 
if ($already_registered_oid = $this->alreadyHasFreeOid($email, true)) {
throw new OIDplusException(_L('This email address already has a FreeOID registered (%1)', $already_registered_oid));
throw new OIDplusHtmlException(_L('This email address already has a FreeOID registered (%1)', '<a '.OIDplus::gui()->link($already_registered_oid).'>'.htmlentities($already_registered_oid).'</a>'));
}
 
if (!OIDplus::mailUtils()->validMailAddress($email)) {
279,7 → 279,8
$out['text'] .= ' - <a '.OIDplus::gui()->link('aid:D276000186F1').'>'._L('More information').'</a></p>';
}
} catch (\Exception $e) {
$out['text'] = _L('Error: %1',$e->getMessage());
$htmlmsg = $e instanceof OIDplusException ? $e->getHtmlMessage() : htmlentities($e->getMessage());
$out['text'] = _L('Error: %1',$htmlmsg);
}
} else if (explode('$',$id)[0] == 'oidplus:com.viathinksoft.freeoid.activate_freeoid') {
$handled = true;
292,7 → 293,7
$out['icon'] = file_exists(__DIR__.'/img/main_icon.png') ? OIDplus::webpath(__DIR__,OIDplus::PATH_RELATIVE).'img/main_icon.png' : '';
 
if ($already_registered_oid = $this->alreadyHasFreeOid($email, true)) {
throw new OIDplusException(_L('This email address already has a FreeOID registered (%1)', $already_registered_oid));
throw new OIDplusHtmlException(_L('This email address already has a FreeOID registered (%1)', '<a '.OIDplus::gui()->link($already_registered_oid).'>'.htmlentities($already_registered_oid).'</a>'));
} else {
if (!OIDplus::authUtils()->validateAuthKey('com.viathinksoft.freeoid.activate_freeoid;'.$email.';'.$timestamp, $auth)) {
$out['icon'] = 'img/error.png';