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, user_uri,
376 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, session->page);
384 curl_easy_setopt(curl, CURLOPT_URL, endpoint);
385 curl_easy_setopt(curl, CURLOPT_USERPWD, user_password);
389 sprintf(endpoint, "%s%s?page=%d", session->hosturl, public_uri, session->page);
390 curl_easy_setopt(curl, CURLOPT_URL, endpoint);
394 sprintf(endpoint, "%s%s%s.xml?page=%d", session->hosturl,
395 group_uri, session->group, session->page);
396 curl_easy_setopt(curl, CURLOPT_URL, endpoint);
404 curl_easy_setopt(curl, CURLOPT_PROXY, session->proxy);
407 curl_easy_setopt(curl, CURLOPT_VERBOSE, 1);
409 dbg("user_password = %s\n", user_password);
410 dbg("data = %s\n", data);
411 dbg("proxy = %s\n", session->proxy);
413 curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, curl_callback);
414 curl_easy_setopt(curl, CURLOPT_WRITEDATA, curl_buf);
415 if (!session->dry_run) {
416 res = curl_easy_perform(curl);
417 if (res && !session->bash) {
418 fprintf(stderr, "error(%d) trying to perform "
424 curl_easy_cleanup(curl);
425 if (session->action == ACTION_UPDATE)
426 curl_formfree(formpost);
427 bti_curl_buffer_free(curl_buf);
431 static void parse_configfile(struct session *session)
436 char *account = NULL;
437 char *password = NULL;
440 char *logfile = NULL;
446 /* config file is ~/.bti */
447 file = alloca(strlen(session->homedir) + 7);
449 sprintf(file, "%s/.bti", session->homedir);
451 config_file = fopen(file, "r");
453 /* No error if file does not exist or is unreadable. */
454 if (config_file == NULL)
458 ssize_t n = getline(&line, &len, config_file);
461 if (line[n - 1] == '\n')
463 /* Parse file. Format is the usual value pairs:
466 # is a comment character
468 *strchrnul(line, '#') = '\0';
472 /* Ignore blank lines. */
476 if (!strncasecmp(c, "account", 7) && (c[7] == '=')) {
480 } else if (!strncasecmp(c, "password", 8) &&
484 password = strdup(c);
485 } else if (!strncasecmp(c, "host", 4) &&
490 } else if (!strncasecmp(c, "proxy", 5) &&
495 } else if (!strncasecmp(c, "logfile", 7) &&
500 } else if (!strncasecmp(c, "action", 6) &&
505 } else if (!strncasecmp(c, "user", 4) &&
510 } else if (!strncasecmp(c, "shrink-urls", 11) &&
513 if (!strncasecmp(c, "true", 4) ||
514 !strncasecmp(c, "yes", 3))
517 else if (!strncasecmp(c, "verbose", 7) &&
520 if (!strncasecmp(c, "true", 4) ||
521 !strncasecmp(c, "yes", 3))
524 } while (!feof(config_file));
527 session->password = password;
529 session->account = account;
531 if (strcasecmp(host, "twitter") == 0) {
532 session->host = HOST_TWITTER;
533 session->hosturl = strdup(twitter_host);
534 } else if (strcasecmp(host, "identica") == 0) {
535 session->host = HOST_IDENTICA;
536 session->hosturl = strdup(identica_host);
538 session->host = HOST_CUSTOM;
539 session->hosturl = strdup(host);
545 free(session->proxy);
546 session->proxy = proxy;
549 session->logfile = logfile;
551 if (strcasecmp(action, "update") == 0)
552 session->action = ACTION_UPDATE;
553 else if (strcasecmp(action, "friends") == 0)
554 session->action = ACTION_FRIENDS;
555 else if (strcasecmp(action, "user") == 0)
556 session->action = ACTION_USER;
557 else if (strcasecmp(action, "replies") == 0)
558 session->action = ACTION_REPLIES;
559 else if (strcasecmp(action, "public") == 0)
560 session->action = ACTION_PUBLIC;
561 else if (strcasecmp(action, "group") == 0)
562 session->action = ACTION_GROUP;
564 session->action = ACTION_UNKNOWN;
568 session->user = user;
569 session->shrink_urls = shrink_urls;
571 /* Free buffer and close file. */
576 static void log_session(struct session *session, int retval)
582 /* Only log something if we have a log file set */
583 if (!session->logfile)
586 filename = alloca(strlen(session->homedir) +
587 strlen(session->logfile) + 3);
589 sprintf(filename, "%s/%s", session->homedir, session->logfile);
591 log_file = fopen(filename, "a+");
592 if (log_file == NULL)
594 switch (session->host) {
602 host = session->hosturl;
606 switch (session->action) {
609 fprintf(log_file, "%s: host=%s tweet failed\n",
610 session->time, host);
612 fprintf(log_file, "%s: host=%s tweet=%s\n",
613 session->time, host, session->tweet);
616 fprintf(log_file, "%s: host=%s retrieving friends timeline\n",
617 session->time, host);
620 fprintf(log_file, "%s: host=%s retrieving %s's timeline\n",
621 session->time, host, session->user);
624 fprintf(log_file, "%s: host=%s retrieving replies\n",
625 session->time, host);
628 fprintf(log_file, "%s: host=%s retrieving public timeline\n",
629 session->time, host);
632 fprintf(log_file, "%s: host=%s retrieving group 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 void read_password(char *buf, size_t len)
667 tp.c_lflag &= (~ECHO);
668 tcsetattr(0, TCSANOW, &tp);
670 fprintf(stdout, "Enter twitter password: ");
673 fprintf(stdout, "\n");
675 tcsetattr(0, TCSANOW, &old);
677 strncpy(buf, pwd, len);
681 static int find_urls(const char *tweet, int **pranges)
684 * magic obtained from
685 * http://www.geekpedia.com/KB65_How-to-validate-an-URL-using-RegEx-in-Csharp.html
687 static const char *re_magic =
688 "(([a-zA-Z][0-9a-zA-Z+\\-\\.]*:)/{1,3}"
689 "[0-9a-zA-Z;/~?:@&=+$\\.\\-_'()%]+)"
690 "(#[0-9a-zA-Z;/?:@&=+$\\.\\-_!~*'()%]+)?";
694 int ovector[10] = {0,};
695 const size_t ovsize = sizeof(ovector)/sizeof(*ovector);
696 int startoffset, tweetlen;
700 int *ranges = malloc(sizeof(int) * rbound);
702 re = pcre_compile(re_magic,
703 PCRE_NO_AUTO_CAPTURE,
704 &errptr, &erroffset, NULL);
706 fprintf(stderr, "pcre_compile @%u: %s\n", erroffset, errptr);
710 tweetlen = strlen(tweet);
711 for (startoffset = 0; startoffset < tweetlen; ) {
713 rc = pcre_exec(re, NULL, tweet, strlen(tweet), startoffset, 0,
715 if (rc == PCRE_ERROR_NOMATCH)
719 fprintf(stderr, "pcre_exec @%u: %s\n",
724 for (i = 0; i < rc; i += 2) {
725 if ((rcount+2) == rbound) {
727 ranges = realloc(ranges, sizeof(int) * rbound);
730 ranges[rcount++] = ovector[i];
731 ranges[rcount++] = ovector[i+1];
734 startoffset = ovector[1];
744 * bidirectional popen() call
746 * @param rwepipe - int array of size three
747 * @param exe - program to run
748 * @param argv - argument list
749 * @return pid or -1 on error
751 * The caller passes in an array of three integers (rwepipe), on successful
752 * execution it can then write to element 0 (stdin of exe), and read from
753 * element 1 (stdout) and 2 (stderr).
755 static int popenRWE(int *rwepipe, const char *exe, const char *const argv[])
785 } else if (pid == 0) {
797 execvp(exe, (char **)argv);
817 static int pcloseRWE(int pid, int *rwepipe)
823 rc = waitpid(pid, &status, 0);
827 static char *shrink_one_url(int *rwepipe, char *big)
829 int biglen = strlen(big);
834 rc = dprintf(rwepipe[0], "%s\n", big);
838 smalllen = biglen + 128;
839 small = malloc(smalllen);
843 rc = read(rwepipe[1], small, smalllen);
844 if (rc < 0 || rc > biglen)
845 goto error_free_small;
847 if (strncmp(small, "http://", 7))
848 goto error_free_small;
851 while (smalllen && isspace(small[smalllen-1]))
852 small[--smalllen] = 0;
862 static char *shrink_urls(char *text)
869 const char *const shrink_args[] = {
875 int inlen = strlen(text);
877 dbg("before len=%u\n", inlen);
879 shrink_pid = popenRWE(shrink_pipe, shrink_args[0], shrink_args);
883 rcount = find_urls(text, &ranges);
887 for (i = 0; i < rcount; i += 2) {
888 int url_start = ranges[i];
889 int url_end = ranges[i+1];
890 int long_url_len = url_end - url_start;
891 char *url = strndup(text + url_start, long_url_len);
893 int not_url_len = url_start - inofs;
895 dbg("long url[%u]: %s\n", long_url_len, url);
896 url = shrink_one_url(shrink_pipe, url);
897 short_url_len = url ? strlen(url) : 0;
898 dbg("short url[%u]: %s\n", short_url_len, url);
900 if (!url || short_url_len >= long_url_len) {
901 /* The short url ended up being too long
904 strncpy(text + outofs, text + inofs,
905 not_url_len + long_url_len);
907 inofs += not_url_len + long_url_len;
908 outofs += not_url_len + long_url_len;
911 /* copy the unmodified block */
912 strncpy(text + outofs, text + inofs, not_url_len);
913 inofs += not_url_len;
914 outofs += not_url_len;
916 /* copy the new url */
917 strncpy(text + outofs, url, short_url_len);
918 inofs += long_url_len;
919 outofs += short_url_len;
925 /* copy the last block after the last match */
927 int tail = inlen - inofs;
929 strncpy(text + outofs, text + inofs, tail);
936 (void)pcloseRWE(shrink_pid, shrink_pipe);
939 dbg("after len=%u\n", outofs);
943 int main(int argc, char *argv[], char *envp[])
945 static const struct option options[] = {
946 { "debug", 0, NULL, 'd' },
947 { "verbose", 0, NULL, 'V' },
948 { "account", 1, NULL, 'a' },
949 { "password", 1, NULL, 'p' },
950 { "host", 1, NULL, 'H' },
951 { "proxy", 1, NULL, 'P' },
952 { "action", 1, NULL, 'A' },
953 { "user", 1, NULL, 'u' },
954 { "group", 1, NULL, 'G' },
955 { "logfile", 1, NULL, 'L' },
956 { "shrink-urls", 0, NULL, 's' },
957 { "help", 0, NULL, 'h' },
958 { "bash", 0, NULL, 'b' },
959 { "dry-run", 0, NULL, 'n' },
960 { "page", 1, NULL, 'g' },
961 { "version", 0, NULL, 'v' },
964 struct session *session;
967 static char password[80];
976 rl_bind_key('\t', rl_insert);
978 session = session_alloc();
980 fprintf(stderr, "no more memory...\n");
984 /* get the current time so that we can log it later */
986 session->time = strdup(ctime(&t));
987 session->time[strlen(session->time)-1] = 0x00;
989 session->homedir = strdup(getenv("HOME"));
991 curl_global_init(CURL_GLOBAL_ALL);
993 /* Set environment variables first, before reading command line options
994 * or config file values. */
995 http_proxy = getenv("http_proxy");
998 free(session->proxy);
999 session->proxy = strdup(http_proxy);
1000 dbg("http_proxy = %s\n", session->proxy);
1003 parse_configfile(session);
1006 option = getopt_long_only(argc, argv, "dp:P:H:a:A:u:hg:G:snVv",
1018 if (session->account)
1019 free(session->account);
1020 session->account = strdup(optarg);
1021 dbg("account = %s\n", session->account);
1024 page_nr = atoi(optarg);
1025 dbg("page = %d\n", page_nr);
1026 session->page = page_nr;
1029 if (session->password)
1030 free(session->password);
1031 session->password = strdup(optarg);
1032 dbg("password = %s\n", session->password);
1036 free(session->proxy);
1037 session->proxy = strdup(optarg);
1038 dbg("proxy = %s\n", session->proxy);
1041 if (strcasecmp(optarg, "update") == 0)
1042 session->action = ACTION_UPDATE;
1043 else if (strcasecmp(optarg, "friends") == 0)
1044 session->action = ACTION_FRIENDS;
1045 else if (strcasecmp(optarg, "user") == 0)
1046 session->action = ACTION_USER;
1047 else if (strcasecmp(optarg, "replies") == 0)
1048 session->action = ACTION_REPLIES;
1049 else if (strcasecmp(optarg, "public") == 0)
1050 session->action = ACTION_PUBLIC;
1051 else if (strcasecmp(optarg, "group") == 0)
1052 session->action = ACTION_GROUP;
1054 session->action = ACTION_UNKNOWN;
1055 dbg("action = %d\n", session->action);
1059 free(session->user);
1060 session->user = strdup(optarg);
1061 dbg("user = %s\n", session->user);
1066 free(session->group);
1067 session->group = strdup(optarg);
1068 dbg("group = %s\n", session->group);
1071 if (session->logfile)
1072 free(session->logfile);
1073 session->logfile = strdup(optarg);
1074 dbg("logfile = %s\n", session->logfile);
1077 session->shrink_urls = 1;
1080 if (session->hosturl)
1081 free(session->hosturl);
1082 if (strcasecmp(optarg, "twitter") == 0) {
1083 session->host = HOST_TWITTER;
1084 session->hosturl = strdup(twitter_host);
1085 } else if (strcasecmp(optarg, "identica") == 0) {
1086 session->host = HOST_IDENTICA;
1087 session->hosturl = strdup(identica_host);
1089 session->host = HOST_CUSTOM;
1090 session->hosturl = strdup(optarg);
1092 dbg("host = %d\n", session->host);
1101 session->dry_run = 1;
1113 * Show the version to make it easier to determine what
1118 fprintf(stderr, "%s", session->group);
1121 if (session->action == ACTION_UNKNOWN) {
1122 fprintf(stderr, "Unknown action, valid actions are:\n");
1123 fprintf(stderr, "'update', 'friends', 'public', "
1124 "'replies', 'group' or 'user'.\n");
1128 if (session->host == HOST_TWITTER && session->action == ACTION_GROUP) {
1129 fprintf(stderr, "Groups only work in Identi.ca.\n");
1133 if (session->action == ACTION_GROUP && !session->group) {
1134 fprintf(stdout, "Enter group name: ");
1135 session->group = readline(NULL);
1138 if (!session->account) {
1139 fprintf(stdout, "Enter twitter account: ");
1140 session->account = readline(NULL);
1143 if (!session->password) {
1144 read_password(password, sizeof(password));
1145 session->password = strdup(password);
1149 if (session->action == ACTION_UPDATE) {
1151 tweet = get_string_from_stdin();
1153 tweet = readline("tweet: ");
1154 if (!tweet || strlen(tweet) == 0) {
1159 if (session->shrink_urls)
1160 tweet = shrink_urls(tweet);
1162 session->tweet = zalloc(strlen(tweet) + 10);
1164 sprintf(session->tweet, "%c %s", getuid() ? '$' : '#', tweet);
1166 sprintf(session->tweet, "%s", tweet);
1169 dbg("tweet = %s\n", session->tweet);
1173 session->user = strdup(session->account);
1175 if (session->page == 0)
1177 dbg("account = %s\n", session->account);
1178 dbg("password = %s\n", session->password);
1179 dbg("host = %d\n", session->host);
1180 dbg("action = %d\n", session->action);
1182 /* fork ourself so that the main shell can get on
1183 * with it's life as we try to connect and handle everything
1185 if (session->bash) {
1188 dbg("child is %d\n", child);
1193 retval = send_request(session);
1194 if (retval && !session->bash)
1195 fprintf(stderr, "operation failed\n");
1197 log_session(session, retval);
1199 session_free(session);