summaryrefslogtreecommitdiffstats
path: root/depends/util/src/modutils.cpp
blob: 44a04b723735c394325106be220c6615edb5ccdd (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
#include "include/modutils.h"

#include <QStringList>
#include <QUrl>
#include <QRegularExpression>
#include <QRegularExpressionMatch>

Util::Version::Version(const QString &str) : m_string(str)
{
}

bool Util::Version::operator<(const Version &other) const
{
	QStringList parts1 = m_string.split('.');
	QStringList parts2 = other.m_string.split('.');

	while (!parts1.isEmpty() && !parts2.isEmpty())
	{
		QString part1 = parts1.isEmpty() ? "0" : parts1.takeFirst();
		QString part2 = parts2.isEmpty() ? "0" : parts2.takeFirst();
		bool ok1 = false;
		bool ok2 = false;
		int int1 = part1.toInt(&ok1);
		int int2 = part2.toInt(&ok2);
		if (ok1 && ok2)
		{
			if (int1 == int2)
			{
				continue;
			}
			else
			{
				return int1 < int2;
			}
		}
		else
		{
			if (part1 == part2)
			{
				continue;
			}
			else
			{
				return part1 < part2;
			}
		}
	}

	return false;
}
bool Util::Version::operator<=(const Util::Version &other) const
{
	return *this < other || *this == other;
}
bool Util::Version::operator>(const Version &other) const
{
	QStringList parts1 = m_string.split('.');
	QStringList parts2 = other.m_string.split('.');

	while (!parts1.isEmpty() && !parts2.isEmpty())
	{
		QString part1 = parts1.isEmpty() ? "0" : parts1.takeFirst();
		QString part2 = parts2.isEmpty() ? "0" : parts2.takeFirst();
		bool ok1 = false;
		bool ok2 = false;
		int int1 = part1.toInt(&ok1);
		int int2 = part2.toInt(&ok2);
		if (ok1 && ok2)
		{
			if (int1 == int2)
			{
				continue;
			}
			else
			{
				return int1 > int2;
			}
		}
		else
		{
			if (part1 == part2)
			{
				continue;
			}
			else
			{
				return part1 > part2;
			}
		}
	}

	return false;
}
bool Util::Version::operator==(const Version &other) const
{
	QStringList parts1 = m_string.split('.');
	QStringList parts2 = other.m_string.split('.');

	while (!parts1.isEmpty() && !parts2.isEmpty())
	{
		QString part1 = parts1.isEmpty() ? "0" : parts1.takeFirst();
		QString part2 = parts2.isEmpty() ? "0" : parts2.takeFirst();
		bool ok1 = false;
		bool ok2 = false;
		int int1 = part1.toInt(&ok1);
		int int2 = part2.toInt(&ok2);
		if (ok1 && ok2)
		{
			if (int1 == int2)
			{
				continue;
			}
			else
			{
				return false;
			}
		}
		else
		{
			if (part1 == part2)
			{
				continue;
			}
			else
			{
				return false;
			}
		}
	}

	return true;
}
bool Util::Version::operator!=(const Version &other) const
{
	return !operator==(other);
}

QUrl Util::expandQMURL(const QString &in)
{
	QUrl inUrl(in);
	if (inUrl.scheme() == "github")
	{
		// needed because QUrl makes the host all lower cases
		const QString repo = in.mid(in.indexOf(inUrl.host(), 0, Qt::CaseInsensitive), inUrl.host().size());
		QUrl out;
		out.setScheme("https");
		out.setHost("raw.github.com");
		out.setPath(QString("/%1/%2/%3%4")
						.arg(inUrl.userInfo(), repo,
							 inUrl.fragment().isEmpty() ? "master" : inUrl.fragment(), inUrl.path()));
		return out;
	}
	else if (inUrl.scheme() == "mcf")
	{
		QUrl out;
		out.setScheme("http");
		out.setHost("www.minecraftforum.net");
		out.setPath(QString("/topic/%1-").arg(inUrl.path()));
		return out;
	}
	else
	{
		return in;
	}
}

bool Util::versionIsInInterval(const QString &version, const QString &interval)
{
	if (interval.isEmpty() || version == interval)
	{
		return true;
	}

	// Interval notation is used
	QRegularExpression exp(
		"(?<start>[\\[\\]\\(\\)])(?<bottom>.*?)(,(?<top>.*?))?(?<end>[\\[\\]\\(\\)])");
	QRegularExpressionMatch match = exp.match(interval);
	if (match.hasMatch())
	{
		const QChar start = match.captured("start").at(0);
		const QChar end = match.captured("end").at(0);
		const QString bottom = match.captured("bottom");
		const QString top = match.captured("top");

		// check if in range (bottom)
		if (!bottom.isEmpty())
		{
			if ((start == '[') && !(version >= bottom))
			{
				return false;
			}
			else if ((start == '(') && !(version > bottom))
			{
				return false;
			}
		}

		// check if in range (top)
		if (!top.isEmpty())
		{
			if ((end == ']') && !(version <= top))
			{
				return false;
			}
			else if ((end == ')') && !(version < top))
			{
				return false;
			}
		}

		return true;
	}

	return false;
}