aboutsummaryrefslogtreecommitdiff
path: root/src/browser.cpp
blob: e93123c7dfc03ca4230aec7982d3944930cb2091 (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
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
/*
 * 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/smolbote.hg
 *
 * SPDX-License-Identifier: GPL-3.0
 */

#include "browser.h"
#include "addressbar/addressbar.h"
#include "mainwindow/mainwindow.h"
#include "subwindow/subwindow.h"
#include "webengine/urlinterceptor.h"
#include <QAction>
#include <QDir>
#include <QFileInfo>
#include <QFileInfoList>
#include <QJsonArray>
#include <QJsonDocument>
#include <QPluginLoader>
#include <QTimer>
#include <about/aboutdialog.h>
#include <bookmarks/bookmarkswidget.h>
#include <configuration/configuration.h>
#include <downloads/downloadswidget.h>
#include <version.h>
#include <web/profilemanager.h>
#include <web/webprofile.h>

Browser::Browser(int &argc, char *argv[], bool allowSecondary)
    : SingleApplication(argc, argv, allowSecondary, SingleApplication::User | SingleApplication::SecondaryNotification | SingleApplication::ExcludeAppVersion)
{
    setApplicationName(POI_NAME);
    setWindowIcon(QIcon(":/icon.svg"));
    setApplicationVersion(SMOLBOTE_VERSION);
}

Browser::~Browser()
{
    if(m_bookmarks)
        m_bookmarks->save();

    qDeleteAll(m_windows);
    m_windows.clear();
}

void Browser::about()
{
    auto *dlg = new AboutDialog;
    for(const Plugin &plugin : qAsConst(m_plugins)) {
        dlg->addPlugin(plugin.name, plugin.author, plugin.shortcut.toString());
    }
    dlg->exec();
}

QPair<QString, WebProfile *> Browser::loadProfile(const QString &id)
{
    WebProfile *profile = m_profileManager->loadProfile(id);
    connect(profile, &WebProfile::downloadRequested, m_downloads.get(), &DownloadsWidget::addDownload);
    profile->setRequestInterceptor(m_urlFilter.get());

    return QPair<QString, WebProfile *>(m_profileManager->id(profile), profile);
}

void Browser::setConfiguration(std::unique_ptr<Configuration> &config)
{
    Q_ASSERT(config);
    m_config = std::move(config);
}

Configuration *Browser::getConfiguration() const
{
    Q_ASSERT(m_config);
    return m_config.get();
}

ProfileManager *Browser::getProfileManager()
{
    return m_profileManager;
}

void Browser::registerPlugin(const Plugin &plugin)
{
    Q_ASSERT(m_config);

    auto *p = qobject_cast<PluginInterface *>(plugin.instance);
    if(p != nullptr) {
        p->setBrowserInterface(this);
        m_plugins.append(plugin);
    }
}

void Browser::setup(const QString &defaultProfile)
{
    Q_ASSERT(m_config);

    auto stylesheet = m_config->value<QString>("browser.stylesheet");
    if(stylesheet) {
        QFile f(stylesheet.value());
        if(f.open(QIODevice::ReadOnly)) {
            setStyleSheet(f.readAll());
            f.close();
        }
    }

    // downloads
    m_downloads = std::make_unique<DownloadsWidget>(m_config->value<QString>("downloads.path").value());
    // url request filter
    m_urlFilter = std::make_unique<UrlRequestInterceptor>(m_config);
    // cookie request filter

    // load profiles
    m_profileManager = new ProfileManager(m_config->section("profile"), defaultProfile, this);
    // connect profiles
    for(const QString &id : m_profileManager->idList()) {
        auto *profile = m_profileManager->profile(id);
        connect(profile, &WebProfile::downloadRequested, m_downloads.get(), &DownloadsWidget::addDownload);
        profile->setRequestInterceptor(m_urlFilter.get());
    }
    // set default profile
    WebProfile::setDefaultProfile(m_profileManager->profile(defaultProfile));

    // bookmarks
    m_bookmarks = std::make_shared<BookmarksWidget>(QString::fromStdString(m_config->value<std::string>("bookmarks.path").value()));
    connect(m_bookmarks.get(), &BookmarksWidget::openUrl, this, [this](const QUrl &url) {
        m_windows.last()->createTab(url);
    });

    auto *timer = new QTimer(this);
    connect(timer, &QTimer::timeout, m_bookmarks.get(), &BookmarksWidget::save);
    // 5min * 60sec * 1000ms
    timer->start(5 * 60 * 1000);
}

void Browser::createSession(const QJsonObject &object)
{
    MainWindow *mainwindow = nullptr;
    if(m_windows.isEmpty())
        mainwindow = createWindow();
    else
        mainwindow = m_windows.last();

    const QJsonArray subwindows = object.value("subwindows").toArray();

    for(const QJsonValue &s : subwindows) {
        const QJsonObject subwindow = s.toObject();
        const QString profileId = subwindow.value("profile").toString();
        WebProfile *profile = m_profileManager->profile(profileId);
        if(profile == nullptr)
            profile = WebProfile::defaultProfile();
        Q_CHECK_PTR(profile);

        SubWindow *window = nullptr;
        for(SubWindow *w : mainwindow->subWindows()) {
            if(w->profile() == profile) {
                window = w;
                break;
            }
        }
        if(window == nullptr)
            window = mainwindow->createSubWindow(m_config, profile);

        const QJsonArray tabs = subwindow.value("tabs").toArray();
        if(tabs.isEmpty())
            window->addTab(profile->newtab());
        else {
            for(const QJsonValue &t : subwindow.value("tabs").toArray()) {
                const QJsonObject tab = t.toObject();
                const QUrl url = QUrl::fromUserInput(tab.value("url").toString());
                WebProfile *p = m_profileManager->profile(tab.value("profile").toString());
                window->addTab(url, p);
            }
        }
    }
}

MainWindow *Browser::createWindow()
{
    // the window will delete itself when it closes, so we don't need to delete it
    auto *window = new MainWindow(m_config);
    connect(window->addressBar, &AddressBar::complete, m_bookmarks.get(), &BookmarksWidget::search);
    connect(window, &MainWindow::createBookmark, m_bookmarks.get(), &BookmarksWidget::addBookmark);

    auto *bookmarksAction = new QAction(tr("Bookmarks"), window);
    m_config->setShortcut(bookmarksAction, "bookmarks.shortcut");
    connect(bookmarksAction, &QAction::triggered, window, [this, window]() {
        bool wasVisible = m_bookmarks->isVisible();
        for(MainWindow *w : qAsConst(m_windows)) {
            w->removeDockWidget(m_bookmarks.get());
        }
        if(!wasVisible) {
            window->addDockWidget(Qt::RightDockWidgetArea, m_bookmarks.get());
        }
    });
    window->addAction(MainWindow::ToolsMenu, bookmarksAction);

    auto *downloadsAction = new QAction(tr("Downloads"), window);
    m_config->setShortcut(downloadsAction, "downloads.shortcut");
    connect(downloadsAction, &QAction::triggered, window, [this, window]() {
        bool wasVisible = m_downloads->isVisible();
        for(MainWindow *w : qAsConst(m_windows)) {
            w->removeDockWidget(m_downloads.get());
        }
        if(!wasVisible) {
            window->addDockWidget(Qt::RightDockWidgetArea, m_downloads.get());
        }
    });
    window->addAction(MainWindow::ToolsMenu, downloadsAction);

    for(const Plugin &p : qAsConst(m_plugins)) {
        auto *plugin = qobject_cast<PluginInterface *>(p.instance);
        Q_CHECK_PTR(plugin);

        auto *pluginAction = new QAction(p.name, window);
        pluginAction->setShortcut(p.shortcut);

        connect(pluginAction, &QAction::triggered, window, [=]() {
            plugin->createWidget(window)->exec();
        });
        window->addAction(MainWindow::ToolsMenu, pluginAction);
    }

    m_windows.append(window);
    connect(window, &MainWindow::destroyed, this, [this, window]() {
        m_windows.removeOne(window);
    });

    return window;
}