diff --git a/src/twc-config.c b/src/twc-config.c index 02b2b49..a2b5b7f 100644 --- a/src/twc-config.c +++ b/src/twc-config.c @@ -42,6 +42,7 @@ char *twc_profile_option_names[TWC_PROFILE_NUM_OPTIONS] = { "save_file", "autoload", + "autojoin", "max_friend_requests", "proxy_address", "proxy_port", @@ -198,6 +199,12 @@ twc_config_init_option(struct t_config_section *section, "network when WeeChat starts"; default_value = "off"; break; + case TWC_PROFILE_OPTION_AUTOJOIN: + type = "boolean"; + description = "automatically join all groups you are invited in " + "by your friends"; + default_value = "off"; + break; case TWC_PROFILE_OPTION_IPV6: type = "boolean"; description = "use IPv6 as well as IPv4 to connect to the Tox " diff --git a/src/twc-profile.h b/src/twc-profile.h index 9790692..5bbd91f 100644 --- a/src/twc-profile.h +++ b/src/twc-profile.h @@ -30,6 +30,7 @@ enum t_twc_profile_option { TWC_PROFILE_OPTION_SAVEFILE = 0, TWC_PROFILE_OPTION_AUTOLOAD, + TWC_PROFILE_OPTION_AUTOJOIN, TWC_PROFILE_OPTION_MAX_FRIEND_REQUESTS, TWC_PROFILE_OPTION_PROXY_ADDRESS, TWC_PROFILE_OPTION_PROXY_PORT, diff --git a/src/twc-tox-callbacks.c b/src/twc-tox-callbacks.c index 624aabc..379397b 100644 --- a/src/twc-tox-callbacks.c +++ b/src/twc-tox-callbacks.c @@ -22,6 +22,10 @@ #include #include +#ifdef TOXAV_ENABLED + #include +#endif // TOXAV_ENABLED + #include "twc.h" #include "twc-profile.h" #include "twc-chat.h" @@ -209,9 +213,7 @@ twc_group_invite_callback(Tox *tox, char *friend_name = twc_get_name_nt(profile->tox, friend_number); struct t_twc_chat *friend_chat = twc_chat_search_friend(profile, friend_number, true); - - int64_t rc = twc_group_chat_invite_add(profile, friend_number, type, - (uint8_t *)invite_data, length); + int64_t rc; char *type_str; switch (type) @@ -224,25 +226,68 @@ twc_group_invite_callback(Tox *tox, type_str = "a group chat"; break; } - if (rc >= 0) + if (TWC_PROFILE_OPTION_BOOLEAN(profile, TWC_PROFILE_OPTION_AUTOJOIN)) { - weechat_printf(friend_chat->buffer, - "%s%s%s%s invites you to join %s. Type " - "\"/group join %d\" to accept.", - weechat_prefix("network"), - weechat_color("chat_nick_other"), friend_name, - weechat_color("reset"), type_str, rc); + switch (type) + { + case TOX_GROUPCHAT_TYPE_TEXT: + rc = tox_join_groupchat(tox, friend_number, + invite_data, length); + break; +#ifdef TOXAV_ENABLED + case TOX_GROUPCHAT_TYPE_AV: + rc = toxav_join_av_groupchat(tox, friend_number, + invite_data, length, + NULL, NULL); + break; +#endif + default: + rc = -1; + break; + } + + if (rc >= 0) + { + weechat_printf(friend_chat->buffer, + "%sWe joined the %s%s%s's invite to %s.", + weechat_prefix("network"), + weechat_color("chat_nick_other"), friend_name, + weechat_color("reset"), type_str, rc); + } + else + { + weechat_printf(friend_chat->buffer, + "%s%s%s%s invites you to join %s, but we failed to " + "process the invite. Please try again.", + weechat_prefix("network"), + weechat_color("chat_nick_other"), friend_name, + weechat_color("reset"), rc); + } } else { - weechat_printf(friend_chat->buffer, - "%s%s%s%s invites you to join %s, but we failed to " - "process the invite. Please try again.", - weechat_prefix("network"), - weechat_color("chat_nick_other"), friend_name, - weechat_color("reset"), rc); - } + rc = twc_group_chat_invite_add(profile, friend_number, type, + (uint8_t *)invite_data, length); + if (rc >= 0) + { + weechat_printf(friend_chat->buffer, + "%s%s%s%s invites you to join %s. Type " + "\"/group join %d\" to accept.", + weechat_prefix("network"), + weechat_color("chat_nick_other"), friend_name, + weechat_color("reset"), type_str, rc); + } + else + { + weechat_printf(friend_chat->buffer, + "%s%s%s%s invites you to join %s, but we failed to " + "process the invite. Please try again.", + weechat_prefix("network"), + weechat_color("chat_nick_other"), friend_name, + weechat_color("reset"), rc); + } + } free(friend_name); }