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 void parse_statuses(xmlDocPtr doc, xmlNodePtr current)
202 xmlChar *text = NULL;
203 xmlChar *user = NULL;
206 current = current->xmlChildrenNode;
207 while (current != NULL) {
208 if (current->type == XML_ELEMENT_NODE) {
209 if (!xmlStrcmp(current->name, (const xmlChar *)"text"))
210 text = xmlNodeListGetString(doc, current->xmlChildrenNode, 1);
211 if (!xmlStrcmp(current->name, (const xmlChar *)"user")) {
212 userinfo = current->xmlChildrenNode;
213 while (userinfo != NULL) {
214 if ((!xmlStrcmp(userinfo->name, (const xmlChar *)"screen_name"))) {
217 user = xmlNodeListGetString(doc, userinfo->xmlChildrenNode, 1);
219 userinfo = userinfo->next;
223 printf("[%s] %s\n", user, text);
230 current = current->next;
236 static void parse_timeline(char *document)
241 doc = xmlReadMemory(document, strlen(document), "timeline.xml",
242 NULL, XML_PARSE_NOERROR);
246 current = xmlDocGetRootElement(doc);
247 if (current == NULL) {
248 fprintf(stderr, "empty document\n");
253 if (xmlStrcmp(current->name, (const xmlChar *) "statuses")) {
254 fprintf(stderr, "unexpected document type\n");
259 current = current->xmlChildrenNode;
260 while (current != NULL) {
261 if ((!xmlStrcmp(current->name, (const xmlChar *)"status")))
262 parse_statuses(doc, current);
263 current = current->next;
270 size_t curl_callback(void *buffer, size_t size, size_t nmemb, void *userp)
272 struct bti_curl_buffer *curl_buf = userp;
273 size_t buffer_size = size * nmemb;
276 if ((!buffer) || (!buffer_size) || (!curl_buf))
279 /* add to the data we already have */
280 temp = zalloc(curl_buf->length + buffer_size + 1);
284 memcpy(temp, curl_buf->data, curl_buf->length);
285 free(curl_buf->data);
286 curl_buf->data = temp;
287 memcpy(&curl_buf->data[curl_buf->length], (char *)buffer, buffer_size);
288 curl_buf->length += buffer_size;
289 if (curl_buf->action)
290 parse_timeline(curl_buf->data);
292 dbg("%s\n", curl_buf->data);
297 static int send_request(struct session *session)
299 char user_password[500];
301 /* is there usernames longer than 22 chars? */
303 struct bti_curl_buffer *curl_buf;
306 struct curl_httppost *formpost = NULL;
307 struct curl_httppost *lastptr = NULL;
308 struct curl_slist *slist = NULL;
313 curl_buf = bti_curl_buffer_alloc(session->action);
321 switch (session->action) {
323 snprintf(user_password, sizeof(user_password), "%s:%s",
324 session->account, session->password);
325 snprintf(data, sizeof(data), "status=\"%s\"", session->tweet);
326 curl_formadd(&formpost, &lastptr,
327 CURLFORM_COPYNAME, "status",
328 CURLFORM_COPYCONTENTS, session->tweet,
331 curl_formadd(&formpost, &lastptr,
332 CURLFORM_COPYNAME, "source",
333 CURLFORM_COPYCONTENTS, "bti",
336 curl_easy_setopt(curl, CURLOPT_HTTPPOST, formpost);
337 slist = curl_slist_append(slist, "Expect:");
338 curl_easy_setopt(curl, CURLOPT_HTTPHEADER, slist);
339 switch (session->host) {
341 curl_easy_setopt(curl, CURLOPT_URL,
345 curl_easy_setopt(curl, CURLOPT_URL,
346 identica_update_url);
349 curl_easy_setopt(curl, CURLOPT_USERPWD, user_password);
353 snprintf(user_password, sizeof(user_password), "%s:%s",
354 session->account, session->password);
355 switch (session->host) {
357 sprintf(user_url, "%s?page=%d", twitter_friends_url, session->page);
358 curl_easy_setopt(curl, CURLOPT_URL, user_url);
361 sprintf(user_url, "%s?page=%d", identica_friends_url, session->page);
362 curl_easy_setopt(curl, CURLOPT_URL, user_url);
365 curl_easy_setopt(curl, CURLOPT_USERPWD, user_password);
369 switch (session->host) {
371 sprintf(user_url, "%s%s.xml?page=%d", twitter_user_url, session->user, session->page);
372 curl_easy_setopt(curl, CURLOPT_URL, user_url);
375 sprintf(user_url, "%s%s.xml?page=%d", identica_user_url, session->user, session->page);
376 curl_easy_setopt(curl, CURLOPT_URL, user_url);
382 snprintf(user_password, sizeof(user_password), "%s:%s",
383 session->account, session->password);
384 switch (session->host) {
386 sprintf(user_url, "%s?page=%d", twitter_replies_url, session->page);
387 curl_easy_setopt(curl, CURLOPT_URL, user_url);
390 sprintf(user_url, "%s?page=%d", identica_replies_url, session->page);
391 curl_easy_setopt(curl, CURLOPT_URL, user_url);
394 curl_easy_setopt(curl, CURLOPT_USERPWD, user_password);
398 switch (session->host) {
400 sprintf(user_url, "%s?page=%d", twitter_public_url, session->page);
401 curl_easy_setopt(curl, CURLOPT_URL, user_url);
404 sprintf(user_url, "%s?page=%d", identica_public_url, session->page);
405 curl_easy_setopt(curl, CURLOPT_URL, user_url);
415 curl_easy_setopt(curl, CURLOPT_PROXY, session->proxy);
418 curl_easy_setopt(curl, CURLOPT_VERBOSE, 1);
420 dbg("user_password = %s\n", user_password);
421 dbg("data = %s\n", data);
422 dbg("proxy = %s\n", session->proxy);
424 curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, curl_callback);
425 curl_easy_setopt(curl, CURLOPT_WRITEDATA, curl_buf);
426 if (!session->dry_run) {
427 res = curl_easy_perform(curl);
428 if (res && !session->bash) {
429 fprintf(stderr, "error(%d) trying to perform "
435 curl_easy_cleanup(curl);
436 if (session->action == ACTION_UPDATE)
437 curl_formfree(formpost);
438 bti_curl_buffer_free(curl_buf);
442 static void parse_configfile(struct session *session)
447 char *account = NULL;
448 char *password = NULL;
451 char *logfile = NULL;
457 /* config file is ~/.bti */
458 file = alloca(strlen(session->homedir) + 7);
460 sprintf(file, "%s/.bti", session->homedir);
462 config_file = fopen(file, "r");
464 /* No error if file does not exist or is unreadable. */
465 if (config_file == NULL)
469 ssize_t n = getline(&line, &len, config_file);
472 if (line[n - 1] == '\n')
474 /* Parse file. Format is the usual value pairs:
477 # is a comment character
479 *strchrnul(line, '#') = '\0';
483 /* Ignore blank lines. */
487 if (!strncasecmp(c, "account", 7) && (c[7] == '=')) {
491 } else if (!strncasecmp(c, "password", 8) &&
495 password = strdup(c);
496 } else if (!strncasecmp(c, "host", 4) &&
501 } else if (!strncasecmp(c, "proxy", 5) &&
506 } else if (!strncasecmp(c, "logfile", 7) &&
511 } else if (!strncasecmp(c, "action", 6) &&
516 } else if (!strncasecmp(c, "user", 4) &&
521 } else if (!strncasecmp(c, "shrink-urls", 11) &&
524 if (!strncasecmp(c, "true", 4) ||
525 !strncasecmp(c, "yes", 3))
528 } while (!feof(config_file));
531 session->password = password;
533 session->account = account;
535 if (strcasecmp(host, "twitter") == 0)
536 session->host = HOST_TWITTER;
537 if (strcasecmp(host, "identica") == 0)
538 session->host = HOST_IDENTICA;
543 free(session->proxy);
544 session->proxy = proxy;
547 session->logfile = logfile;
549 if (strcasecmp(action, "update") == 0)
550 session->action = ACTION_UPDATE;
551 else if (strcasecmp(action, "friends") == 0)
552 session->action = ACTION_FRIENDS;
553 else if (strcasecmp(action, "user") == 0)
554 session->action = ACTION_USER;
555 else if (strcasecmp(action, "replies") == 0)
556 session->action = ACTION_REPLIES;
557 else if (strcasecmp(action, "public") == 0)
558 session->action = ACTION_PUBLIC;
560 session->action = ACTION_UNKNOWN;
564 session->user = user;
565 session->shrink_urls = shrink_urls;
567 /* Free buffer and close file. */
572 static void log_session(struct session *session, int retval)
578 /* Only log something if we have a log file set */
579 if (!session->logfile)
582 filename = alloca(strlen(session->homedir) +
583 strlen(session->logfile) + 3);
585 sprintf(filename, "%s/%s", session->homedir, session->logfile);
587 log_file = fopen(filename, "a+");
588 if (log_file == NULL)
590 switch (session->host) {
602 switch (session->action) {
605 fprintf(log_file, "%s: host=%s tweet failed\n",
606 session->time, host);
608 fprintf(log_file, "%s: host=%s tweet=%s\n",
609 session->time, host, session->tweet);
612 fprintf(log_file, "%s: host=%s retrieving friends timeline\n",
613 session->time, host);
616 fprintf(log_file, "%s: host=%s retrieving %s's timeline\n",
617 session->time, host, session->user);
620 fprintf(log_file, "%s: host=%s retrieving replies\n",
621 session->time, host);
624 fprintf(log_file, "%s: host=%s retrieving public timeline\n",
625 session->time, host);
634 static char *get_string_from_stdin(void)
639 string = zalloc(1000);
643 if (!fgets(string, 999, stdin))
645 temp = strchr(string, '\n');
650 static int find_urls(const char *tweet, int **pranges)
653 * magic obtained from
654 * http://www.geekpedia.com/KB65_How-to-validate-an-URL-using-RegEx-in-Csharp.html
656 static const char *re_magic =
657 "(([a-zA-Z][0-9a-zA-Z+\\-\\.]*:)/{1,3}"
658 "[0-9a-zA-Z;/~?:@&=+$\\.\\-_'()%]+)"
659 "(#[0-9a-zA-Z;/?:@&=+$\\.\\-_!~*'()%]+)?";
663 int ovector[10] = {0,};
664 const size_t ovsize = sizeof(ovector)/sizeof(*ovector);
665 int startoffset, tweetlen;
669 int *ranges = malloc(sizeof(int) * rbound);
671 re = pcre_compile(re_magic,
672 PCRE_NO_AUTO_CAPTURE,
673 &errptr, &erroffset, NULL);
675 fprintf(stderr, "pcre_compile @%u: %s\n", erroffset, errptr);
679 tweetlen = strlen(tweet);
680 for (startoffset = 0; startoffset < tweetlen; ) {
682 rc = pcre_exec(re, NULL, tweet, strlen(tweet), startoffset, 0,
684 if (rc == PCRE_ERROR_NOMATCH)
688 fprintf(stderr, "pcre_exec @%u: %s\n",
693 for (i = 0; i < rc; i += 2) {
694 if ((rcount+2) == rbound) {
696 ranges = realloc(ranges, sizeof(int) * rbound);
699 ranges[rcount++] = ovector[i];
700 ranges[rcount++] = ovector[i+1];
703 startoffset = ovector[1];
713 * bidirectional popen() call
715 * @param rwepipe - int array of size three
716 * @param exe - program to run
717 * @param argv - argument list
718 * @return pid or -1 on error
720 * The caller passes in an array of three integers (rwepipe), on successful
721 * execution it can then write to element 0 (stdin of exe), and read from
722 * element 1 (stdout) and 2 (stderr).
724 static int popenRWE(int *rwepipe, const char *exe, const char *const argv[])
754 } else if (pid == 0) {
766 execvp(exe, (char **)argv);
786 static int pcloseRWE(int pid, int *rwepipe)
792 rc = waitpid(pid, &status, 0);
796 static char *shrink_one_url(int *rwepipe, char *big)
798 int biglen = strlen(big);
803 rc = dprintf(rwepipe[0], "%s\n", big);
807 smalllen = biglen + 128;
808 small = malloc(smalllen);
812 rc = read(rwepipe[1], small, smalllen);
813 if (rc < 0 || rc > biglen)
814 goto error_free_small;
816 if (strncmp(small, "http://", 7))
817 goto error_free_small;
820 while (smalllen && isspace(small[smalllen-1]))
821 small[--smalllen] = 0;
831 static char *shrink_urls(char *text)
838 const char *const shrink_args[] = {
844 int inlen = strlen(text);
846 dbg("before len=%u\n", inlen);
848 shrink_pid = popenRWE(shrink_pipe, shrink_args[0], shrink_args);
852 rcount = find_urls(text, &ranges);
856 for (i = 0; i < rcount; i += 2) {
857 int url_start = ranges[i];
858 int url_end = ranges[i+1];
859 int long_url_len = url_end - url_start;
860 char *url = strndup(text + url_start, long_url_len);
862 int not_url_len = url_start - inofs;
864 dbg("long url[%u]: %s\n", long_url_len, url);
865 url = shrink_one_url(shrink_pipe, url);
866 short_url_len = url ? strlen(url) : 0;
867 dbg("short url[%u]: %s\n", short_url_len, url);
869 if (!url || short_url_len >= long_url_len) {
870 /* The short url ended up being too long
873 strncpy(text + outofs, text + inofs,
874 not_url_len + long_url_len);
876 inofs += not_url_len + long_url_len;
877 outofs += not_url_len + long_url_len;
880 /* copy the unmodified block */
881 strncpy(text + outofs, text + inofs, not_url_len);
882 inofs += not_url_len;
883 outofs += not_url_len;
885 /* copy the new url */
886 strncpy(text + outofs, url, short_url_len);
887 inofs += long_url_len;
888 outofs += short_url_len;
894 /* copy the last block after the last match */
896 int tail = inlen - inofs;
898 strncpy(text + outofs, text + inofs, tail);
905 (void)pcloseRWE(shrink_pid, shrink_pipe);
908 dbg("after len=%u\n", outofs);
912 int main(int argc, char *argv[], char *envp[])
914 static const struct option options[] = {
915 { "debug", 0, NULL, 'd' },
916 { "account", 1, NULL, 'a' },
917 { "password", 1, NULL, 'p' },
918 { "host", 1, NULL, 'H' },
919 { "proxy", 1, NULL, 'P' },
920 { "action", 1, NULL, 'A' },
921 { "user", 1, NULL, 'u' },
922 { "logfile", 1, NULL, 'L' },
923 { "shrink-urls", 0, NULL, 's' },
924 { "help", 0, NULL, 'h' },
925 { "bash", 0, NULL, 'b' },
926 { "dry-run", 0, NULL, 'n' },
927 { "page", 1, NULL, 'g' },
928 { "version", 0, NULL, 'v' },
931 struct session *session;
941 rl_bind_key('\t', rl_insert);
943 session = session_alloc();
945 fprintf(stderr, "no more memory...\n");
949 /* get the current time so that we can log it later */
951 session->time = strdup(ctime(&t));
952 session->time[strlen(session->time)-1] = 0x00;
954 session->homedir = strdup(getenv("HOME"));
956 curl_global_init(CURL_GLOBAL_ALL);
958 /* Set environment variables first, before reading command line options
959 * or config file values. */
960 http_proxy = getenv("http_proxy");
963 free(session->proxy);
964 session->proxy = strdup(http_proxy);
965 dbg("http_proxy = %s\n", session->proxy);
968 parse_configfile(session);
971 option = getopt_long_only(argc, argv, "dqe:p:P:H:a:A:u:hg:sn",
980 if (session->account)
981 free(session->account);
982 session->account = strdup(optarg);
983 dbg("account = %s\n", session->account);
986 page_nr = atoi(optarg);
987 dbg("page = %d\n", page_nr);
988 session->page = page_nr;
991 if (session->password)
992 free(session->password);
993 session->password = strdup(optarg);
994 dbg("password = %s\n", session->password);
998 free(session->proxy);
999 session->proxy = strdup(optarg);
1000 dbg("proxy = %s\n", session->proxy);
1003 if (strcasecmp(optarg, "update") == 0)
1004 session->action = ACTION_UPDATE;
1005 else if (strcasecmp(optarg, "friends") == 0)
1006 session->action = ACTION_FRIENDS;
1007 else if (strcasecmp(optarg, "user") == 0)
1008 session->action = ACTION_USER;
1009 else if (strcasecmp(optarg, "replies") == 0)
1010 session->action = ACTION_REPLIES;
1011 else if (strcasecmp(optarg, "public") == 0)
1012 session->action = ACTION_PUBLIC;
1014 session->action = ACTION_UNKNOWN;
1015 dbg("action = %d\n", session->action);
1019 free(session->user);
1020 session->user = strdup(optarg);
1021 dbg("user = %s\n", session->user);
1024 if (session->logfile)
1025 free(session->logfile);
1026 session->logfile = strdup(optarg);
1027 dbg("logfile = %s\n", session->logfile);
1030 session->shrink_urls = 1;
1033 if (strcasecmp(optarg, "twitter") == 0)
1034 session->host = HOST_TWITTER;
1035 if (strcasecmp(optarg, "identica") == 0)
1036 session->host = HOST_IDENTICA;
1037 dbg("host = %d\n", session->host);
1046 session->dry_run = 1;
1058 * Show the version to make it easier to determine what
1064 if (session->action == ACTION_UNKNOWN) {
1065 fprintf(stderr, "Unknown action, valid actions are:\n");
1066 fprintf(stderr, "'update', 'friends', 'public', "
1067 "'replies' or 'user'.\n");
1071 if (!session->account) {
1072 fprintf(stdout, "Enter twitter account: ");
1073 session->account = readline(NULL);
1076 if (!session->password) {
1077 fprintf(stdout, "Enter twitter password: ");
1078 session->password = readline(NULL);
1081 if (session->action == ACTION_UPDATE) {
1083 tweet = get_string_from_stdin();
1085 tweet = readline("tweet: ");
1086 if (!tweet || strlen(tweet) == 0) {
1091 if (session->shrink_urls)
1092 tweet = shrink_urls(tweet);
1094 session->tweet = zalloc(strlen(tweet) + 10);
1096 sprintf(session->tweet, "%c %s", getuid() ? '$' : '#', tweet);
1098 sprintf(session->tweet, "%s", tweet);
1101 dbg("tweet = %s\n", session->tweet);
1105 session->user = strdup(session->account);
1107 if (session->page == 0)
1109 dbg("account = %s\n", session->account);
1110 dbg("password = %s\n", session->password);
1111 dbg("host = %d\n", session->host);
1112 dbg("action = %d\n", session->action);
1114 /* fork ourself so that the main shell can get on
1115 * with it's life as we try to connect and handle everything
1117 if (session->bash) {
1120 dbg("child is %d\n", child);
1125 retval = send_request(session);
1126 if (retval && !session->bash)
1127 fprintf(stderr, "operation failed\n");
1129 log_session(session, retval);
1131 session_free(session);