2020-08-25 16:05:56 +02:00
|
|
|
/* === This file is part of Calamares - <https://calamares.io> ===
|
2020-06-23 11:13:55 +02:00
|
|
|
*
|
2020-05-30 16:15:03 +02:00
|
|
|
* SPDX-FileCopyrightText: 2018 Adriaan de Groot <groot@kde.org>
|
|
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
2020-08-25 16:05:56 +02:00
|
|
|
*
|
|
|
|
* Calamares is Free Software: see the License-Identifier above.
|
2020-05-30 16:15:03 +02:00
|
|
|
*
|
2018-04-12 15:54:22 +02:00
|
|
|
*/
|
|
|
|
|
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"
|
2020-06-23 11:13:55 +02:00
|
|
|
#include "utils/String.h"
|
2018-04-12 17:51:50 +02:00
|
|
|
|
2019-05-13 12:25:14 +02:00
|
|
|
namespace CalamaresUtils
|
|
|
|
{
|
|
|
|
namespace GeoIP
|
2019-05-02 11:58:52 +02:00
|
|
|
{
|
|
|
|
|
2019-08-08 12:32:21 +02:00
|
|
|
Interface::Interface( const QString& e )
|
2018-04-16 10:55:37 +02:00
|
|
|
: m_element( e )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2019-08-08 12:32:21 +02:00
|
|
|
Interface::~Interface() {}
|
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
|
|
|
|
2020-06-23 11:13:55 +02:00
|
|
|
QStringList tzParts = timezoneString.split( '/', SplitSkipEmptyParts );
|
2018-04-12 17:51:50 +02:00
|
|
|
if ( tzParts.size() >= 2 )
|
|
|
|
{
|
|
|
|
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
|
|
|
|
2019-08-08 12:32:21 +02:00
|
|
|
} // namespace GeoIP
|
|
|
|
} // namespace CalamaresUtils
|