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
|
/*
cookiejarmodel.cpp
This file is part of GammaRay, the Qt application inspection and manipulation tool.
SPDX-FileCopyrightText: 2016 Klarälvdalens Datakonsult AB, a KDAB Group company <info@kdab.com>
Author: Volker Krause <volker.krause@kdab.com>
SPDX-License-Identifier: GPL-2.0-or-later
Contact KDAB at <info@kdab.com> for commercial licensing options.
*/
#include "cookiejarmodel.h"
#include <QDateTime>
#include <QDebug>
#include <QNetworkCookieJar>
using namespace GammaRay;
// protected member access control violation helper
class CookieMonster : public QNetworkCookieJar
{
public:
static QList<QNetworkCookie> pillageJar(QNetworkCookieJar *jar);
};
QList<QNetworkCookie> CookieMonster::pillageJar(QNetworkCookieJar *jar)
{
auto openJar = reinterpret_cast<CookieMonster *>(jar);
return openJar->allCookies();
}
CookieJarModel::CookieJarModel(QObject *parent)
: QAbstractTableModel(parent)
, m_cookieJar(nullptr)
{
}
CookieJarModel::~CookieJarModel() = default;
void CookieJarModel::setCookieJar(QNetworkCookieJar *cookieJar)
{
if (m_cookieJar == cookieJar)
return;
beginResetModel();
m_cookieJar = cookieJar;
if (cookieJar)
m_cookies = CookieMonster::pillageJar(cookieJar);
else
m_cookies.clear();
endResetModel();
}
int CookieJarModel::columnCount(const QModelIndex &parent) const
{
Q_UNUSED(parent);
return 8;
}
int CookieJarModel::rowCount(const QModelIndex &parent) const
{
if (parent.isValid() || !m_cookieJar)
return 0;
return m_cookies.size();
}
QVariant CookieJarModel::data(const QModelIndex &index, int role) const
{
if (!index.isValid() || !m_cookieJar)
return QVariant();
if (role == Qt::DisplayRole) {
const auto &cookie = m_cookies.at(index.row());
switch (index.column()) {
case 0:
return cookie.name();
case 1:
return cookie.domain();
case 2:
return cookie.path();
case 3:
return cookie.value();
case 4:
return cookie.expirationDate();
}
} else if (role == Qt::CheckStateRole) {
const auto &cookie = m_cookies.at(index.row());
switch (index.column()) {
case 5:
return cookie.isHttpOnly() ? Qt::Checked : Qt::Unchecked;
case 6:
return cookie.isSecure() ? Qt::Checked : Qt::Unchecked;
case 7:
return cookie.isSessionCookie() ? Qt::Checked : Qt::Unchecked;
}
}
return QVariant();
}
QVariant CookieJarModel::headerData(int section, Qt::Orientation orientation, int role) const
{
if (orientation == Qt::Horizontal && role == Qt::DisplayRole) {
switch (section) {
case 0:
return tr("Name");
case 1:
return tr("Domain");
case 2:
return tr("Path");
case 3:
return tr("Value");
case 4:
return tr("Expiration Date");
case 5:
return tr("Http Only");
case 6:
return tr("Secure");
case 7:
return tr("Session Cookie");
}
}
return QAbstractTableModel::headerData(section, orientation, role);
}
|