dashboard/shell/middleware/authenticated.js

428 lines
12 KiB
JavaScript

import { REDIRECTED } from '@shell/config/cookies';
import { NAME as EXPLORER } from '@shell/config/product/explorer';
import {
SETUP, TIMED_OUT, UPGRADED, _FLAGGED, _UNFLAG
} from '@shell/config/query-params';
import { SETTING } from '@shell/config/settings';
import { MANAGEMENT, NORMAN, DEFAULT_WORKSPACE } from '@shell/config/types';
import { _ALL_IF_AUTHED } from '@shell/plugins/dashboard-store/actions';
import { applyProducts } from '@shell/store/type-map';
import { findBy } from '@shell/utils/array';
import { ClusterNotFoundError } from '@shell/utils/error';
import { get } from '@shell/utils/object';
import { setFavIcon, haveSetFavIcon } from '@shell/utils/favicon';
import dynamicPluginLoader from '@shell/pkg/dynamic-plugin-loader';
import { AFTER_LOGIN_ROUTE, WORKSPACE } from '@shell/store/prefs';
import { BACK_TO } from '@shell/config/local-storage';
import { NAME as FLEET_NAME } from '@shell/config/product/fleet.js';
const getPackageFromRoute = (route) => {
if (!route?.meta) {
return;
}
// Sometimes meta is an array... sometimes not
const arraySafe = Array.isArray(route.meta) ? route.meta : [route.meta];
return arraySafe.find(m => !!m.pkg)?.pkg;
};
let beforeEachSetup = false;
export function getProductFromRoute(to) {
let product = to.params?.product;
if ( !product ) {
const match = to.name?.match(/^c-cluster-([^-]+)/);
if ( match ) {
product = match[1];
}
}
return product;
}
function setProduct(store, to) {
let product = getProductFromRoute(to);
if ( !product ) {
product = EXPLORER;
}
const oldProduct = store.getters['productId'];
const oldStore = store.getters['currentProduct']?.inStore;
if ( product !== oldProduct ) {
store.commit('setProduct', product);
}
const neuStore = store.getters['currentProduct']?.inStore;
if ( neuStore !== oldStore ) {
// If the product store changes, clear the catalog.
// There might be management catalog items in it vs cluster.
store.commit('catalog/reset');
}
}
export default async function({
route, app, store, redirect, $cookies, req, isDev, from, $plugin, next
}) {
if ( route.path && typeof route.path === 'string') {
// Ignore webpack hot module reload requests
if ( route.path.startsWith('/__webpack_hmr/') ) {
return;
}
// Ignore the error page
if ( route.path.startsWith('/fail-whale') ) {
return;
}
}
// This tells Ember not to redirect back to us once you've already been to dashboard once.
if ( !$cookies.get(REDIRECTED) ) {
$cookies.set(REDIRECTED, 'true', {
path: '/',
sameSite: true,
secure: true,
});
}
const upgraded = route.query[UPGRADED] === _FLAGGED;
if ( upgraded ) {
app.router.applyQuery({ [UPGRADED]: _UNFLAG });
store.dispatch('growl/success', {
title: store.getters['i18n/t']('serverUpgrade.title'),
message: store.getters['i18n/t']('serverUpgrade.message'),
timeout: 0,
});
}
// Initial ?setup=admin-password can technically be on any route
let initialPass = route.query[SETUP];
let firstLogin = null;
try {
// Load settings, which will either be just the public ones if not logged in, or all if you are
await store.dispatch('management/findAll', {
type: MANAGEMENT.SETTING,
opt: {
load: _ALL_IF_AUTHED, url: `/v1/${ MANAGEMENT.SETTING }`, redirectUnauthorized: false
}
});
// Set the favicon - use custom one from store if set
if (!haveSetFavIcon()) {
setFavIcon(store);
}
const res = store.getters['management/byId'](MANAGEMENT.SETTING, SETTING.FIRST_LOGIN);
const plSetting = store.getters['management/byId'](MANAGEMENT.SETTING, SETTING.PL);
firstLogin = res?.value === 'true';
if (!initialPass && plSetting?.value === 'Harvester') {
initialPass = 'admin';
}
} catch (e) {
}
if ( firstLogin === null ) {
try {
const res = await store.dispatch('rancher/find', {
type: 'setting',
id: SETTING.FIRST_LOGIN,
opt: { url: `/v3/settings/${ SETTING.FIRST_LOGIN }` }
});
firstLogin = res?.value === 'true';
const plSetting = await store.dispatch('rancher/find', {
type: 'setting',
id: SETTING.PL,
opt: { url: `/v3/settings/${ SETTING.PL }` }
});
if (!initialPass && plSetting?.value === 'Harvester') {
initialPass = 'admin';
}
} catch (e) {
}
}
// TODO show error if firstLogin and default pass doesn't work
if ( firstLogin ) {
const ok = await tryInitialSetup(store, initialPass);
if (ok) {
if (initialPass) {
store.dispatch('auth/setInitialPass', initialPass);
}
return redirect({ name: 'auth-setup' });
} else {
return redirect({ name: 'auth-login' });
}
}
// Make sure you're actually logged in
function isLoggedIn(me) {
store.commit('auth/hasAuth', true);
store.commit('auth/loggedInAs', me.id);
}
function notLoggedIn() {
store.commit('auth/hasAuth', true);
if ( route.name === 'index' ) {
return redirect(302, '/auth/login');
} else {
return redirect(302, `/auth/login?${ TIMED_OUT }`);
}
}
function noAuth() {
store.commit('auth/hasAuth', false);
}
if ( store.getters['auth/enabled'] !== false && !store.getters['auth/loggedIn'] ) {
// `await` so we have one successfully request whilst possibly logged in (ensures fromHeader is populated from `x-api-cattle-auth`)
await store.dispatch('auth/getUser');
const v3User = store.getters['auth/v3User'] || {};
if (v3User?.mustChangePassword) {
return redirect({ name: 'auth-setup' });
}
// In newer versions the API calls return the auth state instead of having to make a new call all the time.
const fromHeader = store.getters['auth/fromHeader'];
if ( fromHeader === 'none' ) {
noAuth();
} else if ( fromHeader === 'true' ) {
const me = await findMe(store);
isLoggedIn(me);
} else if ( fromHeader === 'false' ) {
notLoggedIn();
} else {
// Older versions look at principals and see what happens
try {
const me = await findMe(store);
isLoggedIn(me);
} catch (e) {
const status = e?._status;
if ( status === 404 ) {
noAuth();
} else {
if ( status === 401 ) {
notLoggedIn();
} else {
store.commit('setError', { error: e, locationError: new Error('Auth Middleware') });
if ( process.server ) {
redirect(302, '/fail-whale');
}
}
return;
}
}
}
store.dispatch('gcStartIntervals');
}
if (!process.server) {
const backTo = window.localStorage.getItem(BACK_TO);
if (backTo) {
window.localStorage.removeItem(BACK_TO);
window.location.href = backTo;
}
}
// GC should be notified of route change before any find/get request is made that might be used for that page
store.dispatch('gcRouteChanged', route);
// Load stuff
await applyProducts(store, $plugin);
// Setup a beforeEach hook once to keep track of the current product
if ( !beforeEachSetup ) {
beforeEachSetup = true;
store.app.router.beforeEach((to, from, next) => {
// NOTE - This beforeEach runs AFTER this middleware. So anything in this middleware that requires it must set it manually
setProduct(store, to);
next();
});
// Call it for the initial pageload
setProduct(store, route);
if (process.client) {
store.app.router.afterEach((to, from) => {
// Clear state used to record if back button was used for navigation
setTimeout(() => {
window._popStateDetected = false;
}, 1);
});
}
}
try {
let clusterId = get(route, 'params.cluster');
const pkg = getPackageFromRoute(route);
const product = getProductFromRoute(route);
const oldPkg = getPackageFromRoute(from);
const oldProduct = getProductFromRoute(from);
// Leave an old pkg where we weren't before?
const oldPkgPlugin = oldPkg ? Object.values($plugin.getPlugins()).find(p => p.name === oldPkg) : null;
if (oldPkg && oldPkg !== pkg ) {
// Execute anything optional the plugin wants to. For example resetting it's store to remove data
await oldPkgPlugin.onLeave(store, {
clusterId,
product,
oldProduct,
oldIsExt: !!oldPkg
});
}
// Sometimes this needs to happen before or alongside other things... but is always needed
const always = [
store.dispatch('loadManagement')
];
// Entering a new package where we weren't before?
const newPkgPlugin = pkg ? Object.values($plugin.getPlugins()).find(p => p.name === pkg) : null;
// Note - We can't block on oldPkg !== newPkg because on a fresh load the `from` route equals the `to` route
if (pkg && (oldPkg !== pkg || from.fullPath === route.fullPath)) {
// Execute mandatory store actions
await Promise.all(always);
// Execute anything optional the plugin wants to
await newPkgPlugin.onEnter(store, {
clusterId,
product,
oldProduct,
oldIsExt: !!oldPkg
});
}
if (!route.matched?.length) {
// If there are no matching routes we could be trying to nav to a page belonging to a dynamic plugin which needs loading
await Promise.all([
...always,
]);
// If a plugin claims the route and is loaded correctly we'll get a route back
const newLocation = await dynamicPluginLoader.check({ route, store });
// If we have a new location, double check that it's actually valid
const resolvedRoute = newLocation ? store.app.router.resolve(newLocation) : null;
if (resolvedRoute?.route.matched.length) {
// Note - don't use `redirect` or `store.app.route` (breaks feature by failing to run middleware in default layout)
return next(newLocation);
}
}
// Ensure that the activeNamespaceCache is updated given the change of context either from or to a place where it uses workspaces
// When fleet moves to it's own package this should be moved to pkg onEnter/onLeave
if ((oldProduct === FLEET_NAME || product === FLEET_NAME) && oldProduct !== product) {
// See note above for store.app.router.beforeEach, need to setProduct manually, for the moment do this in a targeted way
setProduct(store, route);
store.commit('updateWorkspace', {
value: store.getters['prefs/get'](WORKSPACE) || DEFAULT_WORKSPACE,
getters: store.getters
});
}
// Always run loadCluster, it handles 'unload' as well
// Run them in parallel
await Promise.all([
...always,
store.dispatch('loadCluster', {
id: clusterId,
oldPkg: oldPkgPlugin,
newPkg: newPkgPlugin,
product,
oldProduct,
})
]);
if (!clusterId) {
clusterId = store.getters['defaultClusterId']; // This needs the cluster list, so no parallel
const isSingleProduct = store.getters['isSingleProduct'];
if (isSingleProduct?.afterLoginRoute) {
const value = {
name: 'c-cluster-product',
...isSingleProduct.afterLoginRoute,
params: {
cluster: clusterId,
...isSingleProduct.afterLoginRoute?.params
},
};
await store.dispatch('prefs/set', {
key: AFTER_LOGIN_ROUTE,
value,
});
}
}
} catch (e) {
if ( e instanceof ClusterNotFoundError ) {
return redirect(302, '/home');
} else {
store.commit('setError', { error: e, locationError: new Error('Auth Middleware') });
return redirect(302, '/fail-whale');
}
}
}
async function findMe(store) {
// First thing we do in loadManagement is fetch principals anyway.... so don't ?me=true here
const principals = await store.dispatch('rancher/findAll', {
type: NORMAN.PRINCIPAL,
opt: {
url: '/v3/principals',
redirectUnauthorized: false,
}
});
const me = findBy(principals, 'me', true);
return me;
}
async function tryInitialSetup(store, password = 'admin') {
try {
const res = await store.dispatch('auth/login', {
provider: 'local',
body: {
username: 'admin',
password
},
});
return res._status === 200;
} catch (e) {
console.error('Error trying initial setup', e); // eslint-disable-line no-console
return false;
}
}