2 * Copyright (C) 2008 Greg Kroah-Hartman <greg@kroah.com>
3 * Copyright (C) 2009 Bart Trojanowski <bart@jukie.net>
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the
7 * Free Software Foundation version 2 of the License.
9 * This program is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * General Public License for more details.
14 * You should have received a copy of the GNU General Public License along
15 * with this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
32 #include <sys/types.h>
34 #include <curl/curl.h>
35 #include <readline/readline.h>
36 #include <libxml/xmlmemory.h>
37 #include <libxml/parser.h>
38 #include <libxml/tree.h>
42 #define zalloc(size) calloc(size, 1)
44 #define dbg(format, arg...) \
47 fprintf(stdout, "bti: %s: " format , __func__ , \
85 struct bti_curl_buffer {
91 static void display_help(void)
93 fprintf(stdout, "bti - send tweet to twitter or identi.ca\n");
94 fprintf(stdout, "Version: " VERSION "\n");
95 fprintf(stdout, "Usage:\n");
96 fprintf(stdout, " bti [options]\n");
97 fprintf(stdout, "options are:\n");
98 fprintf(stdout, " --account accountname\n");
99 fprintf(stdout, " --password password\n");
100 fprintf(stdout, " --action action\n");
101 fprintf(stdout, " ('update', 'friends', 'public', 'replies' "
103 fprintf(stdout, " --user screenname\n");
104 fprintf(stdout, " --proxy PROXY:PORT\n");
105 fprintf(stdout, " --host HOST\n");
106 fprintf(stdout, " --logfile logfile\n");
107 fprintf(stdout, " --shrink-urls\n");
108 fprintf(stdout, " --page PAGENUMBER\n");
109 fprintf(stdout, " --bash\n");
110 fprintf(stdout, " --debug\n");
111 fprintf(stdout, " --dry-run\n");
112 fprintf(stdout, " --version\n");
113 fprintf(stdout, " --help\n");
116 static void display_version(void)
118 fprintf(stdout, "bti - version %s\n", VERSION);
121 static struct session *session_alloc(void)
123 struct session *session;
125 session = zalloc(sizeof(*session));
131 static void session_free(struct session *session)
135 free(session->password);
136 free(session->account);
137 free(session->tweet);
138 free(session->proxy);
140 free(session->homedir);
145 static struct bti_curl_buffer *bti_curl_buffer_alloc(enum action action)
147 struct bti_curl_buffer *buffer;
149 buffer = zalloc(sizeof(*buffer));
153 /* start out with a data buffer of 1 byte to
154 * make the buffer fill logic simpler */
155 buffer->data = zalloc(1);
161 buffer->action = action;
165 static void bti_curl_buffer_free(struct bti_curl_buffer *buffer)
173 static const char *twitter_user_url = "http://twitter.com/statuses/user_timeline/";
174 static const char *twitter_update_url = "https://twitter.com/statuses/update.xml";
175 static const char *twitter_public_url = "http://twitter.com/statuses/public_timeline.xml";
176 static const char *twitter_friends_url = "https://twitter.com/statuses/friends_timeline.xml";
177 static const char *twitter_replies_url = "http://twitter.com/statuses/replies.xml";
179 static const char *identica_user_url = "http://identi.ca/api/statuses/user_timeline/";
180 static const char *identica_update_url = "http://identi.ca/api/statuses/update.xml";
181 static const char *identica_public_url = "http://identi.ca/api/statuses/public_timeline.xml";
182 static const char *identica_friends_url = "http://identi.ca/api/statuses/friends_timeline.xml";
183 static const char *identica_replies_url = "http://identi.ca/api/statuses/replies.xml";
185 static CURL *curl_init(void)
189 curl = curl_easy_init();
191 fprintf(stderr, "Can not init CURL!\n");
194 /* some ssl sanity checks on the connection we are making */
195 curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, 0);
196 curl_easy_setopt(curl, CURLOPT_SSL_VERIFYHOST, 0);
200 static void parse_statuses(xmlDocPtr doc, xmlNodePtr current)
202 xmlChar *text = NULL;
203 xmlChar *user = NULL;
204 xmlChar *created = NULL;
207 current = current->xmlChildrenNode;
208 while (current != NULL) {
209 if (current->type == XML_ELEMENT_NODE) {
210 if (!xmlStrcmp(current->name, (const xmlChar *)"created_at"))
211 created = xmlNodeListGetString(doc, current->xmlChildrenNode, 1);
212 if (!xmlStrcmp(current->name, (const xmlChar *)"text"))
213 text = xmlNodeListGetString(doc, current->xmlChildrenNode, 1);
214 if (!xmlStrcmp(current->name, (const xmlChar *)"user")) {
215 userinfo = current->xmlChildrenNode;
216 while (userinfo != NULL) {
217 if ((!xmlStrcmp(userinfo->name, (const xmlChar *)"screen_name"))) {
220 user = xmlNodeListGetString(doc, userinfo->xmlChildrenNode, 1);
222 userinfo = userinfo->next;
226 if (user && text && created) {
227 printf("[%s] (%.16s) %s\n",
228 user, created, text);
237 current = current->next;
243 static void parse_timeline(char *document)
248 doc = xmlReadMemory(document, strlen(document), "timeline.xml",
249 NULL, XML_PARSE_NOERROR);
253 current = xmlDocGetRootElement(doc);
254 if (current == NULL) {
255 fprintf(stderr, "empty document\n");
260 if (xmlStrcmp(current->name, (const xmlChar *) "statuses")) {
261 fprintf(stderr, "unexpected document type\n");
266 current = current->xmlChildrenNode;
267 while (current != NULL) {
268 if ((!xmlStrcmp(current->name, (const xmlChar *)"status")))
269 parse_statuses(doc, current);
270 current = current->next;
277 static size_t curl_callback(void *buffer, size_t size, size_t nmemb,
280 struct bti_curl_buffer *curl_buf = userp;
281 size_t buffer_size = size * nmemb;
284 if ((!buffer) || (!buffer_size) || (!curl_buf))
287 /* add to the data we already have */
288 temp = zalloc(curl_buf->length + buffer_size + 1);
292 memcpy(temp, curl_buf->data, curl_buf->length);
293 free(curl_buf->data);
294 curl_buf->data = temp;
295 memcpy(&curl_buf->data[curl_buf->length], (char *)buffer, buffer_size);
296 curl_buf->length += buffer_size;
297 if (curl_buf->action)
298 parse_timeline(curl_buf->data);
300 dbg("%s\n", curl_buf->data);
305 static int send_request(struct session *session)
307 char user_password[500];
309 /* is there usernames longer than 22 chars? */
311 struct bti_curl_buffer *curl_buf;
314 struct curl_httppost *formpost = NULL;
315 struct curl_httppost *lastptr = NULL;
316 struct curl_slist *slist = NULL;
321 curl_buf = bti_curl_buffer_alloc(session->action);
329 switch (session->action) {
331 snprintf(user_password, sizeof(user_password), "%s:%s",
332 session->account, session->password);
333 snprintf(data, sizeof(data), "status=\"%s\"", session->tweet);
334 curl_formadd(&formpost, &lastptr,
335 CURLFORM_COPYNAME, "status",
336 CURLFORM_COPYCONTENTS, session->tweet,
339 curl_formadd(&formpost, &lastptr,
340 CURLFORM_COPYNAME, "source",
341 CURLFORM_COPYCONTENTS, "bti",
344 curl_easy_setopt(curl, CURLOPT_HTTPPOST, formpost);
345 slist = curl_slist_append(slist, "Expect:");
346 curl_easy_setopt(curl, CURLOPT_HTTPHEADER, slist);
347 switch (session->host) {
349 curl_easy_setopt(curl, CURLOPT_URL,
353 curl_easy_setopt(curl, CURLOPT_URL,
354 identica_update_url);
357 curl_easy_setopt(curl, CURLOPT_USERPWD, user_password);
361 snprintf(user_password, sizeof(user_password), "%s:%s",
362 session->account, session->password);
363 switch (session->host) {
365 sprintf(user_url, "%s?page=%d", twitter_friends_url, session->page);
366 curl_easy_setopt(curl, CURLOPT_URL, user_url);
369 sprintf(user_url, "%s?page=%d", identica_friends_url, session->page);
370 curl_easy_setopt(curl, CURLOPT_URL, user_url);
373 curl_easy_setopt(curl, CURLOPT_USERPWD, user_password);
377 switch (session->host) {
379 sprintf(user_url, "%s%s.xml?page=%d", twitter_user_url, session->user, session->page);
380 curl_easy_setopt(curl, CURLOPT_URL, user_url);
383 sprintf(user_url, "%s%s.xml?page=%d", identica_user_url, session->user, session->page);
384 curl_easy_setopt(curl, CURLOPT_URL, user_url);
390 snprintf(user_password, sizeof(user_password), "%s:%s",
391 session->account, session->password);
392 switch (session->host) {
394 sprintf(user_url, "%s?page=%d", twitter_replies_url, session->page);
395 curl_easy_setopt(curl, CURLOPT_URL, user_url);
398 sprintf(user_url, "%s?page=%d", identica_replies_url, session->page);
399 curl_easy_setopt(curl, CURLOPT_URL, user_url);
402 curl_easy_setopt(curl, CURLOPT_USERPWD, user_password);
406 switch (session->host) {
408 sprintf(user_url, "%s?page=%d", twitter_public_url, session->page);
409 curl_easy_setopt(curl, CURLOPT_URL, user_url);
412 sprintf(user_url, "%s?page=%d", identica_public_url, session->page);
413 curl_easy_setopt(curl, CURLOPT_URL, user_url);
423 curl_easy_setopt(curl, CURLOPT_PROXY, session->proxy);
426 curl_easy_setopt(curl, CURLOPT_VERBOSE, 1);
428 dbg("user_password = %s\n", user_password);
429 dbg("data = %s\n", data);
430 dbg("proxy = %s\n", session->proxy);
432 curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, curl_callback);
433 curl_easy_setopt(curl, CURLOPT_WRITEDATA, curl_buf);
434 if (!session->dry_run) {
435 res = curl_easy_perform(curl);
436 if (res && !session->bash) {
437 fprintf(stderr, "error(%d) trying to perform "
443 curl_easy_cleanup(curl);
444 if (session->action == ACTION_UPDATE)
445 curl_formfree(formpost);
446 bti_curl_buffer_free(curl_buf);
450 static void parse_configfile(struct session *session)
455 char *account = NULL;
456 char *password = NULL;
459 char *logfile = NULL;
465 /* config file is ~/.bti */
466 file = alloca(strlen(session->homedir) + 7);
468 sprintf(file, "%s/.bti", session->homedir);
470 config_file = fopen(file, "r");
472 /* No error if file does not exist or is unreadable. */
473 if (config_file == NULL)
477 ssize_t n = getline(&line, &len, config_file);
480 if (line[n - 1] == '\n')
482 /* Parse file. Format is the usual value pairs:
485 # is a comment character
487 *strchrnul(line, '#') = '\0';
491 /* Ignore blank lines. */
495 if (!strncasecmp(c, "account", 7) && (c[7] == '=')) {
499 } else if (!strncasecmp(c, "password", 8) &&
503 password = strdup(c);
504 } else if (!strncasecmp(c, "host", 4) &&
509 } else if (!strncasecmp(c, "proxy", 5) &&
514 } else if (!strncasecmp(c, "logfile", 7) &&
519 } else if (!strncasecmp(c, "action", 6) &&
524 } else if (!strncasecmp(c, "user", 4) &&
529 } else if (!strncasecmp(c, "shrink-urls", 11) &&
532 if (!strncasecmp(c, "true", 4) ||
533 !strncasecmp(c, "yes", 3))
536 } while (!feof(config_file));
539 session->password = password;
541 session->account = account;
543 if (strcasecmp(host, "twitter") == 0)
544 session->host = HOST_TWITTER;
545 if (strcasecmp(host, "identica") == 0)
546 session->host = HOST_IDENTICA;
551 free(session->proxy);
552 session->proxy = proxy;
555 session->logfile = logfile;
557 if (strcasecmp(action, "update") == 0)
558 session->action = ACTION_UPDATE;
559 else if (strcasecmp(action, "friends") == 0)
560 session->action = ACTION_FRIENDS;
561 else if (strcasecmp(action, "user") == 0)
562 session->action = ACTION_USER;
563 else if (strcasecmp(action, "replies") == 0)
564 session->action = ACTION_REPLIES;
565 else if (strcasecmp(action, "public") == 0)
566 session->action = ACTION_PUBLIC;
568 session->action = ACTION_UNKNOWN;
572 session->user = user;
573 session->shrink_urls = shrink_urls;
575 /* Free buffer and close file. */
580 static void log_session(struct session *session, int retval)
586 /* Only log something if we have a log file set */
587 if (!session->logfile)
590 filename = alloca(strlen(session->homedir) +
591 strlen(session->logfile) + 3);
593 sprintf(filename, "%s/%s", session->homedir, session->logfile);
595 log_file = fopen(filename, "a+");
596 if (log_file == NULL)
598 switch (session->host) {
610 switch (session->action) {
613 fprintf(log_file, "%s: host=%s tweet failed\n",
614 session->time, host);
616 fprintf(log_file, "%s: host=%s tweet=%s\n",
617 session->time, host, session->tweet);
620 fprintf(log_file, "%s: host=%s retrieving friends timeline\n",
621 session->time, host);
624 fprintf(log_file, "%s: host=%s retrieving %s's timeline\n",
625 session->time, host, session->user);
628 fprintf(log_file, "%s: host=%s retrieving replies\n",
629 session->time, host);
632 fprintf(log_file, "%s: host=%s retrieving public timeline\n",
633 session->time, host);
642 static char *get_string_from_stdin(void)
647 string = zalloc(1000);
651 if (!fgets(string, 999, stdin))
653 temp = strchr(string, '\n');
658 static int find_urls(const char *tweet, int **pranges)
661 * magic obtained from
662 * http://www.geekpedia.com/KB65_How-to-validate-an-URL-using-RegEx-in-Csharp.html
664 static const char *re_magic =
665 "(([a-zA-Z][0-9a-zA-Z+\\-\\.]*:)/{1,3}"
666 "[0-9a-zA-Z;/~?:@&=+$\\.\\-_'()%]+)"
667 "(#[0-9a-zA-Z;/?:@&=+$\\.\\-_!~*'()%]+)?";
671 int ovector[10] = {0,};
672 const size_t ovsize = sizeof(ovector)/sizeof(*ovector);
673 int startoffset, tweetlen;
677 int *ranges = malloc(sizeof(int) * rbound);
679 re = pcre_compile(re_magic,
680 PCRE_NO_AUTO_CAPTURE,
681 &errptr, &erroffset, NULL);
683 fprintf(stderr, "pcre_compile @%u: %s\n", erroffset, errptr);
687 tweetlen = strlen(tweet);
688 for (startoffset = 0; startoffset < tweetlen; ) {
690 rc = pcre_exec(re, NULL, tweet, strlen(tweet), startoffset, 0,
692 if (rc == PCRE_ERROR_NOMATCH)
696 fprintf(stderr, "pcre_exec @%u: %s\n",
701 for (i = 0; i < rc; i += 2) {
702 if ((rcount+2) == rbound) {
704 ranges = realloc(ranges, sizeof(int) * rbound);
707 ranges[rcount++] = ovector[i];
708 ranges[rcount++] = ovector[i+1];
711 startoffset = ovector[1];
721 * bidirectional popen() call
723 * @param rwepipe - int array of size three
724 * @param exe - program to run
725 * @param argv - argument list
726 * @return pid or -1 on error
728 * The caller passes in an array of three integers (rwepipe), on successful
729 * execution it can then write to element 0 (stdin of exe), and read from
730 * element 1 (stdout) and 2 (stderr).
732 static int popenRWE(int *rwepipe, const char *exe, const char *const argv[])
762 } else if (pid == 0) {
774 execvp(exe, (char **)argv);
794 static int pcloseRWE(int pid, int *rwepipe)
800 rc = waitpid(pid, &status, 0);
804 static char *shrink_one_url(int *rwepipe, char *big)
806 int biglen = strlen(big);
811 rc = dprintf(rwepipe[0], "%s\n", big);
815 smalllen = biglen + 128;
816 small = malloc(smalllen);
820 rc = read(rwepipe[1], small, smalllen);
821 if (rc < 0 || rc > biglen)
822 goto error_free_small;
824 if (strncmp(small, "http://", 7))
825 goto error_free_small;
828 while (smalllen && isspace(small[smalllen-1]))
829 small[--smalllen] = 0;
839 static char *shrink_urls(char *text)
846 const char *const shrink_args[] = {
852 int inlen = strlen(text);
854 dbg("before len=%u\n", inlen);
856 shrink_pid = popenRWE(shrink_pipe, shrink_args[0], shrink_args);
860 rcount = find_urls(text, &ranges);
864 for (i = 0; i < rcount; i += 2) {
865 int url_start = ranges[i];
866 int url_end = ranges[i+1];
867 int long_url_len = url_end - url_start;
868 char *url = strndup(text + url_start, long_url_len);
870 int not_url_len = url_start - inofs;
872 dbg("long url[%u]: %s\n", long_url_len, url);
873 url = shrink_one_url(shrink_pipe, url);
874 short_url_len = url ? strlen(url) : 0;
875 dbg("short url[%u]: %s\n", short_url_len, url);
877 if (!url || short_url_len >= long_url_len) {
878 /* The short url ended up being too long
881 strncpy(text + outofs, text + inofs,
882 not_url_len + long_url_len);
884 inofs += not_url_len + long_url_len;
885 outofs += not_url_len + long_url_len;
888 /* copy the unmodified block */
889 strncpy(text + outofs, text + inofs, not_url_len);
890 inofs += not_url_len;
891 outofs += not_url_len;
893 /* copy the new url */
894 strncpy(text + outofs, url, short_url_len);
895 inofs += long_url_len;
896 outofs += short_url_len;
902 /* copy the last block after the last match */
904 int tail = inlen - inofs;
906 strncpy(text + outofs, text + inofs, tail);
913 (void)pcloseRWE(shrink_pid, shrink_pipe);
916 dbg("after len=%u\n", outofs);
920 int main(int argc, char *argv[], char *envp[])
922 static const struct option options[] = {
923 { "debug", 0, NULL, 'd' },
924 { "account", 1, NULL, 'a' },
925 { "password", 1, NULL, 'p' },
926 { "host", 1, NULL, 'H' },
927 { "proxy", 1, NULL, 'P' },
928 { "action", 1, NULL, 'A' },
929 { "user", 1, NULL, 'u' },
930 { "logfile", 1, NULL, 'L' },
931 { "shrink-urls", 0, NULL, 's' },
932 { "help", 0, NULL, 'h' },
933 { "bash", 0, NULL, 'b' },
934 { "dry-run", 0, NULL, 'n' },
935 { "page", 1, NULL, 'g' },
936 { "version", 0, NULL, 'v' },
939 struct session *session;
949 rl_bind_key('\t', rl_insert);
951 session = session_alloc();
953 fprintf(stderr, "no more memory...\n");
957 /* get the current time so that we can log it later */
959 session->time = strdup(ctime(&t));
960 session->time[strlen(session->time)-1] = 0x00;
962 session->homedir = strdup(getenv("HOME"));
964 curl_global_init(CURL_GLOBAL_ALL);
966 /* Set environment variables first, before reading command line options
967 * or config file values. */
968 http_proxy = getenv("http_proxy");
971 free(session->proxy);
972 session->proxy = strdup(http_proxy);
973 dbg("http_proxy = %s\n", session->proxy);
976 parse_configfile(session);
979 option = getopt_long_only(argc, argv, "dqe:p:P:H:a:A:u:hg:sn",
988 if (session->account)
989 free(session->account);
990 session->account = strdup(optarg);
991 dbg("account = %s\n", session->account);
994 page_nr = atoi(optarg);
995 dbg("page = %d\n", page_nr);
996 session->page = page_nr;
999 if (session->password)
1000 free(session->password);
1001 session->password = strdup(optarg);
1002 dbg("password = %s\n", session->password);
1006 free(session->proxy);
1007 session->proxy = strdup(optarg);
1008 dbg("proxy = %s\n", session->proxy);
1011 if (strcasecmp(optarg, "update") == 0)
1012 session->action = ACTION_UPDATE;
1013 else if (strcasecmp(optarg, "friends") == 0)
1014 session->action = ACTION_FRIENDS;
1015 else if (strcasecmp(optarg, "user") == 0)
1016 session->action = ACTION_USER;
1017 else if (strcasecmp(optarg, "replies") == 0)
1018 session->action = ACTION_REPLIES;
1019 else if (strcasecmp(optarg, "public") == 0)
1020 session->action = ACTION_PUBLIC;
1022 session->action = ACTION_UNKNOWN;
1023 dbg("action = %d\n", session->action);
1027 free(session->user);
1028 session->user = strdup(optarg);
1029 dbg("user = %s\n", session->user);
1032 if (session->logfile)
1033 free(session->logfile);
1034 session->logfile = strdup(optarg);
1035 dbg("logfile = %s\n", session->logfile);
1038 session->shrink_urls = 1;
1041 if (strcasecmp(optarg, "twitter") == 0)
1042 session->host = HOST_TWITTER;
1043 if (strcasecmp(optarg, "identica") == 0)
1044 session->host = HOST_IDENTICA;
1045 dbg("host = %d\n", session->host);
1054 session->dry_run = 1;
1066 * Show the version to make it easier to determine what
1072 if (session->action == ACTION_UNKNOWN) {
1073 fprintf(stderr, "Unknown action, valid actions are:\n");
1074 fprintf(stderr, "'update', 'friends', 'public', "
1075 "'replies' or 'user'.\n");
1079 if (!session->account) {
1080 fprintf(stdout, "Enter twitter account: ");
1081 session->account = readline(NULL);
1084 if (!session->password) {
1085 fprintf(stdout, "Enter twitter password: ");
1086 session->password = readline(NULL);
1089 if (session->action == ACTION_UPDATE) {
1091 tweet = get_string_from_stdin();
1093 tweet = readline("tweet: ");
1094 if (!tweet || strlen(tweet) == 0) {
1099 if (session->shrink_urls)
1100 tweet = shrink_urls(tweet);
1102 session->tweet = zalloc(strlen(tweet) + 10);
1104 sprintf(session->tweet, "%c %s", getuid() ? '$' : '#', tweet);
1106 sprintf(session->tweet, "%s", tweet);
1109 dbg("tweet = %s\n", session->tweet);
1113 session->user = strdup(session->account);
1115 if (session->page == 0)
1117 dbg("account = %s\n", session->account);
1118 dbg("password = %s\n", session->password);
1119 dbg("host = %d\n", session->host);
1120 dbg("action = %d\n", session->action);
1122 /* fork ourself so that the main shell can get on
1123 * with it's life as we try to connect and handle everything
1125 if (session->bash) {
1128 dbg("child is %d\n", child);
1133 retval = send_request(session);
1134 if (retval && !session->bash)
1135 fprintf(stderr, "operation failed\n");
1137 log_session(session, retval);
1139 session_free(session);