-
Notifications
You must be signed in to change notification settings - Fork 1
/
Outils.cpp
187 lines (157 loc) · 5.46 KB
/
Outils.cpp
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
/* This file is part of Multiup MaNaGeR.
*
* Multiup MaNaGeR 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.
*
* Multiup MaNaGeR 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 Multiup MaNaGeR. If not, see <http://www.gnu.org/licenses/>.
*
* Copyright 2012-2023 Lex
*/
#include "Outils.h"
double conversion(qint64 valeur)
{
return static_cast<double>(valeur);
}
qint64 conversion(double valeur)
{
return static_cast<qint64>(valeur);
}
double conversion(int valeur)
{
return static_cast<double>(valeur);
}
bool enregistrement(const QString dossier, const QString code)
{
#ifdef WINDOWS
qDebug() << "Chemin fichier liens :" << dossier << "\\liens_multiup.txt";
QFile file(dossier + "\\liens_multiup.txt");
#endif
#ifdef LINUX
qDebug() << "Chemin fichier liens :" << dossier << "/liens_multiup.txt";
QFile file(dossier + "/liens_multiup.txt");
#endif
if (!file.open(QIODevice::Append | QIODevice::Text))
return false;
QTextStream out(&file);
out << QTime::currentTime().toString("hh:mm:ss") + '\n';
out << code + '\n';
//ou:
//file.write(code.toStdString().c_str());
file.close();
return true;
}
QString randomName()
{
// Renvoit un QString comportant une chaine de 12 caractères aléatoires, choisis parmi 62
//Chaine de 62 caractères prédéfinis
QString chaine = "abcdefghijklmnopqrstuvwxyz1234567890ABCDEFGHIJKLMNOPQRSTUVWXYZ";
QString resultat;
for (int i = 0; i < 20; i++) {
resultat.append(chaine.at(QRandomGenerator::global()->bounded(62)));
}
return resultat;
}
// Fonction chourrée là: http://www.qtfr.org/viewtopic.php?id=2775
qint64 sizeOfdir(QString path)
{
// Attention, le flag QDir::NoDotAndDotDot permet de ne pas lister les fichiers ou dossiers commençant par . ou ..
// C'est nécessaire pour éviter du bordel MAIS ces fichiers prennent de la place et faussent la taille obtenue...
// pas vraiment d'autre méthode...
qint64 size = 0;
QDir folder;
folder.setPath(path);
QFileInfoList fileInfoList = folder.entryInfoList(QDir::AllEntries|QDir::NoDotAndDotDot);
for(int i = 0; i < fileInfoList.size(); ++i)
{
if(fileInfoList.at(i).isDir())
{
qDebug() << "Répertoire : " << fileInfoList.at(i).path() + "/" + fileInfoList.at(i).fileName() << "\n";
size+=sizeOfdir(fileInfoList.at(i).path() + "/" + fileInfoList.at(i).fileName());
}
else
{
qDebug() << "Fichier : " << fileInfoList.at(i).fileName() << "\n";
size+=fileInfoList.at(i).size();
}
}
return size;
}
QHash<QString, QByteArray> loadCachedIcons(QString path)
{
// Get files from the given path
// Return a QHash with filenames as keys and QByteArrays as values
QHash<QString, QByteArray> table;
QDir folder;
folder.setPath(path);
if (!folder.mkpath(path)) {
qWarning() << "Cache dir not created!";
return table;
}
QFileInfoList fileInfoList = folder.entryInfoList(QDir::AllEntries|QDir::NoDotAndDotDot);
QList<QFileInfo>::const_iterator i = fileInfoList.begin();
while (i != fileInfoList.constEnd()) {
// all characters in the file up to (but not including) the last '.' character.
qDebug() << i->completeBaseName();
QFile file(path + i->fileName());
if (!file.open(QIODevice::ReadOnly))
continue;
QByteArray fileContent;
while (!file.atEnd()) {
fileContent += file.readLine();
}
table[i->completeBaseName()] = fileContent;
++i;
}
return table;
}
bool saveIconToCache(QString hostName, QByteArray iconData)
{
// Save the given data in the cache
#ifdef WINDOWS
QFile file(QApplication::applicationDirPath() + "\\cache\\" + hostName + ".png");
#endif
#ifdef LINUX
QFile file(QDir::homePath() + "/" APP_DIR + "/cache/" + hostName + ".png");
#endif
if (!file.open(QIODevice::WriteOnly))
return false;
file.write(iconData);
file.close();
return true;
}
void searchPrezFile(QString prezFile, QString link)
{
// Recherche un fichier de présentation du même nom que le fichier uploadé
// Recherche dans ce fichier l'occurence <multiup_manager> et la remplace par le lien
qDebug() << "Tentative d'ouverture du fichier" << prezFile << "et d'ajout du lien";
QFile file(prezFile);
if (!file.exists())
return;
if (!file.open(QIODevice::ReadWrite | QIODevice::Text)) {
qDebug() << "Fichier non ouvrable !";
return;
}
QString data = file.readAll();
// On retourne au début du fichier.
file.seek(0);
// Recherche de la chaine
QRegExp rx("(multiup_manager)");
if (data.contains(rx))
{
qDebug() << "Chaine <multiup_manager> trouvée !";
// Remplacement de la chaine
data.replace(rx, link);
QTextStream out(&file);
out << data;
out << "\nUp by Multiup MaNaGeR on http://multiup.io\n";
}
file.close();
}