summaryrefslogtreecommitdiff
path: root/archived/projt-launcher/launcher/ui/pages/instance/ManagedPackPage.cpp
blob: f96152ecef5c968ebb7bc774a1aa263cd83ab8ee (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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
// SPDX-License-Identifier: GPL-3.0-only
// SPDX-FileCopyrightText: 2026 Project Tick
// SPDX-FileContributor: Project Tick Team
/*
 *  ProjT Launcher - Minecraft Launcher
 *  Copyright (C) 2026 Project Tick
 *
 *  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, version 3.
 *
 *  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, write to the Free Software Foundation,
 *  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 *
 * === Upstream License Block (Do Not Modify) ==============================
 *
 *
 *
 *
 *
 * ======================================================================== */

#include "ManagedPackPage.h"
#include <QDesktopServices>
#include <QUrl>
#include <QUrlQuery>
#include "modplatform/ModIndex.h"
#include "ui_ManagedPackPage.h"

#include <QFileDialog>
#include <QListView>
#include <QProxyStyle>
#include <QStyleFactory>
#include <memory>

#include "Application.h"
#include "BuildConfig.h"
#include "InstanceImportTask.h"
#include "InstanceList.h"
#include "InstanceTask.h"
#include "Json.h"
#include "Markdown.h"
#include "StringUtils.h"

#include "ui/InstanceWindow.h"
#include "ui/dialogs/CustomMessageBox.h"
#include "ui/dialogs/ProgressDialog.h"

#include "net/ApiDownload.h"

/** This is just to override the combo box popup behavior so that the combo box doesn't take the whole screen.
 *  ... thanks Qt.
 */
class NoBigComboBoxStyle : public QProxyStyle
{
	Q_OBJECT

  public:
	// clang-format off
    int styleHint(QStyle::StyleHint hint, const QStyleOption* option = nullptr, const QWidget* widget = nullptr, QStyleHintReturn* returnData = nullptr) const override
    {
        if (hint == QStyle::SH_ComboBox_Popup)
            return false;

        return QProxyStyle::styleHint(hint, option, widget, returnData);
    }
	// clang-format on

	/**
	 * Something about QProxyStyle and QStyle objects means they can't be free'd just
	 * because all the widgets using them are gone.
	 * They seems to be tied to the QApplicaiton lifecycle.
	 * So make singletons tied to the lifetime of the application to clean them up and ensure they aren't
	 * being remade over and over again, thus leaking memory.
	 */
  public:
	static NoBigComboBoxStyle* getInstance(QStyle* style)
	{
		static QHash<QStyle*, NoBigComboBoxStyle*> s_singleton_instances_ = {};
		static std::mutex s_singleton_instances_mutex_;

		std::lock_guard<std::mutex> lock(s_singleton_instances_mutex_);
		auto inst_iter			 = s_singleton_instances_.constFind(style);
		NoBigComboBoxStyle* inst = nullptr;
		if (inst_iter == s_singleton_instances_.constEnd() || *inst_iter == nullptr)
		{
			inst = new NoBigComboBoxStyle(style);
			inst->setParent(APPLICATION);
			s_singleton_instances_.insert(style, inst);
			qDebug() << "QProxyStyle NoBigComboBox created for" << style->objectName() << style;
		}
		else
		{
			inst = *inst_iter;
		}
		return inst;
	}

  private:
	NoBigComboBoxStyle(QStyle* style) : QProxyStyle(style)
	{}
};

ManagedPackPage* ManagedPackPage::createPage(BaseInstance* inst, QString type, QWidget* parent)
{
	if (type == "modrinth")
		return new ModrinthManagedPackPage(inst, nullptr, parent);
	if (type == "flame" && (APPLICATION->capabilities() & Application::SupportsFlame))
		return new FlameManagedPackPage(inst, nullptr, parent);

	return new GenericManagedPackPage(inst, nullptr, parent);
}

ManagedPackPage::ManagedPackPage(BaseInstance* inst, InstanceWindow* instance_window, QWidget* parent)
	: QWidget(parent),
	  m_instance_window(instance_window),
	  ui(new Ui::ManagedPackPage),
	  m_inst(inst)
{
	Q_ASSERT(inst);

	ui->setupUi(this);

	// NOTE: GTK2 themes crash with the proxy style.
	// This seems like an upstream bug, so there's not much else that can be done.
	if (!QStyleFactory::keys().contains("gtk2"))
	{
		auto comboStyle = NoBigComboBoxStyle::getInstance(ui->versionsComboBox->style());
		ui->versionsComboBox->setStyle(comboStyle);
	}

	ui->versionsComboBox->view()->setVerticalScrollBarPolicy(Qt::ScrollBarAsNeeded);
	ui->versionsComboBox->view()->setVerticalScrollMode(QAbstractItemView::ScrollPerPixel);

	ui->reloadButton->setVisible(false);
	connect(ui->reloadButton,
			&QPushButton::clicked,
			this,
			[this](bool)
			{
				ui->reloadButton->setVisible(false);

				m_loaded = false;
				// Pretend we're opening the page again
				openedImpl();
			});

	connect(ui->changelogTextBrowser,
			&QTextBrowser::anchorClicked,
			this,
			[](const QUrl url)
			{
				if (url.scheme().isEmpty())
				{
					auto querry =
						QUrlQuery(url.query()).queryItemValue("remoteUrl", QUrl::FullyDecoded); // curseforge workaround
																								// for
																								// linkout?remoteUrl=
					auto decoded = QUrl::fromPercentEncoding(querry.toUtf8());
					auto newUrl	 = QUrl(decoded);
					if (newUrl.isValid() && (newUrl.scheme() == "http" || newUrl.scheme() == "https"))
						QDesktopServices ::openUrl(newUrl);
					return;
				}
				QDesktopServices::openUrl(url);
			});
}

ManagedPackPage::~ManagedPackPage()
{
	delete ui;
}

void ManagedPackPage::openedImpl()
{
	if (m_inst->getManagedPackID().isEmpty())
	{
		ui->packVersion->hide();
		ui->packVersionLabel->hide();
		ui->packOrigin->hide();
		ui->packOriginLabel->hide();
		ui->versionsComboBox->hide();
		ui->updateButton->hide();
		ui->updateToVersionLabel->hide();
		ui->updateFromFileButton->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Preferred);

		ui->packName->setText(m_inst->name());
		ui->changelogTextBrowser->setText(tr("This is a local modpack.\n"
											 "This can be updated only using a file in %1 format\n")
											  .arg(displayName()));
		return;
	}
	ui->packName->setText(m_inst->getManagedPackName());
	ui->packVersion->setText(m_inst->getManagedPackVersionName());
	ui->packOrigin->setText(
		tr("Website: <a href=%1>%2</a>    |    Pack ID: %3    |    Version ID: %4")
			.arg(url(), displayName(), m_inst->getManagedPackID(), m_inst->getManagedPackVersionID()));

	parseManagedPack();
}

