2 // This file is part of the aMule Project.
4 // Copyright (c) 2004-2008 Marcelo Roberto Jimenez ( phoenix@amule.org )
5 // Copyright (c) 2006-2008 aMule Team ( admin@amule.org / http://www.amule.org )
7 // Any parts of this program derived from the xMule, lMule or eMule project,
8 // or contributed by third-party developers are copyrighted by their
11 // This program is free software; you can redistribute it and/or modify
12 // it under the terms of the GNU General Public License as published by
13 // the Free Software Foundation; either version 2 of the License, or
14 // (at your option) any later version.
16 // This program is distributed in the hope that it will be useful,
17 // but WITHOUT ANY WARRANTY; without even the implied warranty of
18 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 // GNU General Public License for more details.
21 // You should have received a copy of the GNU General Public License
22 // along with this program; if not, write to the Free Software
23 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
28 // Country flags are from FAMFAMFAM (http://www.famfamfam.com)
30 // Flag icons - http://www.famfamfam.com
32 // These icons are public domain, and as such are free for any use (attribution appreciated but not required).
34 // Note that these flags are named using the ISO3166-1 alpha-2 country codes where appropriate.
35 // A list of codes can be found at http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2
37 // If you find these icons useful, please donate via paypal to mjames@gmail.com
38 // (or click the donate button available at http://www.famfamfam.com/lab/icons/silk)
40 // Contact: mjames@gmail.com
43 // MSVC projects can't include files configuration dependent, so just double-check the #define
44 #ifdef ENABLE_IP2COUNTRY
47 // MSVC needs it here, MingW needs it below
49 #include "IP2Country.h"
52 #include "amule.h" // For theApp
53 #include "Preferences.h" // For thePrefs
54 #include "CFile.h" // For CPath
55 #include "HTTPDownload.h"
56 #include "Logger.h" // For AddLogLineM()
57 #include <common/Format.h> // For CFormat()
58 #include "common/FileFunctions.h" // For UnpackArchive
59 #include <common/StringFunctions.h> // For unicode2char()
60 #include "pixmaps/flags_xpm/CountryFlags.h"
66 #include "IP2Country.h"
68 CIP2Country::CIP2Country()
71 m_DataBaseName
= theApp
->ConfigDir
+ wxT("GeoIP.dat");
72 if (m_CountryDataMap
.empty()) {
73 // this must go to enable - when all usages of GetCountryData() (ClientListCtrl, DownloadListCtrl) are surrounded with an IsEnabled()
74 // right now, flags are loaded even when it's disabled
79 void CIP2Country::Enable()
82 if (!CPath::FileExists(m_DataBaseName
)) {
87 m_geoip
= GeoIP_open(unicode2char(m_DataBaseName
), GEOIP_STANDARD
);
90 void CIP2Country::Update()
92 AddLogLineM(false,CFormat(_("Download new GeoIP.dat from %s")) % thePrefs::GetGeoIPUpdateUrl());
93 CHTTPDownloadThread
*downloader
= new CHTTPDownloadThread(thePrefs::GetGeoIPUpdateUrl(), m_DataBaseName
+ wxT(".download"), HTTP_GeoIP
);
98 void CIP2Country::Disable()
101 GeoIP_delete(m_geoip
);
106 void CIP2Country::DownloadFinished(uint32 result
)
110 // download succeeded. Switch over to new database.
111 wxString newDat
= m_DataBaseName
+ wxT(".download");
113 // Try to unpack the file, might be an archive
114 const wxChar
* geoip_files
[] = {
119 if (UnpackArchive(CPath(newDat
), geoip_files
).second
== EFT_Error
) {
120 AddLogLineM(false, _("Download of GeoIP.dat file failed, aborting update."));
124 if (wxFileExists(m_DataBaseName
)) {
125 if (!wxRemoveFile(m_DataBaseName
)) {
126 AddLogLineM(false, _("Failed to remove GeoIP.dat file, aborting update."));
131 if (!wxRenameFile(newDat
, m_DataBaseName
)) {
132 AddLogLineM(false, _("Failed to rename new GeoIP.dat file, aborting update."));
138 AddLogLineM(false, _("Successfully updated GeoIP.dat"));
140 AddLogLineM(false, _("Error updating GeoIP.dat"));
143 AddLogLineM(false, CFormat(_("Failed to download GeoIP.dat from %s")) % thePrefs::GetGeoIPUpdateUrl());
144 // if it failed and there is no database, turn it off
145 if (!wxFileExists(m_DataBaseName
)) {
146 thePrefs::SetGeoIPEnabled(false);
151 void CIP2Country::LoadFlags()
153 // Load data from xpm files
154 for (int i
= 0; i
< flags::FLAGS_XPM_SIZE
; ++i
) {
155 CountryData countrydata
;
156 countrydata
.Name
= char2unicode(flags::flagXPMCodeVector
[i
].code
);
157 countrydata
.Flag
= wxImage(flags::flagXPMCodeVector
[i
].xpm
);
159 if (countrydata
.Flag
.IsOk()) {
160 m_CountryDataMap
[countrydata
.Name
] = countrydata
;
162 AddLogLineM(true, _("CIP2Country::CIP2Country(): Failed to load country data from ") + countrydata
.Name
);
167 AddLogLineM(false, CFormat(_("Loaded %d flag bitmaps.")) % m_CountryDataMap
.size()); // there's never just one - no plural needed
171 CIP2Country::~CIP2Country()
177 const CountryData
& CIP2Country::GetCountryData(const wxString
&ip
)
179 // Should prevent the crash if the GeoIP database does not exists
180 if (m_geoip
== NULL
) {
181 CountryDataMap::iterator it
= m_CountryDataMap
.find(wxString(wxT("unknown")));
182 it
->second
.Name
= wxT("?");
186 const wxString CCode
= wxString(char2unicode(GeoIP_country_code_by_addr(m_geoip
, unicode2char(ip
)))).MakeLower();
188 CountryDataMap::iterator it
= m_CountryDataMap
.find(CCode
);
189 if (it
== m_CountryDataMap
.end()) {
190 // Show the code and ?? flag
191 it
= m_CountryDataMap
.find(wxString(wxT("unknown")));
192 wxASSERT(it
!= m_CountryDataMap
.end());
193 if (CCode
.IsEmpty()) {
194 it
->second
.Name
= wxT("?");
196 it
->second
.Name
= CCode
;
203 #endif // ENABLE_IP2COUNTRY