/* -*- 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 Netscape Communications Corporation. All * Rights Reserved. * * Contributor(s): */ #ifdef DEBUG_dp #include #endif #include "nsCookieService.h" /* don't remove -- needed for mac build */ #include "nsCookieHTTPNotify.h" #include "nsIGenericFactory.h" #include "nsIHTTPChannel.h" #include "nsCookie.h" #include "nsIURL.h" #include "nsCRT.h" #include "nsXPIDLString.h" #include "nsIServiceManager.h" #include "nsINetModuleMgr.h" #include "nsILoadGroup.h" #include "nsICategoryManager.h" #include "nsIHTTPProtocolHandler.h" // for NS_HTTP_STARTUP_CATEGORY #include "nsIInterfaceRequestor.h" #include "nsIPrompt.h" static NS_DEFINE_CID(kINetModuleMgrCID, NS_NETMODULEMGR_CID); /////////////////////////////////// // nsISupports NS_IMPL_ISUPPORTS2(nsCookieHTTPNotify, nsIHTTPNotify, nsINetNotify); /////////////////////////////////// // nsCookieHTTPNotify Implementation NS_GENERIC_FACTORY_CONSTRUCTOR_INIT(nsCookieHTTPNotify, Init) nsresult nsCookieHTTPNotify::Create(nsISupports *aOuter, REFNSIID aIID, void **aResult) { return nsCookieHTTPNotifyConstructor(aOuter, aIID, aResult); } NS_METHOD nsCookieHTTPNotify::RegisterProc(nsIComponentManager *aCompMgr, nsIFile *aPath, const char *registryLocation, const char *componentType, const nsModuleComponentInfo *info) { // Register ourselves into the NS_CATEGORY_HTTP_STARTUP nsresult rv; nsCOMPtr catman = do_GetService(NS_CATEGORYMANAGER_CONTRACTID, &rv); if (NS_FAILED(rv)) return rv; nsXPIDLCString prevEntry; rv = catman->AddCategoryEntry(NS_HTTP_STARTUP_CATEGORY, "Http Cookie Notify", NS_COOKIEHTTPNOTIFY_CONTRACTID, PR_TRUE, PR_TRUE, getter_Copies(prevEntry)); return NS_OK; } NS_METHOD nsCookieHTTPNotify::UnregisterProc(nsIComponentManager *aCompMgr, nsIFile *aPath, const char *registryLocation, const nsModuleComponentInfo *info) { nsresult rv; nsCOMPtr catman = do_GetService(NS_CATEGORYMANAGER_CONTRACTID, &rv); if (NS_FAILED(rv)) return rv; nsXPIDLCString prevEntry; rv = catman->DeleteCategoryEntry(NS_HTTP_STARTUP_CATEGORY, NS_COOKIEHTTPNOTIFY_CONTRACTID, PR_TRUE, getter_Copies(prevEntry)); // Return value is not used from this function. return NS_OK; } NS_IMETHODIMP nsCookieHTTPNotify::Init() { mCookieHeader = getter_AddRefs(NS_NewAtom("Cookie")); if (!mCookieHeader) return NS_ERROR_OUT_OF_MEMORY; mSetCookieHeader = getter_AddRefs(NS_NewAtom("set-cookie")); if (!mSetCookieHeader) return NS_ERROR_OUT_OF_MEMORY; mExpiresHeader = getter_AddRefs(NS_NewAtom("date")); if (!mExpiresHeader) return NS_ERROR_OUT_OF_MEMORY; // Register to handing http requests and responses nsresult rv = NS_OK; nsCOMPtr pNetModuleMgr = do_GetService(kINetModuleMgrCID, &rv); if (NS_FAILED(rv)) return rv; rv = pNetModuleMgr->RegisterModule(NS_NETWORK_MODULE_MANAGER_HTTP_REQUEST_CONTRACTID, (nsIHTTPNotify *)this); if (NS_FAILED(rv)) return rv; rv = pNetModuleMgr->RegisterModule(NS_NETWORK_MODULE_MANAGER_HTTP_RESPONSE_CONTRACTID, (nsIHTTPNotify *)this); return rv; } nsCookieHTTPNotify::nsCookieHTTPNotify() { NS_INIT_REFCNT(); mCookieService = nsnull; #ifdef DEBUG_dp printf("CookieHTTPNotify Created.\n"); #endif /* DEBUG_dp */ } nsCookieHTTPNotify::~nsCookieHTTPNotify() { } NS_IMETHODIMP nsCookieHTTPNotify::SetupCookieService() { nsresult rv = NS_OK; if (!mCookieService) { mCookieService = do_GetService(NS_COOKIESERVICE_CONTRACTID, &rv); } return rv; } /////////////////////////////////// // nsIHTTPNotify NS_IMETHODIMP nsCookieHTTPNotify::ModifyRequest(nsISupports *aContext) { nsresult rv; // Preconditions NS_ENSURE_ARG_POINTER(aContext); nsCOMPtr pHTTPConnection = do_QueryInterface(aContext, &rv); if (NS_FAILED(rv)) return rv; // Get the url nsCOMPtr pURL; rv = pHTTPConnection->GetURI(getter_AddRefs(pURL)); if (NS_FAILED(rv)) return rv; // Get the original url that the user either typed in or clicked on nsCOMPtr pLoadGroup; rv = pHTTPConnection->GetLoadGroup(getter_AddRefs(pLoadGroup)); if (NS_FAILED(rv)) return rv; nsCOMPtr pChannel; if (pLoadGroup) { nsCOMPtr pRequest; rv = pLoadGroup->GetDefaultLoadRequest(getter_AddRefs(pRequest)); if (pRequest) pChannel = do_QueryInterface(pRequest); } nsCOMPtr pFirstURL; if (pChannel) { rv = pChannel->GetURI(getter_AddRefs(pFirstURL)); } else { rv = pHTTPConnection->GetURI(getter_AddRefs(pFirstURL)); } if (NS_FAILED(rv)) return rv; // Ensure that the cookie service exists rv = SetupCookieService(); if (NS_FAILED(rv)) return rv; char * cookie; rv = mCookieService->GetCookieStringFromHttp(pURL, pFirstURL, &cookie); if (NS_FAILED(rv)) return rv; // Set the cookie into the request headers if (cookie && *cookie) rv = pHTTPConnection->SetRequestHeader(mCookieHeader, cookie); nsMemory::Free((void *)cookie); return rv; } NS_IMETHODIMP nsCookieHTTPNotify::AsyncExamineResponse(nsISupports *aContext) { nsresult rv; // Preconditions NS_ENSURE_ARG_POINTER(aContext); nsCOMPtr pHTTPConnection = do_QueryInterface(aContext, &rv); if (NS_FAILED(rv)) return rv; // Get the Cookie header nsXPIDLCString cookieHeader; rv = pHTTPConnection->GetResponseHeader(mSetCookieHeader, getter_Copies(cookieHeader)); if (NS_FAILED(rv)) return rv; if (!cookieHeader) return NS_OK; // not an error, there's just no header. // Get the url nsCOMPtr pURL; rv = pHTTPConnection->GetURI(getter_AddRefs(pURL)); if (NS_FAILED(rv)) return rv; // Get the original url that the user either typed in or clicked on nsCOMPtr pLoadGroup; rv = pHTTPConnection->GetLoadGroup(getter_AddRefs(pLoadGroup)); if (NS_FAILED(rv)) return rv; nsCOMPtr pChannel; if (pLoadGroup) { nsCOMPtr pRequest; rv = pLoadGroup->GetDefaultLoadRequest(getter_AddRefs(pRequest)); if (NS_FAILED(rv)) return rv; pChannel = do_QueryInterface(pRequest); } nsCOMPtr pFirstURL; if (pChannel) { rv = pChannel->GetURI(getter_AddRefs(pFirstURL)); } else { rv = pHTTPConnection->GetURI(getter_AddRefs(pFirstURL)); } if (NS_FAILED(rv)) return rv; // Get the prompter nsCOMPtr pInterfaces; nsCOMPtr pPrompter; if (pChannel) { pChannel->GetNotificationCallbacks(getter_AddRefs(pInterfaces)); } else { pHTTPConnection->GetNotificationCallbacks(getter_AddRefs(pInterfaces)); } if (pInterfaces) pInterfaces->GetInterface(NS_GET_IID(nsIPrompt), getter_AddRefs(pPrompter)); // Get the expires nsXPIDLCString expiresHeader; rv = pHTTPConnection->GetResponseHeader(mExpiresHeader, getter_Copies(expiresHeader)); if (NS_FAILED(rv)) return rv; // Ensure that we have the cookie service rv = SetupCookieService(); if (NS_FAILED(rv)) return rv; // Save the cookie rv = mCookieService->SetCookieStringFromHttp(pURL, pFirstURL, pPrompter, cookieHeader, expiresHeader); return rv; }