2016-04-10 22:31:11 +02:00
|
|
|
/*****************************************************************************
|
|
|
|
* gta5sync GRAND THEFT AUTO V SYNC
|
2017-02-11 04:21:55 +01:00
|
|
|
* Copyright (C) 2016-2017 Syping
|
2016-04-10 22:31:11 +02:00
|
|
|
*
|
|
|
|
* This program 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.
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*****************************************************************************/
|
|
|
|
|
2016-04-14 01:27:29 +02:00
|
|
|
#include "config.h"
|
2016-04-10 22:31:11 +02:00
|
|
|
#include "AppEnv.h"
|
2016-04-14 01:27:29 +02:00
|
|
|
#include "StringParser.h"
|
2016-04-10 22:31:11 +02:00
|
|
|
#include "StandardPaths.h"
|
|
|
|
#include <QDir>
|
2016-04-11 14:44:15 +02:00
|
|
|
#include <QDebug>
|
2016-04-20 12:50:48 +02:00
|
|
|
#include <QtGlobal>
|
2016-04-10 22:31:11 +02:00
|
|
|
#include <QSettings>
|
|
|
|
#include <iostream>
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
AppEnv::AppEnv()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-04-14 01:27:29 +02:00
|
|
|
// Folder Stuff
|
|
|
|
|
2016-04-10 22:31:11 +02:00
|
|
|
QString AppEnv::getGameFolder(bool *ok)
|
|
|
|
{
|
|
|
|
QDir dir;
|
2016-12-10 03:40:42 +01:00
|
|
|
QString GTAV_FOLDER = QString::fromUtf8(qgetenv("GTAV_FOLDER"));
|
2016-04-10 22:31:11 +02:00
|
|
|
if (GTAV_FOLDER != "")
|
|
|
|
{
|
|
|
|
dir.setPath(GTAV_FOLDER);
|
|
|
|
if (dir.exists())
|
|
|
|
{
|
2016-04-23 20:15:59 +02:00
|
|
|
if (ok != NULL) *ok = true;
|
2016-04-20 12:50:48 +02:00
|
|
|
qputenv("GTAV_FOLDER", dir.absolutePath().toUtf8());
|
2016-04-10 22:31:11 +02:00
|
|
|
return dir.absolutePath();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
QString GTAV_defaultFolder = StandardPaths::documentsLocation() + QDir::separator() + "Rockstar Games" + QDir::separator() + "GTA V";
|
|
|
|
QString GTAV_returnFolder = GTAV_defaultFolder;
|
|
|
|
|
2016-12-10 03:40:42 +01:00
|
|
|
QSettings SyncSettings(GTA5SYNC_APPVENDOR, GTA5SYNC_APPSTR);
|
2016-04-10 22:31:11 +02:00
|
|
|
SyncSettings.beginGroup("dir");
|
|
|
|
bool forceDir = SyncSettings.value("force", false).toBool();
|
2016-12-10 03:40:42 +01:00
|
|
|
GTAV_returnFolder = SyncSettings.value("dir", GTAV_defaultFolder).toString();
|
|
|
|
SyncSettings.endGroup();
|
|
|
|
|
2016-04-10 22:31:11 +02:00
|
|
|
if (forceDir)
|
|
|
|
{
|
2016-12-10 03:40:42 +01:00
|
|
|
dir.setPath(GTAV_returnFolder);
|
|
|
|
if (dir.exists())
|
|
|
|
{
|
|
|
|
if (ok != 0) *ok = true;
|
|
|
|
qputenv("GTAV_FOLDER", dir.absolutePath().toUtf8());
|
|
|
|
return dir.absolutePath();
|
|
|
|
}
|
2016-04-10 22:31:11 +02:00
|
|
|
}
|
|
|
|
|
2016-12-10 03:40:42 +01:00
|
|
|
dir.setPath(GTAV_defaultFolder);
|
2016-04-10 22:31:11 +02:00
|
|
|
if (dir.exists())
|
|
|
|
{
|
2016-04-23 20:15:59 +02:00
|
|
|
if (ok != 0) *ok = true;
|
2016-04-20 12:50:48 +02:00
|
|
|
qputenv("GTAV_FOLDER", dir.absolutePath().toUtf8());
|
2016-04-10 22:31:11 +02:00
|
|
|
return dir.absolutePath();
|
|
|
|
}
|
|
|
|
|
2016-12-10 03:40:42 +01:00
|
|
|
if (!forceDir)
|
2016-04-10 22:31:11 +02:00
|
|
|
{
|
2016-12-10 03:40:42 +01:00
|
|
|
dir.setPath(GTAV_returnFolder);
|
|
|
|
if (dir.exists())
|
|
|
|
{
|
|
|
|
if (ok != 0) *ok = true;
|
|
|
|
qputenv("GTAV_FOLDER", dir.absolutePath().toUtf8());
|
|
|
|
return dir.absolutePath();
|
|
|
|
}
|
2016-04-10 22:31:11 +02:00
|
|
|
}
|
|
|
|
|
2016-04-23 20:15:59 +02:00
|
|
|
if (ok != 0) *ok = false;
|
2016-04-10 22:31:11 +02:00
|
|
|
return "";
|
|
|
|
}
|
2016-04-10 23:18:36 +02:00
|
|
|
|
|
|
|
bool AppEnv::setGameFolder(QString gameFolder)
|
|
|
|
{
|
|
|
|
QDir dir;
|
|
|
|
dir.setPath(gameFolder);
|
|
|
|
if (dir.exists())
|
|
|
|
{
|
2016-04-20 12:50:48 +02:00
|
|
|
qputenv("GTAV_FOLDER", dir.absolutePath().toUtf8());
|
2016-04-10 23:18:36 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2016-04-14 01:27:29 +02:00
|
|
|
|
|
|
|
QString AppEnv::getLangFolder()
|
|
|
|
{
|
|
|
|
return StringParser::convertBuildedString(QString::fromUtf8(GTA5SYNC_LANG));
|
|
|
|
}
|
|
|
|
|
|
|
|
QString AppEnv::getPluginsFolder()
|
|
|
|
{
|
|
|
|
return StringParser::convertBuildedString(QString::fromUtf8(GTA5SYNC_PLUG));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Web Stuff
|
|
|
|
|
|
|
|
QByteArray AppEnv::getUserAgent()
|
|
|
|
{
|
2016-12-10 03:40:42 +01:00
|
|
|
return QString("Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Firefox/45.0 %1/%2").arg(GTA5SYNC_APPSTR, GTA5SYNC_APPVER).toUtf8();
|
2016-04-14 01:27:29 +02:00
|
|
|
}
|
|
|
|
|
2016-05-09 10:24:34 +02:00
|
|
|
QUrl AppEnv::getCrewFetchingUrl(QString crewID)
|
|
|
|
{
|
|
|
|
return QUrl(QString("https://socialclub.rockstargames.com/reference/crewfeed/%1").arg(crewID));
|
|
|
|
}
|
|
|
|
|
2016-04-14 01:27:29 +02:00
|
|
|
QUrl AppEnv::getPlayerFetchingUrl(QString crewID, QString pageNumber)
|
|
|
|
{
|
|
|
|
return QUrl(QString("https://socialclub.rockstargames.com/crewsapi/GetMembersList?crewId=%1&pageNumber=%2").arg(crewID, pageNumber));
|
|
|
|
}
|