blob: f01ca5035d6087929e6161c983905f592bda978e (
plain)
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
|
#include <rtclient/rtclient.h>
#include "worker.hxx"
Worker::Worker()
{
rtclient_init("https://darapsa.co.id/rt");
}
void Worker::logIn(QString const& name, QString const& password)
{
rtclient_login(name.toLatin1().constData(), password.toLatin1().constData());
struct rt_user* user = NULL;
rtclient_user_show(&user, name.toLatin1().constData());
if (user) emit logged(user);
}
void Worker::search(QString const& owner)
{
QString query{"Owner='"};
query.append(owner);
query.append("'");
rt_ticketlist* taskList = NULL;
rtclient_ticket_search(&taskList, query.toLatin1().constData());
if (taskList) emit foundTasks(taskList);
}
Worker::~Worker()
{
rtclient_cleanup();
}
|