forked from milohr/babe-qt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbaeUtils.h
138 lines (108 loc) · 3.7 KB
/
baeUtils.h
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
#ifndef BAEUTILS_H
#define BAEUTILS_H
#include "string"
#include <QString>
#include <QDebug>
#include <QStandardPaths>
#include <QFileInfo>
using namespace std;
namespace BaeUtils
{
static inline QString getNameFromLocation(QString str)
{
QString ret;
int index;
for(int i = str.size() - 1; i >= 0; i--)
{
if(str[i] == '/')
{
index = i + 1;
i = -1;
}
}
for(; index < str.size(); index++)
{
ret.push_back(str[index]);
}
return ret;
}
static inline QString getSettingPath() { return QStandardPaths::writableLocation(QStandardPaths::ConfigLocation)+"/babe/";}
static inline QString getCollectionDBPath() { return QStandardPaths::writableLocation(QStandardPaths::GenericDataLocation)+"/babe/";}
static inline QString getCachePath() {return QStandardPaths::writableLocation(QStandardPaths::GenericCacheLocation)+"/babe/";}
static inline QString getYoutubeCachePath() { return QStandardPaths::writableLocation(QStandardPaths::GenericCacheLocation)+"/babe/youtube/";}
static inline QString getExtensionFetchingPath() { return QStandardPaths::writableLocation(QStandardPaths::DownloadLocation); }
static inline QString getNotifyDir(){return QStandardPaths::writableLocation(QStandardPaths::ConfigLocation);}
static inline QString fixTitle(QString title,QString s,QString e)
{
QString newTitle;
for(int i=0; i<title.size();i++)
{
if(title.at(i)==s)
{
while(title.at(i)!=e)
{
if(i==title.size()-1) break;
else i++;
}
}else
{
newTitle+=title.at(i);
}
}
return newTitle.simplified();
}
static inline QString removeSubstring(QString newTitle, QString subString)
{
const int indexFt = newTitle.indexOf(subString, 0, Qt::CaseInsensitive);
if (indexFt != -1) {
return newTitle.left(indexFt).simplified();
}else
{
return newTitle;
}
}
static inline QString ucfirst(const QString str) {
if (str.size() < 1) {
return "";
}
QStringList tokens = str.split(" ");
QStringList result;
for(auto str : tokens)
{
if(!str.isEmpty())
{
str = str.toLower();
str[0] = str[0].toUpper();
result<<str;
}
}
return result.join(" ");
}
static inline QString fixString(QString title)
{
//title.remove(QRegExp(QString::fromUtf8("[·-`~!@#$%^&*()_—+=|:;<>«»,.?/{}\'\"\\\[\\\]\\\\]")));
title=title.contains("(")&&title.contains(")")?fixTitle(title,"(",")"):title;
title=title.contains("[")&&title.contains("]")?fixTitle(title,"[","]"):title;
title=title.contains("{")&&title.contains("}")?fixTitle(title,"{","}"):title;
title=title.contains("ft")?removeSubstring(title, "ft"):title;
title=title.contains("ft.")?removeSubstring(title, "ft."):title;
title=title.contains("featuring")?removeSubstring(title, "featuring"):title;
title=title.contains("feat")?removeSubstring(title, "feat"):title;
title=title.contains("official video")?removeSubstring(title, "official video"):title;
title=title.contains("live")?removeSubstring(title, "live"):title;
title=title.contains("...")?title.replace("...",""):title;
title=title.contains("|")?title.replace("|",""):title;
title=title.contains('"')?title.replace('"',""):title;
title=title.contains(":")?title.replace(":",""):title;
title=title.contains("&")? title.replace("&", "and"):title;
qDebug()<<"fixed string:"<<title;
return ucfirst(title).simplified();
}
static inline bool fileExists(QString url)
{
QFileInfo path(url);
if (path.exists()) return true;
else return false;
}
}
#endif // UTILS_H