]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
ami: Add AMI event for Wink
authorNaveen Albert <asterisk@phreaknet.org>
Mon, 3 Jan 2022 17:10:03 +0000 (17:10 +0000)
committerFriendly Automation <jenkins2@gerrit.asterisk.org>
Wed, 5 Jan 2022 17:33:18 +0000 (11:33 -0600)
Adds an AMI event for a wink frame.

ASTERISK-29830 #close

Change-Id: I83e426de5e37baed79a4dbcc91e9e8d030ef1b56

configs/samples/stasis.conf.sample
doc/CHANGES-staging/ami_wink.txt [new file with mode: 0644]
include/asterisk/stasis_channels.h
main/channel.c
main/manager_channels.c
main/stasis.c
main/stasis_channels.c

index 6fadc74073eea23813bbe699206d5fa6e1a1144c..b62d1c60ae3064a451269d4733d2458ebf403db1 100644 (file)
@@ -54,6 +54,7 @@
 ; decline=ast_channel_dtmf_begin_type
 ; decline=ast_channel_dtmf_end_type
 ; decline=ast_channel_flash_type
+; decline=ast_channel_wink_type
 ; decline=ast_channel_hold_type
 ; decline=ast_channel_unhold_type
 ; decline=ast_channel_chanspy_start_type
diff --git a/doc/CHANGES-staging/ami_wink.txt b/doc/CHANGES-staging/ami_wink.txt
new file mode 100644 (file)
index 0000000..9d27cca
--- /dev/null
@@ -0,0 +1,3 @@
+Subject: ami
+
+An AMI event now exists for "Wink".
index f3452287177d643789615ebf59252bea72e76725..80c79ebd2ef24d858b1b8d56b1ca049675ca2e8f 100644 (file)
@@ -528,6 +528,13 @@ struct stasis_message_type *ast_channel_dtmf_end_type(void);
  */
 struct stasis_message_type *ast_channel_flash_type(void);
 
