// This file is part of BOINC.
// http://boinc.berkeley.edu
// Copyright (C) 2008 University of California
//
// BOINC is free software; you can redistribute it and/or modify it
// under the terms of the GNU Lesser General Public License
// as published by the Free Software Foundation,
// either version 3 of the License, or (at your option) any later version.
//
// BOINC is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
// See the GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with BOINC. If not, see .
#include
#include "str_util.h"
#include "browser.h"
bool detect_cookie_safari(std::string& project_url, std::string& name, std::string& value)
{
NSHTTPCookieStorage *cookieStorage;
NSArray *theCookies;
NSHTTPCookie *aCookie;
NSURL *theURL;
NSString *theURLString, *theValueString, *theNameString;
NSDate *expirationDate;
unsigned int i, n;
bool retval = false;
NSAutoreleasePool* pool;
pool = [[NSAutoreleasePool alloc] init];
theURLString = [ NSString stringWithCString:project_url.c_str() ];
theURL = [ NSURL URLWithString:theURLString ];
cookieStorage = [ NSHTTPCookieStorage sharedHTTPCookieStorage ];
if (cookieStorage == NULL)
goto bail;
theCookies = [ cookieStorage cookiesForURL:theURL ];
if (theCookies == NULL)
goto bail;
n = [ theCookies count ];
for (i=0; i