2019-02-18 13:06:27 +00:00
|
|
|
import React from 'react';
|
2020-08-13 08:15:45 +00:00
|
|
|
import { Trans } from 'react-i18next';
|
2019-02-18 13:06:27 +00:00
|
|
|
import isAfter from 'date-fns/is_after';
|
|
|
|
import addDays from 'date-fns/add_days';
|
2020-08-13 08:15:45 +00:00
|
|
|
import { useSelector } from 'react-redux';
|
2019-02-18 13:06:27 +00:00
|
|
|
import Topline from './Topline';
|
|
|
|
import { EMPTY_DATE } from '../../helpers/constants';
|
|
|
|
|
2020-12-08 11:08:39 +00:00
|
|
|
const EXPIRATION_ENUM = {
|
|
|
|
VALID: 'VALID',
|
|
|
|
EXPIRED: 'EXPIRED',
|
|
|
|
EXPIRING: 'EXPIRING',
|
|
|
|
};
|
|
|
|
|
|
|
|
const EXPIRATION_STATE = {
|
|
|
|
[EXPIRATION_ENUM.EXPIRED]: {
|
|
|
|
toplineType: 'danger',
|
|
|
|
i18nKey: 'topline_expired_certificate',
|
|
|
|
},
|
|
|
|
[EXPIRATION_ENUM.EXPIRING]: {
|
|
|
|
toplineType: 'warning',
|
|
|
|
i18nKey: 'topline_expiring_certificate',
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
const getExpirationFlags = (not_after) => {
|
|
|
|
const DAYS_BEFORE_EXPIRATION = 5;
|
|
|
|
|
|
|
|
const now = Date.now();
|
|
|
|
const isExpiring = isAfter(addDays(now, DAYS_BEFORE_EXPIRATION), not_after);
|
|
|
|
const isExpired = isAfter(now, not_after);
|
|
|
|
|
|
|
|
return {
|
|
|
|
isExpiring,
|
|
|
|
isExpired,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
const getExpirationEnumKey = (not_after) => {
|
|
|
|
const { isExpiring, isExpired } = getExpirationFlags(not_after);
|
|
|
|
|
|
|
|
if (isExpired) {
|
|
|
|
return EXPIRATION_ENUM.EXPIRED;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isExpiring) {
|
|
|
|
return EXPIRATION_ENUM.EXPIRING;
|
|
|
|
}
|
|
|
|
|
|
|
|
return EXPIRATION_ENUM.VALID;
|
|
|
|
};
|
|
|
|
|
2020-08-13 08:15:45 +00:00
|
|
|
const EncryptionTopline = () => {
|
|
|
|
const not_after = useSelector((state) => state.encryption.not_after);
|
|
|
|
|
|
|
|
if (not_after === EMPTY_DATE) {
|
|
|
|
return null;
|
2019-02-21 12:39:15 +00:00
|
|
|
}
|
|
|
|
|
2020-12-08 11:08:39 +00:00
|
|
|
const expirationStateKey = getExpirationEnumKey(not_after);
|
2019-02-18 13:06:27 +00:00
|
|
|
|
2020-12-08 11:08:39 +00:00
|
|
|
if (expirationStateKey === EXPIRATION_ENUM.VALID) {
|
|
|
|
return null;
|
2020-08-13 08:15:45 +00:00
|
|
|
}
|
|
|
|
|
2020-12-08 11:08:39 +00:00
|
|
|
const { toplineType, i18nKey } = EXPIRATION_STATE[expirationStateKey];
|
|
|
|
|
|
|
|
return (
|
|
|
|
<Topline type={toplineType}>
|
2019-06-06 18:06:19 +00:00
|
|
|
<Trans components={[<a href="#encryption" key="0">link</a>]}>
|
2020-12-08 11:08:39 +00:00
|
|
|
{i18nKey}
|
2019-02-21 12:39:15 +00:00
|
|
|
</Trans>
|
|
|
|
</Topline>
|
2020-12-08 11:08:39 +00:00
|
|
|
);
|
2019-02-18 13:06:27 +00:00
|
|
|
};
|
|
|
|
|
2020-08-13 08:15:45 +00:00
|
|
|
export default EncryptionTopline;
|