/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- * * The contents of this file are subject to the Netscape Public * License Version 1.1 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.mozilla.org/NPL/ * * Software distributed under the License is distributed on an "AS * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or * implied. See the License for the specific language governing * rights and limitations under the License. * * The Original Code is mozilla.org code. * * The Initial Developer of the Original Code is Netscape * Communications Corporation. Portions created by Netscape are * Copyright (C) 1998-2000 Netscape Communications Corporation. All * Rights Reserved. * * Contributor(s): * Norris Boyd * Mitch Stoltz */ /*describes principals which combine one or more principals*/ #include "nsAggregatePrincipal.h" #include "nsIURI.h" static NS_DEFINE_IID(kIAggregatePrincipalIID, NS_IAGGREGATEPRINCIPAL_IID); NS_IMPL_QUERY_INTERFACE4(nsAggregatePrincipal, nsIAggregatePrincipal, nsICertificatePrincipal, nsICodebasePrincipal, nsIPrincipal) NSBASEPRINCIPALS_ADDREF(nsAggregatePrincipal); NSBASEPRINCIPALS_RELEASE(nsAggregatePrincipal); ////////////////////////////////////////////////// // Methods implementing nsICertificatePrincipal // ////////////////////////////////////////////////// NS_IMETHODIMP nsAggregatePrincipal::GetCertificateID(char** aCertificateID) { if (!mCertificate) { aCertificateID = nsnull; return NS_ERROR_FAILURE; } nsCOMPtr certificate = do_QueryInterface(mCertificate); return certificate->GetCertificateID(aCertificateID); } NS_IMETHODIMP nsAggregatePrincipal::GetCommonName(char** aCommonName) { if (!mCertificate) { *aCommonName = nsnull; return NS_ERROR_FAILURE; } nsCOMPtr certificate = do_QueryInterface(mCertificate); return certificate->GetCommonName(aCommonName); } NS_IMETHODIMP nsAggregatePrincipal::SetCommonName(const char* aCommonName) { if (!mCertificate) return NS_ERROR_FAILURE; nsCOMPtr certificate = do_QueryInterface(mCertificate); return certificate->SetCommonName(aCommonName); } /////////////////////////////////////////////// // Methods implementing nsICodebasePrincipal // /////////////////////////////////////////////// NS_IMETHODIMP nsAggregatePrincipal::GetURI(nsIURI** aURI) { if (!mCodebase) { *aURI = nsnull; return NS_ERROR_FAILURE; } nsCOMPtr codebase = do_QueryInterface(mCodebase); return codebase->GetURI(aURI); } NS_IMETHODIMP nsAggregatePrincipal::GetOrigin(char** aOrigin) { if (!mCodebase) { *aOrigin = nsnull; return NS_ERROR_FAILURE; } nsCOMPtr codebase = do_QueryInterface(mCodebase); return codebase->GetOrigin(aOrigin); } NS_IMETHODIMP nsAggregatePrincipal::SameOrigin(nsIPrincipal* other, PRBool* result) { if (!mCodebase) return NS_ERROR_FAILURE; nsCOMPtr codebase = do_QueryInterface(mCodebase); return codebase->SameOrigin(other, result); } //////////////////////////////////////////////// // Methods implementing nsIAggregatePrincipal // //////////////////////////////////////////////// NS_IMETHODIMP nsAggregatePrincipal::GetCertificate(nsIPrincipal** result) { *result = mCertificate; NS_IF_ADDREF(*result); return NS_OK; } NS_IMETHODIMP nsAggregatePrincipal::GetCodebase(nsIPrincipal** result) { *result = mCodebase; NS_IF_ADDREF(*result); return NS_OK; } NS_IMETHODIMP nsAggregatePrincipal::SetCertificate(nsIPrincipal* aCertificate) { nsresult rv; //-- Make sure this really is a certificate principal if (aCertificate) { nsCOMPtr tempCertificate = do_QueryInterface(aCertificate, &rv); if (NS_FAILED(rv)) return NS_ERROR_FAILURE; } //-- If aCertificate is an aggregate, get its underlying certificate nsCOMPtr agg = do_QueryInterface(aCertificate, &rv); if (NS_SUCCEEDED(rv)) { nsCOMPtr underlying; rv = agg->GetCertificate(getter_AddRefs(underlying)); if (NS_FAILED(rv)) return NS_ERROR_FAILURE; mCertificate = underlying.get(); } else mCertificate = aCertificate; return NS_OK; } NS_IMETHODIMP nsAggregatePrincipal::SetCodebase(nsIPrincipal* aCodebase) { nsresult rv; //-- Make sure this really is a codebase principal if (aCodebase) { nsCOMPtr tempCodebase = do_QueryInterface(aCodebase, &rv); if (NS_FAILED(rv)) return NS_ERROR_FAILURE; } //-- If aCodebase is an aggregate, get its underlying codebase nsCOMPtr agg = do_QueryInterface(aCodebase, &rv); if (NS_SUCCEEDED(rv)) { nsCOMPtr underlying; rv = agg->GetCodebase(getter_AddRefs(underlying)); if (NS_FAILED(rv)) return NS_ERROR_FAILURE; mCodebase = underlying.get(); } else mCodebase = aCodebase; return NS_OK; } NS_IMETHODIMP nsAggregatePrincipal::GetPrimaryChild(nsIPrincipal** aPrimaryChild) { //-- If a certificate is present, then that's the PrimaryChild principal. // Otherwise we use the codebase. if (mCertificate) *aPrimaryChild = mCertificate.get(); else if (mCodebase) *aPrimaryChild = mCodebase.get(); else { *aPrimaryChild = nsnull; return NS_ERROR_FAILURE; } NS_IF_ADDREF(*aPrimaryChild); return NS_OK; } NS_IMETHODIMP nsAggregatePrincipal::Intersect(nsIPrincipal* other) { NS_ASSERTION(mCodebase, "Principal without codebase"); if (mCertificate) { PRBool sameCert = PR_FALSE; if (NS_FAILED(mCertificate->Equals(other, &sameCert))) return NS_ERROR_FAILURE; if (!sameCert) SetCertificate(nsnull); } return NS_OK; } /////////////////////////////////////// // Methods implementing nsIPrincipal // /////////////////////////////////////// NS_IMETHODIMP nsAggregatePrincipal::ToString(char **result) { nsCOMPtr PrimaryChild; if (NS_FAILED(GetPrimaryChild(getter_AddRefs(PrimaryChild)))) return NS_ERROR_FAILURE; return PrimaryChild->ToString(result); } NS_IMETHODIMP nsAggregatePrincipal::ToUserVisibleString(char **result) { nsCOMPtr PrimaryChild; if (NS_FAILED(GetPrimaryChild(getter_AddRefs(PrimaryChild)))) return NS_ERROR_FAILURE; return PrimaryChild->ToUserVisibleString(result); } NS_IMETHODIMP nsAggregatePrincipal::Equals(nsIPrincipal * other, PRBool * result) { *result = PR_FALSE; if (this == other) { *result = PR_TRUE; return NS_OK; } if (!other) return NS_OK; nsresult rv; nsCOMPtr otherAgg = do_QueryInterface(other, &rv); if (NS_FAILED(rv)) return NS_OK; //-- Two aggregates are equal if both codebase and certificate are equal PRBool certEqual = PR_TRUE; if (mCertificate) { mCertificate->Equals(other, &certEqual); if(NS_FAILED(rv)) return rv; } PRBool cbEqual = PR_TRUE; if (mCodebase) { rv = mCodebase->Equals(other, &cbEqual); if(NS_FAILED(rv)) return rv; } if (mCertificate || mCodebase) // At least one must be present *result = certEqual && cbEqual; return NS_OK; } NS_IMETHODIMP nsAggregatePrincipal::HashValue(PRUint32 *result) { nsCOMPtr PrimaryChild; if (NS_FAILED(GetPrimaryChild(getter_AddRefs(PrimaryChild)))) return NS_ERROR_FAILURE; return PrimaryChild->HashValue(result); } NS_IMETHODIMP nsAggregatePrincipal::CanEnableCapability(const char *capability, PRInt16 *result) { nsCOMPtr PrimaryChild; if (NS_FAILED(GetPrimaryChild(getter_AddRefs(PrimaryChild)))) return NS_ERROR_FAILURE; return PrimaryChild->CanEnableCapability(capability, result); } NS_IMETHODIMP nsAggregatePrincipal::SetCanEnableCapability(const char *capability, PRInt16 canEnable) { nsCOMPtr PrimaryChild; if (NS_FAILED(GetPrimaryChild(getter_AddRefs(PrimaryChild)))) return NS_ERROR_FAILURE; return PrimaryChild->SetCanEnableCapability(capability, canEnable); } NS_IMETHODIMP nsAggregatePrincipal::IsCapabilityEnabled(const char *capability, void *annotation, PRBool *result) { nsCOMPtr PrimaryChild; if (NS_FAILED(GetPrimaryChild(getter_AddRefs(PrimaryChild)))) return NS_ERROR_FAILURE; return PrimaryChild->IsCapabilityEnabled(capability, annotation, result); } NS_IMETHODIMP nsAggregatePrincipal::EnableCapability(const char *capability, void **annotation) { nsCOMPtr PrimaryChild; if (NS_FAILED(GetPrimaryChild(getter_AddRefs(PrimaryChild)))) return NS_ERROR_FAILURE; return PrimaryChild->EnableCapability(capability, annotation); } NS_IMETHODIMP nsAggregatePrincipal::RevertCapability(const char *capability, void **annotation) { nsCOMPtr PrimaryChild; if (NS_FAILED(GetPrimaryChild(getter_AddRefs(PrimaryChild)))) return NS_ERROR_FAILURE; return PrimaryChild->RevertCapability(capability, annotation); } NS_IMETHODIMP nsAggregatePrincipal::DisableCapability(const char *capability, void **annotation) { nsCOMPtr PrimaryChild; if (NS_FAILED(GetPrimaryChild(getter_AddRefs(PrimaryChild)))) return NS_ERROR_FAILURE; return PrimaryChild->DisableCapability(capability, annotation); } NS_IMETHODIMP nsAggregatePrincipal::GetPreferences(char** aPrefName, char** aID, char** aGrantedList, char** aDeniedList) { nsCOMPtr PrimaryChild; if (NS_FAILED(GetPrimaryChild(getter_AddRefs(PrimaryChild)))) return NS_ERROR_FAILURE; return PrimaryChild->GetPreferences(aPrefName, aID, aGrantedList, aDeniedList); } ///////////////////////////////////////////// // Constructor, Destructor, initialization // ///////////////////////////////////////////// nsAggregatePrincipal::nsAggregatePrincipal() { NS_INIT_ISUPPORTS(); } nsAggregatePrincipal::~nsAggregatePrincipal() { }