55 lines
1.6 KiB
JavaScript
55 lines
1.6 KiB
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*/
|
|
|
|
import { parseCertificate } from 'vault/utils/parse-pki-cert';
|
|
import ApplicationSerializer from '../application';
|
|
|
|
export default class PkiIssuerSerializer extends ApplicationSerializer {
|
|
primaryKey = 'issuer_id';
|
|
|
|
attrs = {
|
|
caChain: { serialize: false },
|
|
certificate: { serialize: false },
|
|
commonName: { serialize: false },
|
|
isDefault: { serialize: false },
|
|
isRoot: { serialize: false },
|
|
issuerId: { serialize: false },
|
|
keyId: { serialize: false },
|
|
parsedCertificate: { serialize: false },
|
|
serialNumber: { serialize: false },
|
|
};
|
|
|
|
normalizeResponse(store, primaryModelClass, payload, id, requestType) {
|
|
if (payload.data.certificate) {
|
|
// Parse certificate back from the API and add to payload
|
|
const parsedCert = parseCertificate(payload.data.certificate);
|
|
const data = {
|
|
...payload.data,
|
|
parsed_certificate: parsedCert,
|
|
common_name: parsedCert.common_name,
|
|
};
|
|
return super.normalizeResponse(store, primaryModelClass, { ...payload, data }, id, requestType);
|
|
}
|
|
return super.normalizeResponse(...arguments);
|
|
}
|
|
|
|
// rehydrate each issuers model so all model attributes are accessible from the LIST response
|
|
normalizeItems(payload) {
|
|
if (payload.data) {
|
|
if (payload.data?.keys && Array.isArray(payload.data.keys)) {
|
|
return payload.data.keys.map((key) => {
|
|
return {
|
|
issuer_id: key,
|
|
...payload.data.key_info[key],
|
|
};
|
|
});
|
|
}
|
|
Object.assign(payload, payload.data);
|
|
delete payload.data;
|
|
}
|
|
return payload;
|
|
}
|
|
}
|