aboutsummaryrefslogtreecommitdiff
path: root/context.cpp
blob: 8df8120c7e1a8e5af7e7a902d331e4f51fb94569 (plain) (blame)
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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
#include "context.h"

Context::Context(QObject *parent)
    : QObject(parent)
{
}

Context::Context(QObject *parent, dc_context_t *context)
    : QObject(parent)
    , m_context(context)
{
}

Context::~Context()
{
    dc_context_unref(m_context);
}

void
Context::configure()
{
    dc_configure(m_context);
}

bool
Context::isConfigured() const
{
    return dc_is_configured(m_context);
}

void
Context::startIo()
{
    dc_start_io(m_context);
}

void
Context::stopIo()
{
    dc_stop_io(m_context);
}

void
Context::maybeNetwork()
{
    dc_maybe_network(m_context);
}

QString
Context::getInfo()
{
    char *info = dc_get_info(m_context);
    QString result{info};
    dc_str_unref(info);
    return result;
}

DcChatlist *
Context::getChatlist()
{
    dc_chatlist_t *chatlist = dc_get_chatlist(m_context, 0, NULL, 0);
    return new DcChatlist{chatlist};
}

DcChat *
Context::getChat(uint32_t chatId)
{
    dc_chat_t *chat = dc_get_chat(m_context, chatId);
    return new DcChat{chat};
}

QVariantList
Context::getMsgIdList(uint32_t chatId) {
    QVariantList result;
    dc_array_t *msgIdArray = dc_get_chat_msgs(m_context, chatId, 0, 0);
    for (size_t i = 0; i < dc_array_get_cnt(msgIdArray); i++) {
        result << dc_array_get_id(msgIdArray, i);
    }
    dc_array_unref(msgIdArray);
    return result;
}

DcMessage *
Context::getMessage(uint32_t msgId)
{
    dc_msg_t *message = dc_get_msg(m_context, msgId);
    return new DcMessage{message};
}

DcContact *
Context::getContact(uint32_t contactId)
{
    dc_contact_t *contact = dc_get_contact(m_context, contactId);
    return new DcContact{contact};
}

QString
Context::getBlobdir()
{
    char *blobdir = dc_get_blobdir(m_context);
    QString result{blobdir};
    dc_str_unref(blobdir);
    return result;
}

bool
Context::setConfig(QString key, QString value)
{
    QByteArray utf8Key = key.toUtf8();
    QByteArray utf8Value = value.toUtf8();
    return dc_set_config(m_context, utf8Key.constData(), utf8Value.constData());
}

QString
Context::getConfig(QString key)
{
    QByteArray utf8Key = key.toUtf8();
    char *value = dc_get_config(m_context, utf8Key.constData());
    QString result{value};
    dc_str_unref(value);
    return result;
}

QString
Context::getMessageInfo(uint32_t msgId)
{
    char *info = dc_get_msg_info(m_context, msgId);
    QString result{info};
    dc_str_unref(info);
    return result;
}

uint32_t
Context::sendTextMessage(uint32_t chatId, QString textToSend)
{
    QByteArray utf8Text = textToSend.toUtf8();
    return dc_send_text_msg(m_context, chatId, utf8Text.constData());
}

bool
Context::setChatMuteDuration(uint32_t chatId, int64_t duration)
{
    return dc_set_chat_mute_duration(m_context, chatId, duration);
}

uint32_t
Context::decideOnContactRequest(uint32_t msgId, int decision)
{
    return dc_decide_on_contact_request(m_context, msgId, decision);
}