-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnewchat.cpp
80 lines (68 loc) · 1.7 KB
/
newchat.cpp
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
#include "newchat.h"
#include "ui_newchat.h"
#include "safheasli.h"
#include <QDebug>
#include <QString>
#include <QtNetwork/QNetworkAccessManager>
#include <QtNetwork/QNetworkReply>
#include <QUrl>
#include <QJsonObject>
#include <QJsonArray>
#include <QJsonDocument>
#include <QFile>
#include <QListWidgetItem>
QJsonObject NewCh(QString URlAcc)
{
QUrl url(URlAcc);
QNetworkAccessManager Manager;
QNetworkRequest request;
request.setUrl(url);
QNetworkReply *reply = Manager.get(request);
QEventLoop loop;
QObject::connect(reply, &QNetworkReply::finished, &loop, &QEventLoop::quit);
loop.exec();
QJsonObject response;
if (reply->error() == QNetworkReply::NoError)
{
QByteArray b = reply->readAll();
QJsonDocument d = QJsonDocument::fromJson(b);
QJsonObject o = d.object();
response = o;
}
else
{
qDebug() << "Error:" << reply->errorString();
}
reply->deleteLater();
return response;
}
newchat::newchat(QWidget *parent) :
QDialog(parent),
ui(new Ui::newchat)
{
ui->setupUi(this);
}
newchat::~newchat()
{
delete ui;
}
void newchat::sendtoken(QString str)
{
token = str;
}
void newchat::on_pushButton_clicked()
{
ui->label_error->clear();
QString name = ui->lineEdit_NameUser->text();
QString urll = "http://api.barafardayebehtar.ml:8080/sendmessageuser?token=" + token + "&dst=" + name + "&body= ";
QJsonObject js = NewCh(urll);
if (js["code"].toString() == "200")
{
close();
}
else
{
QString mes = js["message"].toString();
ui->label_error->setText(mes);
}
}