mirror of
https://github.com/profanity-im/profanity.git
synced 2024-12-04 14:46:46 -05:00
Make mood display optional
This commit is contained in:
parent
f4d8728809
commit
9f13b9e939
@ -1079,6 +1079,8 @@ cmd_ac_init(void)
|
|||||||
mood_ac = autocomplete_new();
|
mood_ac = autocomplete_new();
|
||||||
autocomplete_add(mood_ac, "set");
|
autocomplete_add(mood_ac, "set");
|
||||||
autocomplete_add(mood_ac, "clear");
|
autocomplete_add(mood_ac, "clear");
|
||||||
|
autocomplete_add(mood_ac, "on");
|
||||||
|
autocomplete_add(mood_ac, "off");
|
||||||
mood_type_ac = autocomplete_new();
|
mood_type_ac = autocomplete_new();
|
||||||
autocomplete_add(mood_type_ac, "afraid");
|
autocomplete_add(mood_type_ac, "afraid");
|
||||||
autocomplete_add(mood_type_ac, "amazed");
|
autocomplete_add(mood_type_ac, "amazed");
|
||||||
|
@ -2720,11 +2720,13 @@ static struct cmd_t command_defs[] = {
|
|||||||
CMD_TAGS(
|
CMD_TAGS(
|
||||||
CMD_TAG_CHAT)
|
CMD_TAG_CHAT)
|
||||||
CMD_SYN(
|
CMD_SYN(
|
||||||
|
"/mood on|off",
|
||||||
"/mood set <mood> [text]",
|
"/mood set <mood> [text]",
|
||||||
"/mood clear")
|
"/mood clear")
|
||||||
CMD_DESC(
|
CMD_DESC(
|
||||||
"Set your mood (XEP-0107).")
|
"Set your mood (XEP-0107).")
|
||||||
CMD_ARGS(
|
CMD_ARGS(
|
||||||
|
{ "on|off", "Enable or disable displaying the mood of other users. On by default."},
|
||||||
{ "set <mood> [text]", "Set user mood to <mood> with an optional [text]. Use /mood set <tab> to toggle through predfined moods." },
|
{ "set <mood> [text]", "Set user mood to <mood> with an optional [text]. Use /mood set <tab> to toggle through predfined moods." },
|
||||||
{ "clear", "Clear your user mood." })
|
{ "clear", "Clear your user mood." })
|
||||||
CMD_EXAMPLES(
|
CMD_EXAMPLES(
|
||||||
|
@ -90,6 +90,7 @@
|
|||||||
#include "xmpp/muc.h"
|
#include "xmpp/muc.h"
|
||||||
#include "xmpp/chat_session.h"
|
#include "xmpp/chat_session.h"
|
||||||
#include "xmpp/avatar.h"
|
#include "xmpp/avatar.h"
|
||||||
|
#include "xmpp/stanza.h"
|
||||||
|
|
||||||
#ifdef HAVE_LIBOTR
|
#ifdef HAVE_LIBOTR
|
||||||
#include "otr/otr.h"
|
#include "otr/otr.h"
|
||||||
@ -9769,7 +9770,13 @@ cmd_register(ProfWin* window, const char* const command, gchar** args)
|
|||||||
gboolean
|
gboolean
|
||||||
cmd_mood(ProfWin* window, const char* const command, gchar** args)
|
cmd_mood(ProfWin* window, const char* const command, gchar** args)
|
||||||
{
|
{
|
||||||
if (g_strcmp0(args[0], "set") == 0) {
|
if (g_strcmp0(args[0], "on") == 0) {
|
||||||
|
_cmd_set_boolean_preference(args[0], command, "User mood", PREF_MOOD);
|
||||||
|
caps_add_feature(STANZA_NS_MOOD_NOTIFY);
|
||||||
|
} else if (g_strcmp0(args[0], "off") == 0) {
|
||||||
|
_cmd_set_boolean_preference(args[0], command, "User mood", PREF_MOOD);
|
||||||
|
caps_remove_feature(STANZA_NS_MOOD_NOTIFY);
|
||||||
|
} else if (g_strcmp0(args[0], "set") == 0) {
|
||||||
if (args[1]) {
|
if (args[1]) {
|
||||||
cons_show("Your mood: %s", args[1]);
|
cons_show("Your mood: %s", args[1]);
|
||||||
if (args[2]) {
|
if (args[2]) {
|
||||||
@ -9782,5 +9789,6 @@ cmd_mood(ProfWin* window, const char* const command, gchar** args)
|
|||||||
cons_show("Clearing the user mood.");
|
cons_show("Clearing the user mood.");
|
||||||
publish_user_mood(NULL, NULL);
|
publish_user_mood(NULL, NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
@ -1867,6 +1867,7 @@ _get_group(preference_t pref)
|
|||||||
case PREF_CORRECTION_ALLOW:
|
case PREF_CORRECTION_ALLOW:
|
||||||
case PREF_MAM:
|
case PREF_MAM:
|
||||||
case PREF_SILENCE_NON_ROSTER:
|
case PREF_SILENCE_NON_ROSTER:
|
||||||
|
case PREF_MOOD:
|
||||||
return PREF_GROUP_CONNECTION;
|
return PREF_GROUP_CONNECTION;
|
||||||
case PREF_OTR_LOG:
|
case PREF_OTR_LOG:
|
||||||
case PREF_OTR_POLICY:
|
case PREF_OTR_POLICY:
|
||||||
@ -2157,6 +2158,8 @@ _get_key(preference_t pref)
|
|||||||
return "stamp.incoming";
|
return "stamp.incoming";
|
||||||
case PREF_OX_LOG:
|
case PREF_OX_LOG:
|
||||||
return "log";
|
return "log";
|
||||||
|
case PREF_MOOD:
|
||||||
|
return "mood";
|
||||||
default:
|
default:
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
@ -2208,6 +2211,7 @@ _get_default_boolean(preference_t pref)
|
|||||||
case PREF_INTYPE:
|
case PREF_INTYPE:
|
||||||
case PREF_INTYPE_CONSOLE:
|
case PREF_INTYPE_CONSOLE:
|
||||||
case PREF_NOTIFY_MENTION_WHOLE_WORD:
|
case PREF_NOTIFY_MENTION_WHOLE_WORD:
|
||||||
|
case PREF_MOOD:
|
||||||
return TRUE;
|
return TRUE;
|
||||||
default:
|
default:
|
||||||
return FALSE;
|
return FALSE;
|
||||||
|
@ -180,6 +180,7 @@ typedef enum {
|
|||||||
PREF_INCOMING_STAMP,
|
PREF_INCOMING_STAMP,
|
||||||
PREF_NOTIFY_ROOM_OFFLINE,
|
PREF_NOTIFY_ROOM_OFFLINE,
|
||||||
PREF_OX_LOG,
|
PREF_OX_LOG,
|
||||||
|
PREF_MOOD,
|
||||||
} preference_t;
|
} preference_t;
|
||||||
|
|
||||||
typedef struct prof_alias_t
|
typedef struct prof_alias_t
|
||||||
|
@ -286,9 +286,13 @@ session_get_account_name(void)
|
|||||||
return saved_account.name;
|
return saved_account.name;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int
|
static gboolean
|
||||||
_receive_mood(xmpp_stanza_t* const stanza, void* const userdata)
|
_receive_mood(xmpp_stanza_t* const stanza, void* const userdata)
|
||||||
{
|
{
|
||||||
|
if (!prefs_get_boolean(PREF_MOOD)) {
|
||||||
|
return TRUE;
|
||||||
|
}
|
||||||
|
|
||||||
const char* from = xmpp_stanza_get_from(stanza);
|
const char* from = xmpp_stanza_get_from(stanza);
|
||||||
xmpp_stanza_t* event = xmpp_stanza_get_child_by_name_and_ns(stanza, STANZA_NAME_EVENT, STANZA_NS_PUBSUB_EVENT);
|
xmpp_stanza_t* event = xmpp_stanza_get_child_by_name_and_ns(stanza, STANZA_NAME_EVENT, STANZA_NS_PUBSUB_EVENT);
|
||||||
if (event) {
|
if (event) {
|
||||||
@ -362,7 +366,9 @@ session_login_success(gboolean secured)
|
|||||||
}
|
}
|
||||||
|
|
||||||
message_pubsub_event_handler_add(STANZA_NS_MOOD, _receive_mood, NULL, NULL);
|
message_pubsub_event_handler_add(STANZA_NS_MOOD, _receive_mood, NULL, NULL);
|
||||||
|
if (prefs_get_boolean(PREF_MOOD)) {
|
||||||
caps_add_feature(STANZA_NS_MOOD_NOTIFY);
|
caps_add_feature(STANZA_NS_MOOD_NOTIFY);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
Loading…
Reference in New Issue
Block a user