Skip to content

Commit

Permalink
Fixes #38108 - As a user I want to invalidate tokens for self(UI)
Browse files Browse the repository at this point in the history
  • Loading branch information
girijaasoni committed Dec 19, 2024
1 parent bc2dbbf commit 868bee2
Show file tree
Hide file tree
Showing 5 changed files with 84 additions and 0 deletions.
5 changes: 5 additions & 0 deletions app/views/jwt_tokens/_jwt_tokens_tab.html.erb
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<div class="tab-pane" id="jwt_tokens">
<%= react_component('JwtTokens', {
userId: @user.id,
}) %>
</div>
7 changes: 7 additions & 0 deletions app/views/users/_form.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@
<% if @editing_self || (@user.persisted? && authorized_for(hash_for_api_user_personal_access_tokens_path(user_id: @user))) %>
<li><a href='#personal_access_tokens' data-toggle='tab'><%= _('Personal Access Tokens') %></a></li>
<% end %>
<% if @editing_self %>
<li><a href='#jwt_tokens' data-toggle='tab'><%= _('JWT Tokens') %></a></li>
<% end %>
<%= render_tab_header_for(:main_tabs, :subject => @user, :form => f) %>
</ul>

Expand Down Expand Up @@ -97,6 +100,10 @@
<%= render 'personal_access_tokens/personal_access_tokens_tab', :f => f, :user => @user %>
<% end %>

<% if @editing_self %>
<%= render 'jwt_tokens/jwt_tokens_tab', :f => f, :user => @user %>
<% end %>

<div class='tab-pane' id='roles'>
<% caption = @user.inherited_admin? ? _('Admin rights are currently inherited from a user group') : '' %>
<%= checkbox_f f, :admin, help_block: caption if User.current.can_change_admin_flag? %>
Expand Down
9 changes: 9 additions & 0 deletions test/controllers/users_controller_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,15 @@ class UsersControllerTest < ActionController::TestCase
assert_nil user.jwt_secret
end

test "User should be able to invalidate jwt for self" do
User.current = users(:one)
user = User.current
FactoryBot.build(:jwt_secret, token: 'test_jwt_secret', user: user)
patch :invalidate_jwt, params: { :id => user.id }
user.reload
assert_nil user.jwt_secret
end

test 'user with edit users permission should be able to invalidate jwt for another user' do
User.current = setup_user "edit", "users"
user = users(:two)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ import LabelIcon from './common/LabelIcon';
import { WelcomeAuthSource } from './AuthSource/Welcome';
import { WelcomeConfigReports } from './ConfigReports/Welcome';
import { WelcomeArchitecture } from './Architectures/Welcome';
import JwtTokens from './users/JwtTokens/JwtTokens';

const componentRegistry = {
registry: forceSingleton('component_registry', () => ({})),
Expand Down Expand Up @@ -142,6 +143,7 @@ const coreComponents = [
{ name: 'SettingsTable', type: SettingsTable },
{ name: 'SettingUpdateModal', type: SettingUpdateModal },
{ name: 'PersonalAccessTokens', type: PersonalAccessTokens },
{ name: 'JwtTokens', type: JwtTokens },
{ name: 'ClipboardCopy', type: ClipboardCopy },
{ name: 'LabelIcon', type: LabelIcon },
{
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
import React, { Fragment } from 'react';
import { Button } from '@patternfly/react-core';
import { KeyIcon } from '@patternfly/react-icons';
import { useDispatch } from 'react-redux';
import PropTypes from 'prop-types';
import { useAPI } from '../../../common/hooks/API/APIHooks';
import { openConfirmModal } from '../../ConfirmModal';
import { APIActions } from '../../../redux/API';

Check failure on line 8 in webpack/assets/javascripts/react_app/components/users/JwtTokens/JwtTokens.js

View workflow job for this annotation

GitHub Actions / test (13, 3.0, 18)

'APIActions' is defined but never used

Check failure on line 8 in webpack/assets/javascripts/react_app/components/users/JwtTokens/JwtTokens.js

View workflow job for this annotation

GitHub Actions / test (13, 3.0, 14)

'APIActions' is defined but never used

Check failure on line 8 in webpack/assets/javascripts/react_app/components/users/JwtTokens/JwtTokens.js

View workflow job for this annotation

GitHub Actions / test (13, 2.7, 18)

'APIActions' is defined but never used

Check failure on line 8 in webpack/assets/javascripts/react_app/components/users/JwtTokens/JwtTokens.js

View workflow job for this annotation

GitHub Actions / test (13, 2.7, 14)

'APIActions' is defined but never used
import { translate as __ } from '../../../common/I18n';

const JwtTokens = ({ userId }) => {
const dispatch = useDispatch();
return (
<Fragment>
<table className="table table-bordered table-striped table-hover table-fixed">
<tbody>
<tr>
<td className="blank-slate-pf">
<div className="blank-slate-pf-icon">
<KeyIcon type="fa" name="key" color="#9c9c9c" />
</div>
<h1>{__('JWT Tokens')}</h1>
<p>
{__(
'By invalidating your JSON Web Tokens (JWTs), you will no longer be able to register hosts by using your existing JWTs.'
)}
</p>
<Button
ouiaId="invalidate-jwt-token-button"
variant="primary"
isSmall
onClick={() =>
dispatch(
openConfirmModal({
isWarning: true,
title: __('Invalidate tokens for self?'),
confirmButtonText: __('Confirm'),
onConfirm: () =>
useAPI('patch', `/users/${userId}/invalidate_jwt`, {

Check failure on line 39 in webpack/assets/javascripts/react_app/components/users/JwtTokens/JwtTokens.js

View workflow job for this annotation

GitHub Actions / test (13, 3.0, 18)

React Hook "useAPI" is called in function "onConfirm" that is neither a React function component nor a custom React Hook function

Check failure on line 39 in webpack/assets/javascripts/react_app/components/users/JwtTokens/JwtTokens.js

View workflow job for this annotation

GitHub Actions / test (13, 3.0, 14)

React Hook "useAPI" is called in function "onConfirm" that is neither a React function component nor a custom React Hook function

Check failure on line 39 in webpack/assets/javascripts/react_app/components/users/JwtTokens/JwtTokens.js

View workflow job for this annotation

GitHub Actions / test (13, 2.7, 18)

React Hook "useAPI" is called in function "onConfirm" that is neither a React function component nor a custom React Hook function

Check failure on line 39 in webpack/assets/javascripts/react_app/components/users/JwtTokens/JwtTokens.js

View workflow job for this annotation

GitHub Actions / test (13, 2.7, 14)

React Hook "useAPI" is called in function "onConfirm" that is neither a React function component nor a custom React Hook function
successToast: () =>
__('Successfully Invalidated JWTs'),
}),
})
)
}
>
{__('Invalidate JWTs')}
</Button>
</td>
</tr>
</tbody>
</table>
</Fragment>
);
};

JwtTokens.propTypes = {
userId: PropTypes.string.isRequired,
};

export default JwtTokens;

0 comments on commit 868bee2

Please sign in to comment.