QString ManagedPackPage::displayName() const
{
	auto type = m_inst->getManagedPackType();
	if (type.isEmpty())
		return {};
	if (type == "flame")
		type = "CurseForge";
	return type.replace(0, 1, type[0].toUpper());
}

QIcon ManagedPackPage::icon() const
{
	return QIcon::fromTheme(m_inst->getManagedPackType());
}

QString ManagedPackPage::helpPage() const
{
	return {};
}

void ManagedPackPage::retranslate()
{
	ui->retranslateUi(this);
}

bool ManagedPackPage::shouldDisplay() const
{
	return m_inst->isManagedPack();
}

bool ManagedPackPage::runUpdateTask(InstanceTask* task)
{
	Q_ASSERT(task);

	unique_qobject_ptr<Task> wrapped_task(APPLICATION->instances()->wrapInstanceTask(task));

	connect(task,
			&Task::failed,
			[this](QString reason)
			{ CustomMessageBox::selectable(this, tr("Error"), reason, QMessageBox::Critical)->show(); });
	connect(
		task,
		&Task::succeeded,
		[this, task]()
		{
			QStringList warnings = task->warnings();
			if (warnings.count())
				CustomMessageBox::selectable(this, tr("Warnings"), warnings.join('\n'), QMessageBox::Warning)->show();
		});
	connect(task,
			&Task::aborted,
			[this]
			{
				CustomMessageBox::selectable(this,
											 tr("Task aborted"),
											 tr("The task has been aborted by the user."),
											 QMessageBox::Information)
					->show();
			});

	ProgressDialog loadDialog(this);
	loadDialog.setSkipButton(true, tr("Abort"));
	loadDialog.execWithTask(*task);

	return task->wasSuccessful();
}

