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 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202
|
/*
* Copyright (c) 2010-2022 Belledonne Communications SARL.
*
* This file is part of Liblinphone
* (see https://gitlab.linphone.org/BC/public/liblinphone).
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 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 Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <bctoolbox/defs.h>
#include <signal.h>
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "linphone/core.h"
static bool_t running = TRUE;
static const char *passwd = NULL;
static void stop(BCTBX_UNUSED(int signum)) {
running = FALSE;
}
static void helper(const char *progname) {
printf("%s --from <from-uri> --to <to-uri> --route <route> --passwd <pass> --text <text-to-send>\n"
"\t\t\t--help\n"
"\t\t\t--from <uri> uri to send from\n"
"\t\t\t--to <uri> uri to send to\n"
"\t\t\t--route <uri> uri to send the message through\n"
"\t\t\t--passwd <authentication password>\n"
"\t\t\t--text <text to send>\n"
"\t\t\t--verbose\n",
progname);
exit(0);
}
static void on_msg_state_changed(BCTBX_UNUSED(LinphoneChatMessage *msg), LinphoneChatMessageState state) {
switch (state) {
case LinphoneChatMessageStateInProgress:
printf("Sending message...\n");
break;
case LinphoneChatMessageStateNotDelivered:
fprintf(stderr, "Error sending message. Use --verbose to troubleshoot.\n");
running = FALSE;
break;
case LinphoneChatMessageStateDelivered:
printf("Message transmitted succesfully.\n");
running = FALSE;
break;
case LinphoneChatMessageStateDeliveredToUser:
case LinphoneChatMessageStateDisplayed:
case LinphoneChatMessageStateFileTransferDone:
case LinphoneChatMessageStateFileTransferError:
case LinphoneChatMessageStateIdle:
case LinphoneChatMessageStateFileTransferInProgress:
break;
}
}
static void auth_info_requested(BCTBX_UNUSED(LinphoneCore *lc),
BCTBX_UNUSED(const char *realm),
BCTBX_UNUSED(const char *username),
BCTBX_UNUSED(const char *domain)) {
running = FALSE;
if (passwd) {
fprintf(stderr, "Server rejected the supplied username or password\n");
} else {
fprintf(stderr, "Authentication requested by server. Please retry by supplying a password with --passwd.\n");
}
}
int main(int argc, char *argv[]) {
LinphoneCoreVTable vtable = {0};
LinphoneCore *lc;
int i;
LinphoneAddress *from = NULL;
LinphoneAddress *to = NULL;
LinphoneAddress *route = NULL;
LinphoneProxyConfig *cfg;
LinphoneChatMessage *msg;
LinphoneChatRoom *room;
LinphoneChatMessageCbs *cbs;
char *text = NULL;
char *tmp;
signal(SIGINT, stop);
for (i = 1; i < argc; ++i) {
if (strcmp(argv[i], "--verbose") == 0) {
linphone_core_set_log_level_mask(ORTP_MESSAGE | ORTP_WARNING | ORTP_ERROR | ORTP_FATAL);
} else if (strcmp(argv[i], "--from") == 0) {
i++;
if (i < argc) {
from = linphone_address_new(argv[i]);
if (!from) {
fprintf(stderr, "Incorrect from specified\n");
return -1;
}
}
} else if (strcmp(argv[i], "--to") == 0) {
i++;
if (i < argc) {
to = linphone_address_new(argv[i]);
if (!to) {
fprintf(stderr, "Incorrect to specified\n");
return -1;
}
}
} else if (strcmp(argv[i], "--route") == 0) {
i++;
if (i < argc) {
route = linphone_address_new(argv[i]);
if (!route) {
fprintf(stderr, "Incorrect route specified\n");
return -1;
}
}
} else if (strcmp(argv[i], "--passwd") == 0) {
i++;
if (i < argc) {
passwd = argv[i];
}
} else if (strcmp(argv[i], "--text") == 0) {
i++;
if (i < argc) {
text = argv[i];
}
} else {
helper(argv[0]);
}
}
if (!from) {
fprintf(stderr, "Please specify from.\n");
helper(argv[0]);
return -1;
}
if (!to) {
fprintf(stderr, "Please specify to.\n");
helper(argv[0]);
return -1;
}
if (!text) {
fprintf(stderr, "Please specify text to send.\n");
helper(argv[0]);
return -1;
}
vtable.auth_info_requested = auth_info_requested;
lc = linphone_core_new(&vtable, NULL, NULL, NULL);
if (passwd) {
LinphoneAuthInfo *ai =
linphone_core_create_auth_info(lc, linphone_address_get_username(from), NULL, passwd, NULL, NULL, NULL);
linphone_core_add_auth_info(lc, ai);
linphone_auth_info_destroy(ai);
}
if (!route) {
route = linphone_address_clone(from);
linphone_address_set_username(route, NULL);
linphone_address_set_display_name(route, NULL);
}
cfg = linphone_core_create_proxy_config(lc);
linphone_proxy_config_set_identity_address(cfg, from);
tmp = linphone_address_as_string(route);
linphone_proxy_config_set_server_addr(cfg, tmp);
ms_free(tmp);
linphone_proxy_config_enable_register(cfg, FALSE);
linphone_core_add_proxy_config(lc, cfg);
linphone_proxy_config_unref(cfg);
room = linphone_core_get_chat_room(lc, to);
msg = linphone_chat_room_create_message(room, text);
cbs = linphone_chat_message_get_callbacks(msg);
linphone_chat_message_cbs_set_msg_state_changed(cbs, on_msg_state_changed);
linphone_chat_room_send_chat_message(room, msg);
/* main loop for receiving notifications and doing background linphonecore work: */
while (running) {
linphone_core_iterate(lc);
ms_usleep(50000);
}
linphone_address_unref(from);
linphone_address_unref(to);
linphone_address_unref(route);
linphone_core_destroy(lc);
return 0;
}
|