root/src/videofile.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
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
#include "videofile.h"
#include <QFileInfo>
#include <QDebug>
#include "utils.h"

#define IS_SPECIAL_REGEX(prefix) \
    prefix "ED[a-z]?(\\s|$)|" \
    prefix "OP[a-z]?(\\s|$)|" \
 \
    prefix "ED\\s?[0-9]+|" \
    prefix "OP\\s?[0-9]+[a-z]?|" \
    prefix "(Creditless\\s)?(NC.)?OP[a-z]?\\s?([0-9]+)?|" \
    prefix "(Creditless\\s)?(NC.)?ED[a-z]?\\s?([0-9]+)?|" \
    prefix "PV\\s?([0-9]+)?|" \
 \
    prefix "Opening(\\s?[0-9]+)?|" \
    prefix "Preview\\s?([0-9]+)?|" \
    prefix "Play\\s?All\\b(.+)?($|\\(|\\[)?|" \
    prefix "Ending(\\s?[0-9]+)?"
    // TODO commentary

#define IS_OVA_REGEX(prefix) \
    prefix "Specials?\\s?-?\\s?([0-9]+)?|" \
    prefix "OVA?\\s?-?\\s?([0-9]+)?|" \
    prefix "SP\\s?([0-9]+)?" \

const float VideoFile::UNKNOWN = -1;
const float VideoFile::SPECIAL = -2;
const float VideoFile::INVALID = -3;

