1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-09-29 19:56:07 -04:00

PREF_STATUSES, moved checks to profanity module

Removed checks from muc presence, and when contact is offline on message
This commit is contained in:
James Booth 2013-10-06 23:46:35 +01:00
parent 7eb5bb6c3d
commit 1d3256ffc7
2 changed files with 16 additions and 26 deletions

View File

@ -402,7 +402,7 @@ prof_handle_contact_online(char *contact, Resource *resource,
{
gboolean updated = roster_update_presence(contact, resource, last_activity);
if (updated) {
if (updated && prefs_get_boolean(PREF_STATUSES)) {
PContact result = roster_get_contact(contact);
if (p_contact_subscription(result) != NULL) {
if (strcmp(p_contact_subscription(result), "none") != 0) {
@ -419,7 +419,7 @@ prof_handle_contact_offline(char *contact, char *resource, char *status)
{
gboolean updated = roster_contact_offline(contact, resource, status);
if (resource != NULL && updated) {
if (resource != NULL && updated && prefs_get_boolean(PREF_STATUSES)) {
Jid *jid = jid_create_from_bare_and_resource(contact, resource);
PContact result = roster_get_contact(contact);
if (p_contact_subscription(result) != NULL) {

View File

@ -400,15 +400,13 @@ ui_contact_online(const char * const barejid, const char * const resource,
}
ProfWin *console = wins_get_console();
ProfWin *window = wins_get_by_recipient(barejid);
_show_status_string(console, display_str->str, show, status, last_activity,
"++", "online");
if (prefs_get_boolean(PREF_STATUSES)) {
_show_status_string(console, display_str->str, show, status, last_activity,
"++", "online");
if (window != NULL) {
_show_status_string(window, display_str->str, show, status,
last_activity, "++", "online");
}
ProfWin *window = wins_get_by_recipient(barejid);
if (window != NULL) {
_show_status_string(window, display_str->str, show, status,
last_activity, "++", "online");
}
jid_destroy(jid);
@ -444,15 +442,13 @@ ui_contact_offline(const char * const from, const char * const show,
}
ProfWin *console = wins_get_console();
ProfWin *window = wins_get_by_recipient(jidp->barejid);
_show_status_string(console, display_str->str, show, status, NULL, "--",
"offline");
if (prefs_get_boolean(PREF_STATUSES)) {
_show_status_string(console, display_str->str, show, status, NULL, "--",
ProfWin *window = wins_get_by_recipient(jidp->barejid);
if (window != NULL) {
_show_status_string(window, display_str->str, show, status, NULL, "--",
"offline");
if (window != NULL) {
_show_status_string(window, display_str->str, show, status, NULL, "--",
"offline");
}
}
jid_destroy(jidp);
@ -926,9 +922,7 @@ ui_new_chat_win(const char * const to)
if (strcmp(p_contact_presence(contact), "offline") == 0) {
const char const *show = p_contact_presence(contact);
const char const *status = p_contact_status(contact);
if (prefs_get_boolean(PREF_STATUSES)) {
_show_status_string(window, to, show, status, NULL, "--", "offline");
}
_show_status_string(window, to, show, status, NULL, "--", "offline");
}
}
} else {
@ -1036,9 +1030,7 @@ ui_outgoing_msg(const char * const from, const char * const to,
if (strcmp(p_contact_presence(contact), "offline") == 0) {
const char const *show = p_contact_presence(contact);
const char const *status = p_contact_status(contact);
if (prefs_get_boolean(PREF_STATUSES)) {
_show_status_string(window, to, show, status, NULL, "--", "offline");
}
_show_status_string(window, to, show, status, NULL, "--", "offline");
}
}
@ -1169,9 +1161,7 @@ ui_room_member_presence(const char * const room, const char * const nick,
ProfWin *window = wins_get_by_recipient(room);
if (window != NULL) {
if (prefs_get_boolean(PREF_STATUSES)) {
_show_status_string(window, nick, show, status, NULL, "++", "online");
}
_show_status_string(window, nick, show, status, NULL, "++", "online");
}
if (wins_is_current(window)) {