]> git.sur5r.net Git - minitube/blob - src/httputils.cpp
New upstream version 3.1
[minitube] / src / httputils.cpp
1 #include "httputils.h"
2 #include "cachedhttp.h"
3 #include "constants.h"
4 #include "http.h"
5 #include "localcache.h"
6 #include "throttledhttp.h"
7
8 Http &HttpUtils::notCached() {
9     static Http *h = [] {
10         Http *http = new Http;
11         http->addRequestHeader("User-Agent", userAgent());
12
13         return http;
14     }();
15     return *h;
16 }
17
18 Http &HttpUtils::cached() {
19     static Http *h = [] {
20         Http *http = new Http;
21         http->addRequestHeader("User-Agent", userAgent());
22
23         CachedHttp *cachedHttp = new CachedHttp(*http, "http");
24
25         return cachedHttp;
26     }();
27     return *h;
28 }
29
30 Http &HttpUtils::yt() {
31     static Http *h = [] {
32         Http *http = new Http;
33         http->addRequestHeader("User-Agent", stealthUserAgent());
34
35         CachedHttp *cachedHttp = new CachedHttp(*http, "yt");
36         cachedHttp->setMaxSeconds(3600);
37
38         return cachedHttp;
39     }();
40     return *h;
41 }
42
43 void HttpUtils::clearCaches() {
44     LocalCache::instance("yt")->clear();
45     LocalCache::instance("http")->clear();
46 }
47
48 const QByteArray &HttpUtils::userAgent() {
49     static const QByteArray ua = [] {
50         return QString(QLatin1String(Constants::NAME) + QLatin1Char('/') +
51                        QLatin1String(Constants::VERSION) + QLatin1String(" ( ") +
52                        Constants::WEBSITE + QLatin1String(" )"))
53                 .toUtf8();
54     }();
55     return ua;
56 }
57
58 const QByteArray &HttpUtils::stealthUserAgent() {
59     static const QByteArray ua = "curl/7.37.0";
60     return ua;
61 }