UNPKG

@cocalc/server

Version:

CoCalc server functionality: functions used by either the hub and the next.js server

52 lines 2.37 kB
"use strict"; /* Create account. Doesn't do any checking that server allows for this type of account, etc. -- that is assumed to have been done before calling this. */ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; var desc = Object.getOwnPropertyDescriptor(m, k); if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { desc = { enumerable: true, get: function() { return m[k]; } }; } Object.defineProperty(o, k2, desc); }) : (function(o, m, k, k2) { if (k2 === undefined) k2 = k; o[k2] = m[k]; })); var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { Object.defineProperty(o, "default", { enumerable: true, value: v }); }) : function(o, v) { o["default"] = v; }); var __importStar = (this && this.__importStar) || function (mod) { if (mod && mod.__esModule) return mod; var result = {}; if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); __setModuleDefault(result, mod); return result; }; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); const pool_1 = __importDefault(require("@cocalc/database/pool")); const password_hash_1 = __importDefault(require("@cocalc/backend/auth/password-hash")); const account_creation_actions_1 = __importStar(require("./account-creation-actions")); async function createAccount({ email, password, firstName, lastName, account_id, }) { const pool = (0, pool_1.default)(); await pool.query("INSERT INTO accounts (email_address, password_hash, first_name, last_name, account_id, created) VALUES($1::TEXT, $2::TEXT, $3::TEXT, $4::TEXT, $5::UUID, NOW())", [ email ? email : undefined, password ? (0, password_hash_1.default)(password) : undefined, firstName, lastName, account_id, ]); if (email) { await (0, account_creation_actions_1.default)(email, account_id); } await (0, account_creation_actions_1.creationActionsDone)(account_id); } exports.default = createAccount; //# sourceMappingURL=create-account.js.map