aboutsummaryrefslogtreecommitdiff
path: root/src/webengine/webprofile.h
blob: 1ec2b889a4f8b01c28b60c054aebf1ba6e9f8475 (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
/*
 * This file is part of smolbote. It's copyrighted by the contributors recorded
 * in the version control history of the file, available from its original
 * location: https://neueland.iserlohn-fortress.net/gitea/aqua/smolbote
 *
 * SPDX-License-Identifier: GPL-3.0
 */

#ifndef SMOLBOTE_WEBENGINEPROFILE_H
#define SMOLBOTE_WEBENGINEPROFILE_H

#include <QHash>
#include <QMap>
#include <QNetworkCookie>
#include <QString>
#include <QUrl>
#include <QVector>
#include <QWebEngineProfile>
#include <QWebEngineSettings>
#include <profileinterface.h>

class WebProfileManager;
class WebProfile : public Profile
{
    friend class WebProfileManager;

    Q_OBJECT

public:
    static WebProfile *defaultProfile();
    static void setDefaultProfile(WebProfile *profile);

    ~WebProfile() = default;

    const QString name() const;
    void setName(const QString &name);

    const QVector<QNetworkCookie> cookies() const
    {
        return qAsConst(m_cookies);
    }
    const QMap<QByteArray, QByteArray> headers() const
    {
        return qAsConst(m_headers);
    }

    // search url
    QString search() const;
    void setSearch(const QString &url);

    // homepage url
    QUrl homepage() const;
    void setHomepage(const QUrl &url);

    // new tab url
    QUrl newtab() const;
    void setNewtab(const QUrl &url);

    void setCachePath(const QString &path);
    void setPersistentStoragePath(const QString &path);
    void setPersistentCookiesPolicy(int policy);

    void setHttpAcceptLanguage(const QString &httpAcceptLanguage);
    void setHttpCacheMaximumSize(int maxSize);
    void setHttpCacheType(int type);
    void setHttpUserAgent(const QString &userAgent);
    void setHttpHeader(const QString &name, const QString &value);
    void removeHttpHeader(const QString &name);

    void setSpellCheckEnabled(bool enable);

protected:
    // off-the-record constructor
    explicit WebProfile(const QString &name, QObject *parent = nullptr);
    // default constructor
    explicit WebProfile(const QString &storageName, const QString &name, QObject *parent = nullptr);

private:
    QString m_name;
    QString m_search = QString("about:blank");
    QUrl m_homepage = QUrl("about:blank");
    QUrl m_newtab = QUrl("about:blank");

    QVector<QNetworkCookie> m_cookies;
    QMap<QByteArray, QByteArray> m_headers;
};

#endif // SMOLBOTE_WEBENGINEPROFILE_H