mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-25 08:31:09 +02:00
* adds error parsing method to api service * replaces apiErrorMessage util instances with api service parseError * removes apiErrorMessage util and tests * removes ApiError type * fixes issue in isLocalStorageSupported error handling
61 lines
1.6 KiB
TypeScript
61 lines
1.6 KiB
TypeScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import Component from '@glimmer/component';
|
|
import { service } from '@ember/service';
|
|
import { action } from '@ember/object';
|
|
import { tracked } from '@glimmer/tracking';
|
|
|
|
import type ApiService from 'vault/services/api';
|
|
import type FlashMessageService from 'vault/services/flash-messages';
|
|
import type { HTMLElementEvent } from 'vault/forms';
|
|
|
|
/**
|
|
* @module ToolsUnwrap
|
|
* ToolsUnwrap components are components that sys/wrapping/rewrap functionality
|
|
*
|
|
* @example
|
|
* <Tools::Unwrap />
|
|
*/
|
|
|
|
export default class ToolsUnwrap extends Component {
|
|
@service declare readonly api: ApiService;
|
|
@service declare readonly flashMessages: FlashMessageService;
|
|
|
|
@tracked token = '';
|
|
@tracked unwrapData: unknown = '';
|
|
@tracked unwrapDetails = {};
|
|
@tracked errorMessage = '';
|
|
|
|
@action
|
|
reset() {
|
|
this.token = '';
|
|
this.unwrapData = '';
|
|
this.unwrapDetails = {};
|
|
this.errorMessage = '';
|
|
}
|
|
|
|
@action
|
|
async handleSubmit(evt: HTMLElementEvent<HTMLFormElement>) {
|
|
evt.preventDefault();
|
|
const data = { token: this.token.trim() };
|
|
|
|
try {
|
|
const resp = await this.api.sys.unwrap(data);
|
|
this.unwrapData = (resp && resp.data) || resp.auth;
|
|
this.unwrapDetails = {
|
|
'Request ID': resp.requestId,
|
|
'Lease ID': resp.leaseId || 'None',
|
|
Renewable: resp.renewable,
|
|
'Lease Duration': resp.leaseDuration || 'None',
|
|
};
|
|
this.flashMessages.success('Unwrap was successful.');
|
|
} catch (error) {
|
|
const { message } = await this.api.parseError(error);
|
|
this.errorMessage = message;
|
|
}
|
|
}
|
|
}
|