2007-03-21 10:19:23 +00:00
|
|
|
/* <!-- copyright */
|
|
|
|
/*
|
|
|
|
* aria2 - The high speed download utility
|
|
|
|
*
|
|
|
|
* Copyright (C) 2006 Tatsuhiro Tsujikawa
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program 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 General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*
|
|
|
|
* In addition, as a special exception, the copyright holders give
|
|
|
|
* permission to link the code of portions of this program with the
|
|
|
|
* OpenSSL library under certain conditions as described in each
|
|
|
|
* individual source file, and distribute linked combinations
|
|
|
|
* including the two.
|
|
|
|
* You must obey the GNU General Public License in all respects
|
|
|
|
* for all of the code used other than OpenSSL. If you modify
|
|
|
|
* file(s) with this exception, you may extend this exception to your
|
|
|
|
* version of the file(s), but you are not obligated to do so. If you
|
|
|
|
* do not wish to do so, delete this exception statement from your
|
|
|
|
* version. If you delete this exception statement from all source
|
|
|
|
* files in the program, then also delete it here.
|
|
|
|
*/
|
|
|
|
/* copyright --> */
|
2007-10-30 12:48:01 +00:00
|
|
|
#include "AuthConfigFactory.h"
|
|
|
|
#include "Option.h"
|
|
|
|
#include "AuthConfig.h"
|
|
|
|
#include "Netrc.h"
|
2007-03-27 16:16:44 +00:00
|
|
|
#include "DefaultAuthResolver.h"
|
2007-10-30 12:48:01 +00:00
|
|
|
#include "NetrcAuthResolver.h"
|
|
|
|
#include "prefs.h"
|
|
|
|
#include "Request.h"
|
|
|
|
|
2008-02-08 15:53:45 +00:00
|
|
|
namespace aria2 {
|
|
|
|
|
2008-05-14 14:40:38 +00:00
|
|
|
const std::string AuthConfigFactory::ANONYMOUS("anonymous");
|
|
|
|
|
|
|
|
const std::string AuthConfigFactory::ARIA2USER_AT("ARIA2USER@");
|
|
|
|
|
2007-10-30 12:48:01 +00:00
|
|
|
AuthConfigFactory::AuthConfigFactory(const Option* option):
|
2008-04-20 00:50:22 +00:00
|
|
|
_option(option) {}
|
2007-10-30 12:48:01 +00:00
|
|
|
|
|
|
|
AuthConfigFactory::~AuthConfigFactory() {}
|
|
|
|
|
2008-04-20 00:50:22 +00:00
|
|
|
AuthConfigHandle
|
|
|
|
AuthConfigFactory::createAuthConfig(const RequestHandle& request) const
|
2007-10-30 12:48:01 +00:00
|
|
|
{
|
2008-05-13 14:15:23 +00:00
|
|
|
if(request->getProtocol() == Request::PROTO_HTTP ||
|
|
|
|
request->getProtocol() == Request::PROTO_HTTPS) {
|
2007-10-30 12:48:01 +00:00
|
|
|
return createHttpAuthResolver()->resolveAuthConfig(request->getHost());
|
2008-05-13 14:15:23 +00:00
|
|
|
} else if(request->getProtocol() == Request::PROTO_FTP) {
|
2007-10-30 12:48:01 +00:00
|
|
|
if(!request->getUsername().empty()) {
|
|
|
|
return createAuthConfig(request->getUsername(), request->getPassword());
|
|
|
|
} else {
|
|
|
|
return createFtpAuthResolver()->resolveAuthConfig(request->getHost());
|
|
|
|
}
|
|
|
|
} else {
|
2008-04-20 00:50:22 +00:00
|
|
|
return SharedHandle<AuthConfig>(new AuthConfig());
|
2007-10-30 12:48:01 +00:00
|
|
|
}
|
|
|
|
}
|
2007-03-21 10:19:23 +00:00
|
|
|
|
2008-04-20 00:50:22 +00:00
|
|
|
AuthConfigHandle
|
|
|
|
AuthConfigFactory::createAuthConfig(const std::string& user, const std::string& password) const
|
2007-03-21 10:19:23 +00:00
|
|
|
{
|
2008-04-20 00:50:22 +00:00
|
|
|
SharedHandle<AuthConfig> ac;
|
2007-03-21 10:19:23 +00:00
|
|
|
if(user.length() > 0) {
|
2008-04-20 00:50:22 +00:00
|
|
|
ac.reset(new AuthConfig(user, password));
|
2007-03-21 10:19:23 +00:00
|
|
|
}
|
2008-04-20 00:50:22 +00:00
|
|
|
return ac;
|
2007-03-21 10:19:23 +00:00
|
|
|
}
|
|
|
|
|
2007-10-30 12:48:01 +00:00
|
|
|
AuthResolverHandle AuthConfigFactory::createHttpAuthResolver() const
|
2007-03-21 10:19:23 +00:00
|
|
|
{
|
2008-04-20 00:50:22 +00:00
|
|
|
AbstractAuthResolverHandle resolver;
|
2008-09-25 14:37:28 +00:00
|
|
|
if(_option->getAsBool(PREF_NO_NETRC)) {
|
2008-04-20 00:50:22 +00:00
|
|
|
resolver.reset(new DefaultAuthResolver());
|
2007-03-27 16:16:44 +00:00
|
|
|
} else {
|
2008-04-20 00:50:22 +00:00
|
|
|
NetrcAuthResolverHandle authResolver(new NetrcAuthResolver());
|
2007-03-27 16:16:44 +00:00
|
|
|
authResolver->setNetrc(_netrc);
|
2008-09-25 14:37:28 +00:00
|
|
|
authResolver->ignoreDefault();
|
2007-03-27 16:16:44 +00:00
|
|
|
resolver = authResolver;
|
|
|
|
}
|
|
|
|
resolver->setUserDefinedAuthConfig(createAuthConfig(_option->get(PREF_HTTP_USER), _option->get(PREF_HTTP_PASSWD)));
|
|
|
|
return resolver;
|
2007-03-21 10:19:23 +00:00
|
|
|
}
|
|
|
|
|
2007-10-30 12:48:01 +00:00
|
|
|
AuthResolverHandle AuthConfigFactory::createFtpAuthResolver() const
|
2007-03-21 10:19:23 +00:00
|
|
|
{
|
2008-04-20 00:50:22 +00:00
|
|
|
AbstractAuthResolverHandle resolver;
|
2007-03-27 16:16:44 +00:00
|
|
|
if(_option->getAsBool(PREF_NO_NETRC)) {
|
2008-04-20 00:50:22 +00:00
|
|
|
resolver.reset(new DefaultAuthResolver());
|
2007-03-27 16:16:44 +00:00
|
|
|
} else {
|
2008-04-20 00:50:22 +00:00
|
|
|
NetrcAuthResolverHandle authResolver(new NetrcAuthResolver());
|
2007-03-27 16:16:44 +00:00
|
|
|
authResolver->setNetrc(_netrc);
|
|
|
|
resolver = authResolver;
|
|
|
|
}
|
|
|
|
resolver->setUserDefinedAuthConfig(createAuthConfig(_option->get(PREF_FTP_USER), _option->get(PREF_FTP_PASSWD)));
|
2008-05-14 14:40:38 +00:00
|
|
|
SharedHandle<AuthConfig> defaultAuthConfig
|
|
|
|
(new AuthConfig(AuthConfigFactory::ANONYMOUS,
|
|
|
|
AuthConfigFactory::ARIA2USER_AT));
|
2008-04-20 00:50:22 +00:00
|
|
|
resolver->setDefaultAuthConfig(defaultAuthConfig);
|
2007-03-27 16:16:44 +00:00
|
|
|
return resolver;
|
2007-03-21 10:19:23 +00:00
|
|
|
}
|
|
|
|
|
2007-10-30 12:48:01 +00:00
|
|
|
void AuthConfigFactory::setNetrc(const NetrcHandle& netrc)
|
|
|
|
{
|
|
|
|
_netrc = netrc;
|
|
|
|
}
|
2008-02-08 15:53:45 +00:00
|
|
|
|
|
|
|
} // namespace aria2
|