blob: 06618f475c439b20c9ba61733740641420d7a0bd (
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
|
// 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.
*
* ========================================================================
*/
#pragma once
#include "Version.h"
#include "modplatform/ModIndex.h"
#include "modplatform/modrinth/ModrinthAPI.h"
#include "tasks/Task.h"
#include <QList>
#include <QString>
#include <list>
class MinecraftInstance;
class ModrinthCollectionImportTask final : public Task
{
Q_OBJECT
public:
struct ImportedResource
{
ModPlatform::IndexedPack::Ptr pack;
ModPlatform::IndexedVersion version;
};
explicit ModrinthCollectionImportTask(QString collection_reference, MinecraftInstance* instance);
bool abort() override;
QString collectionName() const
{
return m_collection_name;
}
QList<ImportedResource> importedResources() const
{
return m_imported_resources;
}
QStringList skippedResources() const
{
return m_skipped_resources;
}
protected:
void executeTask() override;
private:
QString normalizeCollectionReference(QString reference) const;
QString collectionUrl() const;
bool extractCollectionMetadata(const QByteArray& html);
void fetchCollectionPage();
void fetchProjectBatch();
void fetchNextVersion();
void finishImport();
private:
QString m_collection_reference;
QString m_collection_name;
MinecraftInstance* m_instance = nullptr;
std::list<Version> m_mc_versions;
ModPlatform::ModLoaderTypes m_loaders = {};
QStringList m_project_ids;
int m_project_batch_offset = 0;
int m_version_index = 0;
QList<ModPlatform::IndexedPack::Ptr> m_packs;
QList<ImportedResource> m_imported_resources;
QStringList m_skipped_resources;
ModrinthAPI m_api;
shared_qobject_ptr<Task> m_current_task;
};
|