VideoFile::VideoFile(const QString originalPath, bool resolveLinks) {
    // set the path and resolve links
    QString path = originalPath;
    this->path = resolveLinks
                ? QFileInfo(path).canonicalFilePath()
                : QFileInfo(path).absoluteFilePath();
    // if the resolved filepath does not exist just take the given path
    // and assume the drive will be mounted later
    if (this->path.isEmpty()) {
        this->path = path;
    }

    // start processing
    path = QFileInfo(this->path).completeBaseName();


    int spaces = path.count(' ');
    if (path.count('_') > spaces) {
        path.replace('_', ' ');
    }

    spaces = path.count(' ');
    if (path.count('.') > spaces) {
        path.replace('.', ' ');
    }

    int groupIndex = -2;
    while (groupIndex != -1) {
        QRegExp regexGroup("^(\\[.*\\])");
        regexGroup.setMinimal(true);
        groupIndex = regexGroup.indexIn(path);
        if (groupIndex != -1) {
            this->releaseGroup.append(regexGroup.cap(1));
            path.remove(0, regexGroup.cap(1).length());
        }
    }

    QRegExp regexHashId("(\\[[A-F0-9]{8}\\])");
    int hashIdIndex = regexHashId.indexIn(path);
    if (hashIdIndex != -1) {
        this->hashId = regexHashId.cap(1);
        path.remove(hashIdIndex, regexHashId.cap(1).length());
    }


    QRegExp techTags("((\\[.*\\])|(\\(.*\\)))");
    techTags.setMinimal(true);
    int techTagsIndex = techTags.indexIn(path);
    while (techTagsIndex != -1) {
        path.remove(techTagsIndex, techTags.cap(1).length());
        techTagsIndex = techTags.indexIn(path);
    }

    // TODO differ techtags in [] from release groups
    // hints: at the end, multiple [] like [720p][AAC]
    // comma separated [720p, AAC]
    // space separated [720p AAC]

    // [Group] showname - 01v2 (techtags)[12345ABC].webm
    // figure out when the name stops and something else (ep name / techtags) begins
    QRegExp regexName("(.*)"
                      "("
                      "( -)|"
                      "(-\\s?[0-9])|"
                      "\\[|"
                      "\\(|"
                      "(\\sCreditless\\s(NC.?)?O?P?[a-z]?\\s?([0-9]+)?)|"
                      "(\\sCreditless\\s(NC.?)?E?D?[a-z]?\\s?([0-9]+)?)|"
                      "(\\s(NC.?)?OP[a-z]?\\s?[0-9])|"
                      "(\\s(NC.?)?ED[a-z]?\\s?[0-9])|"
                      "(\\sEP[0-9])|"
                      "(\\sSP[0-9])|"
                      "(\\sEpisode\\s?[0-9])|"
                      "(\\sPlay\\s?All)|"
                      "$"
                      ")", Qt::CaseInsensitive);
    regexName.setMinimal(true);
    int nameIndex = regexName.indexIn(path);
    this->showName = regexName.cap(1).trimmed();

    if (nameIndex != -1 || this->showName.length() <= 0) {
        path.remove(nameIndex, regexName.cap(1).length());
    } else {
        qDebug() << "could not parse name out of " << path;
    }

    QRegExp regexEpisode("("
        // number only with separator
        "-[0-9]|"
        "\\s[0-9]+((v|\\.)[0-9]+)?(\\s|$)|"
        "\\s[0-9]+(\\[v[0-9]+\\])(\\s|$)|"
        "\\s[0-9]+x[0-9]+|"
        "\\sEP\\s?[0-9]+|"
        "\\sEpisode\\s?[0-9]+|"
        "\\sEX(\\s|\\s?[0-9]+)|"

        IS_SPECIAL_REGEX("\\s")
                         "|"
        IS_OVA_REGEX("\\s")
        ")", Qt::CaseInsensitive);
    //regexEpisode.setMinimal(true);
    int episodeIndex = regexEpisode.indexIn(path);
    this->episodeNumber = regexEpisode.cap(1).trimmed();
    path.remove(episodeIndex, regexEpisode.cap(1).length());


    QRegExp regexSeason("((SE?)[0-9]+|(Season\\s?)[0-9]+)", Qt::CaseInsensitive);
    regexSeason.setMinimal(true);
    int seasonIndex = regexSeason.indexIn(path);
    if (seasonIndex != -1) {
        this->seasonName = regexSeason.cap(1);
        path.remove(seasonIndex, regexSeason.cap(1).length());
    }

    // check epNum after showName
    if (this->episodeNumber.isEmpty() || this->episodeNumber.isNull()) {
        int epIndex = regexEpisode.indexIn(this->showName);
        // TODO check all caps for the longest
        if (epIndex != -1) {
            this->episodeNumber = regexEpisode.cap(1).trimmed();
            this->showName.remove(epIndex, regexEpisode.cap(1).length());
            QString epname = showName.mid(epIndex, showName.length()-epIndex).trimmed();
            if (epname.length()) {
                this->episodeName = epname;
                this->showName.remove(epIndex, showName.length()-epIndex);
            }
        }
    }

    // check roman number epnum after title
    const QStringList titleWords = this->showName.split(QRegExp("\\b"), QString::SkipEmptyParts);
    if (titleWords.length() >= 2) {
        const QString& lastWord = titleWords.last();
        int romanNumber = Utils::parseRomanNumbers(lastWord);
        if (romanNumber > 0) {
            if (this->episodeNumber.isEmpty()) {
                this->episodeNumber = QString::number(romanNumber);
                Utils::removeLastOccurance(this->showName, lastWord);
                this->showName = this->showName.trimmed();
            }
        }
    }

    // release group at the end (last word)
    if (this->releaseGroup.isEmpty()) {
        QRegExp releaseGroupAtEnd("([^\\s]+)($|\\s)");
        int occurance = path.indexOf(releaseGroupAtEnd);
        int latestOccurance = occurance;
        while (occurance != -1) {
            // ignore file version at the end like: " - THORA 1.0v2.1.vid"
            QRegExp releaseVersionRegex("([0-9\\.]+)?(v[0-9\\.])");
            if (-1 == releaseVersionRegex.indexIn(releaseGroupAtEnd.cap(1))) {
                latestOccurance = occurance;
            } else {
                path.remove(releaseVersionRegex);
            }
            occurance = path.indexOf(releaseGroupAtEnd, occurance + releaseGroupAtEnd.cap(0).length());
        }

        if (latestOccurance != -1) {
            path.indexOf(releaseGroupAtEnd, latestOccurance);
            this->releaseGroup = releaseGroupAtEnd.cap(1);
            path.remove(latestOccurance, releaseGroupAtEnd.cap(1).length());
        }
    }

    QRegExp epNameRegex("-?\\s?(.*)$");
    if (episodeName.isEmpty() && -1 != epNameRegex.indexIn(path)) {
        episodeName = epNameRegex.cap(1);
        episodeName = episodeName.trimmed();
        episodeName.remove(QRegExp("((\\s+)?-)$"));
        episodeName.remove(QRegExp("^(-(\\s+)?)"));
    }

    this->showName = this->showName.trimmed();

    if (this->showName.isEmpty()) {
        const VideoFile parentDir(QFileInfo(originalPath).absolutePath());
        this->showName = parentDir.showName;
    }

    // Assume that the showname is in Directory if the
    // found name is a special extra like a "creditless OP"
    QRegExp fileIsSpecial("(" IS_SPECIAL_REGEX("^") ")");
    if (-1 != fileIsSpecial.indexIn(this->showName)) {
        const VideoFile parentDir(QFileInfo(originalPath).absolutePath());
        this->episodeNumber = this->showName;
        this->showName = parentDir.showName;
    }

    QRegExp epIsOVA("(" IS_OVA_REGEX("^") ")");
    if (-1 != epIsOVA.indexIn(this->episodeNumber)) {
        QString ovaStr = epIsOVA.cap(0);
        int spaceIndex = ovaStr.indexOf(QRegExp("[^a-z]", Qt::CaseInsensitive));
        this->showName = this->showName.append(" ").append(ovaStr.left(spaceIndex));
    }
}

