mirror of
https://github.com/grafana/grafana.git
synced 2025-02-10 23:55:47 -06:00
* ServiceAccounts: able to get upgrade status * Banner with API keys migration info * Show API keys migration info on Service accounts page * Migrate individual API keys * Use transaction for key migration * Migrate all api keys to service accounts * Hide api keys after migration * Migrate API keys separately for each org * Revert API key * Revert key API method * Rename migration actions and reducers * Fix linter errors * Tests for migrating single API key * Tests for migrating all api keys * More tests * Fix reverting tokens * API: rename convert to migrate * Add api route descriptions to methods * rearrange methods in api.go * Refactor: rename and move some methods * Prevent assigning tokens to non-existing service accounts * Refactor: ID TO Id * Refactor: fix error message * Delete service account if migration failed * Fix linter errors
236 lines
7.1 KiB
TypeScript
236 lines
7.1 KiB
TypeScript
import React, { PureComponent } from 'react';
|
|
import { connect, ConnectedProps } from 'react-redux';
|
|
|
|
// Utils
|
|
import { rangeUtil } from '@grafana/data';
|
|
import { InlineField, InlineSwitch, VerticalGroup } from '@grafana/ui';
|
|
import appEvents from 'app/core/app_events';
|
|
import EmptyListCTA from 'app/core/components/EmptyListCTA/EmptyListCTA';
|
|
import Page from 'app/core/components/Page/Page';
|
|
import config from 'app/core/config';
|
|
import { contextSrv } from 'app/core/core';
|
|
import { getNavModel } from 'app/core/selectors/navModel';
|
|
import { getTimeZone } from 'app/features/profile/state/selectors';
|
|
import { AccessControlAction, ApiKey, NewApiKey, StoreState } from 'app/types';
|
|
import { ShowModalReactEvent } from 'app/types/events';
|
|
|
|
import { APIKeysMigratedCard } from './APIKeysMigratedCard';
|
|
import { ApiKeysActionBar } from './ApiKeysActionBar';
|
|
import { ApiKeysAddedModal } from './ApiKeysAddedModal';
|
|
import { ApiKeysController } from './ApiKeysController';
|
|
import { ApiKeysForm } from './ApiKeysForm';
|
|
import { ApiKeysTable } from './ApiKeysTable';
|
|
import { MigrateToServiceAccountsCard } from './MigrateToServiceAccountsCard';
|
|
import {
|
|
addApiKey,
|
|
deleteApiKey,
|
|
migrateApiKey,
|
|
migrateAll,
|
|
loadApiKeys,
|
|
toggleIncludeExpired,
|
|
getApiKeysMigrationStatus,
|
|
hideApiKeys,
|
|
} from './state/actions';
|
|
import { setSearchQuery } from './state/reducers';
|
|
import { getApiKeys, getApiKeysCount, getIncludeExpired, getIncludeExpiredDisabled } from './state/selectors';
|
|
|
|
function mapStateToProps(state: StoreState) {
|
|
const canCreate = contextSrv.hasAccess(AccessControlAction.ActionAPIKeysCreate, true);
|
|
|
|
return {
|
|
navModel: getNavModel(state.navIndex, 'apikeys'),
|
|
apiKeys: getApiKeys(state.apiKeys),
|
|
searchQuery: state.apiKeys.searchQuery,
|
|
apiKeysCount: getApiKeysCount(state.apiKeys),
|
|
hasFetched: state.apiKeys.hasFetched,
|
|
timeZone: getTimeZone(state.user),
|
|
includeExpired: getIncludeExpired(state.apiKeys),
|
|
includeExpiredDisabled: getIncludeExpiredDisabled(state.apiKeys),
|
|
canCreate: canCreate,
|
|
apiKeysMigrated: state.apiKeys.apiKeysMigrated,
|
|
};
|
|
}
|
|
|
|
const mapDispatchToProps = {
|
|
loadApiKeys,
|
|
deleteApiKey,
|
|
migrateApiKey,
|
|
migrateAll,
|
|
setSearchQuery,
|
|
toggleIncludeExpired,
|
|
addApiKey,
|
|
getApiKeysMigrationStatus,
|
|
hideApiKeys,
|
|
};
|
|
|
|
const connector = connect(mapStateToProps, mapDispatchToProps);
|
|
|
|
interface OwnProps {}
|
|
|
|
export type Props = OwnProps & ConnectedProps<typeof connector>;
|
|
|
|
interface State {
|
|
isAdding: boolean;
|
|
}
|
|
|
|
export class ApiKeysPageUnconnected extends PureComponent<Props, State> {
|
|
constructor(props: Props) {
|
|
super(props);
|
|
}
|
|
|
|
componentDidMount() {
|
|
this.fetchApiKeys();
|
|
this.props.getApiKeysMigrationStatus();
|
|
}
|
|
|
|
async fetchApiKeys() {
|
|
await this.props.loadApiKeys();
|
|
}
|
|
|
|
onDeleteApiKey = (key: ApiKey) => {
|
|
this.props.deleteApiKey(key.id!);
|
|
};
|
|
|
|
onMigrateAll = () => {
|
|
this.props.migrateAll();
|
|
};
|
|
|
|
onMigrateApiKey = (key: ApiKey) => {
|
|
this.props.migrateApiKey(key.id!);
|
|
};
|
|
|
|
onSearchQueryChange = (value: string) => {
|
|
this.props.setSearchQuery(value);
|
|
};
|
|
|
|
onIncludeExpiredChange = (event: React.SyntheticEvent<HTMLInputElement>) => {
|
|
this.props.toggleIncludeExpired();
|
|
};
|
|
|
|
onAddApiKey = (newApiKey: NewApiKey) => {
|
|
const openModal = (apiKey: string) => {
|
|
const rootPath = window.location.origin + config.appSubUrl;
|
|
|
|
appEvents.publish(
|
|
new ShowModalReactEvent({
|
|
props: {
|
|
apiKey,
|
|
rootPath,
|
|
},
|
|
component: ApiKeysAddedModal,
|
|
})
|
|
);
|
|
};
|
|
|
|
const secondsToLive = newApiKey.secondsToLive;
|
|
try {
|
|
const secondsToLiveAsNumber = secondsToLive ? rangeUtil.intervalToSeconds(secondsToLive) : null;
|
|
const apiKey: ApiKey = {
|
|
...newApiKey,
|
|
secondsToLive: secondsToLiveAsNumber,
|
|
};
|
|
this.props.addApiKey(apiKey, openModal);
|
|
this.setState((prevState: State) => {
|
|
return {
|
|
...prevState,
|
|
isAdding: false,
|
|
};
|
|
});
|
|
} catch (err) {
|
|
console.error(err);
|
|
}
|
|
};
|
|
|
|
onHideApiKeys = async () => {
|
|
await this.props.hideApiKeys();
|
|
window.location.reload();
|
|
};
|
|
|
|
render() {
|
|
const {
|
|
hasFetched,
|
|
navModel,
|
|
apiKeysCount,
|
|
apiKeys,
|
|
searchQuery,
|
|
timeZone,
|
|
includeExpired,
|
|
includeExpiredDisabled,
|
|
canCreate,
|
|
apiKeysMigrated,
|
|
} = this.props;
|
|
|
|
if (!hasFetched) {
|
|
return (
|
|
<Page navModel={navModel}>
|
|
<Page.Contents isLoading={true}>{}</Page.Contents>
|
|
</Page>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<Page navModel={navModel}>
|
|
<Page.Contents isLoading={false}>
|
|
<ApiKeysController>
|
|
{({ isAdding, toggleIsAdding }) => {
|
|
const showCTA = !isAdding && apiKeysCount === 0 && !apiKeysMigrated;
|
|
const showTable = apiKeysCount > 0;
|
|
return (
|
|
<>
|
|
{/* TODO: remove feature flag check before GA */}
|
|
{config.featureToggles.serviceAccounts && !apiKeysMigrated && (
|
|
<MigrateToServiceAccountsCard onMigrate={this.onMigrateAll} />
|
|
)}
|
|
{config.featureToggles.serviceAccounts && apiKeysMigrated && (
|
|
<APIKeysMigratedCard onHideApiKeys={this.onHideApiKeys} />
|
|
)}
|
|
{showCTA ? (
|
|
<EmptyListCTA
|
|
title="You haven't added any API keys yet."
|
|
buttonIcon="key-skeleton-alt"
|
|
onClick={toggleIsAdding}
|
|
buttonTitle="New API key"
|
|
proTip="Remember, you can provide view-only API access to other applications."
|
|
buttonDisabled={!canCreate}
|
|
/>
|
|
) : null}
|
|
{showTable ? (
|
|
<ApiKeysActionBar
|
|
searchQuery={searchQuery}
|
|
disabled={isAdding || !canCreate}
|
|
onAddClick={toggleIsAdding}
|
|
onSearchChange={this.onSearchQueryChange}
|
|
/>
|
|
) : null}
|
|
<ApiKeysForm
|
|
show={isAdding}
|
|
onClose={toggleIsAdding}
|
|
onKeyAdded={this.onAddApiKey}
|
|
disabled={!canCreate}
|
|
/>
|
|
{showTable ? (
|
|
<VerticalGroup>
|
|
<InlineField disabled={includeExpiredDisabled} label="Include expired keys">
|
|
<InlineSwitch id="showExpired" value={includeExpired} onChange={this.onIncludeExpiredChange} />
|
|
</InlineField>
|
|
<ApiKeysTable
|
|
apiKeys={apiKeys}
|
|
timeZone={timeZone}
|
|
onMigrate={this.onMigrateApiKey}
|
|
onDelete={this.onDeleteApiKey}
|
|
/>
|
|
</VerticalGroup>
|
|
) : null}
|
|
</>
|
|
);
|
|
}}
|
|
</ApiKeysController>
|
|
</Page.Contents>
|
|
</Page>
|
|
);
|
|
}
|
|
}
|
|
|
|
const ApiKeysPage = connector(ApiKeysPageUnconnected);
|
|
export default ApiKeysPage;
|