2 * Copyright (C) 2008-2011 Greg Kroah-Hartman <greg@kroah.com>
3 * Copyright (C) 2009 Bart Trojanowski <bart@jukie.net>
4 * Copyright (C) 2009-2010 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__ , \
57 static void display_help(void)
59 fprintf(stdout, "bti - send tweet to twitter or identi.ca\n"
64 " --account accountname\n"
65 " --password password\n"
67 " ('update', 'friends', 'public', 'replies', or 'user')\n"
68 " --user screenname\n"
69 " --group groupname\n"
70 " --proxy PROXY:PORT\n"
72 " --logfile logfile\n"
73 " --config configfile\n"
77 " --page PAGENUMBER\n"
78 " --column COLUMNWIDTH\n"
85 " --help\n", VERSION);
88 static void display_version(void)
90 fprintf(stdout, "bti - version %s\n", VERSION);
93 static char *get_string(const char *name)
98 string = zalloc(1000);
102 fprintf(stdout, "%s", name);
103 if (!fgets(string, 999, stdin)) {
107 temp = strchr(string, '\n');
114 * Try to get a handle to a readline function from a variety of different
115 * libraries. If nothing is present on the system, then fall back to an
118 * Logic originally based off of code in the e2fsutils package in the
119 * lib/ss/get_readline.c file, which is licensed under the MIT license.
121 * This keeps us from having to relicense the bti codebase if readline
122 * ever changes its license, as there is no link-time dependency.
123 * It is a run-time thing only, and we handle any readline-like library
124 * in the same manner, making bti not be a derivative work of any
127 static void session_readline_init(struct session *session)
129 /* Libraries we will try to use for readline/editline functionality */
130 const char *libpath = "libreadline.so.6:libreadline.so.5:"
131 "libreadline.so.4:libreadline.so:libedit.so.2:"
132 "libedit.so:libeditline.so.0:libeditline.so";
134 char *tmp, *cp, *next;
135 int (*bind_key)(int, void *);
136 void (*insert)(void);
138 /* default to internal function if we can't or won't find anything */
139 session->readline = get_string;
142 session->interactive = 1;
144 tmp = malloc(strlen(libpath)+1);
147 strcpy(tmp, libpath);
148 for (cp = tmp; cp; cp = next) {
149 next = strchr(cp, ':');
154 handle = dlopen(cp, RTLD_NOW);
156 dbg("Using %s for readline library\n", cp);
162 dbg("No readline library found.\n");
166 session->readline_handle = handle;
167 session->readline = (char *(*)(const char *))dlsym(handle, "readline");
168 if (session->readline == NULL) {
169 /* something odd happened, default back to internal stuff */
170 session->readline_handle = NULL;
171 session->readline = get_string;
176 * If we found a library, turn off filename expansion
177 * as that makes no sense from within bti.
179 bind_key = (int (*)(int, void *))dlsym(handle, "rl_bind_key");
180 insert = (void (*)(void))dlsym(handle, "rl_insert");
181 if (bind_key && insert)
182 bind_key('\t', insert);
185 static void session_readline_cleanup(struct session *session)
187 if (session->readline_handle)
188 dlclose(session->readline_handle);
191 static struct session *session_alloc(void)
193 struct session *session;
195 session = zalloc(sizeof(*session));
201 static void session_free(struct session *session)
205 free(session->retweet);
206 free(session->replyto);
207 free(session->password);
208 free(session->account);
209 free(session->consumer_key);
210 free(session->consumer_secret);
211 free(session->access_token_key);
212 free(session->access_token_secret);
213 free(session->tweet);
214 free(session->proxy);
216 free(session->homedir);
218 free(session->group);
219 free(session->hosturl);
220 free(session->hostname);
221 free(session->configfile);
225 static struct bti_curl_buffer *bti_curl_buffer_alloc(enum action action)
227 struct bti_curl_buffer *buffer;
229 buffer = zalloc(sizeof(*buffer));
233 /* start out with a data buffer of 1 byte to
234 * make the buffer fill logic simpler */
235 buffer->data = zalloc(1);
241 buffer->action = action;
245 static void bti_curl_buffer_free(struct bti_curl_buffer *buffer)
253 const char twitter_host[] = "http://api.twitter.com/1/statuses";
254 const char identica_host[] = "https://identi.ca/api/statuses";
255 const char twitter_name[] = "twitter";
256 const char identica_name[] = "identi.ca";
258 static const char twitter_request_token_uri[] = "http://twitter.com/oauth/request_token";
259 static const char twitter_access_token_uri[] = "http://twitter.com/oauth/access_token";
260 static const char twitter_authorize_uri[] = "http://twitter.com/oauth/authorize?oauth_token=";
261 static const char identica_request_token_uri[] = "https://identi.ca/api/oauth/request_token?oauth_callback=oob";
262 static const char identica_access_token_uri[] = "https://identi.ca/api/oauth/access_token";
263 static const char identica_authorize_uri[] = "https://identi.ca/api/oauth/authorize?oauth_token=";
265 static const char user_uri[] = "/user_timeline/";
266 static const char update_uri[] = "/update.xml";
267 static const char public_uri[] = "/public_timeline.xml";
268 static const char friends_uri[] = "/friends_timeline.xml";
269 static const char mentions_uri[] = "/mentions.xml";
270 static const char replies_uri[] = "/replies.xml";
271 static const char retweet_uri[] = "/retweet/";
272 static const char group_uri[] = "/../statusnet/groups/timeline/";
274 static const char config_default[] = "/etc/bti";
275 static const char config_user_default[] = ".bti";
277 static CURL *curl_init(void)
281 curl = curl_easy_init();
283 fprintf(stderr, "Can not init CURL!\n");
286 /* some ssl sanity checks on the connection we are making */
287 curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, 0);
288 curl_easy_setopt(curl, CURLOPT_SSL_VERIFYHOST, 0);
292 /* The final place data is sent to the screen/pty/tty */
293 static void bti_output_line(struct session *session, xmlChar *user,
294 xmlChar *id, xmlChar *created, xmlChar *text)
296 if (session->verbose)
297 printf("[%*s] {%s} (%.16s) %s\n", -session->column_output, user,
300 printf("[%*s] %s\n", -session->column_output, user, text);
303 static void parse_statuses(struct session *session,
304 xmlDocPtr doc, xmlNodePtr current)
306 xmlChar *text = NULL;
307 xmlChar *user = NULL;
308 xmlChar *created = NULL;
312 current = current->xmlChildrenNode;
313 while (current != NULL) {
314 if (current->type == XML_ELEMENT_NODE) {
315 if (!xmlStrcmp(current->name, (const xmlChar *)"created_at"))
316 created = xmlNodeListGetString(doc, current->xmlChildrenNode, 1);
317 if (!xmlStrcmp(current->name, (const xmlChar *)"text"))
318 text = xmlNodeListGetString(doc, current->xmlChildrenNode, 1);
319 if (!xmlStrcmp(current->name, (const xmlChar *)"id"))
320 id = xmlNodeListGetString(doc, current->xmlChildrenNode, 1);
321 if (!xmlStrcmp(current->name, (const xmlChar *)"user")) {
322 userinfo = current->xmlChildrenNode;
323 while (userinfo != NULL) {
324 if ((!xmlStrcmp(userinfo->name, (const xmlChar *)"screen_name"))) {
327 user = xmlNodeListGetString(doc, userinfo->xmlChildrenNode, 1);
329 userinfo = userinfo->next;
333 if (user && text && created && id) {
334 bti_output_line(session, user, id,
346 current = current->next;
352 static void parse_timeline(char *document, struct session *session)
357 doc = xmlReadMemory(document, strlen(document), "timeline.xml",
358 NULL, XML_PARSE_NOERROR);
362 current = xmlDocGetRootElement(doc);
363 if (current == NULL) {
364 fprintf(stderr, "empty document\n");
369 if (xmlStrcmp(current->name, (const xmlChar *) "statuses")) {
370 fprintf(stderr, "unexpected document type\n");
375 current = current->xmlChildrenNode;
376 while (current != NULL) {
377 if ((!xmlStrcmp(current->name, (const xmlChar *)"status")))
378 parse_statuses(session, doc, current);
379 current = current->next;
386 static size_t curl_callback(void *buffer, size_t size, size_t nmemb,
389 struct bti_curl_buffer *curl_buf = userp;
390 size_t buffer_size = size * nmemb;
393 if ((!buffer) || (!buffer_size) || (!curl_buf))
396 /* add to the data we already have */
397 temp = zalloc(curl_buf->length + buffer_size + 1);
401 memcpy(temp, curl_buf->data, curl_buf->length);
402 free(curl_buf->data);
403 curl_buf->data = temp;
404 memcpy(&curl_buf->data[curl_buf->length], (char *)buffer, buffer_size);
405 curl_buf->length += buffer_size;
406 if (curl_buf->action)
407 parse_timeline(curl_buf->data, curl_buf->session);
409 dbg("%s\n", curl_buf->data);
414 static int parse_osp_reply(const char *reply, char **token, char **secret)
419 rc = oauth_split_url_parameters(reply, &rv);
420 qsort(rv, rc, sizeof(char *), oauth_cmpstringp);
421 if (rc == 2 || rc == 4) {
422 if (!strncmp(rv[0], "oauth_token=", 11) &&
423 !strncmp(rv[1], "oauth_token_secret=", 18)) {
425 *token = strdup(&(rv[0][12]));
427 *secret = strdup(&(rv[1][19]));
431 } else if (rc == 3) {
432 if (!strncmp(rv[1], "oauth_token=", 11) &&
433 !strncmp(rv[2], "oauth_token_secret=", 18)) {
435 *token = strdup(&(rv[1][12]));
437 *secret = strdup(&(rv[2][19]));
443 dbg("token: %s\n", *token);
444 dbg("secret: %s\n", *secret);
452 static int request_access_token(struct session *session)
454 char *post_params = NULL;
455 char *request_url = NULL;
458 char *at_secret = NULL;
459 char *verifier = NULL;
465 if (session->host == HOST_TWITTER)
466 request_url = oauth_sign_url2(
467 twitter_request_token_uri, NULL,
468 OA_HMAC, NULL, session->consumer_key,
469 session->consumer_secret, NULL, NULL);
470 else if (session->host == HOST_IDENTICA)
471 request_url = oauth_sign_url2(
472 identica_request_token_uri, NULL,
473 OA_HMAC, NULL, session->consumer_key,
474 session->consumer_secret, NULL, NULL);
475 reply = oauth_http_get(request_url, post_params);
486 if (parse_osp_reply(reply, &at_key, &at_secret))
492 "Please open the following link in your browser, and "
493 "allow 'bti' to access your account. Then paste "
494 "back the provided PIN in here.\n");
495 if (session->host == HOST_TWITTER) {
496 fprintf(stdout, "%s%s\nPIN: ", twitter_authorize_uri, at_key);
497 verifier = session->readline(NULL);
498 sprintf(at_uri, "%s?oauth_verifier=%s",
499 twitter_access_token_uri, verifier);
500 } else if (session->host == HOST_IDENTICA) {
501 fprintf(stdout, "%s%s\nPIN: ", identica_authorize_uri, at_key);
502 verifier = session->readline(NULL);
503 sprintf(at_uri, "%s?oauth_verifier=%s",
504 identica_access_token_uri, verifier);
506 request_url = oauth_sign_url2(at_uri, NULL, OA_HMAC, NULL,
507 session->consumer_key,
508 session->consumer_secret,
510 reply = oauth_http_get(request_url, post_params);
515 if (parse_osp_reply(reply, &at_key, &at_secret))
521 "Please put these two lines in your bti "
522 "configuration file (%s):\n"
523 "access_token_key=%s\n"
524 "access_token_secret=%s\n",
525 session->configfile, at_key, at_secret);
530 static int send_request(struct session *session)
533 char user_password[500];
535 struct bti_curl_buffer *curl_buf;
538 struct curl_httppost *formpost = NULL;
539 struct curl_httppost *lastptr = NULL;
540 struct curl_slist *slist = NULL;
541 char *req_url = NULL;
543 char *postarg = NULL;
544 char *escaped_tweet = NULL;
550 if (!session->hosturl)
551 session->hosturl = strdup(twitter_host);
553 if (session->no_oauth || session->guest) {
554 curl_buf = bti_curl_buffer_alloc(session->action);
557 curl_buf->session = session;
561 bti_curl_buffer_free(curl_buf);
565 if (!session->hosturl)
566 session->hosturl = strdup(twitter_host);
568 switch (session->action) {
570 snprintf(user_password, sizeof(user_password), "%s:%s",
571 session->account, session->password);
572 snprintf(data, sizeof(data), "status=\"%s\"",
574 curl_formadd(&formpost, &lastptr,
575 CURLFORM_COPYNAME, "status",
576 CURLFORM_COPYCONTENTS, session->tweet,
579 curl_formadd(&formpost, &lastptr,
580 CURLFORM_COPYNAME, "source",
581 CURLFORM_COPYCONTENTS, "bti",
584 if (session->replyto)
585 curl_formadd(&formpost, &lastptr,
587 "in_reply_to_status_id",
588 CURLFORM_COPYCONTENTS,
592 curl_easy_setopt(curl, CURLOPT_HTTPPOST, formpost);
593 slist = curl_slist_append(slist, "Expect:");
594 curl_easy_setopt(curl, CURLOPT_HTTPHEADER, slist);
596 sprintf(endpoint, "%s%s", session->hosturl, update_uri);
597 curl_easy_setopt(curl, CURLOPT_URL, endpoint);
598 curl_easy_setopt(curl, CURLOPT_USERPWD, user_password);
602 snprintf(user_password, sizeof(user_password), "%s:%s",
603 session->account, session->password);
604 sprintf(endpoint, "%s%s?page=%d", session->hosturl,
605 friends_uri, session->page);
606 curl_easy_setopt(curl, CURLOPT_URL, endpoint);
607 curl_easy_setopt(curl, CURLOPT_USERPWD, user_password);
611 sprintf(endpoint, "%s%s%s.xml?page=%d", session->hosturl,
612 user_uri, session->user, session->page);
613 curl_easy_setopt(curl, CURLOPT_URL, endpoint);
617 snprintf(user_password, sizeof(user_password), "%s:%s",
618 session->account, session->password);
619 sprintf(endpoint, "%s%s?page=%d", session->hosturl,
620 replies_uri, session->page);
621 curl_easy_setopt(curl, CURLOPT_URL, endpoint);
622 curl_easy_setopt(curl, CURLOPT_USERPWD, user_password);
626 sprintf(endpoint, "%s%s?page=%d", session->hosturl,
627 public_uri, session->page);
628 curl_easy_setopt(curl, CURLOPT_URL, endpoint);
632 sprintf(endpoint, "%s%s%s.xml?page=%d",
633 session->hosturl, group_uri, session->group,
635 curl_easy_setopt(curl, CURLOPT_URL, endpoint);
643 curl_easy_setopt(curl, CURLOPT_PROXY, session->proxy);
646 curl_easy_setopt(curl, CURLOPT_VERBOSE, 1);
648 dbg("user_password = %s\n", user_password);
649 dbg("data = %s\n", data);
650 dbg("proxy = %s\n", session->proxy);
652 curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, curl_callback);
653 curl_easy_setopt(curl, CURLOPT_WRITEDATA, curl_buf);
654 if (!session->dry_run) {
655 res = curl_easy_perform(curl);
656 if (!session->background) {
661 fprintf(stderr, "error(%d) trying to "
662 "perform operation\n", res);
663 curl_easy_cleanup(curl);
664 if (session->action == ACTION_UPDATE)
665 curl_formfree(formpost);
666 bti_curl_buffer_free(curl_buf);
670 doc = xmlReadMemory(curl_buf->data,
672 "response.xml", NULL,
675 curl_easy_cleanup(curl);
676 if (session->action == ACTION_UPDATE)
677 curl_formfree(formpost);
678 bti_curl_buffer_free(curl_buf);
682 current = xmlDocGetRootElement(doc);
683 if (current == NULL) {
684 fprintf(stderr, "empty document\n");
686 curl_easy_cleanup(curl);
687 if (session->action == ACTION_UPDATE)
688 curl_formfree(formpost);
689 bti_curl_buffer_free(curl_buf);
693 if (xmlStrcmp(current->name, (const xmlChar *)"status")) {
694 fprintf(stderr, "unexpected document type\n");
696 curl_easy_cleanup(curl);
697 if (session->action == ACTION_UPDATE)
698 curl_formfree(formpost);
699 bti_curl_buffer_free(curl_buf);
707 curl_easy_cleanup(curl);
708 if (session->action == ACTION_UPDATE)
709 curl_formfree(formpost);
710 bti_curl_buffer_free(curl_buf);
712 switch (session->action) {
714 escaped_tweet = oauth_url_escape(session->tweet);
715 if (session->replyto) {
717 "%s%s?status=%s&in_reply_to_status_id=%s",
718 session->hosturl, update_uri,
719 escaped_tweet, session->replyto);
721 sprintf(endpoint, "%s%s?status=%s",
722 session->hosturl, update_uri,
729 sprintf(endpoint, "%s%s%s.xml?page=%d",
730 session->hosturl, user_uri, session->user,
734 sprintf(endpoint, "%s%s?page=%d", session->hosturl,
735 mentions_uri, session->page);
738 sprintf(endpoint, "%s%s?page=%d", session->hosturl,
739 public_uri, session->page);
742 sprintf(endpoint, "%s%s%s.xml?page=%d",
743 session->hosturl, group_uri, session->group,
747 sprintf(endpoint, "%s%s?page=%d", session->hosturl,
748 friends_uri, session->page);
751 sprintf(endpoint, "%s%s%s.xml", session->hosturl,
752 retweet_uri, session->retweet);
759 dbg("%s\n", endpoint);
760 if (!session->dry_run) {
762 req_url = oauth_sign_url2(endpoint, &postarg, OA_HMAC,
763 NULL, session->consumer_key,
764 session->consumer_secret,
765 session->access_token_key,
766 session->access_token_secret);
767 reply = oauth_http_post(req_url, postarg);
769 req_url = oauth_sign_url2(endpoint, NULL, OA_HMAC, NULL,
770 session->consumer_key,
771 session->consumer_secret,
772 session->access_token_key,
773 session->access_token_secret);
774 reply = oauth_http_get(req_url, postarg);
777 dbg("%s\n", req_url);
784 fprintf(stderr, "Error retrieving from URL (%s)\n", endpoint);
788 if ((session->action != ACTION_UPDATE) &&
789 (session->action != ACTION_RETWEET))
790 parse_timeline(reply, session);
795 static void log_session(struct session *session, int retval)
800 /* Only log something if we have a log file set */
801 if (!session->logfile)
804 filename = alloca(strlen(session->homedir) +
805 strlen(session->logfile) + 3);
807 sprintf(filename, "%s/%s", session->homedir, session->logfile);
809 log_file = fopen(filename, "a+");
810 if (log_file == NULL)
813 switch (session->action) {
816 fprintf(log_file, "%s: host=%s tweet failed\n",
817 session->time, session->hostname);
819 fprintf(log_file, "%s: host=%s tweet=%s\n",
820 session->time, session->hostname,
824 fprintf(log_file, "%s: host=%s retrieving friends timeline\n",
825 session->time, session->hostname);
828 fprintf(log_file, "%s: host=%s retrieving %s's timeline\n",
829 session->time, session->hostname, session->user);
832 fprintf(log_file, "%s: host=%s retrieving replies\n",
833 session->time, session->hostname);
836 fprintf(log_file, "%s: host=%s retrieving public timeline\n",
837 session->time, session->hostname);
840 fprintf(log_file, "%s: host=%s retrieving group timeline\n",
841 session->time, session->hostname);
850 static char *get_string_from_stdin(void)
855 string = zalloc(1000);
859 if (!fgets(string, 999, stdin)) {
863 temp = strchr(string, '\n');
869 static void read_password(char *buf, size_t len, char *host)
879 tp.c_lflag &= (~ECHO);
880 tcsetattr(0, TCSANOW, &tp);
882 fprintf(stdout, "Enter password for %s: ", host);
885 retval = scanf("%79s", pwd);
887 fprintf(stdout, "\n");
889 tcsetattr(0, TCSANOW, &old);
891 strncpy(buf, pwd, len);
895 static int find_urls(const char *tweet, int **pranges)
898 * magic obtained from
899 * http://www.geekpedia.com/KB65_How-to-validate-an-URL-using-RegEx-in-Csharp.html
901 static const char *re_magic =
902 "(([a-zA-Z][0-9a-zA-Z+\\-\\.]*:)/{1,3}"
903 "[0-9a-zA-Z;/~?:@&=+$\\.\\-_'()%]+)"
904 "(#[0-9a-zA-Z;/?:@&=+$\\.\\-_!~*'()%]+)?";
908 int ovector[10] = {0,};
909 const size_t ovsize = sizeof(ovector)/sizeof(*ovector);
910 int startoffset, tweetlen;
914 int *ranges = malloc(sizeof(int) * rbound);
916 re = pcre_compile(re_magic,
917 PCRE_NO_AUTO_CAPTURE,
918 &errptr, &erroffset, NULL);
920 fprintf(stderr, "pcre_compile @%u: %s\n", erroffset, errptr);
924 tweetlen = strlen(tweet);
925 for (startoffset = 0; startoffset < tweetlen; ) {
927 rc = pcre_exec(re, NULL, tweet, strlen(tweet), startoffset, 0,
929 if (rc == PCRE_ERROR_NOMATCH)
933 fprintf(stderr, "pcre_exec @%u: %s\n",
938 for (i = 0; i < rc; i += 2) {
939 if ((rcount+2) == rbound) {
941 ranges = realloc(ranges, sizeof(int) * rbound);
944 ranges[rcount++] = ovector[i];
945 ranges[rcount++] = ovector[i+1];
948 startoffset = ovector[1];
958 * bidirectional popen() call
960 * @param rwepipe - int array of size three
961 * @param exe - program to run
962 * @param argv - argument list
963 * @return pid or -1 on error
965 * The caller passes in an array of three integers (rwepipe), on successful
966 * execution it can then write to element 0 (stdin of exe), and read from
967 * element 1 (stdout) and 2 (stderr).
969 static int popenRWE(int *rwepipe, const char *exe, const char *const argv[])
999 } else if (pid == 0) {
1011 execvp(exe, (char **)argv);
1031 static int pcloseRWE(int pid, int *rwepipe)
1037 rc = waitpid(pid, &status, 0);
1041 static char *shrink_one_url(int *rwepipe, char *big)
1043 int biglen = strlen(big);
1048 rc = dprintf(rwepipe[0], "%s\n", big);
1052 smalllen = biglen + 128;
1053 small = malloc(smalllen);
1057 rc = read(rwepipe[1], small, smalllen);
1058 if (rc < 0 || rc > biglen)
1059 goto error_free_small;
1061 if (strncmp(small, "http://", 7))
1062 goto error_free_small;
1065 while (smalllen && isspace(small[smalllen-1]))
1066 small[--smalllen] = 0;
1076 static char *shrink_urls(char *text)
1083 const char *const shrink_args[] = {
1089 int inlen = strlen(text);
1091 dbg("before len=%u\n", inlen);
1093 shrink_pid = popenRWE(shrink_pipe, shrink_args[0], shrink_args);
1097 rcount = find_urls(text, &ranges);
1101 for (i = 0; i < rcount; i += 2) {
1102 int url_start = ranges[i];
1103 int url_end = ranges[i+1];
1104 int long_url_len = url_end - url_start;
1105 char *url = strndup(text + url_start, long_url_len);
1107 int not_url_len = url_start - inofs;
1109 dbg("long url[%u]: %s\n", long_url_len, url);
1110 url = shrink_one_url(shrink_pipe, url);
1111 short_url_len = url ? strlen(url) : 0;
1112 dbg("short url[%u]: %s\n", short_url_len, url);
1114 if (!url || short_url_len >= long_url_len) {
1115 /* The short url ended up being too long
1118 strncpy(text + outofs, text + inofs,
1119 not_url_len + long_url_len);
1121 inofs += not_url_len + long_url_len;
1122 outofs += not_url_len + long_url_len;
1125 /* copy the unmodified block */
1126 strncpy(text + outofs, text + inofs, not_url_len);
1127 inofs += not_url_len;
1128 outofs += not_url_len;
1130 /* copy the new url */
1131 strncpy(text + outofs, url, short_url_len);
1132 inofs += long_url_len;
1133 outofs += short_url_len;
1139 /* copy the last block after the last match */
1141 int tail = inlen - inofs;
1143 strncpy(text + outofs, text + inofs, tail);
1150 (void)pcloseRWE(shrink_pid, shrink_pipe);
1153 dbg("after len=%u\n", outofs);
1157 int main(int argc, char *argv[], char *envp[])
1159 static const struct option options[] = {
1160 { "debug", 0, NULL, 'd' },
1161 { "verbose", 0, NULL, 'V' },
1162 { "account", 1, NULL, 'a' },
1163 { "password", 1, NULL, 'p' },
1164 { "host", 1, NULL, 'H' },
1165 { "proxy", 1, NULL, 'P' },
1166 { "action", 1, NULL, 'A' },
1167 { "user", 1, NULL, 'u' },
1168 { "group", 1, NULL, 'G' },
1169 { "logfile", 1, NULL, 'L' },
1170 { "shrink-urls", 0, NULL, 's' },
1171 { "help", 0, NULL, 'h' },
1172 { "bash", 0, NULL, 'b' },
1173 { "background", 0, NULL, 'B' },
1174 { "dry-run", 0, NULL, 'n' },
1175 { "page", 1, NULL, 'g' },
1176 { "column", 1, NULL, 'o' },
1177 { "version", 0, NULL, 'v' },
1178 { "config", 1, NULL, 'c' },
1179 { "replyto", 1, NULL, 'r' },
1180 { "retweet", 1, NULL, 'w' },
1183 struct session *session;
1186 static char password[80];
1191 const char *config_file;
1197 session = session_alloc();
1199 fprintf(stderr, "no more memory...\n");
1203 /* get the current time so that we can log it later */
1205 session->time = strdup(ctime(&t));
1206 session->time[strlen(session->time)-1] = 0x00;
1209 * Get the home directory so we can try to find a config file.
1210 * If we have no home dir set up, look in /etc/bti
1212 home = getenv("HOME");
1214 /* We have a home dir, so this might be a user */
1215 session->homedir = strdup(home);
1216 config_file = config_user_default;
1218 session->homedir = strdup("");
1219 config_file = config_default;
1222 /* set up a default config file location (traditionally ~/.bti) */
1223 session->configfile = zalloc(strlen(session->homedir) + strlen(config_file) + 7);
1224 sprintf(session->configfile, "%s/%s", session->homedir, config_file);
1226 /* Set environment variables first, before reading command line options
1227 * or config file values. */
1228 http_proxy = getenv("http_proxy");
1231 free(session->proxy);
1232 session->proxy = strdup(http_proxy);
1233 dbg("http_proxy = %s\n", session->proxy);
1236 bti_parse_configfile(session);
1239 option = getopt_long_only(argc, argv,
1240 "dp:P:H:a:A:u:c:hg:o:G:sr:nVvw:",
1249 session->verbose = 1;
1252 if (session->account)
1253 free(session->account);
1254 session->account = strdup(optarg);
1255 dbg("account = %s\n", session->account);
1258 page_nr = atoi(optarg);
1259 dbg("page = %d\n", page_nr);
1260 session->page = page_nr;
1263 session->column_output = atoi(optarg);
1264 dbg("column_output = %d\n", session->column_output);
1267 session->replyto = strdup(optarg);
1268 dbg("in_reply_to_status_id = %s\n", session->replyto);
1271 session->retweet = strdup(optarg);
1272 dbg("Retweet ID = %s\n", session->retweet);
1275 if (session->password)
1276 free(session->password);
1277 session->password = strdup(optarg);
1278 dbg("password = %s\n", session->password);
1282 free(session->proxy);
1283 session->proxy = strdup(optarg);
1284 dbg("proxy = %s\n", session->proxy);
1287 if (strcasecmp(optarg, "update") == 0)
1288 session->action = ACTION_UPDATE;
1289 else if (strcasecmp(optarg, "friends") == 0)
1290 session->action = ACTION_FRIENDS;
1291 else if (strcasecmp(optarg, "user") == 0)
1292 session->action = ACTION_USER;
1293 else if (strcasecmp(optarg, "replies") == 0)
1294 session->action = ACTION_REPLIES;
1295 else if (strcasecmp(optarg, "public") == 0)
1296 session->action = ACTION_PUBLIC;
1297 else if (strcasecmp(optarg, "group") == 0)
1298 session->action = ACTION_GROUP;
1299 else if (strcasecmp(optarg, "retweet") == 0)
1300 session->action = ACTION_RETWEET;
1302 session->action = ACTION_UNKNOWN;
1303 dbg("action = %d\n", session->action);
1307 free(session->user);
1308 session->user = strdup(optarg);
1309 dbg("user = %s\n", session->user);
1314 free(session->group);
1315 session->group = strdup(optarg);
1316 dbg("group = %s\n", session->group);
1319 if (session->logfile)
1320 free(session->logfile);
1321 session->logfile = strdup(optarg);
1322 dbg("logfile = %s\n", session->logfile);
1325 session->shrink_urls = 1;
1328 if (session->hosturl)
1329 free(session->hosturl);
1330 if (session->hostname)
1331 free(session->hostname);
1332 if (strcasecmp(optarg, "twitter") == 0) {
1333 session->host = HOST_TWITTER;
1334 session->hosturl = strdup(twitter_host);
1335 session->hostname = strdup(twitter_name);
1336 } else if (strcasecmp(optarg, "identica") == 0) {
1337 session->host = HOST_IDENTICA;
1338 session->hosturl = strdup(identica_host);
1339 session->hostname = strdup(identica_name);
1341 session->host = HOST_CUSTOM;
1342 session->hosturl = strdup(optarg);
1343 session->hostname = strdup(optarg);
1345 dbg("host = %d\n", session->host);
1349 /* fall-through intended */
1351 session->background = 1;
1354 if (session->configfile)
1355 free(session->configfile);
1356 session->configfile = strdup(optarg);
1357 dbg("configfile = %s\n", session->configfile);
1360 * read the config file now. Yes, this could override
1361 * previously set options from the command line, but
1362 * the user asked for it...
1364 bti_parse_configfile(session);
1370 session->dry_run = 1;
1381 session_readline_init(session);
1383 * Show the version to make it easier to determine what
1389 if (session->host == HOST_TWITTER) {
1390 if (!session->consumer_key || !session->consumer_secret) {
1391 if (session->action == ACTION_USER ||
1392 session->action == ACTION_PUBLIC) {
1394 * Some actions may still work without
1400 "Twitter no longer supports HTTP basic authentication.\n"
1401 "Both consumer key, and consumer secret are required"
1402 " for bti in order to behave as an OAuth consumer.\n");
1406 if (session->action == ACTION_GROUP) {
1407 fprintf(stderr, "Groups only work in Identi.ca.\n");
1411 if (!session->consumer_key || !session->consumer_secret)
1412 session->no_oauth = 1;
1415 if (session->no_oauth) {
1416 if (!session->account) {
1417 fprintf(stdout, "Enter account for %s: ",
1419 session->account = session->readline(NULL);
1421 if (!session->password) {
1422 read_password(password, sizeof(password),
1424 session->password = strdup(password);
1426 } else if (!session->guest) {
1427 if (!session->access_token_key ||
1428 !session->access_token_secret) {
1429 request_access_token(session);
1434 if (session->action == ACTION_UNKNOWN) {
1435 fprintf(stderr, "Unknown action, valid actions are:\n"
1436 "'update', 'friends', 'public', 'replies', 'group' or 'user'.\n");
1440 if (session->action == ACTION_GROUP && !session->group) {
1441 fprintf(stdout, "Enter group name: ");
1442 session->group = session->readline(NULL);
1445 if (session->action == ACTION_RETWEET) {
1446 if (!session->retweet) {
1449 fprintf(stdout, "Status ID to retweet: ");
1450 rtid = get_string_from_stdin();
1451 session->retweet = zalloc(strlen(rtid) + 10);
1452 sprintf(session->retweet, "%s", rtid);
1456 if (!session->retweet || strlen(session->retweet) == 0) {
1457 dbg("no retweet?\n");
1461 dbg("retweet ID = %s\n", session->retweet);
1464 if (session->action == ACTION_UPDATE) {
1465 if (session->background || !session->interactive)
1466 tweet = get_string_from_stdin();
1468 tweet = session->readline("tweet: ");
1469 if (!tweet || strlen(tweet) == 0) {
1474 if (session->shrink_urls)
1475 tweet = shrink_urls(tweet);
1477 session->tweet = zalloc(strlen(tweet) + 10);
1479 sprintf(session->tweet, "%c %s",
1480 getuid() ? '$' : '#', tweet);
1482 sprintf(session->tweet, "%s", tweet);
1485 dbg("tweet = %s\n", session->tweet);
1488 if (session->page == 0)
1490 dbg("config file = %s\n", session->configfile);
1491 dbg("host = %d\n", session->host);
1492 dbg("action = %d\n", session->action);
1494 /* fork ourself so that the main shell can get on
1495 * with it's life as we try to connect and handle everything
1497 if (session->background) {
1500 dbg("child is %d\n", child);
1505 retval = send_request(session);
1506 if (retval && !session->background)
1507 fprintf(stderr, "operation failed\n");
1509 log_session(session, retval);
1511 session_readline_cleanup(session);
1512 session_free(session);