Changeset 537d9b9 for irc_im.c


Ignore:
Timestamp:
2016-11-20T08:40:36Z (8 years ago)
Author:
dequis <dx@…>
Children:
3f44e43
Parents:
ba52ac5 (diff), 9f03c47 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge master up to commit '9f03c47' into parson

File:
1 edited

Legend:

Unmodified
Added
Removed
  • irc_im.c

    rba52ac5 r537d9b9  
    120120        }
    121121
    122         if ((irc->caps & CAP_AWAY_NOTIFY) &&
    123             ((bu->flags & BEE_USER_AWAY) != (old->flags & BEE_USER_AWAY) ||
    124              (bu->flags & BEE_USER_ONLINE) != (old->flags & BEE_USER_ONLINE))) {
    125                 irc_send_away_notify(iu);
    126         }
    127 
    128122        if ((bu->flags & BEE_USER_ONLINE) != (old->flags & BEE_USER_ONLINE)) {
    129123                if (bu->flags & BEE_USER_ONLINE) {
     
    153147
    154148        bee_irc_channel_update(irc, NULL, iu);
     149
     150        /* If away-notify enabled, send status updates when:
     151         * Away or Online state changes
     152         * Status changes (e.g. "Away" to "Mobile")
     153         * Status message changes
     154         */
     155        if ((irc->caps & CAP_AWAY_NOTIFY) &&
     156            ((bu->flags & BEE_USER_AWAY) != (old->flags & BEE_USER_AWAY) ||
     157             (bu->flags & BEE_USER_ONLINE) != (old->flags & BEE_USER_ONLINE) ||
     158             (g_strcmp0(bu->status, old->status) != 0) ||
     159             (g_strcmp0(bu->status_msg, old->status_msg) != 0))) {
     160                irc_send_away_notify(iu);
     161        }
    155162
    156163        return TRUE;
     
    292299        }
    293300
    294         wrapped = word_wrap(msg, 425);
     301        wrapped = word_wrap(msg, IRC_WORD_WRAP);
    295302        irc_send_msg(src_iu, message_type, dst, wrapped, prefix);
    296303        g_free(wrapped);
     
    342349}
    343350
    344 static gboolean bee_irc_user_nick_update(irc_user_t *iu);
     351static gboolean bee_irc_user_nick_update(irc_user_t *iu, gboolean offline_only);
    345352
    346353static gboolean bee_irc_user_fullname(bee_t *bee, bee_user_t *bu)
     
    370377        }
    371378
    372         bee_irc_user_nick_update(iu);
     379        bee_irc_user_nick_update(iu, TRUE);
    373380
    374381        return TRUE;
     
    377384static gboolean bee_irc_user_nick_hint(bee_t *bee, bee_user_t *bu, const char *hint)
    378385{
    379         bee_irc_user_nick_update((irc_user_t *) bu->ui_data);
     386        bee_irc_user_nick_update((irc_user_t *) bu->ui_data, TRUE);
     387
     388        return TRUE;
     389}
     390
     391static gboolean bee_irc_user_nick_change(bee_t *bee, bee_user_t *bu, const char *nick)
     392{
     393        bee_irc_user_nick_update((irc_user_t *) bu->ui_data, FALSE);
    380394
    381395        return TRUE;
     
    386400        irc_user_t *iu = (irc_user_t *) bu->ui_data;
    387401        irc_t *irc = (irc_t *) bee->ui_data;
    388         bee_user_flags_t online;
    389 
    390         /* Take the user offline temporarily so we can change the nick (if necessary). */
    391         if ((online = bu->flags & BEE_USER_ONLINE)) {
    392                 bu->flags &= ~BEE_USER_ONLINE;
    393         }
    394402
    395403        bee_irc_channel_update(irc, NULL, iu);
    396         bee_irc_user_nick_update(iu);
    397 
    398         if (online) {
    399                 bu->flags |= online;
    400                 bee_irc_channel_update(irc, NULL, iu);
    401         }
    402 
    403         return TRUE;
    404 }
    405 
    406 static gboolean bee_irc_user_nick_update(irc_user_t *iu)
     404        bee_irc_user_nick_update(iu, FALSE);
     405
     406        return TRUE;
     407}
     408
     409static gboolean bee_irc_user_nick_update(irc_user_t *iu, gboolean offline_only)
    407410{
    408411        bee_user_t *bu = iu->bu;
    409412        char *newnick;
    410413
    411         if (bu->flags & BEE_USER_ONLINE) {
     414        if (offline_only && bu->flags & BEE_USER_ONLINE) {
    412415                /* Ignore if the user is visible already. */
    413416                return TRUE;
     
    432435{
    433436        bee_user_t *bu = iu->bu;
    434         bee_user_flags_t online;
    435437
    436438        if (bu == FALSE) {
     
    438440        }
    439441
    440         /* In this case, pretend the user is offline. */
    441         if ((online = bu->flags & BEE_USER_ONLINE)) {
    442                 bu->flags &= ~BEE_USER_ONLINE;
    443         }
    444 
    445442        nick_del(bu);
    446         bee_irc_user_nick_update(iu);
    447 
    448         bu->flags |= online;
     443        bee_irc_user_nick_update(iu, FALSE);
     444
    449445}
    450446
     
    461457        }
    462458
    463         if ((away = irc_user_get_away(iu)) &&
     459        if (iu->last_channel == NULL &&
     460            (away = irc_user_get_away(iu)) &&
    464461            time(NULL) >= iu->away_reply_timeout) {
    465462                irc_send_num(iu->irc, 301, "%s :%s", iu->nick, away);
     
    676673        }
    677674
    678         wrapped = word_wrap(msg, 425);
     675        wrapped = word_wrap(msg, IRC_WORD_WRAP);
    679676        irc_send_msg(iu, "PRIVMSG", ic->name, wrapped, ts);
    680677        g_free(ts);
     
    11461143
    11471144        bee_irc_log,
     1145        bee_irc_user_nick_change,
    11481146};
Note: See TracChangeset for help on using the changeset viewer.