mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-04-24 01:46:36 +02:00
download hosts.txt without proxy
This commit is contained in:
parent
da1397ff76
commit
db2d0df2c4
2 changed files with 53 additions and 46 deletions
|
@ -142,7 +142,7 @@ namespace client
|
||||||
f << it.first << "," << it.second.ToBase32 () << std::endl;
|
f << it.first << "," << it.second.ToBase32 () << std::endl;
|
||||||
num++;
|
num++;
|
||||||
}
|
}
|
||||||
LogPrint (eLogInfo, num, " addresses save");
|
LogPrint (eLogInfo, num, " addresses saved");
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
LogPrint (eLogError, "Can't open file ", filename);
|
LogPrint (eLogError, "Can't open file ", filename);
|
||||||
|
@ -150,17 +150,33 @@ namespace client
|
||||||
}
|
}
|
||||||
|
|
||||||
//---------------------------------------------------------------------
|
//---------------------------------------------------------------------
|
||||||
AddressBook::AddressBook (): m_IsLoaded (false), m_IsDowloading (false)
|
AddressBook::AddressBook (): m_IsLoaded (false), m_IsDownloading (false),
|
||||||
|
m_DefaultSubscription (nullptr)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
AddressBook::~AddressBook ()
|
AddressBook::~AddressBook ()
|
||||||
{
|
{
|
||||||
|
if (m_IsDownloading)
|
||||||
|
{
|
||||||
|
LogPrint (eLogInfo, "Subscription is downloading. Waiting for temination...");
|
||||||
|
for (int i = 0; i < 30; i++)
|
||||||
|
{
|
||||||
|
if (!m_IsDownloading)
|
||||||
|
{
|
||||||
|
LogPrint (eLogInfo, "Subscription download complete");
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
std::this_thread::sleep_for (std::chrono::seconds (1)); // wait for 1 seconds
|
||||||
|
}
|
||||||
|
LogPrint (eLogError, "Subscription download hangs");
|
||||||
|
}
|
||||||
if (m_Storage)
|
if (m_Storage)
|
||||||
{
|
{
|
||||||
m_Storage->Save (m_Addresses);
|
m_Storage->Save (m_Addresses);
|
||||||
delete m_Storage;
|
delete m_Storage;
|
||||||
}
|
}
|
||||||
|
delete m_DefaultSubscription;
|
||||||
}
|
}
|
||||||
|
|
||||||
AddressBookStorage * AddressBook::CreateStorage ()
|
AddressBookStorage * AddressBook::CreateStorage ()
|
||||||
|
@ -239,29 +255,6 @@ namespace client
|
||||||
return m_Storage->GetAddress (ident, identity);
|
return m_Storage->GetAddress (ident, identity);
|
||||||
}
|
}
|
||||||
|
|
||||||
void AddressBook::LoadHostsFromI2P ()
|
|
||||||
{
|
|
||||||
std::string content;
|
|
||||||
int http_code = i2p::util::http::httpRequestViaI2pProxy("http://udhdrtrcetjm5sxzskjyr5ztpeszydbh4dpl3pl4utgqqw2v4jna.b32.i2p/hosts.txt", content);
|
|
||||||
if (http_code == 200)
|
|
||||||
{
|
|
||||||
std::ofstream f_save(i2p::util::filesystem::GetFullPath("hosts.txt").c_str(), std::ofstream::out);
|
|
||||||
if (f_save.is_open())
|
|
||||||
{
|
|
||||||
f_save << content;
|
|
||||||
f_save.close();
|
|
||||||
}
|
|
||||||
else
|
|
||||||
LogPrint (eLogError, "Can't write hosts.txt");
|
|
||||||
m_IsLoaded = false;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
LogPrint (eLogError, "Failed to download hosts.txt");
|
|
||||||
m_IsDowloading = false;
|
|
||||||
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
void AddressBook::LoadHosts ()
|
void AddressBook::LoadHosts ()
|
||||||
{
|
{
|
||||||
if (!m_Storage)
|
if (!m_Storage)
|
||||||
|
@ -272,27 +265,31 @@ namespace client
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
// otherwise try hosts.txt
|
// try hosts.txt first
|
||||||
std::ifstream f (i2p::util::filesystem::GetFullPath ("hosts.txt").c_str (), std::ofstream::in); // in text mode
|
std::ifstream f (i2p::util::filesystem::GetFullPath ("hosts.txt").c_str (), std::ofstream::in); // in text mode
|
||||||
if (!f.is_open ())
|
if (f.is_open ())
|
||||||
{
|
{
|
||||||
LogPrint (eLogInfo, "hosts.txt not found. Try to load...");
|
LoadHostsFromStream (f);
|
||||||
if (!m_IsDowloading)
|
m_IsLoaded = true;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
// if not found download it from http://i2p-projekt.i2p/hosts.txt
|
||||||
|
LogPrint (eLogInfo, "hosts.txt not found. Try to download it from default subscription...");
|
||||||
|
if (!m_IsDownloading)
|
||||||
{
|
{
|
||||||
m_IsDowloading = true;
|
m_IsDownloading = true;
|
||||||
std::thread load_hosts(&AddressBook::LoadHostsFromI2P, this);
|
if (!m_DefaultSubscription)
|
||||||
load_hosts.detach();
|
m_DefaultSubscription = new AddressBookSubscription (*this, DEFAULT_SUBSCRIPTION_ADDRESS);
|
||||||
|
m_DefaultSubscription->CheckSubscription ();
|
||||||
}
|
}
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
LoadHostsFromStream (f);
|
|
||||||
m_Storage->Save (m_Addresses);
|
|
||||||
m_IsLoaded = true;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void AddressBook::LoadHostsFromStream (std::istream& f)
|
void AddressBook::LoadHostsFromStream (std::istream& f)
|
||||||
{
|
{
|
||||||
|
std::unique_lock<std::mutex> l(m_AddressBookMutex);
|
||||||
int numAddresses = 0;
|
int numAddresses = 0;
|
||||||
std::string s;
|
std::string s;
|
||||||
while (!f.eof ())
|
while (!f.eof ())
|
||||||
|
@ -316,7 +313,12 @@ namespace client
|
||||||
numAddresses++;
|
numAddresses++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
LogPrint (eLogInfo, numAddresses, " addresses loaded");
|
LogPrint (eLogInfo, numAddresses, " addresses processed");
|
||||||
|
if (numAddresses > 0)
|
||||||
|
{
|
||||||
|
m_IsLoaded = true;
|
||||||
|
m_Storage->Save (m_Addresses);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
AddressBookSubscription::AddressBookSubscription (AddressBook& book, const std::string& link):
|
AddressBookSubscription::AddressBookSubscription (AddressBook& book, const std::string& link):
|
||||||
|
@ -327,7 +329,7 @@ namespace client
|
||||||
void AddressBookSubscription::CheckSubscription ()
|
void AddressBookSubscription::CheckSubscription ()
|
||||||
{
|
{
|
||||||
std::thread load_hosts(&AddressBookSubscription::Request, this);
|
std::thread load_hosts(&AddressBookSubscription::Request, this);
|
||||||
load_hosts.detach();
|
load_hosts.detach(); // TODO: use join
|
||||||
}
|
}
|
||||||
|
|
||||||
void AddressBookSubscription::Request ()
|
void AddressBookSubscription::Request ()
|
||||||
|
@ -397,6 +399,7 @@ namespace client
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
LogPrint (eLogError, "Can't resolve ", u.host_);
|
LogPrint (eLogError, "Can't resolve ", u.host_);
|
||||||
|
m_Book.SetIsDownloading (false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,6 +5,7 @@
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <map>
|
#include <map>
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
|
#include <mutex>
|
||||||
#include "base64.h"
|
#include "base64.h"
|
||||||
#include "util.h"
|
#include "util.h"
|
||||||
#include "Identity.h"
|
#include "Identity.h"
|
||||||
|
@ -14,6 +15,8 @@ namespace i2p
|
||||||
{
|
{
|
||||||
namespace client
|
namespace client
|
||||||
{
|
{
|
||||||
|
const char DEFAULT_SUBSCRIPTION_ADDRESS[] = "http://udhdrtrcetjm5sxzskjyr5ztpeszydbh4dpl3pl4utgqqw2v4jna.b32.i2p/hosts.txt";
|
||||||
|
|
||||||
class AddressBookStorage // interface for storage
|
class AddressBookStorage // interface for storage
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
@ -41,19 +44,20 @@ namespace client
|
||||||
void InsertAddress (const i2p::data::IdentityEx& address);
|
void InsertAddress (const i2p::data::IdentityEx& address);
|
||||||
|
|
||||||
void LoadHostsFromStream (std::istream& f);
|
void LoadHostsFromStream (std::istream& f);
|
||||||
|
void SetIsDownloading (bool isDownloading) { m_IsDownloading = isDownloading; };
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
||||||
AddressBookStorage * CreateStorage ();
|
AddressBookStorage * CreateStorage ();
|
||||||
|
|
||||||
void LoadHosts ();
|
void LoadHosts ();
|
||||||
void LoadHostsFromI2P ();
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
||||||
|
std::mutex m_AddressBookMutex;
|
||||||
std::map<std::string, i2p::data::IdentHash> m_Addresses;
|
std::map<std::string, i2p::data::IdentHash> m_Addresses;
|
||||||
AddressBookStorage * m_Storage;
|
AddressBookStorage * m_Storage;
|
||||||
bool m_IsLoaded, m_IsDowloading;
|
volatile bool m_IsLoaded, m_IsDownloading;
|
||||||
|
AddressBookSubscription * m_DefaultSubscription; // in case if we don't know any addresses yet
|
||||||
};
|
};
|
||||||
|
|
||||||
class AddressBookSubscription
|
class AddressBookSubscription
|
||||||
|
|
Loading…
Add table
Reference in a new issue