summaryrefslogtreecommitdiff
path: root/client.cxx
blob: 67114612105ba75d77366e8c1880d8f5908984fe (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
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
#include <QStringBuilder>
#include <rtclient/client.h>
#include <rtclient/ticket.h>
#include <rtclient/search.h>
#include "qrtclient/client.hxx"

namespace RTClient {

	Client::Client(char const* url, char const* certificate)
	{
		rtclient_init(url, certificate);
	}

	void Client::logIn(QString const& name, QString const& password)
	{
		rtclient_login(name.toLatin1().constData(), password.toLatin1().constData());
		emit loggedIn(name);
	}

	void Client::userNew(QString const& name
			, QString const& password
			, QString const& emailAddress
			, QString const& realName
			, QString const& nickName
			, QString const& organization
			, QString const& address1
			, QString const& address2
			, QString const& city
			, QString const& state
			, QString const& zip
			, QString const& country
			, QString const& homePhone
			, QString const& workPhone
			, QString const& mobilePhone
			, QString const& pagerPhone
			, QString const& contactInfo
			, QString const& comments
			, QString const& signature
			, QString const& gecos
			, rtclient_user_lang lang
			, rtclient_user_timezone timezone
			, bool disabled
			, bool privileged)
	{
		rtclient_user_new(name.toLatin1().constData()
				, password.toLatin1().constData()
				, emailAddress.toLatin1().constData()
				, realName.toLatin1().constData()
				, nickName.toLatin1().constData()
				, organization.toLatin1().constData()
				, address1.toLatin1().constData()
				, address2.toLatin1().constData()
				, city.toLatin1().constData()
				, state.toLatin1().constData()
				, zip.toLatin1().constData()
				, country.toLatin1().constData()
				, homePhone.toLatin1().constData()
				, workPhone.toLatin1().constData()
				, mobilePhone.toLatin1().constData()
				, pagerPhone.toLatin1().constData()
				, contactInfo.toLatin1().constData()
				, comments.toLatin1().constData()
				, signature.toLatin1().constData()
				, gecos.toLatin1().constData()
				, lang
				, timezone
				, disabled
				, privileged);
	}

	void Client::userShow(unsigned int id)
	{
		rtclient_user* user = nullptr;
		rtclient_user_showid(&user, id);
		emit userShown(user);
	}

	void Client::userShow(QString const& name)
	{
		rtclient_user* user = nullptr;
		rtclient_user_showname(&user, name.toLatin1().constData());
		emit userShown(user);
	}

	void Client::ticketNew(QString const& queue
			, QString const& requestor
			, QString const& subject
			, QString const& cc
			, QString const& adminCc
			, QString const& owner
			, QString const& status
			, QString const& priority
			, QString const& initialPriority
			, QString const& finalPriority
			, QString const& timeEstimated
			, QString const& starts
			, QString const& due
			, QString const& text)
	{
		rtclient_ticket_new(queue.toLatin1().constData()
			, requestor.toLatin1().constData()
			, subject.toLatin1().constData()
			, cc.toLatin1().constData()
			, adminCc.toLatin1().constData()
			, owner.toLatin1().constData()
			, status.toLatin1().constData()
			, priority.toLatin1().constData()
			, initialPriority.toLatin1().constData()
			, finalPriority.toLatin1().constData()
			, timeEstimated.toLatin1().constData()
			, starts.toLatin1().constData()
			, due.toLatin1().constData()
			, text.toLatin1().constData());
	}

	void Client::searchTicket(QString const& owner)
	{
		QString query{"Owner='" % owner % "'"};
		rtclient_search_ticket_list* ticketList = nullptr;
		rtclient_search_ticket(&ticketList, query.toLatin1().constData());
		emit searchedTicket(ticketList);
	}

	void Client::ticketHistory(int id, bool longFormat)
	{
		rtclient_ticket_history_list* historyList = nullptr;
		rtclient_ticket_history(&historyList, id, longFormat);
		emit gotTicketHistory(historyList);
	}

	Client::~Client()
	{
		rtclient_cleanup();
	}

}