summaryrefslogtreecommitdiffstats
path: root/application/GuiUtil.cpp
blob: cab3721dc2d376dc7001a02faee4925446bd6d40 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
#include "GuiUtil.h"

#include <QClipboard>
#include <QApplication>
#include <QFileDialog>

#include "dialogs/ProgressDialog.h"
#include "net/PasteUpload.h"
#include "dialogs/CustomMessageBox.h"

#include "MultiMC.h"
#include <settings/SettingsObject.h>
#include <DesktopServices.h>
#include <BuildConfig.h>

QString GuiUtil::uploadPaste(const QString &text, QWidget *parentWidget)
{
	ProgressDialog dialog(parentWidget);
	auto APIKeySetting = MMC->settings()->get("PasteEEAPIKey").toString();
	if(APIKeySetting == "multimc")
	{
		APIKeySetting = BuildConfig.PASTE_EE_KEY;
	}
	std::unique_ptr<PasteUpload> paste(new PasteUpload(parentWidget, text, APIKeySetting));

	if (!paste->validateText())
	{
		CustomMessageBox::selectable(
			parentWidget, QObject::tr("Upload failed"),
			QObject::tr("The log file is too big. You'll have to upload it manually."),
			QMessageBox::Warning)->exec();
		return QString();
	}

	dialog.execWithTask(paste.get());
	if (!paste->successful())
	{
		CustomMessageBox::selectable(parentWidget, QObject::tr("Upload failed"),
									 paste->failReason(), QMessageBox::Critical)->exec();
		return QString();
	}
	else
	{
		const QString link = paste->pasteLink();
		setClipboardText(link);
		DesktopServices::openUrl(link);
		CustomMessageBox::selectable(
			parentWidget, QObject::tr("Upload finished"),
			QObject::tr("The <a href=\"%1\">link to the uploaded log</a> has been opened in "
						"the default "
						"browser and placed in your clipboard.").arg(link),
			QMessageBox::Information)->exec();
		return link;
	}
}

void GuiUtil::setClipboardText(const QString &text)
{
	QApplication::clipboard()->setText(text);
}


QStringList GuiUtil::BrowseForFiles(QString context, QString caption, QString filter, QString defaultPath, QWidget *parentWidget)
{
	static QMap<QString, QString> savedPaths;

	QFileDialog w(parentWidget, caption);
	QSet<QString> locations;
	auto f = [&](QStandardPaths::StandardLocation l)
	{
		QString location = QStandardPaths::writableLocation(l);
		QFileInfo finfo(location);
		if (!finfo.exists())
			return;
		locations.insert(location);
	};
	f(QStandardPaths::DesktopLocation);
	f(QStandardPaths::DocumentsLocation);
	f(QStandardPaths::DownloadLocation);
	f(QStandardPaths::HomeLocation);
	QList<QUrl> urls;
	for (auto location : locations)
	{
		urls.append(QUrl::fromLocalFile(location));
	}
	urls.append(QUrl::fromLocalFile(defaultPath));

	w.setFileMode(QFileDialog::ExistingFiles);
	w.setAcceptMode(QFileDialog::AcceptOpen);
	w.setNameFilter(filter);

	QString pathToOpen;
	if(savedPaths.contains(context))
	{
		pathToOpen = savedPaths[context];
	}
	else
	{
		pathToOpen = defaultPath;
	}
	if(!pathToOpen.isEmpty())
	{
		QFileInfo finfo(pathToOpen);
		if(finfo.exists() && finfo.isDir())
		{
			w.setDirectory(finfo.absoluteFilePath());
		}
	}

	w.setSidebarUrls(urls);

	if (w.exec())
	{
		savedPaths[context] = w.directory().absolutePath();
		return w.selectedFiles();
	}
	savedPaths[context] = w.directory().absolutePath();
	return {};
}