void ManagedPackPage::suggestVersion()
{
	ui->updateButton->setText(tr("Update Pack"));
	ui->updateButton->setDisabled(false);
}

void ManagedPackPage::setFailState()
{
	qDebug() << "Setting fail state!";

	// We block signals here so that suggestVersion() doesn't get called, causing an assertion fail.
	ui->versionsComboBox->blockSignals(true);
	ui->versionsComboBox->clear();
	ui->versionsComboBox->addItem(tr("Failed to search for available versions."), {});
	ui->versionsComboBox->blockSignals(false);

	ui->changelogTextBrowser->setText(tr("Failed to request changelog data for this modpack."));

	ui->updateButton->setText(tr("Cannot update!"));
	ui->updateButton->setDisabled(true);

	ui->reloadButton->setVisible(true);
}

ModrinthManagedPackPage::ModrinthManagedPackPage(BaseInstance* inst, InstanceWindow* instance_window, QWidget* parent)
	: ManagedPackPage(inst, instance_window, parent)
{
	Q_ASSERT(inst->isManagedPack());
	connect(ui->versionsComboBox, &QComboBox::currentIndexChanged, this, &ModrinthManagedPackPage::suggestVersion);
	connect(ui->updateButton, &QPushButton::clicked, this, &ModrinthManagedPackPage::update);
	connect(ui->updateFromFileButton, &QPushButton::clicked, this, &ModrinthManagedPackPage::updateFromFile);
}

// MODRINTH
void ModrinthManagedPackPage::parseManagedPack()
{
	qDebug() << "Parsing Modrinth pack";

	// No need for the extra work because we already have everything we need.
	if (m_loaded)
		return;

	if (m_fetch_job && m_fetch_job->isRunning())
		m_fetch_job->abort();

	ResourceAPI::Callback<QVector<ModPlatform::IndexedVersion>> callbacks{};
	m_pack = { m_inst->getManagedPackID() };

	// Use default if no callbacks are set
	callbacks.on_succeed = [this](auto& doc)
	{
		m_pack.versions		  = doc;
		m_pack.versionsLoaded = true;

		// We block signals here so that suggestVersion() doesn't get called, causing an assertion fail.
		ui->versionsComboBox->blockSignals(true);
		ui->versionsComboBox->clear();
		ui->versionsComboBox->blockSignals(false);

		for (const auto& version : m_pack.versions)
		{
			QString name = version.getVersionDisplayString();

			// NOTE: the id from version isn't the same id in the modpack format spec...
			// e.g. HexMC's 4.4.0 has versionId 4.0.0 in the modpack index..............
			if (version.version == m_inst->getManagedPackVersionName())
				name = tr("%1 (Current)").arg(name);

			ui->versionsComboBox->addItem(name, version.fileId);
		}

		suggestVersion();

		m_loaded = true;
	};
	callbacks.on_fail  = [this](QString reason, int) { setFailState(); };
	callbacks.on_abort = [this]() { setFailState(); };
	m_fetch_job		   = m_api.getProjectVersions(
		   { std::make_shared<ModPlatform::IndexedPack>(m_pack), {}, {}, ModPlatform::ResourceType::Modpack },
		   std::move(callbacks));

	ui->changelogTextBrowser->setText(tr("Fetching changelogs..."));

	m_fetch_job->start();
}

QString ModrinthManagedPackPage::url() const
{
	return "https://modrinth.com/mod/" + m_inst->getManagedPackID();
}

void ModrinthManagedPackPage::suggestVersion()
{
	auto index = ui->versionsComboBox->currentIndex();
	if (m_pack.versions.length() == 0)
	{
		setFailState();
		return;
	}
	auto version = m_pack.versions.at(index);

	ui->changelogTextBrowser->setHtml(StringUtils::htmlListPatch(markdownToHTML(version.changelog.toUtf8())));

	ManagedPackPage::suggestVersion();
}

