Changeset f26d9a3e for protocols/twitter


Ignore:
Timestamp:
2012-11-24T14:10:34Z (11 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
5f2f728
Parents:
c751e51
Message:

Add help info for "stream" setting. Also, disable it for non-Twitter accounts.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/twitter/twitter.c

    rc751e51 rf26d9a3e  
    6565        imcb_log(ic, "Getting initial statuses");
    6666
    67         // Run this once. After this queue the main loop function.
     67        // Run this once. After this queue the main loop function (or open the
     68        // stream if available).
    6869        twitter_main_loop(ic, -1, 0);
    6970       
     
    7273                   us the rest. \o/ */
    7374                twitter_open_stream(ic);
     75               
     76                /* Stream sends keepalives (empty lines) or actual data at
     77                   least twice a minute. Disconnect if this stops. */
    7478                ic->flags |= OPT_PONGS;
    7579        } else {
     
    96100                imcb_log(ic, "Getting contact list");
    97101                twitter_get_friends_ids(ic, -1);
    98                 //twitter_get_statuses_friends(ic, -1);
    99102        } else
    100103                twitter_main_loop_start(ic);
     
    289292        s = set_add(&acc->set, "strip_newlines", "false", set_eval_bool, acc);
    290293       
    291         s = set_add(&acc->set, "stream", "true", set_eval_bool, acc);
    292         s->flags |= ACC_SET_OFFLINE_ONLY;
     294        if (strcmp(acc->prpl->name, "twitter") == 0) {
     295                s = set_add(&acc->set, "stream", "true", set_eval_bool, acc);
     296                s->flags |= ACC_SET_OFFLINE_ONLY;
     297        }
    293298}
    294299
    295300/**
    296  * Login method. Since the twitter API works with seperate HTTP request we
     301 * Login method. Since the twitter API works with separate HTTP request we
    297302 * only save the user and pass to the twitter_data object.
    298303 */
     
    310315                imc_logout(ic, FALSE);
    311316                return;
     317        }
     318
     319        if (!strstr(url.host, "twitter.com") &&
     320            set_getbool(&ic->acc->set, "stream")) {
     321                imcb_error(ic, "Warning: The streaming API is only supported by Twitter, "
     322                               "and you seem to be connecting to a different service.");
    312323        }
    313324
Note: See TracChangeset for help on using the changeset viewer.