-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathsendsms.c
128 lines (115 loc) · 3.77 KB
/
sendsms.c
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
#include <stdlib.h>
#include <stdio.h>
#include <stdbool.h>
#include <string.h>
#include <errno.h>
#include <curl/curl.h>
#include "elks.h"
int main(int argc, char* argv[]) {
size_t sms_size = 160;
char* message = calloc(sms_size+1, sizeof(char));
size_t counter = 0;
if (argc < 3) {
fprintf(stderr, "Usage: %s <RECIPIENT: +46700000000> <MESSAGE...>\n",
argv[0]);
return EINVAL;
}
for (int i = 2; i < argc; i++) {
char* word = argv[i];
size_t word_len = strlen(word);
if (counter + word_len + 1 > sms_size) {
fprintf(stderr,
"Payload too big, should be at most %ld bytes\n",
(long) sms_size);
return EOVERFLOW;
}
strncpy(message+counter, word, word_len);
counter += word_len;
if (i != argc-1) {
message[counter] = ' ';
counter++;
}
}
char* from = "CMOSe";
char* to = argv[1];
if (verify_phonenumber(to)) {
elks_api_connect(message, to, from);
}
free(message);
}
bool verify_phonenumber(char* number) {
/* A phonenumber might be a phonenumber if it starts with a plus
* and has only digits following the initial plus
*/
if (strlen(number) < 2) {
return false;
} else if (number[0] != '+' && number[0] != ' ') {
return false;
} else {
size_t len = strlen(number);
for (int i = 1; i < len; i++) {
if (number[i] >= '0' && number[i] <= '9') {
continue;
} else {
return false;
}
}
return true;
}
}
void elks_api_connect(char* message, char* to, char* from) {
int http_code;
CURLcode res;
CURL* curl = curl_easy_init();
if (!curl) {
return;
}
curl_easy_setopt(curl, CURLOPT_URL, "https://api.46elks.com/a1/SMS");
#ifndef DEBUG
FILE* devnull = fopen("/dev/null", "w");
curl_easy_setopt(curl, CURLOPT_WRITEDATA, devnull);
printf("\n");
#endif
char *elks_username = curl_getenv("ELKS_USERNAME");
char *elks_password = curl_getenv("ELKS_PASSWORD");
curl_easy_setopt(curl, CURLOPT_HTTPAUTH, CURLAUTH_BASIC);
curl_easy_setopt(curl, CURLOPT_USERNAME, elks_username);
curl_easy_setopt(curl, CURLOPT_PASSWORD, elks_password);
char* formatted_message = curl_easy_escape(curl, message, strlen(message));
char* formatted_to = curl_easy_escape(curl, to, strlen(to));
char* formatted_from = curl_easy_escape(curl, from, strlen(from));
char* payload = calloc(
1,
strlen(formatted_message)*3 + strlen(to)*3 + strlen(from)*3
);
sprintf(payload, "to=%s&from=%s&message=%s", formatted_to, formatted_from,
formatted_message);
curl_easy_setopt(curl, CURLOPT_POSTFIELDS, payload);
curl_free(formatted_message);
curl_free(formatted_to);
curl_free(formatted_from);
curl_free(elks_username);
curl_free(elks_password);
res = curl_easy_perform(curl);
curl_easy_getinfo (curl, CURLINFO_RESPONSE_CODE, &http_code);
free(payload);
curl_easy_cleanup(curl);
#ifndef DEBUG
fclose(devnull);
#endif
if (http_code == 401) {
printf("AUTHENTICATION ERROR\n");
if (!curl_getenv("ELKS_USERNAME")) {
printf("Set the environment variables ELKS_USERNAME and ");
printf("ELKS_PASSWORD to your API public and secret keys\nfrom ");
printf("https://dashboard.46elks.com/\n");
} else {
printf("Wrong ELKS_USERNAME or ELKS_PASSWORD.\n");
printf("Go to https://dashboard.46elks.com/ and verify that ");
printf("you are using the correct credentials");
}
} else if (http_code == 200) {
printf("Sent, check the recipient phone!\n");
}
return;
}