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
|
/* Copyright (c) 2015-2018 Dovecot authors, see the included COPYING file */
#include "lib.h"
#include "array.h"
#include "push-notification-drivers.h"
#include "push-notification-events.h"
#include "push-notification-txn-mbox.h"
#include "push-notification-txn-msg.h"
static int
push_notification_driver_dlog_init(
struct push_notification_driver_config *config,
struct mail_user *user ATTR_UNUSED, pool_t pool ATTR_UNUSED,
void **context ATTR_UNUSED, const char **error_r ATTR_UNUSED)
{
i_debug("Called init push_notification plugin hook.");
if (config->raw_config != NULL) {
i_debug("Config string for dlog push_notification driver: %s",
config->raw_config);
}
return 0;
}
static bool
push_notification_driver_dlog_begin_txn(
struct push_notification_driver_txn *dtxn)
{
const struct push_notification_event *event;
i_debug("Called begin_txn push_notification plugin hook.");
array_foreach_elem(&push_notification_events, event)
push_notification_event_init(dtxn, event->name, NULL);
return TRUE;
}
static void
push_notification_driver_dlog_process_mbox(
struct push_notification_driver_txn *dtxn ATTR_UNUSED,
struct push_notification_txn_mbox *mbox)
{
struct push_notification_txn_event *event;
i_debug("Called process_mbox push_notification plugin hook.");
i_debug("Mailbox data: Mailbox [%s]", mbox->mailbox);
if (array_is_created(&mbox->eventdata)) {
array_foreach_elem(&mbox->eventdata, event) {
if (event->event->event->mbox.debug_mbox != NULL)
event->event->event->mbox.debug_mbox(event);
}
}
}
static void
push_notification_driver_dlog_process_msg(
struct push_notification_driver_txn *dtxn ATTR_UNUSED,
struct push_notification_txn_msg *msg)
{
struct push_notification_txn_event *event;
i_debug("Called process_msg push_notification plugin hook.");
i_debug("Message data: Mailbox [%s], UID [%u], UIDVALIDITY [%u]",
msg->mailbox, msg->uid, msg->uid_validity);
if (array_is_created(&msg->eventdata)) {
array_foreach_elem(&msg->eventdata, event) {
if (event->event->event->msg.debug_msg != NULL)
event->event->event->msg.debug_msg(event);
}
}
}
static void
push_notification_driver_dlog_end_txn(
struct push_notification_driver_txn *dtxn ATTR_UNUSED,
bool success ATTR_UNUSED)
{
i_debug("Called end_txn push_notification plugin hook.");
}
static void
push_notification_driver_dlog_deinit(
struct push_notification_driver_user *duser ATTR_UNUSED)
{
i_debug("Called deinit push_notification plugin hook.");
}
static void push_notification_driver_dlog_cleanup(void)
{
i_debug("Called cleanup push_notification plugin hook.");
}
/* Driver definition */
extern struct push_notification_driver push_notification_driver_dlog;
struct push_notification_driver push_notification_driver_dlog = {
.name = "dlog",
.v = {
.init = push_notification_driver_dlog_init,
.begin_txn = push_notification_driver_dlog_begin_txn,
.process_mbox = push_notification_driver_dlog_process_mbox,
.process_msg = push_notification_driver_dlog_process_msg,
.end_txn = push_notification_driver_dlog_end_txn,
.deinit = push_notification_driver_dlog_deinit,
.cleanup = push_notification_driver_dlog_cleanup
}
};
|