-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjoingroup.cpp
79 lines (68 loc) · 1.71 KB
/
joingroup.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
#include "joingroup.h"
#include "ui_joingroup.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 Joingrou(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;
}
joingroup::joingroup(QWidget *parent) :
QDialog(parent),
ui(new Ui::joingroup)
{
ui->setupUi(this);
}
joingroup::~joingroup()
{
delete ui;
}
void joingroup::sendtoken(QString str)
{
token = str;
}
void joingroup::on_pushButton_clicked()
{
ui->label_error->clear();
QString name = ui->lineEdit_NameGroup->text();
QString urll = "http://api.barafardayebehtar.ml:8080/joingroup?token=" + token + "&group_name=" + name;
QJsonObject js = Joingrou(urll);
if (js["code"].toString() == "200")
{
close();
}
else
{
QString mes = js["message"].toString();
ui->label_error->setText(mes);
}
}