dashboard/store/index.js

483 lines
12 KiB
JavaScript

import Steve from '@/plugins/steve';
import { COUNT, NAMESPACE, NORMAN, MANAGEMENT } from '@/config/types';
import { CLUSTER as CLUSTER_PREF, NAMESPACE_FILTERS, LAST_NAMESPACE } from '@/store/prefs';
import { allHash } from '@/utils/promise';
import { ClusterNotFoundError, ApiError } from '@/utils/error';
import { sortBy } from '@/utils/sort';
import { filterBy, findBy } from '@/utils/array';
import { BOTH, CLUSTER_LEVEL, NAMESPACED } from '@/store/type-map';
import { NAME as EXPLORER } from '@/config/product/explorer';
// Disables strict mode for all store instances to prevent warning about changing state outside of mutations
// becaues it's more efficient to do that sometimes.
export const strict = false;
export const plugins = [
Steve({ namespace: 'management', baseUrl: '/v1' }),
Steve({ namespace: 'cluster', baseUrl: '' }), // url set later
Steve({ namespace: 'rancher', baseUrl: '/v3' }),
];
export const state = () => {
return {
managementReady: false,
clusterReady: false,
isMultiCluster: false,
namespaceFilters: [],
allNamespaces: null,
clusterId: null,
productId: null,
error: null,
cameFromError: false,
};
};
export const getters = {
clusterReady(state) {
return state.clusterReady === true;
},
isMultiCluster(state) {
return state.isMultiCluster === true;
},
clusterId(state) {
return state.clusterId;
},
productId(state, getters) {
return state.productId;
},
currentCluster(state, getters) {
return getters['management/byId'](MANAGEMENT.CLUSTER, state.clusterId);
},
currentProduct(state, getters) {
const active = getters['type-map/activeProducts'];
let out = findBy(active, 'name', state.productId);
if ( !out ) {
out = findBy(active, 'name', EXPLORER);
}
if ( !out ) {
out = active[0];
}
return out;
},
isExplorer(state, getters) {
return getters.currentProduct?.name === EXPLORER;
},
defaultClusterId(state, getters) {
const all = getters['management/all'](MANAGEMENT.CLUSTER);
const clusters = sortBy(filterBy(all, 'isReady'), 'nameDisplay');
const desired = getters['prefs/get'](CLUSTER_PREF);
if ( clusters.find(x => x.id === desired) ) {
return desired;
} else if ( clusters.length ) {
return clusters[0].id;
}
return null;
},
isAllNamespaces(state, getters) {
const product = getters['currentProduct'];
return !product || !product.showNamespaceFilter || state.namespaceFilters.includes('all');
},
isMultipleNamespaces(state, getters) {
const filters = state.namespaceFilters;
if ( getters.isAllNamespaces ) {
return true;
}
if ( filters.length !== 1 ) {
return true;
}
return !filters[0].startsWith('ns://');
},
namespaceMode(state) {
const filters = state.namespaceFilters;
const product = getters['currentProduct'];
if ( !product?.showNamespaceFilter ) {
return BOTH;
}
// Explicitly asking
if ( filters.includes('namespaced://true') ) {
return NAMESPACED;
} else if ( filters.includes('namespaced://false') ) {
return CLUSTER_LEVEL;
}
const byKind = {};
for ( const filter of filters ) {
const type = filter.split('://', 2)[0];
byKind[type] = (byKind[type] || 0) + 1;
}
if ( byKind['project'] > 0 || byKind['ns'] > 0 ) {
return NAMESPACED;
}
return BOTH;
},
namespaces(state, getters) {
return () => {
const out = {};
const inStore = getters['currentProduct']?.inStore;
const clusterId = getters['currentCluster']?.id;
if ( !clusterId || !inStore ) {
return out;
}
const namespaces = getters[`${ inStore }/all`](NAMESPACE);
const filters = state.namespaceFilters.filter(x => !x.startsWith('namespaced://'));
const includeAll = getters.isAllNamespaces;
const includeSystem = filters.includes('all://system');
const includeUser = filters.includes('all://user') || filters.length === 0;
const includeOrphans = filters.includes('all://orphans');
// Special cases to pull in all the user, system, or orphaned namespaces
if ( includeAll || includeOrphans || includeSystem || includeUser ) {
for ( const ns of namespaces ) {
if (
includeAll ||
( includeOrphans && !ns.projectId ) ||
( includeUser && !ns.isSystem ) ||
( includeSystem && ns.isSystem )
) {
out[ns.id] = true;
}
}
}
// Individual requests for a specific project/namespace
if ( !includeAll ) {
for ( const filter of filters ) {
const [type, id] = filter.split('://', 2);
if ( !type ) {
continue;
}
if ( type === 'ns' ) {
out[id] = true;
} else if ( type === 'project' ) {
const project = getters['management/byId'](MANAGEMENT.PROJECT, `${ clusterId }/${ id }`);
if ( project ) {
for ( const ns of project.namespaces ) {
out[ns.id] = true;
}
}
}
}
}
return out;
};
},
defaultNamespace(state, getters, rootState, rootGetters) {
const inStore = getters['currentProduct'].inStore;
const filteredMap = getters['namespaces']();
const isAll = getters['isAllNamespaces'];
const all = getters[`${ inStore }/all`](NAMESPACE).map(x => x.id);
let out;
function isOk() {
if ( !out ) {
return false;
}
return (isAll && all.includes(out) ) ||
(!isAll && filteredMap && filteredMap[out] );
}
out = rootGetters['prefs/get'](LAST_NAMESPACE);
if ( isOk() ) {
return out;
}
out = 'default';
if ( isOk() ) {
return out;
}
if ( !isAll ) {
const keys = Object.keys(filteredMap);
if ( keys.length ) {
return keys[0];
}
}
return all[0];
},
backToRancherLink(state) {
const clusterId = state.clusterId;
let link = '/g';
if ( clusterId ) {
link = `/c/${ escape(clusterId) }`;
}
if ( process.env.dev ) {
link = `https://localhost:8000${ link }`;
}
return link;
},
rancherLink(getters) {
if ( process.env.dev ) {
return `https://localhost:8000/`;
}
return '/';
},
};
export const mutations = {
managementChanged(state, { ready, isMultiCluster }) {
state.managementReady = ready;
state.isMultiCluster = isMultiCluster;
},
clusterChanged(state, ready) {
state.clusterReady = ready;
},
updateNamespaces(state, { filters, all }) {
state.namespaceFilters = filters;
if ( all ) {
state.allNamespaces = all;
}
},
setCluster(state, neu) {
state.clusterId = neu;
},
setProduct(state, neu) {
state.productId = neu;
},
setError(state, obj) {
const err = new ApiError(obj);
console.log('Loading error', err); // eslint-disable-line no-console
state.error = err;
state.cameFromError = true;
},
cameFromError(state) {
state.cameFromError = true;
}
};
export const actions = {
async loadManagement({
getters, state, commit, dispatch
}) {
if ( state.managementReady ) {
// Do nothing, it's already loaded
return;
}
console.log('Loading management...'); // eslint-disable-line no-console
try {
await dispatch('rancher/findAll', { type: NORMAN.PRINCIPAL, opt: { url: 'principals' } });
} catch (e) {
// Maybe not Rancher
}
await allHash({
prefs: dispatch('prefs/loadServer'),
schemas: Promise.all([
dispatch('management/subscribe'),
dispatch('management/loadSchemas', true),
]),
});
const isMultiCluster = !!getters['management/schemaFor'](MANAGEMENT.PROJECT);
const promises = [];
if ( getters['management/schemaFor'](COUNT) ) {
promises.push(dispatch('management/findAll', { type: COUNT }));
}
if ( getters['management/schemaFor'](MANAGEMENT.SETTING) ) {
promises.push(dispatch('management/findAll', { type: MANAGEMENT.SETTING }));
}
if ( getters['management/schemaFor'](NAMESPACE) ) {
promises.push(dispatch('management/findAll', { type: NAMESPACE }));
}
// Clusters is always available
promises.push(dispatch('management/findAll', {
type: MANAGEMENT.CLUSTER,
opt: { url: MANAGEMENT.CLUSTER }
}));
await Promise.all(promises);
commit('managementChanged', {
ready: true,
isMultiCluster
});
console.log(`Done loading management; isMultiCluster=${ isMultiCluster }`); // eslint-disable-line no-console
},
async loadCluster({
state, commit, dispatch, getters
}, id) {
const isMultiCluster = getters['isMultiCluster'];
if ( state.clusterReady && state.clusterId && state.clusterId === id ) {
// Do nothing, we're already connected to this cluster
return;
}
if ( state.clusterId && id ) {
// Clear the old cluster state out if switching to a new one.
// If there is not an id then stay connected to the old one behind the scenes,
// so that the nav and header stay the same when going to things like prefs
commit('clusterChanged', false);
await dispatch('cluster/unsubscribe');
commit('cluster/reset');
await dispatch('management/watch', {
type: MANAGEMENT.PROJECT,
namespace: state.clusterId,
stop: true
});
commit('management/forgetType', MANAGEMENT.PROJECT);
commit('catalog/reset');
}
if ( id ) {
// Remember the new one
dispatch('prefs/set', { key: CLUSTER_PREF, value: id });
commit('setCluster', id);
} else if ( isMultiCluster ) {
// Switching to a global page with no cluster id, keep it the same.
return;
}
console.log(`Loading ${ isMultiCluster ? 'ECM ' : '' }cluster...`); // eslint-disable-line no-console
// See if it really exists
const cluster = await dispatch('management/find', {
type: MANAGEMENT.CLUSTER,
id,
opt: { url: `${ MANAGEMENT.CLUSTER }s/${ escape(id) }` }
});
const clusterBase = `/k8s/clusters/${ escape(id) }/v1`;
if ( !cluster ) {
commit('setCluster', null);
commit('cluster/applyConfig', { baseUrl: null });
throw new ClusterNotFoundError(id);
}
// Update the Steve client URLs
commit('cluster/applyConfig', { baseUrl: clusterBase });
await Promise.all([
dispatch('cluster/loadSchemas', true),
]);
dispatch('cluster/subscribe');
const projectArgs = {
type: MANAGEMENT.PROJECT,
opt: {
url: `${ MANAGEMENT.PROJECT }/${ escape(id) }`,
watchNamespace: id
}
};
const res = await allHash({
projects: isMultiCluster && dispatch('management/findAll', projectArgs),
counts: dispatch('cluster/findAll', { type: COUNT, opt: { url: 'counts' } }),
namespaces: dispatch('cluster/findAll', { type: NAMESPACE, opt: { url: 'namespaces' } })
});
commit('updateNamespaces', {
filters: getters['prefs/get'](NAMESPACE_FILTERS),
all: res.namespaces
});
commit('clusterChanged', true);
console.log('Done loading cluster.'); // eslint-disable-line no-console
},
switchNamespaces({ commit, dispatch }, value) {
dispatch('prefs/set', { key: NAMESPACE_FILTERS, value });
commit('updateNamespaces', { filters: value });
},
async onLogout({ dispatch, commit }) {
await dispatch('management/unsubscribe');
commit('managementChanged', { ready: false });
commit('management/reset');
await dispatch('cluster/unsubscribe');
commit('clusterChanged', false);
commit('cluster/reset');
commit('rancher/reset');
commit('catalog/reset');
},
nuxtServerInit({ dispatch, rootState }, nuxt) {
// Models in SSR server mode have no way to get to the route or router, so hack one in...
Object.defineProperty(rootState, '$router', { value: nuxt.app.router });
Object.defineProperty(rootState, '$route', { value: nuxt.route });
dispatch('prefs/loadCookies');
},
nuxtClientInit({ dispatch, rootState }, nuxt) {
Object.defineProperty(rootState, '$router', { value: nuxt.app.router });
Object.defineProperty(rootState, '$route', { value: nuxt.route });
dispatch('management/rehydrateSubscribe');
dispatch('cluster/rehydrateSubscribe');
dispatch('prefs/loadCookies');
dispatch('prefs/loadTheme');
},
loadingError({ commit, redirect }, err) {
commit('setError', err);
redirect('/fail-whale');
}
};