2015-06-02 17:36:26 -04:00
|
|
|
/****************************************************************
|
|
|
|
* RetroShare is distributed under the following license:
|
|
|
|
*
|
|
|
|
* Copyright (C) 2015, RetroShare Team
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
|
|
|
****************************************************************/
|
|
|
|
|
|
|
|
#ifndef _SECURITYIPITEM_H
|
|
|
|
#define _SECURITYIPITEM_H
|
|
|
|
|
|
|
|
#include "retroshare/rstypes.h"
|
|
|
|
|
|
|
|
#include "FeedItem.h"
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
class SecurityIpItem;
|
|
|
|
}
|
|
|
|
|
|
|
|
class FeedHolder;
|
|
|
|
|
|
|
|
class SecurityIpItem : public FeedItem
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
/** Default Constructor */
|
2015-06-03 08:38:23 -04:00
|
|
|
SecurityIpItem(FeedHolder *parent, const RsPeerId &sslId, const std::string& ipAddr, uint32_t result, uint32_t type, bool isTest);
|
|
|
|
SecurityIpItem(FeedHolder *parent, const RsPeerId &sslId, const std::string& ipAddr, const std::string& ipAddrReported, uint32_t type, bool isTest);
|
2015-06-02 17:36:26 -04:00
|
|
|
|
|
|
|
void updateItemStatic();
|
|
|
|
|
2017-10-22 05:52:00 -04:00
|
|
|
bool isSame(const RsPeerId &sslId, const std::string& ipAddr, const std::string& ipAddrReported, uint32_t type);
|
2015-06-02 17:36:26 -04:00
|
|
|
|
2015-06-17 14:59:12 -04:00
|
|
|
protected:
|
2015-06-02 17:36:26 -04:00
|
|
|
/* FeedItem */
|
2015-06-17 14:59:12 -04:00
|
|
|
virtual void doExpand(bool open);
|
2015-06-02 17:36:26 -04:00
|
|
|
|
2015-06-03 08:38:23 -04:00
|
|
|
private:
|
|
|
|
void setup();
|
|
|
|
|
2015-06-02 17:36:26 -04:00
|
|
|
private slots:
|
|
|
|
/* default stuff */
|
|
|
|
void removeItem();
|
|
|
|
void toggle();
|
|
|
|
void peerDetails();
|
|
|
|
void updateItem();
|
2015-06-03 13:16:06 -04:00
|
|
|
void banIpListChanged(const QString &ipAddress);
|
2015-06-02 17:36:26 -04:00
|
|
|
|
|
|
|
private:
|
|
|
|
FeedHolder *mParent;
|
|
|
|
uint32_t mFeedId;
|
|
|
|
|
2015-06-03 08:38:23 -04:00
|
|
|
uint32_t mType;
|
2015-06-02 17:36:26 -04:00
|
|
|
RsPeerId mSslId;
|
2015-06-03 08:38:23 -04:00
|
|
|
std::string mIpAddr;
|
|
|
|
std::string mIpAddrReported;
|
2015-06-02 17:36:26 -04:00
|
|
|
uint32_t mResult;
|
|
|
|
bool mIsTest;
|
|
|
|
|
|
|
|
/** Qt Designer generated object */
|
|
|
|
Ui::SecurityIpItem *ui;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|