Skip to content

Commit

Permalink
MOSIP-32682: download mosip signed certificate (#300)
Browse files Browse the repository at this point in the history
Signed-off-by: SwethaKrish4 <[email protected]>
  • Loading branch information
SwethaKrish4 authored May 11, 2024
1 parent 14655fa commit 1482833
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 5 deletions.
46 changes: 43 additions & 3 deletions pmp-reactjs-ui/src/pages/PartnerCertificatesList.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,46 @@ function PartnerCertificatesList() {
navigate('/partnermanagement')
};

const getOriginalCertificate = () => {
setErrorMsg("The process of downloading the original certificate is in progress.")
}

const getMosipSignedCertificate = async (partner) => {
try {
const response = await HttpService.get('/api/partners/' + partner.partnerId + '/certificate');
if (response != null) {
const responseData = response.data;
if (responseData.errors && responseData.errors.length > 0) {
const errorMessage = responseData.errors[0].message;
setErrorMsg(errorMessage);
console.error('Error:', errorMessage);
} else {
const resData = responseData.response;
console.log('Response data:', resData);
const blob = new Blob([resData.certificateData], { type: 'application/x-x509-ca-cert' });
const url = window.URL.createObjectURL(blob);
const link = document.createElement('a');
link.href = url;
link.download = 'mosip_signed_certificate.cer';

document.body.appendChild(link);
link.click();

// Cleanup
window.URL.revokeObjectURL(url);
document.body.removeChild(link);
}

} else {
setErrorMsg("There is some error in fetching the mosip signed certificate. Try again later!");
}

} catch (err) {
console.error('Error fetching certificate:', err);
setErrorMsg(err);
}
};

useEffect(() => {
const fetchData = async () => {
try {
Expand Down Expand Up @@ -81,7 +121,7 @@ function PartnerCertificatesList() {
<>
{errorMsg && (
<div className="absolute flex justify-end w-full max-w-7xl">
<div className="flex justify-between items-center max-w-96 min-h-14 min-w-72 bg-[#C61818] rounded-xl p-3">
<div className="flex justify-between items-center max-w-96 min-h-14 min-w-72 bg-[#C61818] rounded-xl p-3 mr-10">
<div>
<p className="text-xs font-semibold text-white break-words">
{errorMsg}
Expand Down Expand Up @@ -201,7 +241,7 @@ function PartnerCertificatesList() {
{activeBtn && (
<div className="absolute py-2 px-1 mr-2 right-48 origin-bottom-left rounded-md bg-white shadow-lg ring-gray-50 border duration-700">
<div className="flex items-center border-b-2 justify-between cursor-pointer">
<a href="#" className="block px-4 py-2 text-xs font-semibold text-gray-900">Original Certificate</a>
<a onClick={() => getOriginalCertificate()} className="block px-4 py-2 text-xs font-semibold text-gray-900">Original Certificate</a>
<svg
xmlns="http://www.w3.org/2000/svg"
width="12.266" height="12.266" viewBox="0 0 15.266 15.266">
Expand All @@ -212,7 +252,7 @@ function PartnerCertificatesList() {

</div>
<div className="flex items-center cursor-pointer">
<a href="#" className="block px-4 py-2 text-xs font-semibold text-gray-900">MOSIP Signed Certificate</a>
<a onClick={() => getMosipSignedCertificate(partner)} className="block px-4 py-2 text-xs font-semibold text-gray-900">MOSIP Signed Certificate</a>
<svg
xmlns="http://www.w3.org/2000/svg"
width="12.266" height="12.266" viewBox="0 0 15.266 15.266">
Expand Down
4 changes: 2 additions & 2 deletions pmp-reactjs-ui/src/pages/UploadCertificate.js
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ function UploadCertificate({ closePopup, partnerData }) {
</button>
{isDropdownOpen && (
<div className="absolute z-50 top-10 left-0 w-full">
<div class="z-10 border border-gray-400 bg-white rounded-lg shadow-lg w-full dark:bg-gray-700 cursor-pointer">
<div className="z-10 border border-gray-400 bg-white rounded-lg shadow-lg w-full dark:bg-gray-700 cursor-pointer">
<a className="block px-4 py-2 text-base text-blue-950 hover:bg-gray-100" onClick={() => selectDomainType("DEVICE")}>DEVICE</a>
<div className="border-gray-100 border-t mx-2"></div>
<a className="block px-4 py-2 text-base text-blue-950 hover:bg-gray-100" onClick={() => selectDomainType("FTM")}>FTM</a>
Expand All @@ -166,7 +166,7 @@ function UploadCertificate({ closePopup, partnerData }) {
<div className="flex items-center justify-center w-full h-36 p-4 border-2 border-blue-300 rounded-lg bg-blue-50 bg-opacity-25 text-center cursor-pointer relative">
{uploading && (
<div className="flex flex-col items-center justify-center mb-2 cursor-pointer">
<svg aria-hidden="true" class="w-8 h-8 text-gray-200 animate-spin fill-blue-800" viewBox="0 0 100 101" fill="none" xmlns="http://www.w3.org/2000/svg">
<svg aria-hidden="true" className="w-8 h-8 text-gray-200 animate-spin fill-blue-800" viewBox="0 0 100 101" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M100 50.5908C100 78.2051 77.6142 100.591 50 100.591C22.3858 100.591 0 78.2051 0 50.5908C0 22.9766 22.3858 0.59082 50 0.59082C77.6142 0.59082 100 22.9766 100 50.5908ZM9.08144 50.5908C9.08144 73.1895 27.4013 91.5094 50 91.5094C72.5987 91.5094 90.9186 73.1895 90.9186 50.5908C90.9186 27.9921 72.5987 9.67226 50 9.67226C27.4013 9.67226 9.08144 27.9921 9.08144 50.5908Z" fill="currentColor" />
<path d="M93.9676 39.0409C96.393 38.4038 97.8624 35.9116 97.0079 33.5539C95.2932 28.8227 92.871 24.3692 89.8167 20.348C85.8452 15.1192 80.8826 10.7238 75.2124 7.41289C69.5422 4.10194 63.2754 1.94025 56.7698 1.05124C51.7666 0.367541 46.6976 0.446843 41.7345 1.27873C39.2613 1.69328 37.813 4.19778 38.4501 6.62326C39.0873 9.04874 41.5694 10.4717 44.0505 10.1071C47.8511 9.54855 51.7191 9.52689 55.5402 10.0491C60.8642 10.7766 65.9928 12.5457 70.6331 15.2552C75.2735 17.9648 79.3347 21.5619 82.5849 25.841C84.9175 28.9121 86.7997 32.2913 88.1811 35.8758C89.083 38.2158 91.5421 39.6781 93.9676 39.0409Z" fill="currentFill" />
</svg>
Expand Down

0 comments on commit 1482833

Please sign in to comment.