std::map<QString, QString> VideoFile::alternativeTitles() const {
    std::map<QString, QString> titles;
    // Replace Roman Number at end with a an arabic number
    // TODO remove roman number copy pasta
    const QStringList titleWords = this->showName.split(QRegExp("\\b"), QString::SkipEmptyParts);
    if (titleWords.length() >= 2) {
        const QString& lastWord = titleWords.last();
        int romanNumber = Utils::parseRomanNumbers(lastWord);
        if (romanNumber > 0) {
            QString numberless = this->showName;
            Utils::removeLastOccurance(numberless, lastWord);
            QString arabic = QString(numberless).append(QString::number(romanNumber));
            titles["arabicNumber"] = arabic;
            titles["romanNumberless"] = numberless;
        }
    }

    // TODO remove roman numbers from this
    if (!this->episodeName.isEmpty()) {
        QString withEpName = this->showName;
        withEpName.append(this->showName);
        titles["withEpName"] = withEpName;
    }

    return titles;
}

bool VideoFile::hasVideoExtension(QString filename) {
    return filename.contains(QRegExp("\\.mkv$|\\.ogv$|\\.mpeg$|\\.mp4$|\\.webm$|\\.avi$|\\.mp5$", Qt::CaseInsensitive));
}

void VideoFile::writeForApi(nw::Writer& de) const {
    NwUtils::describeConst(de, "path", path);
    NwUtils::describeConst(de, "releaseGroup",releaseGroup);
    NwUtils::describeConst(de, "episodeName", episodeName);
    //NwUtils::describeConst(de, "techTags", techTags);
    NwUtils::describeConst(de, "showName", showName);
    NwUtils::describeConst(de, "seasonName", seasonName);
    NwUtils::describeConst(de, "episodeNumber", episodeNumber);
    NwUtils::describeConst(de, "hashId", hashId);
}

// QString VideoFile::xbmcEpisodeNumber() const {
//     num = numericEpisodeNumber();
//     if (num == SPECIAL) {
//         return QString("0x%1").arg(episodeNumber);
//     }
//     if (num != UNKNOWN) {
//         return QString::number(num);
//     }
//     return episodeNumber;
// }

QString VideoFile::fileExtension() const {
    return QFileInfo(path).completeSuffix();
}

bool VideoFile::exists() const {
    return QFile::exists(path);
}

QString VideoFile::xbmcEpisodeName() const {
    if (episodeName.length() > 0) {
        return episodeName;
    }
    return "Episode";
}

bool VideoFile::isSpecial(QString episodeNumberString) {
    QRegExp specialRegex("("
        IS_SPECIAL_REGEX()
    ")", Qt::CaseInsensitive);
    bool is = -1 != specialRegex.indexIn(episodeNumberString);
    return is;
}

bool VideoFile::isSpecial() const {
    return isSpecial(this->episodeNumber);
}

float VideoFile::numericEpisodeNumber() const {
    if (isSpecial()) {
        return SPECIAL;
    }
    QRegExp pureNumber("([0-9\\.]+x)?([0-9\\.]+)", Qt::CaseInsensitive);
    int index = pureNumber.indexIn(episodeNumber);
    if (index != -1) {
        // Correction for files that don't have a space after the dash like:
        // "showname -3", this would be parsed as negative Number.
        float ep = pureNumber.cap(2).toFloat();
        return ep >= 0 ? ep : -1.f * ep;
    }
    return UNKNOWN;
}