Security News
New Python Packaging Proposal Aims to Solve Phantom Dependency Problem with SBOMs
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.
@cpelements/rh-account-dropdown
Advanced tools
Navigation account element for PatternFly Elements
This is a companion component with pfe-navigation, it creates an account dropdown with appropriate content based on a user's roles and permissions.
This component should be a direct child of pfe-navigation
, and should have the attribute slot="account"
<rh-account-dropdown slot="account"></rh-account-dropdown>
If it should be in logged out state:
login-link
should be set to a valid login URLIf it should be in a logged in state:
logout-link
should be set to a valid logout URL.userData
, e.g.:
document.querySelector("rh-account-dropdown").userData =
howeverYouGetTheJWT("make it so");
Tip: Don't add the
login-link
attribute until the auth state of the user is known, this will prevent a login link from flashing while the user's status is being figured out.
The userData
method expects an object that at minimum should have:
{
"realm_access": {
"roles": []
},
"REDHAT_LOGIN": "wesruv@wakka-wakka.com",
"lastName": "Ruvalcaba",
"account_number": "123456",
"preferred_username": "wesruv@wakka-wakka.com",
"firstName": "Wes",
"email": "wesruv@wakka-wakka.com",
"username": "wesruv@wakka-wakka.com"
}
You may find that your JWT does not have these exact properties, for example instead of firstName you have given_name, or you do not have the last name in your token at all. This is because the claims available on the JWT varies per client.
Please take a moment to read the Supported JWT Claims documented by the external SSO team.
Start a request with the External SSO team by using the email it-user-request@redhat.com which will open a help.redhat.com support ticket. Request for the missing claims to be added. When you can use a supported claim instead of a legacy claim, please do so.
For example, I can send the user data object:
{
"realm_access": {
"roles": []
},
"REDHAT_LOGIN": myJwt.preferred_username,
"lastName": myJwt.family_name,
"account_number": myJwt.organization.id,
"preferred_username": myJwt.preferred_username,
"firstName": myJwt.given_name
"email": myJwt.email
"username": myJwt.preferred_username
}
realm_access.roles
is checked for two roles:
admin:org:all
portal_manage_subscriptions
If the user has these roles they should be present in the array, if not they can be left out.
login-link
: Link to login user, required for anonymous users non-keycloack implementations will be put directly into an <a>
tag.logout-link
: Link to logout user, required for logged in users non-keycloack implementations will be put directly into an <a>
tag.env
: Tells the component what environment the links in the dropdown should point to, options are 'dev', 'qa', 'stage', and '' for prod.avatar-url
: Provided by the component, used by pfe-navigation
full-name
: Provided by the component, used by pfe-navigation
rh-account-dropdown:ready
: Fires when component is ready to receive userDatapfe-shadow-dom-event
: Fires when an element is clicked inside of a dropdown in the shadow root. This is for analytics to properly categorize and report the event. event.detail
has:
target
Element clickedparent
the pfe-navigation
elementIs meant to be used inside of pfe-navigation as optional functionality.
For any questions or help, file an issue contact the CPFED group.
`npm start`
`npm run test`
`npm run build`
From the PFElements root directory, run:
`npm run demo`
Navigation-account (and all PFElements) use Prettier to auto-format JS and JSON. The style rules get applied when you commit a change. If you choose to, you can integrate your editor with Prettier to have the style rules applied on every save.
FAQs
Navigation account element for PatternFly Elements
The npm package @cpelements/rh-account-dropdown receives a total of 90 weekly downloads. As such, @cpelements/rh-account-dropdown popularity was classified as not popular.
We found that @cpelements/rh-account-dropdown demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.
Security News
Socket CEO Feross Aboukhadijeh discusses open source security challenges, including zero-day attacks and supply chain risks, on the Cyber Security Council podcast.
Security News
Research
Socket researchers uncover how threat actors weaponize Out-of-Band Application Security Testing (OAST) techniques across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.