2016-04-25 22:46:08 +08:00
|
|
|
/*
|
2016-11-28 21:33:38 +08:00
|
|
|
Copyright © 2015-2016 by The qTox Project Contributors
|
2016-04-25 22:46:08 +08:00
|
|
|
|
|
|
|
This file is part of qTox, a Qt-based graphical interface for Tox.
|
|
|
|
|
|
|
|
qTox 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.
|
|
|
|
|
|
|
|
qTox 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 qTox. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "profileimporter.h"
|
2016-08-30 04:53:31 +08:00
|
|
|
|
|
|
|
#include <QApplication>
|
2016-04-25 22:46:08 +08:00
|
|
|
#include <QFileDialog>
|
|
|
|
#include <QMessageBox>
|
2016-08-30 04:53:31 +08:00
|
|
|
#include <QPushButton>
|
|
|
|
|
2016-12-19 10:26:26 +08:00
|
|
|
#include "src/core/core.h"
|
|
|
|
#include "src/persistence/settings.h"
|
2016-08-30 04:53:31 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @class ProfileImporter
|
|
|
|
* @brief This class provides the ability to import profile.
|
|
|
|
* @note This class can be used before @a Nexus instance will be created,
|
|
|
|
* consequently it can't use @a GUI class. Therefore it should use QMessageBox
|
|
|
|
* to create dialog forms.
|
|
|
|
*/
|
2016-04-25 22:46:08 +08:00
|
|
|
|
|
|
|
ProfileImporter::ProfileImporter(QWidget *parent) : QWidget(parent)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-08-30 04:53:31 +08:00
|
|
|
/**
|
|
|
|
* @brief Show a file dialog. Selected file will be imported as Tox profile.
|
|
|
|
* @return True, if the import was succesful. False otherwise.
|
|
|
|
*/
|
2016-04-25 22:46:08 +08:00
|
|
|
bool ProfileImporter::importProfile()
|
|
|
|
{
|
2016-08-30 04:53:31 +08:00
|
|
|
QString title = tr("Import profile", "import dialog title");
|
|
|
|
QString filter = tr("Tox save file (*.tox)", "import dialog filter");
|
|
|
|
QString dir = QDir::homePath();
|
|
|
|
QString path = QFileDialog::getOpenFileName(this, title, dir, filter, 0,
|
2016-06-28 13:23:08 +08:00
|
|
|
QFileDialog::DontUseNativeDialog);
|
2016-07-30 18:17:35 +08:00
|
|
|
|
2016-08-02 08:17:45 +08:00
|
|
|
return importProfile(path);
|
2016-07-30 18:17:35 +08:00
|
|
|
}
|
|
|
|
|
2016-08-30 04:53:31 +08:00
|
|
|
/**
|
|
|
|
* @brief Asks the user a question with Yes/No choices.
|
|
|
|
* @param title Title of question window.
|
|
|
|
* @param message Text in question window.
|
|
|
|
* @return True if the answer is positive, false otherwise.
|
|
|
|
*/
|
|
|
|
bool ProfileImporter::askQuestion(QString title, QString message)
|
|
|
|
{
|
|
|
|
QMessageBox::Icon icon = QMessageBox::Warning;
|
|
|
|
QMessageBox box(icon, title, message, QMessageBox::NoButton, this);
|
|
|
|
QPushButton* pushButton1 = box.addButton(QApplication::tr("Yes"), QMessageBox::AcceptRole);
|
|
|
|
QPushButton* pushButton2 = box.addButton(QApplication::tr("No"), QMessageBox::RejectRole);
|
|
|
|
box.setDefaultButton(pushButton2);
|
|
|
|
box.setEscapeButton(pushButton2);
|
|
|
|
|
|
|
|
box.exec();
|
|
|
|
return box.clickedButton() == pushButton1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Try to import Tox profile.
|
|
|
|
* @param path Path to Tox profile.
|
|
|
|
* @return True, if the import was succesful. False otherwise.
|
|
|
|
*/
|
2016-07-30 18:17:35 +08:00
|
|
|
bool ProfileImporter::importProfile(const QString &path)
|
|
|
|
{
|
2016-04-25 22:46:08 +08:00
|
|
|
if (path.isEmpty())
|
|
|
|
return false;
|
|
|
|
|
2016-07-30 18:15:18 +08:00
|
|
|
QFileInfo info(path);
|
2016-07-30 18:17:35 +08:00
|
|
|
if (!info.exists())
|
|
|
|
{
|
2016-08-30 04:53:31 +08:00
|
|
|
QMessageBox::warning(this, tr("File doesn't exist"),
|
|
|
|
tr("Profile doesn't exist"), QMessageBox::Ok);
|
2016-07-30 18:17:35 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-07-30 18:15:18 +08:00
|
|
|
QString profile = info.completeBaseName();
|
|
|
|
|
|
|
|
if (info.suffix() != "tox")
|
|
|
|
{
|
2016-08-30 04:53:31 +08:00
|
|
|
QMessageBox::warning(this, tr("Ignoring non-Tox file", "popup title"),
|
|
|
|
tr("Warning: You have chosen a file that is not a "
|
|
|
|
"Tox save file; ignoring.", "popup text"),
|
|
|
|
QMessageBox::Ok);
|
2016-07-30 18:15:18 +08:00
|
|
|
return false; //ingore importing non-tox file
|
|
|
|
}
|
|
|
|
|
2016-08-30 04:53:31 +08:00
|
|
|
QString settingsPath = Settings::getInstance().getSettingsDirPath();
|
|
|
|
QString profilePath = QDir(settingsPath).filePath(profile + Core::TOX_EXT);
|
2016-07-30 18:15:18 +08:00
|
|
|
|
|
|
|
if (QFileInfo(profilePath).exists())
|
|
|
|
{
|
2016-07-30 18:17:35 +08:00
|
|
|
QString title = tr("Profile already exists", "import confirm title");
|
2016-08-30 04:53:31 +08:00
|
|
|
QString message = tr("A profile named \"%1\" already exists. "
|
|
|
|
"Do you want to erase it?",
|
|
|
|
"import confirm text").arg(profile);
|
|
|
|
bool erase = askQuestion(title, message);
|
2016-07-30 18:15:18 +08:00
|
|
|
|
|
|
|
if (!erase)
|
|
|
|
return false; //import canelled
|
|
|
|
|
|
|
|
QFile(profilePath).remove();
|
|
|
|
}
|
|
|
|
|
|
|
|
QFile::copy(path, profilePath);
|
2016-07-30 18:17:35 +08:00
|
|
|
// 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
|
2016-08-30 04:53:31 +08:00
|
|
|
QMessageBox::information(this, tr("Profile imported"),
|
|
|
|
tr("%1.tox was successfully imported").arg(profile),
|
|
|
|
QMessageBox::Ok);
|
|
|
|
|
2016-07-30 18:15:18 +08:00
|
|
|
return true; //import successfull
|
2016-04-25 22:46:08 +08:00
|
|
|
}
|