/// @brief Called when the update task has completed.
/// Internally handles the closing of the instance window if the update was successful and shows a message box.
/// @param did_succeed Whether the update task was successful.
void ManagedPackPage::onUpdateTaskCompleted(bool did_succeed) const
{
	// Close the window if the update was successful
	if (did_succeed)
	{
		if (m_instance_window != nullptr)
			m_instance_window->close();

		CustomMessageBox::selectable(
			nullptr,
			tr("Update Successful"),
			tr("The instance updated to pack version %1 successfully.").arg(m_inst->getManagedPackVersionName()),
			QMessageBox::Information)
			->show();
	}
	else
	{
		CustomMessageBox::selectable(
			nullptr,
			tr("Update Failed"),
			tr("The instance failed to update to pack version %1. Please check launcher logs for more information.")
				.arg(m_inst->getManagedPackVersionName()),
			QMessageBox::Critical)
			->show();
	}
}

void ModrinthManagedPackPage::update()
{
	auto index = ui->versionsComboBox->currentIndex();
	if (m_pack.versions.length() == 0)
	{
		setFailState();
		return;
	}
	auto version = m_pack.versions.at(index);

	QMap<QString, QString> extra_info;
	// NOTE: Don't use 'm_pack.id' here, since we didn't completely parse all the metadata for the pack, including this
	// field.
	extra_info.insert("pack_id", m_inst->getManagedPackID());
	extra_info.insert("pack_version_id", version.fileId.toString());
	extra_info.insert("original_instance_id", m_inst->id());

	auto extracted = new InstanceImportTask(version.downloadUrl, this, std::move(extra_info));

	InstanceName inst_name(m_inst->getManagedPackName(), version.version);
	inst_name.setName(m_inst->name().replace(m_inst->getManagedPackVersionName(), version.version));
	extracted->setName(inst_name);

	extracted->setGroup(APPLICATION->instances()->getInstanceGroup(m_inst->id()));
	extracted->setIcon(m_inst->iconKey());
	extracted->setConfirmUpdate(false);

	// Run our task then handle the result
	auto did_succeed = runUpdateTask(extracted);
	onUpdateTaskCompleted(did_succeed);
}

void ModrinthManagedPackPage::updateFromFile()
{
	auto output = QFileDialog::getOpenFileUrl(this,
											  tr("Choose update file"),
											  QDir::homePath(),
											  tr("Modrinth pack") + " (*.mrpack *.zip)");
	if (output.isEmpty())
		return;
	QMap<QString, QString> extra_info;
	extra_info.insert("pack_id", m_inst->getManagedPackID());
	extra_info.insert("pack_version_id", QString());
	extra_info.insert("original_instance_id", m_inst->id());

	auto extracted = new InstanceImportTask(output, this, std::move(extra_info));

	extracted->setName(m_inst->name());
	extracted->setGroup(APPLICATION->instances()->getInstanceGroup(m_inst->id()));
	extracted->setIcon(m_inst->iconKey());
	extracted->setConfirmUpdate(false);

	// Run our task then handle the result
	auto did_succeed = runUpdateTask(extracted);
	onUpdateTaskCompleted(did_succeed);
}

// FLAME
FlameManagedPackPage::FlameManagedPackPage(BaseInstance* inst, InstanceWindow* instance_window, QWidget* parent)
	: ManagedPackPage(inst, instance_window, parent)
{
	Q_ASSERT(inst->isManagedPack());
	connect(ui->versionsComboBox, &QComboBox::currentIndexChanged, this, &FlameManagedPackPage::suggestVersion);
	connect(ui->updateButton, &QPushButton::clicked, this, &FlameManagedPackPage::update);
	connect(ui->updateFromFileButton, &QPushButton::clicked, this, &FlameManagedPackPage::updateFromFile);
}

