summaryrefslogtreecommitdiff
path: root/meshmc/launcher/updater/GoUpdate.cpp
blob: 8db5533f68c55ec670281a2d887aa3a3812c3849 (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
/* SPDX-FileCopyrightText: 2026 Project Tick
 * SPDX-FileContributor: Project Tick
 * SPDX-License-Identifier: GPL-3.0-or-later
 *
 *   MeshMC - A Custom Launcher for Minecraft
 *   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, 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 <https://www.gnu.org/licenses/>.
 */

#include "GoUpdate.h"
#include <QDebug>
#include <QDomDocument>
#include <QFile>
#include <FileSystem.h>

#include "net/Download.h"
#include "net/ChecksumValidator.h"

namespace GoUpdate
{

	bool parseVersionInfo(const QByteArray& data, VersionFileList& list,
						  QString& error)
	{
		QJsonParseError jsonError;
		QJsonDocument jsonDoc = QJsonDocument::fromJson(data, &jsonError);
		if (jsonError.error != QJsonParseError::NoError) {
			error = QString("Failed to parse version info JSON: %1 at %2")
						.arg(jsonError.errorString())
						.arg(jsonError.offset);
			qCritical() << error;
			return false;
		}

		QJsonObject json = jsonDoc.object();

		qDebug() << data;
		qDebug() << "Loading version info from JSON.";
		QJsonArray filesArray = json.value("Files").toArray();
		for (QJsonValue fileValue : filesArray) {
			QJsonObject fileObj = fileValue.toObject();

			QString file_path = fileObj.value("Path").toString();

			VersionFileEntry file{
				file_path,
				fileObj.value("Perms").toVariant().toInt(),
				FileSourceList(),
				fileObj.value("MD5").toString(),
			};
			qDebug() << "File" << file.path << "with perms" << file.mode;

			QJsonArray sourceArray = fileObj.value("Sources").toArray();
			for (QJsonValue val : sourceArray) {
				QJsonObject sourceObj = val.toObject();

				QString type = sourceObj.value("SourceType").toString();
				if (type == "http") {
					file.sources.append(
						FileSource("http", sourceObj.value("Url").toString()));
				} else {
					qWarning() << "Unknown source type" << type << "ignored.";
				}
			}

			qDebug() << "Loaded info for" << file.path;

			list.append(file);
		}

		return true;
	}

	bool processFileLists(const VersionFileList& currentVersion,
						  const VersionFileList& newVersion,
						  const QString& rootPath, const QString& tempPath,
						  NetJob::Ptr job, OperationList& ops)
	{
		// First, if we've loaded the current version's file list, we need to
		// iterate through it and delete anything in the current one version's
		// list that isn't in the new version's list.
		for (VersionFileEntry entry : currentVersion) {
			QFileInfo toDelete(FS::PathCombine(rootPath, entry.path));
			if (!toDelete.exists()) {
				qCritical() << "Expected file " << toDelete.absoluteFilePath()
							<< " doesn't exist!";
			}
			bool keep = false;

			//
			for (VersionFileEntry newEntry : newVersion) {
				if (newEntry.path == entry.path) {
					qDebug()
						<< "Not deleting" << entry.path
						<< "because it is still present in the new version.";
					keep = true;
					break;
				}
			}

			// If the loop reaches the end and we didn't find a match, delete
			// the file.
			if (!keep) {
				if (toDelete.exists())
					ops.append(Operation::DeleteOp(entry.path));
			}
		}

		// Next, check each file in MeshMC's folder and see if we need to update
		// them.
		for (VersionFileEntry entry : newVersion) {
			// TODO: Let's not MD5sum a ton of files on the GUI thread. We
			// should probably find a way to do this in the background.
			QString fileMD5;
			QString realEntryPath = FS::PathCombine(rootPath, entry.path);
			QFile entryFile(realEntryPath);
			QFileInfo entryInfo(realEntryPath);

			bool needs_upgrade = false;
			if (!entryFile.exists()) {
				needs_upgrade = true;
			} else {
				bool pass = true;
				if (!entryInfo.isReadable()) {
					qCritical()
						<< "File " << realEntryPath << " is not readable.";
					pass = false;
				}
				if (!entryInfo.isWritable()) {
					qCritical()
						<< "File " << realEntryPath << " is not writable.";
					pass = false;
				}
				if (!entryFile.open(QFile::ReadOnly)) {
					qCritical() << "File " << realEntryPath
								<< " cannot be opened for reading.";
					pass = false;
				}
				if (!pass) {
					ops.clear();
					return false;
				}
			}

			if (!needs_upgrade) {
				QCryptographicHash hash(QCryptographicHash::Md5);
				auto foo = entryFile.readAll();

				hash.addData(foo);
				fileMD5 = hash.result().toHex();
				if ((fileMD5 != entry.md5)) {
					qDebug() << "MD5Sum does not match!";
					qDebug() << "Expected:'" << entry.md5 << "'";
					qDebug() << "Got:     '" << fileMD5 << "'";
					needs_upgrade = true;
				}
			}

			// skip file. it doesn't need an upgrade.
			if (!needs_upgrade) {
				qDebug() << "File" << realEntryPath
						 << " does not need updating.";
				continue;
			}

			// yep. this file actually needs an upgrade. PROCEED.
			qDebug() << "Found file" << realEntryPath
					 << " that needs updating.";

			// Go through the sources list and find one to use.
			// TODO: Make a NetAction that takes a source list and tries each of
			// them until one works. For now, we'll just use the first http one.
			for (FileSource source : entry.sources) {
				if (source.type != "http")
					continue;

				qDebug() << "Will download" << entry.path << "from"
						 << source.url;

				// Download it to updatedir/<filepath>-<md5> where filepath is
				// the file's path with slashes replaced by underscores.
				QString dlPath = FS::PathCombine(
					tempPath, QString(entry.path).replace("/", "_"));

				// We need to download the file to the updatefiles folder and
				// add a task to copy it to its install path.
				auto download = Net::Download::makeFile(source.url, dlPath);
				auto rawMd5 = QByteArray::fromHex(entry.md5.toLatin1());
				download->addValidator(new Net::ChecksumValidator(
					QCryptographicHash::Md5, rawMd5));
				job->addNetAction(download);
				ops.append(Operation::CopyOp(dlPath, entry.path, entry.mode));
			}
		}
		return true;
	}
} // namespace GoUpdate