2014-11-08 06:06:37 +08:00
|
|
|
/*
|
|
|
|
Copyright (C) 2014 by Project Tox <https://tox.im>
|
|
|
|
|
|
|
|
This file is part of qTox, a Qt-based graphical interface for Tox.
|
|
|
|
|
|
|
|
This program is libre 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.
|
|
|
|
This program 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 COPYING file for more details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "toxsave.h"
|
2015-02-07 02:01:31 +08:00
|
|
|
#include "gui.h"
|
2014-11-08 06:06:37 +08:00
|
|
|
#include "src/core.h"
|
|
|
|
#include "src/misc/settings.h"
|
|
|
|
#include <QCoreApplication>
|
|
|
|
#include <QDir>
|
|
|
|
#include <QFileInfo>
|
|
|
|
|
2015-02-20 20:26:41 +08:00
|
|
|
bool toxSaveEventHandler(const QByteArray& eventData)
|
2014-11-08 06:06:37 +08:00
|
|
|
{
|
|
|
|
if (!eventData.endsWith(".tox"))
|
2015-02-20 20:26:41 +08:00
|
|
|
return false;
|
2014-11-08 06:06:37 +08:00
|
|
|
|
|
|
|
handleToxSave(eventData);
|
2015-02-20 20:26:41 +08:00
|
|
|
return true;
|
2014-11-08 06:06:37 +08:00
|
|
|
}
|
|
|
|
|
2015-02-20 20:26:41 +08:00
|
|
|
bool handleToxSave(const QString& path)
|
2014-11-08 06:06:37 +08:00
|
|
|
{
|
|
|
|
Core* core = Core::getInstance();
|
|
|
|
|
|
|
|
while (!core)
|
|
|
|
{
|
|
|
|
core = Core::getInstance();
|
|
|
|
qApp->processEvents();
|
|
|
|
}
|
|
|
|
|
|
|
|
while (!core->isReady())
|
|
|
|
{
|
|
|
|
qApp->processEvents();
|
|
|
|
}
|
|
|
|
|
|
|
|
QFileInfo info(path);
|
|
|
|
if (!info.exists())
|
2015-02-20 20:26:41 +08:00
|
|
|
return false;
|
2014-11-08 06:06:37 +08:00
|
|
|
|
|
|
|
QString profile = info.completeBaseName();
|
|
|
|
|
|
|
|
if (info.suffix() != "tox")
|
|
|
|
{
|
2015-02-07 02:01:31 +08:00
|
|
|
GUI::showWarning(QObject::tr("Ignoring non-Tox file", "popup title"),
|
|
|
|
QObject::tr("Warning: you've chosen a file that is not a Tox save file; ignoring.", "popup text"));
|
2015-02-20 20:26:41 +08:00
|
|
|
return false;
|
2014-11-08 06:06:37 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
QString profilePath = QDir(Settings::getSettingsDirPath()).filePath(profile + Core::TOX_EXT);
|
|
|
|
|
2015-02-07 02:01:31 +08:00
|
|
|
if (QFileInfo(profilePath).exists() && !GUI::askQuestion(QObject::tr("Profile already exists", "import confirm title"),
|
2014-11-08 06:06:37 +08:00
|
|
|
QObject::tr("A profile named \"%1\" already exists. Do you want to erase it?", "import confirm text").arg(profile)))
|
2015-02-20 20:26:41 +08:00
|
|
|
return false;
|
2014-11-08 06:06:37 +08:00
|
|
|
|
|
|
|
QFile::copy(path, profilePath);
|
|
|
|
// no good way to update the ui from here... maybe we need a Widget:refreshUi() function...
|
|
|
|
// such a thing would simplify other code as well I believe
|
2015-02-07 02:01:31 +08:00
|
|
|
GUI::showInfo(QObject::tr("Profile imported"), QObject::tr("%1.tox was successfully imported").arg(profile));
|
2015-02-20 20:26:41 +08:00
|
|
|
return true;
|
2014-11-08 06:06:37 +08:00
|
|
|
}
|