void FlameManagedPackPage::parseManagedPack()
{
	qDebug() << "Parsing Flame pack";

	// We need to tell the user to redownload the pack, since we didn't save the required info previously
	if (m_inst->getManagedPackID().isEmpty())
	{
		setFailState();
		QString message =
			tr("<h1>Hey there!</h1>"
			   "<h4>"
			   "It seems like your Pack ID is null. This is because of a bug in older versions of the launcher.<br/>"
			   "Unfortunately, we can't do the proper API requests without this information.<br/>"
			   "<br/>"
			   "So, in order for this feature to work, you will need to re-download the modpack from the built-in "
			   "downloader.<br/>"
			   "<br/>"
			   "Don't worry though, it will ask you to update this instance instead, so you'll not lose this instance!"
			   "</h4>");

		ui->changelogTextBrowser->setHtml(StringUtils::htmlListPatch(message));
		return;
	}

	// No need for the extra work because we already have everything we need.
	if (m_loaded)
		return;

	if (m_fetch_job && m_fetch_job->isRunning())
		m_fetch_job->abort();

	QString id = m_inst->getManagedPackID();
	m_pack	   = { id };

	ResourceAPI::Callback<QVector<ModPlatform::IndexedVersion>> callbacks{};

	// Use default if no callbacks are set
	callbacks.on_succeed = [this](auto& doc)
	{
		m_pack.versions		  = doc;
		m_pack.versionsLoaded = true;

		// We block signals here so that suggestVersion() doesn't get called, causing an assertion fail.
		ui->versionsComboBox->blockSignals(true);
		ui->versionsComboBox->clear();
		ui->versionsComboBox->blockSignals(false);

		for (const auto& version : m_pack.versions)
		{
			QString name = version.getVersionDisplayString();

			if (version.fileId == m_inst->getManagedPackVersionID().toInt())
				name = tr("%1 (Current)").arg(name);

			ui->versionsComboBox->addItem(name, QVariant(version.fileId));
		}

		suggestVersion();

		m_loaded = true;
	};
	callbacks.on_fail  = [this](QString reason, int) { setFailState(); };
	callbacks.on_abort = [this]() { setFailState(); };
	m_fetch_job		   = m_api.getProjectVersions(
		   { std::make_shared<ModPlatform::IndexedPack>(m_pack), {}, {}, ModPlatform::ResourceType::Modpack },
		   std::move(callbacks));

	m_fetch_job->start();
}

QString FlameManagedPackPage::url() const
{
	// Prefer websiteUrl from pack metadata if available
	if (!m_pack.websiteUrl.isEmpty())
	{
		return m_pack.websiteUrl;
	}
	// Fallback to constructed URL
	return "https://www.curseforge.com/projects/" + m_inst->getManagedPackID();
}

void FlameManagedPackPage::suggestVersion()
{
	auto index = ui->versionsComboBox->currentIndex();
	if (m_pack.versions.length() == 0)
	{
		setFailState();
		return;
	}
	auto version = m_pack.versions.at(index);

	ui->changelogTextBrowser->setHtml(StringUtils::htmlListPatch(
		m_api.getModFileChangelog(m_inst->getManagedPackID().toInt(), version.fileId.toInt())));

	ManagedPackPage::suggestVersion();
}

void FlameManagedPackPage::update()
{
	auto index = ui->versionsComboBox->currentIndex();
	if (m_pack.versions.length() == 0)
	{
		setFailState();
		return;
	}
	auto version = m_pack.versions.at(index);

	QMap<QString, QString> extra_info;
	extra_info.insert("pack_id", m_inst->getManagedPackID());
	extra_info.insert("pack_version_id", version.fileId.toString());
	extra_info.insert("original_instance_id", m_inst->id());

	auto extracted = new InstanceImportTask(version.downloadUrl, this, std::move(extra_info));

	extracted->setName(m_inst->name());
	extracted->setGroup(APPLICATION->instances()->getInstanceGroup(m_inst->id()));
	extracted->setIcon(m_inst->iconKey());
	extracted->setConfirmUpdate(false);

	auto did_succeed = runUpdateTask(extracted);
	onUpdateTaskCompleted(did_succeed);
}

void FlameManagedPackPage::updateFromFile()
{
	auto output = QFileDialog::getOpenFileUrl(this,
											  tr("Choose update file"),
											  QDir::homePath(),
											  tr("CurseForge pack") + " (*.zip)");
	if (output.isEmpty())
		return;

	QMap<QString, QString> extra_info;
	extra_info.insert("pack_id", m_inst->getManagedPackID());
	extra_info.insert("pack_version_id", QString());
	extra_info.insert("original_instance_id", m_inst->id());

	auto extracted = new InstanceImportTask(output, this, std::move(extra_info));

	extracted->setName(m_inst->name());
	extracted->setGroup(APPLICATION->instances()->getInstanceGroup(m_inst->id()));
	extracted->setIcon(m_inst->iconKey());
	extracted->setConfirmUpdate(false);

	auto did_succeed = runUpdateTask(extracted);
	onUpdateTaskCompleted(did_succeed);
}
#include "ManagedPackPage.moc"