-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathprotocol.hpp
executable file
·62 lines (49 loc) · 2.55 KB
/
protocol.hpp
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
/*
This file is part of the telepathy-morse connection manager.
Copyright (C) 2016 Alexandr Akulich <akulichalexander@gmail.com>
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 2
of the License, or (at your option) any later version.
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, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#ifndef MORSE_PROTOCOL_HPP
#define MORSE_PROTOCOL_HPP
#include <TelepathyQt/BaseProtocol>
class MorseProtocol : public Tp::BaseProtocol
{
Q_OBJECT
Q_DISABLE_COPY(MorseProtocol)
public:
MorseProtocol(const QDBusConnection &dbusConnection, const QString &name);
virtual ~MorseProtocol();
static QString getAccount(const QVariantMap ¶meters);
static bool getEnableAuthentication(const QVariantMap ¶meters);
static QString getServerAddress(const QVariantMap ¶meters);
static quint16 getServerPort(const QVariantMap ¶meters);
static QString getServerKey(const QVariantMap ¶meters);
static QString getProxyType(const QVariantMap ¶meters);
static QString getProxyAddress(const QVariantMap ¶meters);
static quint16 getProxyPort(const QVariantMap ¶meters);
static QString getProxyUsername(const QVariantMap ¶meters);
static QString getProxyPassword(const QVariantMap ¶meters);
static uint getKeepAliveInterval(const QVariantMap ¶meters, uint defaultValue);
private:
Tp::BaseConnectionPtr createConnection(const QVariantMap ¶meters, Tp::DBusError *error);
QString identifyAccount(const QVariantMap ¶meters, Tp::DBusError *error);
QString normalizeContact(const QString &contactId, Tp::DBusError *error);
// Proto.I.Addressing
QString normalizeVCardAddress(const QString &vCardField, const QString vCardAddress,
Tp::DBusError *error);
QString normalizeContactUri(const QString &uri, Tp::DBusError *error);
Tp::BaseProtocolAddressingInterfacePtr addrIface;
Tp::BaseProtocolAvatarsInterfacePtr avatarsIface;
Tp::BaseProtocolPresenceInterfacePtr presenceIface;
};
#endif // MORSE_PROTOCOL_HPP