mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-06 17:16:12 +00:00
2677d5c111
Prior to the changes here, nsNSSCertValidity had the following issues: - Did not check for NSS shut down. - Provided an irrelevant zero argument constructor. - Did not explicitly delete the unwanted copy constructor and assignment operators. - Misc style issues. - Did not have a dedicated test. MozReview-Commit-ID: JUPtk1OjsNg --HG-- extra : rebase_source : 2f6475c842b8c1c2570a7a5e4e9f87f0bb12deae
131 lines
3.2 KiB
C++
131 lines
3.2 KiB
C++
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
#include "nsNSSCertValidity.h"
|
|
|
|
#include "cert.h"
|
|
#include "mozilla/Assertions.h"
|
|
#include "nsCOMPtr.h"
|
|
#include "nsComponentManagerUtils.h"
|
|
#include "nsReadableUtils.h"
|
|
|
|
NS_IMPL_ISUPPORTS(nsX509CertValidity, nsIX509CertValidity)
|
|
|
|
nsX509CertValidity::nsX509CertValidity(const mozilla::UniqueCERTCertificate& cert)
|
|
: mTimesInitialized(false)
|
|
{
|
|
MOZ_ASSERT(cert);
|
|
if (!cert) {
|
|
return;
|
|
}
|
|
|
|
nsNSSShutDownPreventionLock locker;
|
|
if (isAlreadyShutDown()) {
|
|
return;
|
|
}
|
|
|
|
if (CERT_GetCertTimes(cert.get(), &mNotBefore, &mNotAfter) == SECSuccess) {
|
|
mTimesInitialized = true;
|
|
}
|
|
}
|
|
|
|
nsX509CertValidity::~nsX509CertValidity()
|
|
{
|
|
nsNSSShutDownPreventionLock locker;
|
|
if (isAlreadyShutDown()) {
|
|
return;
|
|
}
|
|
|
|
shutdown(calledFromObject);
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsX509CertValidity::GetNotBefore(PRTime* aNotBefore)
|
|
{
|
|
NS_ENSURE_ARG(aNotBefore);
|
|
|
|
if (!mTimesInitialized) {
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
*aNotBefore = mNotBefore;
|
|
return NS_OK;
|
|
}
|
|
|
|
nsresult
|
|
nsX509CertValidity::FormatTime(const PRTime& aTimeDate,
|
|
PRTimeParamFn aParamFn,
|
|
const nsTimeFormatSelector aTimeFormatSelector,
|
|
nsAString& aFormattedTimeDate)
|
|
{
|
|
if (!mTimesInitialized)
|
|
return NS_ERROR_FAILURE;
|
|
|
|
nsCOMPtr<nsIDateTimeFormat> dateFormatter = nsIDateTimeFormat::Create();
|
|
if (!dateFormatter) {
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
PRExplodedTime explodedTime;
|
|
PR_ExplodeTime(const_cast<PRTime&>(aTimeDate), aParamFn, &explodedTime);
|
|
return dateFormatter->FormatPRExplodedTime(nullptr, kDateFormatLong,
|
|
aTimeFormatSelector,
|
|
&explodedTime, aFormattedTimeDate);
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsX509CertValidity::GetNotBeforeLocalTime(nsAString& aNotBeforeLocalTime)
|
|
{
|
|
return FormatTime(mNotBefore, PR_LocalTimeParameters,
|
|
kTimeFormatSeconds, aNotBeforeLocalTime);
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsX509CertValidity::GetNotBeforeLocalDay(nsAString& aNotBeforeLocalDay)
|
|
{
|
|
return FormatTime(mNotBefore, PR_LocalTimeParameters,
|
|
kTimeFormatNone, aNotBeforeLocalDay);
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsX509CertValidity::GetNotBeforeGMT(nsAString& aNotBeforeGMT)
|
|
{
|
|
return FormatTime(mNotBefore, PR_GMTParameters,
|
|
kTimeFormatSeconds, aNotBeforeGMT);
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsX509CertValidity::GetNotAfter(PRTime* aNotAfter)
|
|
{
|
|
NS_ENSURE_ARG(aNotAfter);
|
|
|
|
if (!mTimesInitialized) {
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
*aNotAfter = mNotAfter;
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsX509CertValidity::GetNotAfterLocalTime(nsAString& aNotAfterLocaltime)
|
|
{
|
|
return FormatTime(mNotAfter, PR_LocalTimeParameters,
|
|
kTimeFormatSeconds, aNotAfterLocaltime);
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsX509CertValidity::GetNotAfterLocalDay(nsAString& aNotAfterLocalDay)
|
|
{
|
|
return FormatTime(mNotAfter, PR_LocalTimeParameters,
|
|
kTimeFormatNone, aNotAfterLocalDay);
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
nsX509CertValidity::GetNotAfterGMT(nsAString& aNotAfterGMT)
|
|
{
|
|
return FormatTime(mNotAfter, PR_GMTParameters,
|
|
kTimeFormatSeconds, aNotAfterGMT);
|
|
}
|