summaryrefslogtreecommitdiff
path: root/browser/networkmanager.h
blob: 7ee72296629c69f070c16d119c093d103ca53844 (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
/**
 * Copyright (C) 2014, Pelagicore
 *
 * Author: Jonatan PĂ„lsson <jonatan.palsson@pelagicore.com>
 *
 * This file is part of the GENIVI project Browser Proof-Of-Concept
 * For further information, see http://genivi.org/
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 */

#ifndef NETWORKMAMAGER_H
#define NETWORKMAMAGER_H

#include <QObject>
#include <QDBusContext>
#include <QDebug>
#include <QNetworkAccessManager>
#include <QAuthenticator>

#include "../common/browserdefs.h"

class networkmanager : public QObject, protected QDBusContext
{
    Q_OBJECT
public:
    explicit networkmanager(QNetworkAccessManager *nam, QObject *parent = 0);


signals:
    void onAuthenticationDialog(const conn::brw::AuthenticationData &);
    void onAuthenticationDialogCancel(const conn::brw::AuthenticationData &);
    void onSslErrorDialog(const conn::brw::SslError &);
    void onSslErrorDialogCancel(const conn::brw::SslError &);

    // Internal
    void doCloseAuthenticationDialog(bool, const conn::brw::AuthenticationData);
    void doCloseSslErrorDialog(bool, bool);

public Q_SLOTS:
    conn::brw::ERROR_IDS closeAuthenticationDialog(conn::brw::DIALOG_RESULT, const conn::brw::AuthenticationData&);
    conn::brw::ERROR_IDS closeSslErrorDialog(conn::brw::DIALOG_RESULT, bool);

    // Internal
    void onAuthenticationRequired(QNetworkReply *reply, QAuthenticator *authenticator);
    void onSslErrors(QNetworkReply *reply, const QList<QSslError> & errors);
    void authenticate(bool b, const conn::brw::AuthenticationData ad)
    {
        m_authBool = b;
        m_authData = ad;
    }
    void closeSsl(bool isOK, bool saveCert)
    {
        m_isSslOk = isOK;
        m_sslSaveCert = saveCert;
    }
private:
    QNetworkAccessManager *m_nam;
    bool m_authBool, m_isSslOk, m_sslSaveCert;
    conn::brw::AuthenticationData m_authData;
};

#endif // NETWORKMAMAGER_H