forked from opensearch-project/security-dashboards-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into safari-copy-link-fix
- Loading branch information
Showing
11 changed files
with
463 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
220 changes: 220 additions & 0 deletions
220
public/apps/configuration/panels/service-account-list.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,220 @@ | ||
/* | ||
* Copyright OpenSearch Contributors | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"). | ||
* You may not use this file except in compliance with the License. | ||
* A copy of the License is located at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* or in the "license" file accompanying this file. This file is distributed | ||
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either | ||
* express or implied. See the License for the specific language governing | ||
* permissions and limitations under the License. | ||
*/ | ||
|
||
import { | ||
EuiBadge, | ||
EuiButtonEmpty, | ||
EuiFlexGroup, | ||
EuiFlexItem, | ||
EuiInMemoryTable, | ||
EuiLink, | ||
EuiPageBody, | ||
EuiPageContent, | ||
EuiPageContentHeader, | ||
EuiPageContentHeaderSection, | ||
EuiPageHeader, | ||
EuiText, | ||
EuiTitle, | ||
Query, | ||
} from '@elastic/eui'; | ||
import { Dictionary, difference, isEmpty, map } from 'lodash'; | ||
import React, { useState } from 'react'; | ||
import { getAuthInfo } from '../../../utils/auth-info-utils'; | ||
import { AppDependencies } from '../../types'; | ||
import { API_ENDPOINT_SERVICEACCOUNTS, DocLinks } from '../constants'; | ||
import { Action, ResourceType } from '../types'; | ||
import { EMPTY_FIELD_VALUE } from '../ui-constants'; | ||
import { useContextMenuState } from '../utils/context-menu'; | ||
import { ExternalLink, tableItemsUIProps, truncatedListView } from '../utils/display-utils'; | ||
import { getUserList, InternalUsersListing } from '../utils/internal-user-list-utils'; | ||
import { showTableStatusMessage } from '../utils/loading-spinner-utils'; | ||
import { buildHashUrl } from '../utils/url-builder'; | ||
|
||
export function dictView(items: Dictionary<string>) { | ||
if (isEmpty(items)) { | ||
return EMPTY_FIELD_VALUE; | ||
} | ||
return ( | ||
<EuiFlexGroup direction="column" style={{ margin: '1px' }}> | ||
{map(items, (v, k) => ( | ||
<EuiText key={k} className={tableItemsUIProps.cssClassName}> | ||
{k}: {`"${v}"`} | ||
</EuiText> | ||
))} | ||
</EuiFlexGroup> | ||
); | ||
} | ||
|
||
export function getColumns(currentUsername: string) { | ||
return [ | ||
{ | ||
field: 'username', | ||
name: 'Username', | ||
render: (username: string) => ( | ||
<> | ||
<a href={buildHashUrl(ResourceType.users, Action.edit, username)}>{username}</a> | ||
{username === currentUsername && ( | ||
<> | ||
| ||
<EuiBadge>Current</EuiBadge> | ||
</> | ||
)} | ||
</> | ||
), | ||
sortable: true, | ||
}, | ||
{ | ||
field: 'backend_roles', | ||
name: 'Backend roles', | ||
render: truncatedListView(tableItemsUIProps), | ||
}, | ||
{ | ||
field: 'attributes', | ||
name: 'Attributes', | ||
render: dictView, | ||
truncateText: true, | ||
}, | ||
]; | ||
} | ||
|
||
export function ServiceAccountList(props: AppDependencies) { | ||
const [userData, setUserData] = React.useState<InternalUsersListing[]>([]); | ||
const [errorFlag, setErrorFlag] = React.useState(false); | ||
const [selection, setSelection] = React.useState<InternalUsersListing[]>([]); | ||
const [currentUsername, setCurrentUsername] = useState(''); | ||
const [loading, setLoading] = useState(false); | ||
const [query, setQuery] = useState<Query | null>(null); | ||
|
||
React.useEffect(() => { | ||
const fetchData = async () => { | ||
try { | ||
setLoading(true); | ||
const userDataPromise = getUserList(props.coreStart.http, ResourceType.serviceAccounts); | ||
setCurrentUsername((await getAuthInfo(props.coreStart.http)).user_name); | ||
setUserData(await userDataPromise); | ||
} catch (e) { | ||
console.log(e); | ||
setErrorFlag(true); | ||
} finally { | ||
setLoading(false); | ||
} | ||
}; | ||
|
||
fetchData(); | ||
}, [props.coreStart.http]); | ||
|
||
const actionsMenuItems = [ | ||
<EuiButtonEmpty | ||
data-test-subj="edit" | ||
key="edit" | ||
onClick={() => { | ||
window.location.href = buildHashUrl(ResourceType.users, Action.edit, selection[0].username); | ||
}} | ||
disabled={selection.length !== 1} | ||
> | ||
Edit | ||
</EuiButtonEmpty>, | ||
<EuiButtonEmpty | ||
data-test-subj="duplicate" | ||
key="duplicate" | ||
onClick={() => { | ||
window.location.href = buildHashUrl( | ||
ResourceType.users, | ||
Action.duplicate, | ||
selection[0].username | ||
); | ||
}} | ||
disabled={selection.length !== 1} | ||
> | ||
Duplicate | ||
</EuiButtonEmpty>, | ||
<EuiButtonEmpty | ||
key="export" | ||
disabled={selection.length !== 1} | ||
href={ | ||
selection.length === 1 | ||
? `${props.coreStart.http.basePath.serverBasePath}${API_ENDPOINT_SERVICEACCOUNTS}/${selection[0].username}` | ||
: '' | ||
} | ||
target="_blank" | ||
> | ||
Export JSON | ||
</EuiButtonEmpty>, | ||
]; | ||
|
||
const [actionsMenu, closeActionsMenu] = useContextMenuState('Actions', {}, actionsMenuItems); | ||
|
||
return ( | ||
<> | ||
<EuiPageHeader> | ||
<EuiTitle size="l"> | ||
<h1>Service accounts</h1> | ||
</EuiTitle> | ||
</EuiPageHeader> | ||
<EuiPageContent> | ||
<EuiPageContentHeader> | ||
<EuiPageContentHeaderSection> | ||
<EuiTitle size="s"> | ||
<h3> | ||
Service accounts | ||
<span className="panel-header-count"> | ||
{' '} | ||
({Query.execute(query || '', userData).length}) | ||
</span> | ||
</h3> | ||
</EuiTitle> | ||
<EuiText size="s" color="subdued"> | ||
Here you have a list of special accounts that represent services like extensions, | ||
plugins or other third party applications. You can map an account to a role from | ||
<EuiLink href={buildHashUrl(ResourceType.roles)}>Roles</EuiLink> | ||
“Manage mapping” | ||
<ExternalLink href={DocLinks.BackendConfigurationAuthenticationDoc} /> | ||
</EuiText> | ||
</EuiPageContentHeaderSection> | ||
<EuiPageContentHeaderSection> | ||
<EuiFlexGroup> | ||
<EuiFlexItem>{actionsMenu}</EuiFlexItem> | ||
</EuiFlexGroup> | ||
</EuiPageContentHeaderSection> | ||
</EuiPageContentHeader> | ||
<EuiPageBody> | ||
<EuiInMemoryTable | ||
tableLayout={'auto'} | ||
loading={userData === [] && !errorFlag} | ||
columns={getColumns(currentUsername)} | ||
// @ts-ignore | ||
items={userData} | ||
itemId={'username'} | ||
pagination | ||
search={{ | ||
box: { placeholder: 'Search service accounts' }, | ||
onChange: (arg) => { | ||
setQuery(arg.query); | ||
return true; | ||
}, | ||
}} | ||
// @ts-ignore | ||
selection={{ onSelectionChange: setSelection }} | ||
sorting | ||
error={ | ||
errorFlag ? 'Load data failed, please check the console log for more details.' : '' | ||
} | ||
message={showTableStatusMessage(loading, userData)} | ||
/> | ||
</EuiPageBody> | ||
</EuiPageContent> | ||
</> | ||
); | ||
} |
Oops, something went wrong.