Friendiqa/source-linux/common/updatenews.h

109 lines
3.6 KiB
C
Raw Normal View History

2018-11-09 22:06:13 +01:00
// This file is part of Friendiqa
// https://git.friendi.ca/lubuwest/Friendiqa
2020-05-24 21:14:23 +02:00
// Copyright (C) 2020 Marco R. <thomasschmidt45@gmx.net>
2018-11-09 22:06:13 +01:00
//
// 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 3 of the License, or
// (at your option) any later version.
//
// In addition, as a special exception, the copyright holders give
// permission to link the code of portions of this program with the
// OpenSSL library under certain conditions as described in each
// individual source file, and distribute linked combinations including
// the two.
//
// You must obey the GNU General Public License in all respects for all
// of the code used other than OpenSSL. If you modify file(s) with this
// exception, you may extend this exception to your version of the
// file(s), but you are not obligated to do so. If you do not wish to do
// so, delete this exception statement from your version. If you delete
// this exception statement from all source files in the program, then
// also delete it here.
//
// 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, see <http://www.gnu.org/licenses/>.
#ifndef UPDATENEWS_H
#define UPDATENEWS_H
#include <QObject>
#include <QJsonObject>
#include <QSqlDatabase>
#include "xhr.h"
2019-01-09 22:03:16 +01:00
#include "alarm.h"
2019-06-25 20:59:10 +02:00
//#include "AndroidNative/systemdispatcher.h"
2018-11-09 22:06:13 +01:00
class UPDATENEWS : public QObject
{
Q_OBJECT
Q_PROPERTY(QString url READ url WRITE setUrl NOTIFY urlChanged)
// Q_PROPERTY(QString login READ login NOTIFY loginChanged)
public:
static UPDATENEWS *instance();
explicit UPDATENEWS(QObject *parent = 0);
QString url() const;
//QString login() const;
signals:
void urlChanged(QString url);
2019-01-09 22:03:16 +01:00
void success(QString api);
void error(QString api, QString content);
2019-06-25 20:59:10 +02:00
void quitapp();
2018-11-09 22:06:13 +01:00
public slots:
void setUrl(QString url);
2022-03-01 21:59:21 +01:00
void setSyncAll(bool syncAll);
2018-11-09 22:06:13 +01:00
void setDatabase();
void login();
void timeline();
2019-06-25 20:59:10 +02:00
void replies();
void startsync();
void directmessages();
void notifications();
2021-05-12 21:41:34 +02:00
void friendrequests();
2020-05-24 21:14:23 +02:00
void events();
2019-06-25 20:59:10 +02:00
//void startservice(QString type,QVariantMap map);
2021-05-12 21:41:34 +02:00
void startImagedownload(QString downloadtype);
2019-01-09 22:03:16 +01:00
void updateImageLocation(QString downloadtype,QString imageurl, QString filename, int index);
void store(QByteArray serverreply,QString apiname);
2021-05-12 21:41:34 +02:00
void storeFriendrequests(QByteArray serverreply,QString apiname);
2020-05-24 21:14:23 +02:00
void storeEvents(QByteArray serverreply,QString apiname);
2019-01-09 22:03:16 +01:00
void showError(QString data, QString url,QString api, int code);
2018-11-09 22:06:13 +01:00
private:
QString m_url;
QString m_api;
2019-01-09 22:03:16 +01:00
QString m_imagedir;
2018-11-09 22:06:13 +01:00
QString m_login;
QString username;
2022-03-01 21:59:21 +01:00
bool m_syncAll;
2019-06-25 20:59:10 +02:00
int syncindex;
2022-03-01 21:59:21 +01:00
int usernameindex;
int usernamelength;
2018-11-09 22:06:13 +01:00
QSqlDatabase m_db;
2019-06-25 20:59:10 +02:00
QList<QString> synclist;
QList <QString> notifylist;
2018-11-09 22:06:13 +01:00
QList<QJsonValue> findNewContacts(QJsonDocument news);
2019-06-25 20:59:10 +02:00
QJsonObject findNotificationContact(QString imagelink);
int m_updateInterval;
2018-11-09 22:06:13 +01:00
//void timeline();
2019-01-09 22:03:16 +01:00
//void store(QByteArray serverreply,QString apiname);
2018-11-09 22:06:13 +01:00
void updateContacts(QList<QJsonValue> contacts);
2019-01-09 22:03:16 +01:00
XHR xhr;
ALARM alarm;
QList<QString> newcontactimagelinks;
QList<QString> newcontactnames;
2018-11-09 22:06:13 +01:00
};
#endif // UPDATENEWS_H