. // RPC handler for account creation require_once("../inc/boinc_db.inc"); require_once("../inc/util.inc"); require_once("../inc/email.inc"); require_once("../inc/xml.inc"); require_once("../inc/user_util.inc"); require_once("../inc/team.inc"); require_once("../inc/password_compat/password.inc"); require_once("../inc/consent.inc"); xml_header(); $retval = db_init_xml(); if ($retval) xml_error($retval); $config = get_config(); if (parse_bool($config, "disable_account_creation")) { xml_error(ERR_ACCT_CREATION_DISABLED); } if (parse_bool($config, "disable_account_creation_rpc")) { xml_error(ERR_ACCT_CREATION_DISABLED); } if(defined('INVITE_CODES')) { $invite_code = get_str("invite_code"); if (!preg_match(INVITE_CODES, $invite_code)) { xml_error(ERR_ATTACH_FAIL_INIT); } } $email_addr = get_str("email_addr"); $email_addr = strtolower($email_addr); $passwd_hash = get_str("passwd_hash"); $user_name = get_str("user_name"); $team_name = get_str("team_name", true); $consent_flag = get_str("consent_flag", true); $source = get_str("source", true); if (!is_valid_user_name($user_name, $reason)) { xml_error(ERR_BAD_USER_NAME, $reason); } if (!is_valid_email_addr($email_addr)) { xml_error(ERR_BAD_EMAIL_ADDR); } if (is_banned_email_addr($email_addr)) { xml_error(ERR_BAD_EMAIL_ADDR); } if (strlen($passwd_hash) != 32) { xml_error(-1, "password hash length not 32"); } $tmpuser = BoincUser::lookup_prev_email_addr($email_addr); if ($tmpuser) { xml_error(ERR_DB_NOT_UNIQUE); } $user = BoincUser::lookup_email_addr($email_addr); if ($user) { if ($user->passwd_hash != $passwd_hash && !password_verify($passwd_hash, $user->passwd_hash)) { xml_error(ERR_DB_NOT_UNIQUE); } else { $authenticator = $user->authenticator; } } else { $user = make_user($email_addr, $user_name, $passwd_hash, 'International'); if (!$user) { xml_error(ERR_DB_NOT_UNIQUE); } if (defined('INVITE_CODES')) { error_log("Account for '$email_addr' created using invitation code '$invite_code'"); } // If the project has configured to use the CONSENT_TYPE_ENROLL, then // record it. list($checkct, $ctid) = check_consent_type(CONSENT_TYPE_ENROLL); if ($checkct) { // As of Sept 2018, this code allows 'legacy' boinc clients to // create accounts. If consent_flag is null, e.g., if an older // BOINC client creates an account without this new // parameter, the account is created as normal and there is no // updateto the consent table. // // In the future, when the majority of BOINC clients and // Account Managers have been updated to use the consent_flag // parameter, then this code should be revised to only allow // clients who do use this flag to continue. I.e., if // is_null($consent_flag) returns TRUE, then return an // xml_error(-1, ...). // If BOINC client version is larger than the minimum defined, // then assume consent has been given, because the user must // have clicked through the terms-of-use dialog box. $client_version = boinc_client_version(); if ($client_version >= MIN_BOINCCLIENT_VERSION_TOU) { $consent_flag=1; $source='BoincClient'; } if ( (!is_null($consent_flag)) and $source) { // Record the user giving consent in database - if consent_flag is 0, // this is an 'anonymous account' and consent_not_required is // set to 1. if ($consent_flag==0) { $rc = consent_to_a_policy($user, $ctid, 0, 1, $source); } else { $rc = consent_to_a_policy($user, $ctid, 1, 0, $source); } if (!$rc) { xml_error(-1, "database error, please contact site administrators"); } } } } if ($team_name) { $team_name = BoincDb::escape_string($team_name); $team = BoincTeam::lookup("name='$team_name'"); if ($team && $team->joinable) { user_join_team($team, $user); } } echo " \n"; echo " $user->authenticator\n"; echo "\n"; ?>