forked from vgoma/crypto-pro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
getCadesProp.ts
30 lines (25 loc) · 1.13 KB
/
getCadesProp.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import { _afterPluginsLoaded } from '../../helpers/_afterPluginsLoaded';
import { _extractMeaningfulErrorMessage } from '../../helpers/_extractMeaningfulErrorMessage';
import { __cadesAsyncToken__, _generateCadesFn } from '../../helpers/_generateCadesFn';
import { Certificate } from './certificate';
/**
* Возвращает указанное внутренее свойство у сертификата в формате Cades
*
* @param propName = наименование свойства
* @returns значение запрошенного свойства
*/
export const getCadesProp = _afterPluginsLoaded(function (propName: string): any {
const cadesCertificate = (this as Certificate)._cadesCertificate;
return eval(
_generateCadesFn(function getCadesProp() {
let propertyValue;
try {
propertyValue = __cadesAsyncToken__ + cadesCertificate[propName];
} catch (error) {
console.error(error);
throw new Error(_extractMeaningfulErrorMessage(error) || 'Ошибка при обращении к свойству сертификата');
}
return propertyValue;
}),
);
});