Esempio n. 1
0
 private bool ValidateRmsOnlineAuthenticationCertificate(RmsOnlineTpdImporter tpdImporter)
 {
     this.result.SetTask(Strings.InfoCheckingRmsOnlineAuthenticationCertificate);
     try
     {
         X509Certificate2 x509Certificate = tpdImporter.LoadAuthenticationCertificate();
         DateTime         t = (DateTime)ExDateTime.UtcNow;
         if (x509Certificate.NotBefore > t)
         {
             return(this.result.SetFailureResult(Strings.ErrorRmsOnlineAuthenticationCertificateNotYetValid, null, true));
         }
         if (x509Certificate.NotAfter < t)
         {
             return(this.result.SetFailureResult(Strings.ErrorRmsOnlineAuthenticationCertificateExpired, null, true));
         }
         if (x509Certificate.NotAfter - this.certificateWarningPeriod < t)
         {
             return(this.result.SetFailureResult(Strings.WarningRmsOnlineAuthenticationCertificateExpiryApproaching(x509Certificate.NotAfter), null, false));
         }
     }
     catch (ImportTpdException ex)
     {
         return(this.result.SetFailureResult(Strings.ErrorRmsOnlineAuthenticationCertificateNotFound, ex, true));
     }
     return(this.result.SetSuccessResult(Strings.InfoRmsOnlineAuthenticationCertificateChecked));
 }
Esempio n. 2
0
        private bool ValidateTPDCanBeObtainedFromRMSOnline(RmsOnlineTpdImporter tpdImporter, out TrustedDocDomain tpd)
        {
            tpd = null;
            this.result.SetTask(Strings.InfoImportingTpdFromRmsOnline);
            bool flag;

            try
            {
                Guid externalDirectoryOrgIdThrowOnFailure = this.rmsOnlineGuidOverride;
                if (Guid.Empty == externalDirectoryOrgIdThrowOnFailure)
                {
                    externalDirectoryOrgIdThrowOnFailure = RmsUtil.GetExternalDirectoryOrgIdThrowOnFailure(this.configurationSession, this.organizationId);
                }
                tpd = tpdImporter.Import(externalDirectoryOrgIdThrowOnFailure);
                if (tpd.m_astrRightsTemplates.Length == 0)
                {
                    flag = this.result.SetSuccessResult(Strings.InfoImportingTpdFromRmsOnlineCheckedNoTemplates);
                }
                else
                {
                    flag = this.result.SetSuccessResult(Strings.InfoImportingTpdFromRmsOnlineCheckedWithTemplates(RmsUtil.TemplateNamesFromTemplateArray(tpd.m_astrRightsTemplates)));
                }
            }
            catch (ImportTpdException ex)
            {
                flag = this.result.SetFailureResult(Strings.ErrorImportingTpdFromRmsOnline, ex, true);
            }
            return(flag);
        }
Esempio n. 3
0
 public IRMConfigurationValidationResult Validate()
 {
     try
     {
         if (!this.ValidateIsTenantContext())
         {
             return(this.result);
         }
         IRMConfiguration irmconfiguration;
         if (!this.ValidateLoadTenantsIRMConfiguration(out irmconfiguration))
         {
             return(this.result);
         }
         if (!this.ValidateRmsOnlinePrerequisites(irmconfiguration))
         {
             return(this.result);
         }
         RmsOnlineTpdImporter tpdImporter = new RmsOnlineTpdImporter(irmconfiguration.RMSOnlineKeySharingLocation, this.authenticationCertificateSubjectName);
         if (!this.ValidateRmsOnlineAuthenticationCertificate(tpdImporter))
         {
             return(this.result);
         }
         TrustedDocDomain tpd;
         if (!this.ValidateTPDCanBeObtainedFromRMSOnline(tpdImporter, out tpd))
         {
             return(this.result);
         }
         if (!this.ValidateTpdSuitableForImport(irmconfiguration, tpd, tpdImporter))
         {
             return(this.result);
         }
     }
     finally
     {
         this.result.SetOverallResult();
         this.result.PrepareFinalOutput(this.organizationId);
     }
     return(this.result);
 }
Esempio n. 4
0
        private bool ValidateTpdSuitableForImport(IRMConfiguration irmConfiguration, TrustedDocDomain tpd, RmsOnlineTpdImporter tpdImporter)
        {
            this.result.SetTask(Strings.InfoCheckingTpdFromRmsOnline);
            TpdValidator tpdValidator = new TpdValidator(irmConfiguration.InternalLicensingEnabled, tpdImporter.IntranetLicensingUrl, tpdImporter.ExtranetLicensingUrl, tpdImporter.IntranetCertificationUrl, tpdImporter.ExtranetCertificationUrl, true, true, false);

            try
            {
                object obj;
                tpdValidator.ValidateTpdSuitableForImport(tpd, Strings.RmsOnline, out obj, null, null, null, null, null, null);
            }
            catch (LocalizedException ex)
            {
                return(this.result.SetFailureResult(Strings.ErrorTpdCheckingFailed, ex, true));
            }
            return(this.result.SetSuccessResult(Strings.InfoTpdFromRmsOnlineChecked));
        }