2018-04-12 15:54:22 +02:00
|
|
|
/* === This file is part of Calamares - <http://github.com/calamares> ===
|
|
|
|
*
|
|
|
|
* Copyright 2018, Adriaan de Groot <groot@kde.org>
|
|
|
|
*
|
|
|
|
* Calamares 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 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* Calamares 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 Calamares. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2019-05-02 13:25:48 +02:00
|
|
|
#include "Interface.h"
|
2018-04-12 15:54:22 +02:00
|
|
|
|
2018-04-12 17:51:50 +02:00
|
|
|
#include "utils/Logger.h"
|
|
|
|
|
2019-05-02 13:25:48 +02:00
|
|
|
namespace CalamaresUtils::GeoIP
|
2019-05-02 11:58:52 +02:00
|
|
|
{
|
|
|
|
|
2019-05-02 13:25:48 +02:00
|
|
|
Interface::Interface(const QString& e)
|
2018-04-16 10:55:37 +02:00
|
|
|
: m_element( e )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2019-05-02 13:25:48 +02:00
|
|
|
Interface::~Interface()
|
2018-04-12 15:54:22 +02:00
|
|
|
{
|
|
|
|
}
|
2018-04-12 17:51:50 +02:00
|
|
|
|
2019-05-02 13:25:48 +02:00
|
|
|
RegionZonePair
|
|
|
|
splitTZString( const QString& tz )
|
2018-04-12 17:51:50 +02:00
|
|
|
{
|
2018-04-16 11:45:48 +02:00
|
|
|
QString timezoneString( tz );
|
|
|
|
timezoneString.remove( '\\' );
|
2018-04-17 13:32:27 +02:00
|
|
|
timezoneString.replace( ' ', '_' );
|
2018-04-16 11:45:48 +02:00
|
|
|
|
2018-04-12 17:51:50 +02:00
|
|
|
QStringList tzParts = timezoneString.split( '/', QString::SkipEmptyParts );
|
|
|
|
if ( tzParts.size() >= 2 )
|
|
|
|
{
|
|
|
|
cDebug() << "GeoIP reporting" << timezoneString;
|
|
|
|
QString region = tzParts.takeFirst();
|
|
|
|
QString zone = tzParts.join( '/' );
|
2019-05-02 12:16:08 +02:00
|
|
|
return RegionZonePair( region, zone );
|
2018-04-12 17:51:50 +02:00
|
|
|
}
|
|
|
|
|
2019-05-02 12:16:08 +02:00
|
|
|
return RegionZonePair( QString(), QString() );
|
2018-04-12 17:51:50 +02:00
|
|
|
}
|
2019-05-02 11:58:52 +02:00
|
|
|
|
|
|
|
} // namespace
|