From 93b1df3bf6c6832053fc7444cd07640c273cb1df Mon Sep 17 00:00:00 2001 From: Mark Michelson Date: Mon, 8 Dec 2014 15:49:24 +0000 Subject: Add new AMI and ARI events for connected line changes on a channel. The AMI event is called NewConnectedLine and the ARI event is called ChannelConnectedLine. ASTERISK-24554 #close Reported by Matt Jordan Review: https://reviewboard.asterisk.org/r/4231 git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/13@429064 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- res/stasis/app.c | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) (limited to 'res/stasis/app.c') diff --git a/res/stasis/app.c b/res/stasis/app.c index 725414561..1cc4fb511 100644 --- a/res/stasis/app.c +++ b/res/stasis/app.c @@ -450,10 +450,38 @@ static struct ast_json *channel_callerid( "channel", json_channel); } +static struct ast_json *channel_connected_line( + struct ast_channel_snapshot *old_snapshot, + struct ast_channel_snapshot *new_snapshot, + const struct timeval *tv) +{ + struct ast_json *json_channel; + + /* No ChannelConnectedLine event on cache clear or first event */ + if (!old_snapshot || !new_snapshot) { + return NULL; + } + + if (ast_channel_snapshot_connected_line_equal(old_snapshot, new_snapshot)) { + return NULL; + } + + json_channel = ast_channel_snapshot_to_json(new_snapshot, stasis_app_get_sanitizer()); + if (!json_channel) { + return NULL; + } + + return ast_json_pack("{s: s, s: o, s: o}", + "type", "ChannelConnectedLine", + "timestamp", ast_json_timeval(*tv, NULL), + "channel", json_channel); +} + static channel_snapshot_monitor channel_monitors[] = { channel_state, channel_dialplan, channel_callerid, + channel_connected_line, }; static void sub_channel_update_handler(void *data, -- cgit v1.2.3