2 * Copyright (C) 2008 Greg Kroah-Hartman <greg@kroah.com>
3 * Copyright (C) 2009 Bart Trojanowski <bart@jukie.net>
4 * Copyright (C) 2009 Amir Mohammad Saied <amirsaied@gmail.com>
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation version 2 of the License.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
33 #include <sys/types.h>
35 #include <curl/curl.h>
36 #include <readline/readline.h>
37 #include <libxml/xmlmemory.h>
38 #include <libxml/parser.h>
39 #include <libxml/tree.h>
44 #define zalloc(size) calloc(size, 1)
46 #define dbg(format, arg...) \
49 fprintf(stdout, "bti: %s: " format , __func__ , \
92 struct bti_curl_buffer {
98 static void display_help(void)
100 fprintf(stdout, "bti - send tweet to twitter or identi.ca\n");
101 fprintf(stdout, "Version: " VERSION "\n");
102 fprintf(stdout, "Usage:\n");
103 fprintf(stdout, " bti [options]\n");
104 fprintf(stdout, "options are:\n");
105 fprintf(stdout, " --account accountname\n");
106 fprintf(stdout, " --password password\n");
107 fprintf(stdout, " --action action\n");
108 fprintf(stdout, " ('update', 'friends', 'public', 'replies', "
109 "'group' or 'user')\n");
110 fprintf(stdout, " --user screenname\n");
111 fprintf(stdout, " --group groupname\n");
112 fprintf(stdout, " --proxy PROXY:PORT\n");
113 fprintf(stdout, " --host HOST\n");
114 fprintf(stdout, " --logfile logfile\n");
115 fprintf(stdout, " --shrink-urls\n");
116 fprintf(stdout, " --page PAGENUMBER\n");
117 fprintf(stdout, " --bash\n");
118 fprintf(stdout, " --debug\n");
119 fprintf(stdout, " --verbose\n");
120 fprintf(stdout, " --dry-run\n");
121 fprintf(stdout, " --version\n");
122 fprintf(stdout, " --help\n");
125 static void display_version(void)
127 fprintf(stdout, "bti - version %s\n", VERSION);
130 static struct session *session_alloc(void)
132 struct session *session;
134 session = zalloc(sizeof(*session));
140 static void session_free(struct session *session)
144 free(session->password);
145 free(session->account);
146 free(session->tweet);
147 free(session->proxy);
149 free(session->homedir);
151 free(session->group);
152 free(session->hosturl);
156 static struct bti_curl_buffer *bti_curl_buffer_alloc(enum action action)
158 struct bti_curl_buffer *buffer;
160 buffer = zalloc(sizeof(*buffer));
164 /* start out with a data buffer of 1 byte to
165 * make the buffer fill logic simpler */
166 buffer->data = zalloc(1);
172 buffer->action = action;
176 static void bti_curl_buffer_free(struct bti_curl_buffer *buffer)
184 static const char *twitter_host = "https://twitter.com/statuses";
185 static const char *identica_host = "https://identi.ca/api/statuses";
187 static const char *user_uri = "/user_timeline/";
188 static const char *update_uri = "/update.xml";
189 static const char *public_uri = "/public_timeline.xml";
190 static const char *friends_uri = "/friends_timeline.xml";
191 static const char *replies_uri = "/replies.xml";
192 static const char *group_uri = "/../laconica/groups/timeline/";
194 static CURL *curl_init(void)
198 curl = curl_easy_init();
200 fprintf(stderr, "Can not init CURL!\n");
203 /* some ssl sanity checks on the connection we are making */
204 curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, 0);
205 curl_easy_setopt(curl, CURLOPT_SSL_VERIFYHOST, 0);
209 static void parse_statuses(xmlDocPtr doc, xmlNodePtr current)
211 xmlChar *text = NULL;
212 xmlChar *user = NULL;
213 xmlChar *created = NULL;
216 current = current->xmlChildrenNode;
217 while (current != NULL) {
218 if (current->type == XML_ELEMENT_NODE) {
219 if (!xmlStrcmp(current->name, (const xmlChar *)"created_at"))
220 created = xmlNodeListGetString(doc, current->xmlChildrenNode, 1);
221 if (!xmlStrcmp(current->name, (const xmlChar *)"text"))
222 text = xmlNodeListGetString(doc, current->xmlChildrenNode, 1);
223 if (!xmlStrcmp(current->name, (const xmlChar *)"user")) {
224 userinfo = current->xmlChildrenNode;
225 while (userinfo != NULL) {
226 if ((!xmlStrcmp(userinfo->name, (const xmlChar *)"screen_name"))) {
229 user = xmlNodeListGetString(doc, userinfo->xmlChildrenNode, 1);
231 userinfo = userinfo->next;
235 if (user && text && created) {
237 printf("[%s] (%.16s) %s\n",
238 user, created, text);
250 current = current->next;
256 static void parse_timeline(char *document)
261 doc = xmlReadMemory(document, strlen(document), "timeline.xml",
262 NULL, XML_PARSE_NOERROR);
266 current = xmlDocGetRootElement(doc);
267 if (current == NULL) {
268 fprintf(stderr, "empty document\n");
273 if (xmlStrcmp(current->name, (const xmlChar *) "statuses")) {
274 fprintf(stderr, "unexpected document type\n");
279 current = current->xmlChildrenNode;
280 while (current != NULL) {
281 if ((!xmlStrcmp(current->name, (const xmlChar *)"status")))
282 parse_statuses(doc, current);
283 current = current->next;
290 static size_t curl_callback(void *buffer, size_t size, size_t nmemb,
293 struct bti_curl_buffer *curl_buf = userp;
294 size_t buffer_size = size * nmemb;
297 if ((!buffer) || (!buffer_size) || (!curl_buf))
300 /* add to the data we already have */
301 temp = zalloc(curl_buf->length + buffer_size + 1);
305 memcpy(temp, curl_buf->data, curl_buf->length);
306 free(curl_buf->data);
307 curl_buf->data = temp;
308 memcpy(&curl_buf->data[curl_buf->length], (char *)buffer, buffer_size);
309 curl_buf->length += buffer_size;
310 if (curl_buf->action)
311 parse_timeline(curl_buf->data);
313 dbg("%s\n", curl_buf->data);
318 static int send_request(struct session *session)
321 char user_password[500];
323 struct bti_curl_buffer *curl_buf;
326 struct curl_httppost *formpost = NULL;
327 struct curl_httppost *lastptr = NULL;
328 struct curl_slist *slist = NULL;
333 curl_buf = bti_curl_buffer_alloc(session->action);
341 switch (session->action) {
343 snprintf(user_password, sizeof(user_password), "%s:%s",
344 session->account, session->password);
345 snprintf(data, sizeof(data), "status=\"%s\"", session->tweet);
346 curl_formadd(&formpost, &lastptr,
347 CURLFORM_COPYNAME, "status",
348 CURLFORM_COPYCONTENTS, session->tweet,
351 curl_formadd(&formpost, &lastptr,
352 CURLFORM_COPYNAME, "source",
353 CURLFORM_COPYCONTENTS, "bti",
356 curl_easy_setopt(curl, CURLOPT_HTTPPOST, formpost);
357 slist = curl_slist_append(slist, "Expect:");
358 curl_easy_setopt(curl, CURLOPT_HTTPHEADER, slist);
360 sprintf(endpoint, "%s%s", session->hosturl, update_uri);
361 curl_easy_setopt(curl, CURLOPT_URL, endpoint);
362 curl_easy_setopt(curl, CURLOPT_USERPWD, user_password);
366 snprintf(user_password, sizeof(user_password), "%s:%s",
367 session->account, session->password);
368 sprintf(endpoint, "%s%s?page=%d", session->hosturl,
369 friends_uri, session->page);
370 curl_easy_setopt(curl, CURLOPT_URL, endpoint);
371 curl_easy_setopt(curl, CURLOPT_USERPWD, user_password);
375 sprintf(endpoint, "%s%s%s.xml?page=%d", session->hosturl,
376 user_uri, session->user, session->page);
377 curl_easy_setopt(curl, CURLOPT_URL, endpoint);
381 snprintf(user_password, sizeof(user_password), "%s:%s",
382 session->account, session->password);
383 sprintf(endpoint, "%s%s?page=%d", session->hosturl, replies_uri,
385 curl_easy_setopt(curl, CURLOPT_URL, endpoint);
386 curl_easy_setopt(curl, CURLOPT_USERPWD, user_password);
390 sprintf(endpoint, "%s%s?page=%d", session->hosturl, public_uri,
392 curl_easy_setopt(curl, CURLOPT_URL, endpoint);
396 sprintf(endpoint, "%s%s%s.xml?page=%d", session->hosturl,
397 group_uri, session->group, session->page);
398 curl_easy_setopt(curl, CURLOPT_URL, endpoint);
406 curl_easy_setopt(curl, CURLOPT_PROXY, session->proxy);
409 curl_easy_setopt(curl, CURLOPT_VERBOSE, 1);
411 dbg("user_password = %s\n", user_password);
412 dbg("data = %s\n", data);
413 dbg("proxy = %s\n", session->proxy);
415 curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, curl_callback);
416 curl_easy_setopt(curl, CURLOPT_WRITEDATA, curl_buf);
417 if (!session->dry_run) {
418 res = curl_easy_perform(curl);
419 if (res && !session->bash) {
420 fprintf(stderr, "error(%d) trying to perform "
426 curl_easy_cleanup(curl);
427 if (session->action == ACTION_UPDATE)
428 curl_formfree(formpost);
429 bti_curl_buffer_free(curl_buf);
433 static void parse_configfile(struct session *session)
438 char *account = NULL;
439 char *password = NULL;
442 char *logfile = NULL;
448 /* config file is ~/.bti */
449 file = alloca(strlen(session->homedir) + 7);
451 sprintf(file, "%s/.bti", session->homedir);
453 config_file = fopen(file, "r");
455 /* No error if file does not exist or is unreadable. */
456 if (config_file == NULL)
460 ssize_t n = getline(&line, &len, config_file);
463 if (line[n - 1] == '\n')
465 /* Parse file. Format is the usual value pairs:
468 # is a comment character
470 *strchrnul(line, '#') = '\0';
474 /* Ignore blank lines. */
478 if (!strncasecmp(c, "account", 7) && (c[7] == '=')) {
482 } else if (!strncasecmp(c, "password", 8) &&
486 password = strdup(c);
487 } else if (!strncasecmp(c, "host", 4) &&
492 } else if (!strncasecmp(c, "proxy", 5) &&
497 } else if (!strncasecmp(c, "logfile", 7) &&
502 } else if (!strncasecmp(c, "action", 6) &&
507 } else if (!strncasecmp(c, "user", 4) &&
512 } else if (!strncasecmp(c, "shrink-urls", 11) &&
515 if (!strncasecmp(c, "true", 4) ||
516 !strncasecmp(c, "yes", 3))
518 } else if (!strncasecmp(c, "verbose", 7) &&
521 if (!strncasecmp(c, "true", 4) ||
522 !strncasecmp(c, "yes", 3))
525 } while (!feof(config_file));
528 session->password = password;
530 session->account = account;
532 if (strcasecmp(host, "twitter") == 0) {
533 session->host = HOST_TWITTER;
534 session->hosturl = strdup(twitter_host);
535 } else if (strcasecmp(host, "identica") == 0) {
536 session->host = HOST_IDENTICA;
537 session->hosturl = strdup(identica_host);
539 session->host = HOST_CUSTOM;
540 session->hosturl = strdup(host);
546 free(session->proxy);
547 session->proxy = proxy;
550 session->logfile = logfile;
552 if (strcasecmp(action, "update") == 0)
553 session->action = ACTION_UPDATE;
554 else if (strcasecmp(action, "friends") == 0)
555 session->action = ACTION_FRIENDS;
556 else if (strcasecmp(action, "user") == 0)
557 session->action = ACTION_USER;
558 else if (strcasecmp(action, "replies") == 0)
559 session->action = ACTION_REPLIES;
560 else if (strcasecmp(action, "public") == 0)
561 session->action = ACTION_PUBLIC;
562 else if (strcasecmp(action, "group") == 0)
563 session->action = ACTION_GROUP;
565 session->action = ACTION_UNKNOWN;
569 session->user = user;
570 session->shrink_urls = shrink_urls;
572 /* Free buffer and close file. */
577 static void log_session(struct session *session, int retval)
583 /* Only log something if we have a log file set */
584 if (!session->logfile)
587 filename = alloca(strlen(session->homedir) +
588 strlen(session->logfile) + 3);
590 sprintf(filename, "%s/%s", session->homedir, session->logfile);
592 log_file = fopen(filename, "a+");
593 if (log_file == NULL)
595 switch (session->host) {
603 host = session->hosturl;
607 switch (session->action) {
610 fprintf(log_file, "%s: host=%s tweet failed\n",
611 session->time, host);
613 fprintf(log_file, "%s: host=%s tweet=%s\n",
614 session->time, host, session->tweet);
617 fprintf(log_file, "%s: host=%s retrieving friends timeline\n",
618 session->time, host);
621 fprintf(log_file, "%s: host=%s retrieving %s's timeline\n",
622 session->time, host, session->user);
625 fprintf(log_file, "%s: host=%s retrieving replies\n",
626 session->time, host);
629 fprintf(log_file, "%s: host=%s retrieving public timeline\n",
630 session->time, host);
633 fprintf(log_file, "%s: host=%s retrieving group timeline\n",
634 session->time, host);
643 static char *get_string_from_stdin(void)
648 string = zalloc(1000);
652 if (!fgets(string, 999, stdin))
654 temp = strchr(string, '\n');
659 static void read_password(char *buf, size_t len)
669 tp.c_lflag &= (~ECHO);
670 tcsetattr(0, TCSANOW, &tp);
672 fprintf(stdout, "Enter twitter password: ");
675 retval = scanf("%79s", pwd);
677 fprintf(stdout, "\n");
679 tcsetattr(0, TCSANOW, &old);
681 strncpy(buf, pwd, len);
685 static int find_urls(const char *tweet, int **pranges)
688 * magic obtained from
689 * http://www.geekpedia.com/KB65_How-to-validate-an-URL-using-RegEx-in-Csharp.html
691 static const char *re_magic =
692 "(([a-zA-Z][0-9a-zA-Z+\\-\\.]*:)/{1,3}"
693 "[0-9a-zA-Z;/~?:@&=+$\\.\\-_'()%]+)"
694 "(#[0-9a-zA-Z;/?:@&=+$\\.\\-_!~*'()%]+)?";
698 int ovector[10] = {0,};
699 const size_t ovsize = sizeof(ovector)/sizeof(*ovector);
700 int startoffset, tweetlen;
704 int *ranges = malloc(sizeof(int) * rbound);
706 re = pcre_compile(re_magic,
707 PCRE_NO_AUTO_CAPTURE,
708 &errptr, &erroffset, NULL);
710 fprintf(stderr, "pcre_compile @%u: %s\n", erroffset, errptr);
714 tweetlen = strlen(tweet);
715 for (startoffset = 0; startoffset < tweetlen; ) {
717 rc = pcre_exec(re, NULL, tweet, strlen(tweet), startoffset, 0,
719 if (rc == PCRE_ERROR_NOMATCH)
723 fprintf(stderr, "pcre_exec @%u: %s\n",
728 for (i = 0; i < rc; i += 2) {
729 if ((rcount+2) == rbound) {
731 ranges = realloc(ranges, sizeof(int) * rbound);
734 ranges[rcount++] = ovector[i];
735 ranges[rcount++] = ovector[i+1];
738 startoffset = ovector[1];
748 * bidirectional popen() call
750 * @param rwepipe - int array of size three
751 * @param exe - program to run
752 * @param argv - argument list
753 * @return pid or -1 on error
755 * The caller passes in an array of three integers (rwepipe), on successful
756 * execution it can then write to element 0 (stdin of exe), and read from
757 * element 1 (stdout) and 2 (stderr).
759 static int popenRWE(int *rwepipe, const char *exe, const char *const argv[])
789 } else if (pid == 0) {
801 execvp(exe, (char **)argv);
821 static int pcloseRWE(int pid, int *rwepipe)
827 rc = waitpid(pid, &status, 0);
831 static char *shrink_one_url(int *rwepipe, char *big)
833 int biglen = strlen(big);
838 rc = dprintf(rwepipe[0], "%s\n", big);
842 smalllen = biglen + 128;
843 small = malloc(smalllen);
847 rc = read(rwepipe[1], small, smalllen);
848 if (rc < 0 || rc > biglen)
849 goto error_free_small;
851 if (strncmp(small, "http://", 7))
852 goto error_free_small;
855 while (smalllen && isspace(small[smalllen-1]))
856 small[--smalllen] = 0;
866 static char *shrink_urls(char *text)
873 const char *const shrink_args[] = {
879 int inlen = strlen(text);
881 dbg("before len=%u\n", inlen);
883 shrink_pid = popenRWE(shrink_pipe, shrink_args[0], shrink_args);
887 rcount = find_urls(text, &ranges);
891 for (i = 0; i < rcount; i += 2) {
892 int url_start = ranges[i];
893 int url_end = ranges[i+1];
894 int long_url_len = url_end - url_start;
895 char *url = strndup(text + url_start, long_url_len);
897 int not_url_len = url_start - inofs;
899 dbg("long url[%u]: %s\n", long_url_len, url);
900 url = shrink_one_url(shrink_pipe, url);
901 short_url_len = url ? strlen(url) : 0;
902 dbg("short url[%u]: %s\n", short_url_len, url);
904 if (!url || short_url_len >= long_url_len) {
905 /* The short url ended up being too long
908 strncpy(text + outofs, text + inofs,
909 not_url_len + long_url_len);
911 inofs += not_url_len + long_url_len;
912 outofs += not_url_len + long_url_len;
915 /* copy the unmodified block */
916 strncpy(text + outofs, text + inofs, not_url_len);
917 inofs += not_url_len;
918 outofs += not_url_len;
920 /* copy the new url */
921 strncpy(text + outofs, url, short_url_len);
922 inofs += long_url_len;
923 outofs += short_url_len;
929 /* copy the last block after the last match */
931 int tail = inlen - inofs;
933 strncpy(text + outofs, text + inofs, tail);
940 (void)pcloseRWE(shrink_pid, shrink_pipe);
943 dbg("after len=%u\n", outofs);
947 int main(int argc, char *argv[], char *envp[])
949 static const struct option options[] = {
950 { "debug", 0, NULL, 'd' },
951 { "verbose", 0, NULL, 'V' },
952 { "account", 1, NULL, 'a' },
953 { "password", 1, NULL, 'p' },
954 { "host", 1, NULL, 'H' },
955 { "proxy", 1, NULL, 'P' },
956 { "action", 1, NULL, 'A' },
957 { "user", 1, NULL, 'u' },
958 { "group", 1, NULL, 'G' },
959 { "logfile", 1, NULL, 'L' },
960 { "shrink-urls", 0, NULL, 's' },
961 { "help", 0, NULL, 'h' },
962 { "bash", 0, NULL, 'b' },
963 { "dry-run", 0, NULL, 'n' },
964 { "page", 1, NULL, 'g' },
965 { "version", 0, NULL, 'v' },
968 struct session *session;
971 static char password[80];
980 rl_bind_key('\t', rl_insert);
982 session = session_alloc();
984 fprintf(stderr, "no more memory...\n");
988 /* get the current time so that we can log it later */
990 session->time = strdup(ctime(&t));
991 session->time[strlen(session->time)-1] = 0x00;
993 session->homedir = strdup(getenv("HOME"));
995 curl_global_init(CURL_GLOBAL_ALL);
997 /* Set environment variables first, before reading command line options
998 * or config file values. */
999 http_proxy = getenv("http_proxy");
1002 free(session->proxy);
1003 session->proxy = strdup(http_proxy);
1004 dbg("http_proxy = %s\n", session->proxy);
1007 parse_configfile(session);
1010 option = getopt_long_only(argc, argv, "dp:P:H:a:A:u:hg:G:snVv",
1022 if (session->account)
1023 free(session->account);
1024 session->account = strdup(optarg);
1025 dbg("account = %s\n", session->account);
1028 page_nr = atoi(optarg);
1029 dbg("page = %d\n", page_nr);
1030 session->page = page_nr;
1033 if (session->password)
1034 free(session->password);
1035 session->password = strdup(optarg);
1036 dbg("password = %s\n", session->password);
1040 free(session->proxy);
1041 session->proxy = strdup(optarg);
1042 dbg("proxy = %s\n", session->proxy);
1045 if (strcasecmp(optarg, "update") == 0)
1046 session->action = ACTION_UPDATE;
1047 else if (strcasecmp(optarg, "friends") == 0)
1048 session->action = ACTION_FRIENDS;
1049 else if (strcasecmp(optarg, "user") == 0)
1050 session->action = ACTION_USER;
1051 else if (strcasecmp(optarg, "replies") == 0)
1052 session->action = ACTION_REPLIES;
1053 else if (strcasecmp(optarg, "public") == 0)
1054 session->action = ACTION_PUBLIC;
1055 else if (strcasecmp(optarg, "group") == 0)
1056 session->action = ACTION_GROUP;
1058 session->action = ACTION_UNKNOWN;
1059 dbg("action = %d\n", session->action);
1063 free(session->user);
1064 session->user = strdup(optarg);
1065 dbg("user = %s\n", session->user);
1070 free(session->group);
1071 session->group = strdup(optarg);
1072 dbg("group = %s\n", session->group);
1075 if (session->logfile)
1076 free(session->logfile);
1077 session->logfile = strdup(optarg);
1078 dbg("logfile = %s\n", session->logfile);
1081 session->shrink_urls = 1;
1084 if (session->hosturl)
1085 free(session->hosturl);
1086 if (strcasecmp(optarg, "twitter") == 0) {
1087 session->host = HOST_TWITTER;
1088 session->hosturl = strdup(twitter_host);
1089 } else if (strcasecmp(optarg, "identica") == 0) {
1090 session->host = HOST_IDENTICA;
1091 session->hosturl = strdup(identica_host);
1093 session->host = HOST_CUSTOM;
1094 session->hosturl = strdup(optarg);
1096 dbg("host = %d\n", session->host);
1105 session->dry_run = 1;
1117 * Show the version to make it easier to determine what
1123 if (session->action == ACTION_UNKNOWN) {
1124 fprintf(stderr, "Unknown action, valid actions are:\n");
1125 fprintf(stderr, "'update', 'friends', 'public', "
1126 "'replies', 'group' or 'user'.\n");
1130 if (session->host == HOST_TWITTER && session->action == ACTION_GROUP) {
1131 fprintf(stderr, "Groups only work in Identi.ca.\n");
1135 if (session->action == ACTION_GROUP && !session->group) {
1136 fprintf(stdout, "Enter group name: ");
1137 session->group = readline(NULL);
1140 if (!session->account) {
1141 fprintf(stdout, "Enter twitter account: ");
1142 session->account = readline(NULL);
1145 if (!session->password) {
1146 read_password(password, sizeof(password));
1147 session->password = strdup(password);
1150 if (session->action == ACTION_UPDATE) {
1152 tweet = get_string_from_stdin();
1154 tweet = readline("tweet: ");
1155 if (!tweet || strlen(tweet) == 0) {
1160 if (session->shrink_urls)
1161 tweet = shrink_urls(tweet);
1163 session->tweet = zalloc(strlen(tweet) + 10);
1165 sprintf(session->tweet, "%c %s",
1166 getuid() ? '$' : '#', tweet);
1168 sprintf(session->tweet, "%s", tweet);
1171 dbg("tweet = %s\n", session->tweet);
1175 session->user = strdup(session->account);
1177 if (session->page == 0)
1179 dbg("account = %s\n", session->account);
1180 dbg("password = %s\n", session->password);
1181 dbg("host = %d\n", session->host);
1182 dbg("action = %d\n", session->action);
1184 /* fork ourself so that the main shell can get on
1185 * with it's life as we try to connect and handle everything
1187 if (session->bash) {
1190 dbg("child is %d\n", child);
1195 retval = send_request(session);
1196 if (retval && !session->bash)
1197 fprintf(stderr, "operation failed\n");
1199 log_session(session, retval);
1201 session_free(session);