+/*!
+ * \brief Message type for when a wink occurs on a channel.
+ *
+ * \return A stasis message type
+ */
+struct stasis_message_type *ast_channel_wink_type(void);
+
 /*!
  * \since 12
  * \brief Message type for when a channel is placed on hold.
index e5a6bc9d5922d46ccb888277bf384f40ed95f630..3428e3a9e7d9acb3a3bc9f845eadb6c5b6de8ec5 100644 (file)
@@ -3405,6 +3405,11 @@ static void send_flash_event(struct ast_channel *chan)
        ast_channel_publish_blob(chan, ast_channel_flash_type(), NULL);
 }
 
+static void send_wink_event(struct ast_channel *chan)
+{
+       ast_channel_publish_blob(chan, ast_channel_wink_type(), NULL);
+}
+
 static void ast_read_generator_actions(struct ast_channel *chan, struct ast_frame *f)
 {
        struct ast_generator *generator;
@@ -3873,6 +3878,8 @@ static struct ast_frame *__ast_read(struct ast_channel *chan, int dropaudio, int
                                f = &ast_null_frame;
                        } else if (f->subclass.integer == AST_CONTROL_FLASH) {
                                send_flash_event(chan);
+                       } else if (f->subclass.integer == AST_CONTROL_WINK) {
+                               send_wink_event(chan);
                        }
                        break;
                case AST_FRAME_DTMF_END:
index a7cec8def85c63f19d5a91bd4afcb821bb6211b3..8af3465a29644d6c0096aa9b9f98acd0fb0f11a4 100644 (file)
@@ -1000,6 +1000,34 @@ static void channel_flash_cb(void *data, struct stasis_subscription *sub,
        ast_free(channel_event_string);
 }
 
+static void channel_wink_cb(void *data, struct stasis_subscription *sub,
+       struct stasis_message *message)
+{
+       struct ast_channel_blob *obj = stasis_message_data(message);
+       struct ast_str *channel_event_string;
+
+       channel_event_string = ast_manager_build_channel_state_string(obj->snapshot);
+       if (!channel_event_string) {
+               return;
+       }
+
+       /*** DOCUMENTATION
+               <managerEvent language="en_US" name="Wink">
+                       <managerEventInstance class="EVENT_FLAG_CALL">
+                               <synopsis>Raised when a wink occurs on a channel.</synopsis>
+                                       <syntax>
+                                               <channel_snapshot/>
+                                       </syntax>
+                       </managerEventInstance>
+               </managerEvent>
+       ***/
+       manager_event(EVENT_FLAG_CALL, "Wink",
+               "%s",
+               ast_str_buffer(channel_event_string));
+
+       ast_free(channel_event_string);
+}
+
 static void channel_hangup_handler_cb(void *data, struct stasis_subscription *sub,
                struct stasis_message *message)
 {
@@ -1362,6 +1390,9 @@ int manager_channels_init(void)
        ret |= stasis_message_router_add(message_router,
                ast_channel_flash_type(), channel_flash_cb, NULL);
 
+       ret |= stasis_message_router_add(message_router,
+               ast_channel_wink_type(), channel_wink_cb, NULL);
+
        ret |= stasis_message_router_add(message_router,
                ast_channel_hangup_request_type(), channel_hangup_request_cb,
                NULL);
index a75fe666474829154492bdcd022656c5182186fc..cf89a9980b16e7579c9d50ccdc6ea99ba977a617 100644 (file)
                                                        <enum name="ast_channel_dtmf_begin_type" />
                                                        <enum name="ast_channel_dtmf_end_type" />
                                                        <enum name="ast_channel_flash_type" />
+                                                       <enum name="ast_channel_wink_type" />
                                                        <enum name="ast_channel_hold_type" />
                                                        <enum name="ast_channel_unhold_type" />
                                                        <enum name="ast_channel_chanspy_start_type" />
index 5e39c0765411b277ce40cbd563f1e0855067d80b..8becf96f898292dbd4033beb00ac400360ae76fc 100644 (file)
@@ -1599,6 +1599,7 @@ STASIS_MESSAGE_TYPE_DEFN(ast_channel_unhold_type,
        .to_json = unhold_to_json,
        );
 STASIS_MESSAGE_TYPE_DEFN(ast_channel_flash_type);
+STASIS_MESSAGE_TYPE_DEFN(ast_channel_wink_type);
 STASIS_MESSAGE_TYPE_DEFN(ast_channel_chanspy_start_type);
 STASIS_MESSAGE_TYPE_DEFN(ast_channel_chanspy_stop_type);
 STASIS_MESSAGE_TYPE_DEFN(ast_channel_fax_type);
@@ -1644,6 +1645,7 @@ static void stasis_channels_cleanup(void)
        STASIS_MESSAGE_TYPE_CLEANUP(ast_channel_dtmf_begin_type);
        STASIS_MESSAGE_TYPE_CLEANUP(ast_channel_dtmf_end_type);
        STASIS_MESSAGE_TYPE_CLEANUP(ast_channel_flash_type);
+       STASIS_MESSAGE_TYPE_CLEANUP(ast_channel_wink_type);
        STASIS_MESSAGE_TYPE_CLEANUP(ast_channel_hold_type);
        STASIS_MESSAGE_TYPE_CLEANUP(ast_channel_unhold_type);
        STASIS_MESSAGE_TYPE_CLEANUP(ast_channel_chanspy_start_type);
@@ -1698,6 +1700,7 @@ int ast_stasis_channels_init(void)
        res |= STASIS_MESSAGE_TYPE_INIT(ast_channel_dtmf_begin_type);
        res |= STASIS_MESSAGE_TYPE_INIT(ast_channel_dtmf_end_type);
        res |= STASIS_MESSAGE_TYPE_INIT(ast_channel_flash_type);
+       res |= STASIS_MESSAGE_TYPE_INIT(ast_channel_wink_type);
        res |= STASIS_MESSAGE_TYPE_INIT(ast_channel_hold_type);
        res |= STASIS_MESSAGE_TYPE_INIT(ast_channel_unhold_type);
        res |= STASIS_MESSAGE_TYPE_INIT(ast_channel_chanspy_start_type);