mirror of https://github.com/qTox/qTox.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
119 lines
4.8 KiB
119 lines
4.8 KiB
/* |
|
Copyright © 2015 by The qTox Project |
|
|
|
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 "install_osx.h" |
|
#include <QApplication> |
|
#include <QMessageBox> |
|
#include <QDebug> |
|
#include <QProcess> |
|
#include <QDir> |
|
#include <QFileInfo> |
|
#include <QStandardPaths> |
|
|
|
#include <unistd.h> |
|
|
|
void osx::moveToAppFolder() |
|
{ |
|
if (qApp->applicationDirPath() != "/Applications/qtox.app/Contents/MacOS") |
|
{ |
|
qDebug() << "OS X: Not in Applications folder"; |
|
|
|
QMessageBox AskInstall; |
|
AskInstall.setIcon(QMessageBox::Question); |
|
AskInstall.setWindowModality(Qt::ApplicationModal); |
|
AskInstall.setText("Move to Applications folder?"); |
|
AskInstall.setInformativeText("I can move myself to the Applications folder, keeping your downloads folder less cluttered.\r\n"); |
|
AskInstall.setStandardButtons(QMessageBox::Yes|QMessageBox::No); |
|
AskInstall.setDefaultButton(QMessageBox::Yes); |
|
|
|
int AskInstallAttempt = AskInstall.exec(); //Actually ask the user |
|
|
|
if (AskInstallAttempt == QMessageBox::Yes) |
|
{ |
|
QProcess *sudoprocess = new QProcess; |
|
QProcess *qtoxprocess = new QProcess; |
|
|
|
QString bindir = qApp->applicationDirPath(); |
|
QString appdir = bindir; |
|
appdir.chop(15); |
|
QString sudo = bindir + "/qtox_sudo rsync -avzhpltK " + appdir + " /Applications"; |
|
QString qtox = "open /Applications/qtox.app"; |
|
|
|
QString appdir_noqtox = appdir; |
|
appdir_noqtox.chop(8); |
|
|
|
if ((appdir_noqtox + "qtox.app") != appdir) //quick safety check |
|
{ |
|
qDebug() << "OS X: Attmepted to delete non qTox directory!"; |
|
exit(EXIT_UPDATE_MACX_FAIL); |
|
} |
|
|
|
QDir old_app(appdir); |
|
|
|
sudoprocess->start(sudo); //Where the magic actually happens, safety checks ^ |
|
sudoprocess->waitForFinished(); |
|
|
|
if (old_app.removeRecursively()) //We've just deleted the running program |
|
qDebug() << "OS X: Cleaned up old directory"; |
|
else |
|
qDebug() << "OS X: This should never happen, the directory failed to delete"; |
|
|
|
if (fork() != 0) //Forking is required otherwise it won't actually cleanly launch |
|
exit(EXIT_UPDATE_MACX); |
|
|
|
qtoxprocess->start(qtox); |
|
|
|
exit(0); //Actually kills it |
|
} |
|
} |
|
} |
|
// migrateProfiles() is compatabilty code that can be removed down the line when the time seems right. |
|
void osx::migrateProfiles() |
|
{ |
|
QString oldPath = QDir::cleanPath(QStandardPaths::writableLocation(QStandardPaths::HomeLocation) + QDir::separator() + |
|
"Library" + QDir::separator() + "Preferences" + QDir::separator() + "tox"); |
|
QFileInfo checkDir(oldPath); |
|
|
|
QString newPath = QDir::cleanPath(QStandardPaths::writableLocation(QStandardPaths::HomeLocation) + QDir::separator() |
|
+ "Library" + QDir::separator() + "Application Support" + QDir::separator() + "Tox"); |
|
QDir dir; |
|
|
|
if (checkDir.exists() && checkDir.isDir()) |
|
{ |
|
qDebug() << "OS X: Old settings directory detected migrating to default"; |
|
if( !dir.rename(oldPath, newPath) ) |
|
{ |
|
qDebug() << "OS X: Profile migration failed. ~/Library/Application Support/Tox already exists. Using alternate migration method."; |
|
QString OSXMigrater = "../Resources/OSX-Migrater.sh" ; |
|
QProcess::execute(OSXMigrater); |
|
QMessageBox MigrateProfile; |
|
MigrateProfile.setIcon(QMessageBox::Information); |
|
MigrateProfile.setWindowModality(Qt::ApplicationModal); |
|
MigrateProfile.setText("Alternate profile migration method used."); |
|
MigrateProfile.setInformativeText("It has been detected that your profiles \nwhere migrated to the new settings directory; \nusing the alternate migration method. \n\nA backup can be found in your: \n/Users/[USER]/.Tox-Backup[DATE-TIME] \n\nJust in case. \r\n"); |
|
MigrateProfile.exec(); |
|
} |
|
} |
|
else |
|
{ |
|
qDebug() << "OS X: Old settings directory not detected"; |
|
} |
|
} |
|
// End migrateProfiles() compatibility code
|
|
|