Exemplo n.º 1
0
 public Task Hangup(HangupCause hangupCause = FreeSwitch.HangupCause.NormalClearing)
 {
     return
         (RunIfAnswered(
              () =>
              eventSocket.SendApi("uuid_kill {0} {1}".Fmt(UUID, hangupCause.ToString().ToUpperWithUnderscores())),
              true));
 }
Exemplo n.º 2
0
        /// <summary>
        /// Send an api command (blocking mode)
        /// </summary>
        /// <remarks>
        /// See https://freeswitch.org/confluence/display/FREESWITCH/mod_event_socket#mod_event_socket-api
        /// </remarks>
        /// <param name="eventSocket">The EventSocket instance to execute on.</param>
        /// <param name="command">The API command to send (see https://wiki.freeswitch.org/wiki/Mod_commands) </param>
        /// <param name="arg">(Optional) any arguments for the api command.</param>
        /// <returns>A Task of <seealso cref="ApiResponse"/>.</returns>
        public static Task <ApiResponse> Api(this EventSocket eventSocket, string command, string arg = null)
        {
            if (command == null)
            {
                throw new ArgumentNullException("command");
            }

            return(eventSocket.SendApi(arg != null ? "{0} {1}".Fmt(command, arg) : command));
        }
Exemplo n.º 3
0
 /// <summary>
 /// Set Multiple Channel Variables in one go
 /// </summary>
 /// <remarks>
 /// See https://wiki.freeswitch.org/wiki/Mod_commands#uuid_setvar_multi
 /// </remarks>
 /// <param name="eventSocket">The EventSocket instance.</param>
 /// <param name="uuid">The Channel UUID.</param>
 /// <param name="assignments">Array of assignments in the form "foo=value", "bar=value".</param>
 /// <returns>A Task of <seealso cref="ApiResponse"/> representing the CHANNEL_EXECUTE_COMPLETE event.</returns>
 public static Task <ApiResponse> SetMultipleChannelVariables(this EventSocket eventSocket, string uuid, params string[] assignments)
 {
     return(eventSocket.SendApi(
                "uuid_setvar_multi {0} {1}".Fmt(
                    uuid,
                    assignments.Aggregate(
                        StringBuilderPool.Allocate(),
                        (sb, s) =>
     {
         sb.Append(s);
         sb.Append(";");
         return sb;
     },
                        StringBuilderPool.ReturnAndFree))));
 }
Exemplo n.º 4
0
 /// <summary>
 /// Sets a variable on a channel. If value is omitted, the variable is unset.
 /// </summary>
 /// <remarks>
 /// See https://wiki.freeswitch.org/wiki/Mod_commands#uuid_setvar
 /// </remarks>
 /// <param name="eventSocket">The EventSocket instance to execute on.</param>
 /// <param name="uuid">The Channel UUID.</param>
 /// <param name="variable">The Channel Variable.</param>
 /// <param name="value">The value to assign to the <paramref name="variable">Channel Variable</paramref>.</param>
 /// <returns>A Task of <seealso cref="ApiResponse"/>.</returns>
 public static Task <ApiResponse> SetChannelVariable(this EventSocket eventSocket, string uuid, string variable, object value)
 {
     return(eventSocket.SendApi("uuid_setvar {0} {1} {2}".Fmt(uuid, variable, value)));
 }
Exemplo n.º 5
0
 public Task <ApiResponse> SendApi(string command)
 {
     return(eventSocket.SendApi(command));
 }