summaryrefslogtreecommitdiffstats
path: root/server/notification-providers/onesender.js
blob: 4a33931a24babd97040b2cfa7345468ba44f6d72 (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
const NotificationProvider = require("./notification-provider");
const axios = require("axios");

class Onesender extends NotificationProvider {
    name = "Onesender";

    /**
     * @inheritdoc
     */
    async send(notification, msg, monitorJSON = null, heartbeatJSON = null) {
        const okMsg = "Sent Successfully.";

        try {
            let data = {
                heartbeat: heartbeatJSON,
                monitor: monitorJSON,
                msg,
                to: notification.onesenderReceiver,
                type: "text",
                recipient_type: "individual",
                text: {
                    body: msg
                }
            };
            if (notification.onesenderTypeReceiver === "private") {
                data.to = notification.onesenderReceiver + "@s.whatsapp.net";
            } else {
                data.recipient_type = "group";
                data.to = notification.onesenderReceiver + "@g.us";
            }
            let config = {
                headers: {
                    "Authorization": "Bearer " + notification.onesenderToken,
                }
            };
            await axios.post(notification.onesenderURL, data, config);
            return okMsg;

        } catch (error) {
            this.throwGeneralAxiosError(error);
        }

    }

}

module.exports = Onesender;