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 <libxml/xmlmemory.h>
37 #include <libxml/parser.h>
38 #include <libxml/tree.h>
45 #define zalloc(size) calloc(size, 1)
47 #define dbg(format, arg...) \
50 fprintf(stdout, "bti: %s: " format , __func__ , \
78 char *consumer_secret;
79 char *access_token_key;
80 char *access_token_secret;
100 void *readline_handle;
101 char *(*readline)(const char *);
104 struct bti_curl_buffer {
110 static void display_help(void)
112 fprintf(stdout, "bti - send tweet to twitter or identi.ca\n");
113 fprintf(stdout, "Version: " VERSION "\n");
114 fprintf(stdout, "Usage:\n");
115 fprintf(stdout, " bti [options]\n");
116 fprintf(stdout, "options are:\n");
117 fprintf(stdout, " --account accountname\n");
118 fprintf(stdout, " --password password\n");
119 fprintf(stdout, " --action action\n");
120 fprintf(stdout, " ('update', 'friends', 'public', 'replies', "
121 "'group' or 'user')\n");
122 fprintf(stdout, " --user screenname\n");
123 fprintf(stdout, " --group groupname\n");
124 fprintf(stdout, " --proxy PROXY:PORT\n");
125 fprintf(stdout, " --host HOST\n");
126 fprintf(stdout, " --logfile logfile\n");
127 fprintf(stdout, " --config configfile\n");
128 fprintf(stdout, " --replyto ID\n");
129 fprintf(stdout, " --shrink-urls\n");
130 fprintf(stdout, " --page PAGENUMBER\n");
131 fprintf(stdout, " --bash\n");
132 fprintf(stdout, " --debug\n");
133 fprintf(stdout, " --verbose\n");
134 fprintf(stdout, " --dry-run\n");
135 fprintf(stdout, " --version\n");
136 fprintf(stdout, " --help\n");
139 static void display_version(void)
141 fprintf(stdout, "bti - version %s\n", VERSION);
144 static char *get_string(const char *name)
149 string = zalloc(1000);
153 fprintf(stdout, "%s", name);
154 if (!fgets(string, 999, stdin))
156 temp = strchr(string, '\n');
163 * Try to get a handle to a readline function from a variety of different
164 * libraries. If nothing is present on the system, then fall back to an
167 * Logic originally based off of code in the e2fsutils package in the
168 * lib/ss/get_readline.c file, which is licensed under the MIT license.
170 * This keeps us from having to relicense the bti codebase if readline
171 * ever changes its license, as there is no link-time dependancy.
172 * It is a run-time thing only, and we handle any readline-like library
173 * in the same manner, making bti not be a derivative work of any
176 static void session_readline_init(struct session *session)
178 /* Libraries we will try to use for readline/editline functionality */
179 const char *libpath = "libreadline.so.6:libreadline.so.5:"
180 "libreadline.so.4:libreadline.so:libedit.so.2:"
181 "libedit.so:libeditline.so.0:libeditline.so";
183 char *tmp, *cp, *next;
184 int (*bind_key)(int, void *);
185 void (*insert)(void);
187 /* default to internal function if we can't or won't find anything */
188 session->readline = get_string;
191 session->interactive = 1;
193 tmp = malloc(strlen(libpath)+1);
196 strcpy(tmp, libpath);
197 for (cp = tmp; cp; cp = next) {
198 next = strchr(cp, ':');
203 handle = dlopen(cp, RTLD_NOW);
205 dbg("Using %s for readline library\n", cp);
211 dbg("No readline library found.\n");
215 session->readline_handle = handle;
216 session->readline = (char *(*)(const char *))dlsym(handle, "readline");
217 if (session->readline == NULL) {
218 /* something odd happened, default back to internal stuff */
219 session->readline_handle = NULL;
220 session->readline = get_string;
225 * If we found a library, turn off filename expansion
226 * as that makes no sense from within bti.
228 bind_key = (int (*)(int, void *))dlsym(handle, "rl_bind_key");
229 insert = (void (*)(void))dlsym(handle, "rl_insert");
230 if (bind_key && insert)
231 bind_key('\t', insert);
234 static void session_readline_cleanup(struct session *session)
236 if (session->readline_handle)
237 dlclose(session->readline_handle);
240 static struct session *session_alloc(void)
242 struct session *session;
244 session = zalloc(sizeof(*session));
250 static void session_free(struct session *session)
254 free(session->replyto);
255 free(session->password);
256 free(session->account);
257 free(session->consumer_key);
258 free(session->consumer_secret);
259 free(session->access_token_key);
260 free(session->access_token_secret);
261 free(session->tweet);
262 free(session->proxy);
264 free(session->homedir);
266 free(session->group);
267 free(session->hosturl);
268 free(session->hostname);
269 free(session->configfile);
273 static struct bti_curl_buffer *bti_curl_buffer_alloc(enum action action)
275 struct bti_curl_buffer *buffer;
277 buffer = zalloc(sizeof(*buffer));
281 /* start out with a data buffer of 1 byte to
282 * make the buffer fill logic simpler */
283 buffer->data = zalloc(1);
289 buffer->action = action;
293 static void bti_curl_buffer_free(struct bti_curl_buffer *buffer)
301 static const char *twitter_host = "http://api.twitter.com/1/statuses";
302 static const char *identica_host = "https://identi.ca/api/statuses";
303 static const char *twitter_name = "twitter";
304 static const char *identica_name = "identi.ca";
306 static const char *twitter_request_token_uri = "http://twitter.com/oauth/request_token";
307 static const char *twitter_access_token_uri = "http://twitter.com/oauth/access_token";
308 static const char *twitter_authorize_uri = "http://twitter.com/oauth/authorize?oauth_token=";
309 static const char *identica_request_token_uri = "http://identi.ca/api/oauth/request_token";
310 static const char *identica_access_token_uri = "http://identi.ca/api/oauth/access_token";
311 static const char *identica_authorize_uri = "http://identi.ca/api/oauth/authorize?oauth_token=";
313 static const char *user_uri = "/user_timeline/";
314 static const char *update_uri = "/update.xml";
315 static const char *public_uri = "/public_timeline.xml";
316 static const char *friends_uri = "/friends_timeline.xml";
317 static const char *mentions_uri = "/mentions.xml";
318 static const char *replies_uri = "/replies.xml";
319 static const char *group_uri = "/../statusnet/groups/timeline/";
321 static CURL *curl_init(void)
325 curl = curl_easy_init();
327 fprintf(stderr, "Can not init CURL!\n");
330 /* some ssl sanity checks on the connection we are making */
331 curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, 0);
332 curl_easy_setopt(curl, CURLOPT_SSL_VERIFYHOST, 0);
336 static void parse_statuses(xmlDocPtr doc, xmlNodePtr current)
338 xmlChar *text = NULL;
339 xmlChar *user = NULL;
340 xmlChar *created = NULL;
344 current = current->xmlChildrenNode;
345 while (current != NULL) {
346 if (current->type == XML_ELEMENT_NODE) {
347 if (!xmlStrcmp(current->name, (const xmlChar *)"created_at"))
348 created = xmlNodeListGetString(doc, current->xmlChildrenNode, 1);
349 if (!xmlStrcmp(current->name, (const xmlChar *)"text"))
350 text = xmlNodeListGetString(doc, current->xmlChildrenNode, 1);
351 if (!xmlStrcmp(current->name, (const xmlChar *)"id"))
352 id = xmlNodeListGetString(doc, current->xmlChildrenNode, 1);
353 if (!xmlStrcmp(current->name, (const xmlChar *)"user")) {
354 userinfo = current->xmlChildrenNode;
355 while (userinfo != NULL) {
356 if ((!xmlStrcmp(userinfo->name, (const xmlChar *)"screen_name"))) {
359 user = xmlNodeListGetString(doc, userinfo->xmlChildrenNode, 1);
361 userinfo = userinfo->next;
365 if (user && text && created && id) {
367 printf("[%s] {%s} (%.16s) %s\n",
368 user, id, created, text);
382 current = current->next;
388 static void parse_timeline(char *document)
393 doc = xmlReadMemory(document, strlen(document), "timeline.xml",
394 NULL, XML_PARSE_NOERROR);
398 current = xmlDocGetRootElement(doc);
399 if (current == NULL) {
400 fprintf(stderr, "empty document\n");
405 if (xmlStrcmp(current->name, (const xmlChar *) "statuses")) {
406 fprintf(stderr, "unexpected document type\n");
411 current = current->xmlChildrenNode;
412 while (current != NULL) {
413 if ((!xmlStrcmp(current->name, (const xmlChar *)"status")))
414 parse_statuses(doc, current);
415 current = current->next;
422 static size_t curl_callback(void *buffer, size_t size, size_t nmemb,
425 struct bti_curl_buffer *curl_buf = userp;
426 size_t buffer_size = size * nmemb;
429 if ((!buffer) || (!buffer_size) || (!curl_buf))
432 /* add to the data we already have */
433 temp = zalloc(curl_buf->length + buffer_size + 1);
437 memcpy(temp, curl_buf->data, curl_buf->length);
438 free(curl_buf->data);
439 curl_buf->data = temp;
440 memcpy(&curl_buf->data[curl_buf->length], (char *)buffer, buffer_size);
441 curl_buf->length += buffer_size;
442 if (curl_buf->action)
443 parse_timeline(curl_buf->data);
445 dbg("%s\n", curl_buf->data);
450 static int parse_osp_reply(const char *reply, char **token, char **secret)
455 rc = oauth_split_url_parameters(reply, &rv);
456 qsort(rv, rc, sizeof(char *), oauth_cmpstringp);
457 if (rc == 2 || rc == 4) {
458 if (!strncmp(rv[0], "oauth_token=", 11) && !strncmp(rv[1], "oauth_token_secret=", 18)) {
460 *token = strdup(&(rv[0][12]));
462 *secret = strdup(&(rv[1][19]));
466 } else if (rc == 3) {
467 if (!strncmp(rv[1], "oauth_token=", 11) && !strncmp(rv[2], "oauth_token_secret=", 18)) {
469 *token = strdup(&(rv[1][12]));
471 *secret = strdup(&(rv[2][19]));
477 dbg("token: %s\n", *token);
478 dbg("secret: %s\n", *secret);
486 static int request_access_token(struct session *session)
488 char *post_params = NULL;
489 char *request_url = NULL;
492 char *at_secret = NULL;
493 char *verifier = NULL;
499 if (session->host == HOST_TWITTER)
500 request_url = oauth_sign_url2(
501 twitter_request_token_uri, NULL,
502 OA_HMAC, NULL, session->consumer_key,
503 session->consumer_secret, NULL, NULL);
504 else if (session->host == HOST_IDENTICA)
505 request_url = oauth_sign_url2(
506 identica_request_token_uri, NULL,
507 OA_HMAC, NULL, session->consumer_key,
508 session->consumer_secret, NULL, NULL);
509 reply = oauth_http_get(request_url, post_params);
520 if (parse_osp_reply(reply, &at_key, &at_secret))
525 fprintf(stdout, "Please open the following link in your browser, and ");
526 fprintf(stdout, "allow 'bti' to access your account. Then paste ");
527 fprintf(stdout, "back the provided PIN in here.\n");
528 if (session->host == HOST_TWITTER) {
529 fprintf(stdout, "%s%s\nPIN: ", twitter_authorize_uri, at_key);
530 verifier = session->readline(NULL);
531 sprintf(at_uri, "%s?oauth_verifier=%s", twitter_access_token_uri, verifier);
532 } else if (session->host == HOST_IDENTICA) {
533 fprintf(stdout, "%s%s\nPIN: ", identica_authorize_uri, at_key);
534 verifier = session->readline(NULL);
535 sprintf(at_uri, "%s?oauth_verifier=%s", identica_access_token_uri, verifier);
537 request_url = oauth_sign_url2(at_uri, NULL, OA_HMAC, NULL,
538 session->consumer_key, session->consumer_secret, at_key,
540 reply = oauth_http_get(request_url, post_params);
545 if (parse_osp_reply(reply, &at_key, &at_secret))
550 fprintf(stdout, "Please put these two lines in your bti configuration ");
551 fprintf(stdout, "file (~/.bti):\n");
552 fprintf(stdout, "access_token_key=%s\n", at_key);
553 fprintf(stdout, "access_token_secret=%s\n", at_secret);
558 static int send_request(struct session *session)
561 char user_password[500];
563 struct bti_curl_buffer *curl_buf;
566 struct curl_httppost *formpost = NULL;
567 struct curl_httppost *lastptr = NULL;
568 struct curl_slist *slist = NULL;
569 char *req_url = NULL;
571 char *postarg = NULL;
572 char *escaped_tweet = NULL;
578 if (!session->hosturl)
579 session->hosturl = strdup(twitter_host);
581 if (session->no_oauth) {
582 curl_buf = bti_curl_buffer_alloc(session->action);
590 if (!session->hosturl)
591 session->hosturl = strdup(twitter_host);
593 switch (session->action) {
595 snprintf(user_password, sizeof(user_password), "%s:%s",
596 session->account, session->password);
597 snprintf(data, sizeof(data), "status=\"%s\"", session->tweet);
598 curl_formadd(&formpost, &lastptr,
599 CURLFORM_COPYNAME, "status",
600 CURLFORM_COPYCONTENTS, session->tweet,
603 curl_formadd(&formpost, &lastptr,
604 CURLFORM_COPYNAME, "source",
605 CURLFORM_COPYCONTENTS, "bti",
608 if (session->replyto)
609 curl_formadd(&formpost, &lastptr,
610 CURLFORM_COPYNAME, "in_reply_to_status_id",
611 CURLFORM_COPYCONTENTS, session->replyto,
614 curl_easy_setopt(curl, CURLOPT_HTTPPOST, formpost);
615 slist = curl_slist_append(slist, "Expect:");
616 curl_easy_setopt(curl, CURLOPT_HTTPHEADER, slist);
618 sprintf(endpoint, "%s%s", session->hosturl, update_uri);
619 curl_easy_setopt(curl, CURLOPT_URL, endpoint);
620 curl_easy_setopt(curl, CURLOPT_USERPWD, user_password);
623 snprintf(user_password, sizeof(user_password), "%s:%s",
624 session->account, session->password);
625 sprintf(endpoint, "%s%s?page=%d", session->hosturl,
626 friends_uri, session->page);
627 curl_easy_setopt(curl, CURLOPT_URL, endpoint);
628 curl_easy_setopt(curl, CURLOPT_USERPWD, user_password);
632 sprintf(endpoint, "%s%s%s.xml?page=%d", session->hosturl,
633 user_uri, session->user, session->page);
634 curl_easy_setopt(curl, CURLOPT_URL, endpoint);
638 snprintf(user_password, sizeof(user_password), "%s:%s",
639 session->account, session->password);
640 sprintf(endpoint, "%s%s?page=%d", session->hosturl, replies_uri,
642 curl_easy_setopt(curl, CURLOPT_URL, endpoint);
643 curl_easy_setopt(curl, CURLOPT_USERPWD, user_password);
647 sprintf(endpoint, "%s%s?page=%d", session->hosturl, public_uri,
649 curl_easy_setopt(curl, CURLOPT_URL, endpoint);
653 sprintf(endpoint, "%s%s%s.xml?page=%d", session->hosturl,
654 group_uri, session->group, session->page);
655 curl_easy_setopt(curl, CURLOPT_URL, endpoint);
663 curl_easy_setopt(curl, CURLOPT_PROXY, session->proxy);
666 curl_easy_setopt(curl, CURLOPT_VERBOSE, 1);
668 dbg("user_password = %s\n", user_password);
669 dbg("data = %s\n", data);
670 dbg("proxy = %s\n", session->proxy);
672 curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, curl_callback);
673 curl_easy_setopt(curl, CURLOPT_WRITEDATA, curl_buf);
674 if (!session->dry_run) {
675 res = curl_easy_perform(curl);
676 if (res && !session->bash) {
677 fprintf(stderr, "error(%d) trying to perform "
683 curl_easy_cleanup(curl);
684 if (session->action == ACTION_UPDATE)
685 curl_formfree(formpost);
686 bti_curl_buffer_free(curl_buf);
688 switch (session->action) {
690 escaped_tweet = oauth_url_escape(session->tweet);
693 session->hosturl, update_uri, escaped_tweet);
697 sprintf(endpoint, "%s%s%s.xml?page=%d",
698 session->hosturl, user_uri,
699 session->user, session->page);
702 sprintf(endpoint, "%s%s?page=%d",
703 session->hosturl, mentions_uri, session->page);
706 sprintf(endpoint, "%s%s?page=%d",
707 session->hosturl, public_uri, session->page);
710 sprintf(endpoint, "%s%s%s.xml?page=%d",
711 session->hosturl, group_uri,
712 session->group, session->page);
715 sprintf(endpoint, "%s%s?page=%d",
716 session->hosturl, friends_uri, session->page);
723 req_url = oauth_sign_url2(
724 endpoint, &postarg, OA_HMAC, NULL,
725 session->consumer_key, session->consumer_secret,
726 session->access_token_key, session->access_token_secret
728 reply = oauth_http_post(req_url, postarg);
730 req_url = oauth_sign_url2(
731 endpoint, NULL, OA_HMAC, NULL,
732 session->consumer_key, session->consumer_secret,
733 session->access_token_key, session->access_token_secret
735 reply = oauth_http_get(req_url, postarg);
738 dbg("%s\n", req_url);
743 if (session->action != ACTION_UPDATE)
744 parse_timeline(reply);
749 static void parse_configfile(struct session *session)
754 char *account = NULL;
755 char *password = NULL;
756 char *consumer_key = NULL;
757 char *consumer_secret = NULL;
758 char *access_token_key = NULL;
759 char *access_token_secret = NULL;
762 char *logfile = NULL;
765 char *replyto = NULL;
768 config_file = fopen(session->configfile, "r");
770 /* No error if file does not exist or is unreadable. */
771 if (config_file == NULL)
775 ssize_t n = getline(&line, &len, config_file);
778 if (line[n - 1] == '\n')
780 /* Parse file. Format is the usual value pairs:
783 # is a comment character
785 *strchrnul(line, '#') = '\0';
789 /* Ignore blank lines. */
793 if (!strncasecmp(c, "account", 7) && (c[7] == '=')) {
797 } else if (!strncasecmp(c, "password", 8) &&
801 password = strdup(c);
802 } else if (!strncasecmp(c, "consumer_key", 12) &&
806 consumer_key = strdup(c);
807 } else if (!strncasecmp(c, "consumer_secret", 15) &&
811 consumer_secret = strdup(c);
812 } else if (!strncasecmp(c, "access_token_key", 16) &&
816 access_token_key = strdup(c);
817 } else if (!strncasecmp(c, "access_token_secret", 19) &&
821 access_token_secret = strdup(c);
822 } else if (!strncasecmp(c, "host", 4) &&
827 } else if (!strncasecmp(c, "proxy", 5) &&
832 } else if (!strncasecmp(c, "logfile", 7) &&
837 } else if (!strncasecmp(c, "replyto", 7) &&
842 } else if (!strncasecmp(c, "action", 6) &&
847 } else if (!strncasecmp(c, "user", 4) &&
852 } else if (!strncasecmp(c, "shrink-urls", 11) &&
855 if (!strncasecmp(c, "true", 4) ||
856 !strncasecmp(c, "yes", 3))
858 } else if (!strncasecmp(c, "verbose", 7) &&
861 if (!strncasecmp(c, "true", 4) ||
862 !strncasecmp(c, "yes", 3))
865 } while (!feof(config_file));
868 session->password = password;
870 session->account = account;
872 session->consumer_key = consumer_key;
874 session->consumer_secret = consumer_secret;
875 if (access_token_key)
876 session->access_token_key = access_token_key;
877 if (access_token_secret)
878 session->access_token_secret = access_token_secret;
880 if (strcasecmp(host, "twitter") == 0) {
881 session->host = HOST_TWITTER;
882 session->hosturl = strdup(twitter_host);
883 session->hostname = strdup(twitter_name);
884 } else if (strcasecmp(host, "identica") == 0) {
885 session->host = HOST_IDENTICA;
886 session->hosturl = strdup(identica_host);
887 session->hostname = strdup(identica_name);
889 session->host = HOST_CUSTOM;
890 session->hosturl = strdup(host);
891 session->hostname = strdup(host);
897 free(session->proxy);
898 session->proxy = proxy;
901 session->logfile = logfile;
903 session->replyto = replyto;
905 if (strcasecmp(action, "update") == 0)
906 session->action = ACTION_UPDATE;
907 else if (strcasecmp(action, "friends") == 0)
908 session->action = ACTION_FRIENDS;
909 else if (strcasecmp(action, "user") == 0)
910 session->action = ACTION_USER;
911 else if (strcasecmp(action, "replies") == 0)
912 session->action = ACTION_REPLIES;
913 else if (strcasecmp(action, "public") == 0)
914 session->action = ACTION_PUBLIC;
915 else if (strcasecmp(action, "group") == 0)
916 session->action = ACTION_GROUP;
918 session->action = ACTION_UNKNOWN;
922 session->user = user;
923 session->shrink_urls = shrink_urls;
925 /* Free buffer and close file. */
930 static void log_session(struct session *session, int retval)
935 /* Only log something if we have a log file set */
936 if (!session->logfile)
939 filename = alloca(strlen(session->homedir) +
940 strlen(session->logfile) + 3);
942 sprintf(filename, "%s/%s", session->homedir, session->logfile);
944 log_file = fopen(filename, "a+");
945 if (log_file == NULL)
948 switch (session->action) {
951 fprintf(log_file, "%s: host=%s tweet failed\n",
952 session->time, session->hostname);
954 fprintf(log_file, "%s: host=%s tweet=%s\n",
955 session->time, session->hostname,
959 fprintf(log_file, "%s: host=%s retrieving friends timeline\n",
960 session->time, session->hostname);
963 fprintf(log_file, "%s: host=%s retrieving %s's timeline\n",
964 session->time, session->hostname, session->user);
967 fprintf(log_file, "%s: host=%s retrieving replies\n",
968 session->time, session->hostname);
971 fprintf(log_file, "%s: host=%s retrieving public timeline\n",
972 session->time, session->hostname);
975 fprintf(log_file, "%s: host=%s retrieving group timeline\n",
976 session->time, session->hostname);
985 static char *get_string_from_stdin(void)
990 string = zalloc(1000);
994 if (!fgets(string, 999, stdin))
996 temp = strchr(string, '\n');
1002 static void read_password(char *buf, size_t len, char *host)
1012 tp.c_lflag &= (~ECHO);
1013 tcsetattr(0, TCSANOW, &tp);
1015 fprintf(stdout, "Enter password for %s: ", host);
1018 retval = scanf("%79s", pwd);
1020 fprintf(stdout, "\n");
1022 tcsetattr(0, TCSANOW, &old);
1024 strncpy(buf, pwd, len);
1028 static int find_urls(const char *tweet, int **pranges)
1031 * magic obtained from
1032 * http://www.geekpedia.com/KB65_How-to-validate-an-URL-using-RegEx-in-Csharp.html
1034 static const char *re_magic =
1035 "(([a-zA-Z][0-9a-zA-Z+\\-\\.]*:)/{1,3}"
1036 "[0-9a-zA-Z;/~?:@&=+$\\.\\-_'()%]+)"
1037 "(#[0-9a-zA-Z;/?:@&=+$\\.\\-_!~*'()%]+)?";
1041 int ovector[10] = {0,};
1042 const size_t ovsize = sizeof(ovector)/sizeof(*ovector);
1043 int startoffset, tweetlen;
1047 int *ranges = malloc(sizeof(int) * rbound);
1049 re = pcre_compile(re_magic,
1050 PCRE_NO_AUTO_CAPTURE,
1051 &errptr, &erroffset, NULL);
1053 fprintf(stderr, "pcre_compile @%u: %s\n", erroffset, errptr);
1057 tweetlen = strlen(tweet);
1058 for (startoffset = 0; startoffset < tweetlen; ) {
1060 rc = pcre_exec(re, NULL, tweet, strlen(tweet), startoffset, 0,
1062 if (rc == PCRE_ERROR_NOMATCH)
1066 fprintf(stderr, "pcre_exec @%u: %s\n",
1071 for (i = 0; i < rc; i += 2) {
1072 if ((rcount+2) == rbound) {
1074 ranges = realloc(ranges, sizeof(int) * rbound);
1077 ranges[rcount++] = ovector[i];
1078 ranges[rcount++] = ovector[i+1];
1081 startoffset = ovector[1];
1091 * bidirectional popen() call
1093 * @param rwepipe - int array of size three
1094 * @param exe - program to run
1095 * @param argv - argument list
1096 * @return pid or -1 on error
1098 * The caller passes in an array of three integers (rwepipe), on successful
1099 * execution it can then write to element 0 (stdin of exe), and read from
1100 * element 1 (stdout) and 2 (stderr).
1102 static int popenRWE(int *rwepipe, const char *exe, const char *const argv[])
1129 rwepipe[1] = out[0];
1130 rwepipe[2] = err[0];
1132 } else if (pid == 0) {
1144 execvp(exe, (char **)argv);
1164 static int pcloseRWE(int pid, int *rwepipe)
1170 rc = waitpid(pid, &status, 0);
1174 static char *shrink_one_url(int *rwepipe, char *big)
1176 int biglen = strlen(big);
1181 rc = dprintf(rwepipe[0], "%s\n", big);
1185 smalllen = biglen + 128;
1186 small = malloc(smalllen);
1190 rc = read(rwepipe[1], small, smalllen);
1191 if (rc < 0 || rc > biglen)
1192 goto error_free_small;
1194 if (strncmp(small, "http://", 7))
1195 goto error_free_small;
1198 while (smalllen && isspace(small[smalllen-1]))
1199 small[--smalllen] = 0;
1209 static char *shrink_urls(char *text)
1216 const char *const shrink_args[] = {
1222 int inlen = strlen(text);
1224 dbg("before len=%u\n", inlen);
1226 shrink_pid = popenRWE(shrink_pipe, shrink_args[0], shrink_args);
1230 rcount = find_urls(text, &ranges);
1234 for (i = 0; i < rcount; i += 2) {
1235 int url_start = ranges[i];
1236 int url_end = ranges[i+1];
1237 int long_url_len = url_end - url_start;
1238 char *url = strndup(text + url_start, long_url_len);
1240 int not_url_len = url_start - inofs;
1242 dbg("long url[%u]: %s\n", long_url_len, url);
1243 url = shrink_one_url(shrink_pipe, url);
1244 short_url_len = url ? strlen(url) : 0;
1245 dbg("short url[%u]: %s\n", short_url_len, url);
1247 if (!url || short_url_len >= long_url_len) {
1248 /* The short url ended up being too long
1251 strncpy(text + outofs, text + inofs,
1252 not_url_len + long_url_len);
1254 inofs += not_url_len + long_url_len;
1255 outofs += not_url_len + long_url_len;
1258 /* copy the unmodified block */
1259 strncpy(text + outofs, text + inofs, not_url_len);
1260 inofs += not_url_len;
1261 outofs += not_url_len;
1263 /* copy the new url */
1264 strncpy(text + outofs, url, short_url_len);
1265 inofs += long_url_len;
1266 outofs += short_url_len;
1272 /* copy the last block after the last match */
1274 int tail = inlen - inofs;
1276 strncpy(text + outofs, text + inofs, tail);
1283 (void)pcloseRWE(shrink_pid, shrink_pipe);
1286 dbg("after len=%u\n", outofs);
1290 int main(int argc, char *argv[], char *envp[])
1292 static const struct option options[] = {
1293 { "debug", 0, NULL, 'd' },
1294 { "verbose", 0, NULL, 'V' },
1295 { "account", 1, NULL, 'a' },
1296 { "password", 1, NULL, 'p' },
1297 { "host", 1, NULL, 'H' },
1298 { "proxy", 1, NULL, 'P' },
1299 { "action", 1, NULL, 'A' },
1300 { "user", 1, NULL, 'u' },
1301 { "group", 1, NULL, 'G' },
1302 { "logfile", 1, NULL, 'L' },
1303 { "shrink-urls", 0, NULL, 's' },
1304 { "help", 0, NULL, 'h' },
1305 { "bash", 0, NULL, 'b' },
1306 { "dry-run", 0, NULL, 'n' },
1307 { "page", 1, NULL, 'g' },
1308 { "version", 0, NULL, 'v' },
1309 { "config", 1, NULL, 'c' },
1310 { "replyto", 1, NULL, 'r' },
1313 struct session *session;
1316 static char password[80];
1326 session = session_alloc();
1328 fprintf(stderr, "no more memory...\n");
1332 /* get the current time so that we can log it later */
1334 session->time = strdup(ctime(&t));
1335 session->time[strlen(session->time)-1] = 0x00;
1337 /* Get the home directory so we can try to find a config file */
1338 session->homedir = strdup(getenv("HOME"));
1340 /* set up a default config file location (traditionally ~/.bti) */
1341 session->configfile = zalloc(strlen(session->homedir) + 7);
1342 sprintf(session->configfile, "%s/.bti", session->homedir);
1344 /* Set environment variables first, before reading command line options
1345 * or config file values. */
1346 http_proxy = getenv("http_proxy");
1349 free(session->proxy);
1350 session->proxy = strdup(http_proxy);
1351 dbg("http_proxy = %s\n", session->proxy);
1354 parse_configfile(session);
1357 option = getopt_long_only(argc, argv, "dp:P:H:a:A:u:c:hg:G:sr:nVv",
1369 if (session->account)
1370 free(session->account);
1371 session->account = strdup(optarg);
1372 dbg("account = %s\n", session->account);
1375 page_nr = atoi(optarg);
1376 dbg("page = %d\n", page_nr);
1377 session->page = page_nr;
1380 session->replyto = strdup(optarg);
1381 dbg("in_reply_to_status_id = %s\n", session->replyto);
1384 if (session->password)
1385 free(session->password);
1386 session->password = strdup(optarg);
1387 dbg("password = %s\n", session->password);
1391 free(session->proxy);
1392 session->proxy = strdup(optarg);
1393 dbg("proxy = %s\n", session->proxy);
1396 if (strcasecmp(optarg, "update") == 0)
1397 session->action = ACTION_UPDATE;
1398 else if (strcasecmp(optarg, "friends") == 0)
1399 session->action = ACTION_FRIENDS;
1400 else if (strcasecmp(optarg, "user") == 0)
1401 session->action = ACTION_USER;
1402 else if (strcasecmp(optarg, "replies") == 0)
1403 session->action = ACTION_REPLIES;
1404 else if (strcasecmp(optarg, "public") == 0)
1405 session->action = ACTION_PUBLIC;
1406 else if (strcasecmp(optarg, "group") == 0)
1407 session->action = ACTION_GROUP;
1409 session->action = ACTION_UNKNOWN;
1410 dbg("action = %d\n", session->action);
1414 free(session->user);
1415 session->user = strdup(optarg);
1416 dbg("user = %s\n", session->user);
1421 free(session->group);
1422 session->group = strdup(optarg);
1423 dbg("group = %s\n", session->group);
1426 if (session->logfile)
1427 free(session->logfile);
1428 session->logfile = strdup(optarg);
1429 dbg("logfile = %s\n", session->logfile);
1432 session->shrink_urls = 1;
1435 if (session->hosturl)
1436 free(session->hosturl);
1437 if (session->hostname)
1438 free(session->hostname);
1439 if (strcasecmp(optarg, "twitter") == 0) {
1440 session->host = HOST_TWITTER;
1441 session->hosturl = strdup(twitter_host);
1442 session->hostname = strdup(twitter_name);
1443 } else if (strcasecmp(optarg, "identica") == 0) {
1444 session->host = HOST_IDENTICA;
1445 session->hosturl = strdup(identica_host);
1446 session->hostname = strdup(identica_name);
1448 session->host = HOST_CUSTOM;
1449 session->hosturl = strdup(optarg);
1450 session->hostname = strdup(optarg);
1452 dbg("host = %d\n", session->host);
1458 if (session->configfile)
1459 free(session->configfile);
1460 session->configfile = strdup(optarg);
1461 dbg("configfile = %s\n", session->configfile);
1464 * read the config file now. Yes, this could override previously
1465 * set options from the command line, but the user asked for it...
1467 parse_configfile(session);
1473 session->dry_run = 1;
1484 session_readline_init(session);
1486 * Show the version to make it easier to determine what
1492 if (session->host == HOST_TWITTER) {
1493 if (!session->consumer_key || !session->consumer_secret) {
1494 fprintf(stderr, "Twitter no longer supuports HTTP basic authentication.\n");
1495 fprintf(stderr, "Both consumer key, and consumer secret are required");
1496 fprintf(stderr, " for bti in order to behave as an OAuth consumer.\n");
1499 if (session->action == ACTION_GROUP) {
1500 fprintf(stderr, "Groups only work in Identi.ca.\n");
1504 if (!session->consumer_key || !session->consumer_secret)
1505 session->no_oauth = 1;
1508 if (session->no_oauth) {
1509 if (!session->account) {
1510 fprintf(stdout, "Enter account for %s: ", session->hostname);
1511 session->account = session->readline(NULL);
1513 if (!session->password) {
1514 read_password(password, sizeof(password), session->hostname);
1515 session->password = strdup(password);
1518 if (!session->access_token_key || !session->access_token_secret) {
1519 request_access_token(session);
1524 if (session->action == ACTION_UNKNOWN) {
1525 fprintf(stderr, "Unknown action, valid actions are:\n");
1526 fprintf(stderr, "'update', 'friends', 'public', "
1527 "'replies', 'group' or 'user'.\n");
1531 if (session->action == ACTION_GROUP && !session->group) {
1532 fprintf(stdout, "Enter group name: ");
1533 session->group = session->readline(NULL);
1536 if (session->action == ACTION_UPDATE) {
1537 if (session->bash || !session->interactive)
1538 tweet = get_string_from_stdin();
1540 tweet = session->readline("tweet: ");
1541 if (!tweet || strlen(tweet) == 0) {
1546 if (session->shrink_urls)
1547 tweet = shrink_urls(tweet);
1549 session->tweet = zalloc(strlen(tweet) + 10);
1551 sprintf(session->tweet, "%c %s",
1552 getuid() ? '$' : '#', tweet);
1554 sprintf(session->tweet, "%s", tweet);
1557 dbg("tweet = %s\n", session->tweet);
1560 if (session->page == 0)
1562 dbg("config file = %s\n", session->configfile);
1563 dbg("host = %d\n", session->host);
1564 dbg("action = %d\n", session->action);
1566 /* fork ourself so that the main shell can get on
1567 * with it's life as we try to connect and handle everything
1569 if (session->bash) {
1572 dbg("child is %d\n", child);
1577 retval = send_request(session);
1578 if (retval && !session->bash)
1579 fprintf(stderr, "operation failed\n");
1581 log_session(session, retval);
1583 session_readline_cleanup(session);
1584 session_free(session);