GSI - Employe Self Service Mobile
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

76 lines
2.9 KiB

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.command = void 0;
const command_1 = require("../command");
const logger_1 = require("../logger");
const clc = require("colorette");
const utils = require("../utils");
const auth = require("../auth");
const prompt_1 = require("../prompt");
exports.command = new command_1.Command("logout [email]")
.description("log the CLI out of Firebase")
.action(async (email, options) => {
const globalToken = utils.getInheritedOption(options, "token");
utils.assertIsStringOrUndefined(globalToken);
const allAccounts = auth.getAllAccounts();
if (allAccounts.length === 0 && !globalToken) {
logger_1.logger.info("No need to logout, not logged in");
return;
}
const defaultAccount = auth.getGlobalDefaultAccount();
const additionalAccounts = auth.getAdditionalAccounts();
const accountsToLogOut = email
? allAccounts.filter((a) => a.user.email === email)
: allAccounts;
if (email && accountsToLogOut.length === 0) {
utils.logWarning(`No account matches ${email}, can't log out.`);
return;
}
const logoutDefault = email === (defaultAccount === null || defaultAccount === void 0 ? void 0 : defaultAccount.user.email);
let newDefaultAccount = undefined;
if (logoutDefault && additionalAccounts.length > 0) {
if (additionalAccounts.length === 1) {
newDefaultAccount = additionalAccounts[0];
}
else {
const choices = additionalAccounts.map((a) => {
return {
name: a.user.email,
value: a,
};
});
newDefaultAccount = await (0, prompt_1.promptOnce)({
type: "list",
message: "You are logging out of your default account, which account should become the new default?",
choices,
});
}
}
for (const account of accountsToLogOut) {
const token = account.tokens.refresh_token;
if (token) {
auth.setRefreshToken(token);
try {
await auth.logout(token);
}
catch (e) {
utils.logWarning(`Invalid refresh token for ${account.user.email}, did not need to deauthorize`);
}
utils.logSuccess(`Logged out from ${clc.bold(account.user.email)}`);
}
}
if (globalToken) {
auth.setRefreshToken(globalToken);
try {
await auth.logout(globalToken);
}
catch (e) {
utils.logWarning("Invalid refresh token, did not need to deauthorize");
}
utils.logSuccess(`Logged out from token "${clc.bold(globalToken)}"`);
}
if (newDefaultAccount) {
utils.logSuccess(`Setting default account to "${newDefaultAccount.user.email}"`);
auth.setGlobalDefaultAccount(newDefaultAccount);
}
});