0357790fb8
* fix default rendering of svg and allow plugins access to mount tune form * add auth-jwt component * add callback route, and allow it to be navigated to on load * add jwt as a supported auth method * use auth-jwt component and implement intial oidc flow * allow wrapping un-authed requests * pass redirect_url and properly redirect with the wrapped token * popup for login * center popup window and move to localStorage events for cross window communication because of IE11 * access window via a getter on the auth-form component * show OIDC provider name on the button * fetch default role on render of the auth-jwt component * simplify auth-form template * style callback page * refetch auth_url when path changes for auth-jwt component * fix glimmer error on alias metadata, and add back popup-metadata component * fix link in metadata page * add logo-edition component and remove use of partial for logo svg * render oidc callback template on the loading page if we're going there * add docs icon and change timeout on the auth form * move OIDC auth specific things to auth-jwt component * start to add branded buttons for OIDC providers * add google button * finish branded buttons * update glyph for error messages * update tests for auth screen not showing tabs, add adapter tests and new auth jwt tests * start auth-jwt tests * simplify auth-jwt * remove negative top margin on AlertInline * only preventDefault if there's an event * fill out tests * sort out some naming * feedback on templates and styles * clear error when starting OIDC auth and call for new auth_url * also allow 'oidc' as the auth method type * handle namespaces with OIDC auth * review feedback * use new getters in popup-metadata
97 lines
3.5 KiB
Handlebars
97 lines
3.5 KiB
Handlebars
<div class="auth-form">
|
|
{{#if showLoading}}
|
|
<div class="vault-loader">
|
|
{{partial 'svg/vault-loading'}}
|
|
</div>
|
|
{{/if}}
|
|
{{#if hasMethodsWithPath}}
|
|
<nav class="tabs is-marginless">
|
|
<ul>
|
|
{{#each methodsToShow as |method|}}
|
|
{{#with (or method.path method.type) as |methodKey|}}
|
|
<li class="{{if (and selectedAuthIsPath (eq (or selectedAuthBackend.path selectedAuthBackend.type) methodKey)) 'is-active' ''}}" data-test-auth-method>
|
|
{{#link-to 'vault.cluster.auth' cluster.name (query-params with=methodKey) data-test-auth-method-link=method.type}}
|
|
{{or method.id (capitalize method.type)}}
|
|
{{/link-to}}
|
|
</li>
|
|
{{/with}}
|
|
{{/each}}
|
|
{{#if hasMethodsWithPath}}
|
|
<li class="{{if (not selectedAuthIsPath) 'is-active' ''}}" data-test-auth-method>
|
|
{{#link-to 'vault.cluster.auth' cluster.name (query-params with='token') data-test-auth-method-link="other"}}
|
|
Other
|
|
{{/link-to}}
|
|
</li>
|
|
{{/if}}
|
|
</ul>
|
|
</nav>
|
|
{{/if}}
|
|
<div class="box is-marginless is-shadowless">
|
|
<MessageError
|
|
@errorMessage={{if (and cluster.standby hasCSPError) cspErrorText error}}
|
|
data-test-auth-error
|
|
/>
|
|
{{#if (or (not hasMethodsWithPath) (not selectedAuthIsPath))}}
|
|
<div class="field">
|
|
<label for="selectedMethod" class="is-label">
|
|
Method
|
|
</label>
|
|
<div class="control is-expanded" >
|
|
<div class="select is-fullwidth">
|
|
<select
|
|
name="selectedMethod"
|
|
id="selectedMethod"
|
|
onchange={{action (mut selectedAuth) value="target.value"}}
|
|
data-test-method-select
|
|
>
|
|
{{#each (supported-auth-backends) as |method|}}
|
|
<option selected={{eq selectedAuthBackend.type method.type}} value={{method.type}}>
|
|
{{method.typeDisplay}}
|
|
</option>
|
|
{{/each}}
|
|
</select>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{/if}}
|
|
{{#if (or (eq this.selectedAuthBackend.type "jwt") (eq this.selectedAuthBackend.type "oidc"))}}
|
|
<AuthJwt
|
|
@onError={{action (mut this.error)}}
|
|
@onLoading={{action (mut this.isLoading)}}
|
|
@onToken={{action (mut this.token)}}
|
|
@namespace={{this.namespace}}
|
|
@onNamespace={{action (mut this.namespace)}}
|
|
@onSelectedAuth={{action (mut this.selectedAuth)}}
|
|
@onSubmit={{action "doSubmit"}}
|
|
@onRoleName={{action (mut this.roleName)}}
|
|
@roleName={{this.roleName}}
|
|
@selectedAuthPath={{or this.customPath this.selectedAuthBackend.id}}
|
|
@disabled={{authenticate.isRunning}}
|
|
>
|
|
<AuthFormOptions
|
|
@customPath={{this.customPath}}
|
|
@onPathChange={{action (mut this.customPath)}}
|
|
@selectedAuthIsPath={{this.selectedAuthIsPath}}
|
|
/>
|
|
</AuthJwt>
|
|
{{else}}
|
|
<form
|
|
id="auth-form"
|
|
onsubmit={{action "doSubmit"}}
|
|
>
|
|
{{partial providerPartialName}}
|
|
{{#if (not-eq selectedAuthBackend.type "token")}}
|
|
<AuthFormOptions
|
|
@customPath={{this.customPath}}
|
|
@onPathChange={{action (mut this.customPath)}}
|
|
@selectedAuthIsPath={{this.selectedAuthIsPath}}
|
|
/>
|
|
{{/if}}
|
|
<button data-test-auth-submit=true type="submit" disabled={{authenticate.isRunning}} class="button is-primary {{if authenticate.isRunning 'is-loading'}}" id="auth-submit">
|
|
Sign In
|
|
</button>
|
|
</form>
|
|
{{/if}}
|
|
</div>
|
|
</div>
|