/* === This file is part of Calamares - <http://github.com/calamares> ===
 *
 *   Copyright 2015, Anke Boersma <demm@kaosx.us>
 *   Copyright 2015, Teo Mrnjavac <teo@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/>.
 */

#include "LicenseViewStep.h"

#include "LicensePage.h"
#include "JobQueue.h"
#include "GlobalStorage.h"
#include "utils/Logger.h"

#include <QVariantMap>

CALAMARES_PLUGIN_FACTORY_DEFINITION( LicenseViewStepFactory, registerPlugin<LicenseViewStep>(); )

LicenseViewStep::LicenseViewStep( QObject* parent )
    : Calamares::ViewStep( parent )
    , m_widget( new LicensePage )
{
    emit nextStatusChanged( false );
    connect( m_widget, &LicensePage::nextStatusChanged,
             this, &LicenseViewStep::nextStatusChanged );
}


LicenseViewStep::~LicenseViewStep()
{
    if ( m_widget && m_widget->parent() == nullptr )
        m_widget->deleteLater();
}


QString
LicenseViewStep::prettyName() const
{
    return tr( "License" );
}


QWidget*
LicenseViewStep::widget()
{
    return m_widget;
}


void
LicenseViewStep::next()
{
    emit done();
}


void
LicenseViewStep::back()
{}


bool
LicenseViewStep::isNextEnabled() const
{
    return m_widget->isNextEnabled();
}


bool
LicenseViewStep::isBackEnabled() const
{
    return true;
}


bool
LicenseViewStep::isAtBeginning() const
{
    return true;
}


bool
LicenseViewStep::isAtEnd() const
{
    return true;
}


QList< Calamares::job_ptr >
LicenseViewStep::jobs() const
{
    return QList< Calamares::job_ptr >();
}

void
LicenseViewStep::setConfigurationMap( const QVariantMap& configurationMap )
{
    QList< LicenseEntry > entriesList;
    if ( configurationMap.contains( "entries" ) &&
         configurationMap.value( "entries" ).type() == QVariant::List )
    {
        const auto entries = configurationMap.value( "entries" ).toList();
        for ( const QVariant& entryV : entries )
        {
            if ( entryV.type() != QVariant::Map )
                continue;

            QVariantMap entryMap = entryV.toMap();
            if ( !entryMap.contains( "id" ) ||
                 !entryMap.contains( "name" ) ||
                 !entryMap.contains( "url" ) )
                continue;

            LicenseEntry entry;
            entry.id =          entryMap[ "id" ].toString();
            entry.prettyName =  entryMap[ "name" ].toString();
            entry.prettyVendor =entryMap.value( "vendor" ).toString();
            entry.url =         QUrl( entryMap[ "url" ].toString() );
            entry.required =    entryMap.value( "required", QVariant( false ) ).toBool();

            QString entryType = entryMap.value( "type", "software" ).toString();
            if ( entryType == "driver" )
                entry.type =    LicenseEntry::Driver;
            else if ( entryType == "gpudriver" )
                entry.type =    LicenseEntry::GpuDriver;
            else if ( entryType == "browserplugin" )
                entry.type =    LicenseEntry::BrowserPlugin;
            else if ( entryType == "codec" )
                entry.type =    LicenseEntry::Codec;
            else if ( entryType == "package" )
                entry.type =    LicenseEntry::Package;
            else
                entry.type =    LicenseEntry::Software;

            entriesList.append( entry );
        }
    }

    m_widget->setEntries( entriesList );
}