[Freeswitch-users] conference user

Karsten Horsmann khorsmann at gmail.com
Fri Jan 24 22:59:40 MSK 2014


Hello Joli,


you can define an "startup-script" in autoload_configs/lua.conf.xml that
loops forever and consums the conference Events.

Here an example that listen to an "CUSTOM" Event to "kill"  loop.lua scripts
on fs_cli -x "luarun loop.lua stop". In the "--your magic code here loop"
you can add your stuff.


-- logging
LOGLEVEL = "info"
-- progname
PROGNAME = "loop.lua"
-- functions
function logger(message)
    freeswitch.consoleLog(LOGLEVEL,"["..PROGNAME.."] "..message.."\n")
end
-- main loop
logger("Starting script and loop forever")
con = freeswitch.EventConsumer("CUSTOM");
run = true
while run do
    for e in (function() return con:pop(1,1000) end) do
        -- logger("event\n" .. e:serialize("xml"))
        element = e:getHeader("Event-Subclass") or ""

        if (element == "lua::stop_event") then
            action = e:getHeader("Action") or ""
            if (action == "stop") then
                logger("Got stop message, exiting")
                run = false
                break
            end
        end
-- your magic code here in loop
    end
end




2014/1/24 Joli Martinez <mrjoli021 at gmail.com>

> OK I can setup a separate event hook for that, but the problem I am having
> is that how can I trigger it at the same time I transfer the call.  This
> will be a busy box, so I can I make sure I get the right memberID and not a
> new memberID or the previous memberID?
>
> Thanks,
>
>
> On Jan 24, 2014, at 11:32 AM, Duvid Rottenberg <adrottenberg at gmail.com>
> wrote:
>
> I haven't used LUA but from what I can see, session::execute is a blocking
> method and there is no  non-blocking version. You would probably have to
> setup a separate event-hook script to capture the conference::maintenance
> event.
> https://wiki.freeswitch.org/wiki/Mod_lua#Event_Hooks
>
>
>
>
> On Fri, Jan 24, 2014 at 10:35 AM, Joli Martinez <mrjoli021 at gmail.com>wrote:
>
>> Hello,
>>
>> I was able to figure that out last night.  The problem I am having now is
>> that I cant get the memberId until I transfer call to conference.  Once I
>> transfer call to conference, my script stops execution until user hangs up.
>>  How can I get the memberId right after I transfer to conference?
>>
>> session:execute("conference",3001)
>>
>> userId = session:getVariable("conference_member_id")
>>
>> freeswitch.consoleLog("INFO", userId.. "\n");
>>
>>
>> On Fri, Jan 24, 2014 at 9:33 AM, Duvid Rottenberg <adrottenberg at gmail.com
>> > wrote:
>>
>>> You can get it from the add-member event. There will be a Member-ID
>>> header.
>>>
>>>
>>> On Thu, Jan 23, 2014 at 9:15 PM, Joli Martinez <mrjoli021 at gmail.com>wrote:
>>>
>>>> Hello,
>>>>
>>>> I need to know the userid number of a person joining a conference.  Is
>>>> there a way to get that userid number when a person joins the conference
>>>> and save it as a variable in Lua?
>>>>
>>>> Thanks
>>>>
>>>>
>>>>
>>>> _________________________________________________________________________
>>>> Professional FreeSWITCH Consulting Services:
>>>> consulting at freeswitch.org
>>>> http://www.freeswitchsolutions.com
>>>>
>>>> 
>>>> 
>>>>
>>>> Official FreeSWITCH Sites
>>>> http://www.freeswitch.org
>>>> http://wiki.freeswitch.org
>>>> http://www.cluecon.com
>>>>
>>>> FreeSWITCH-users mailing list
>>>> FreeSWITCH-users at lists.freeswitch.org
>>>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
>>>> UNSUBSCRIBE:
>>>> http://lists.freeswitch.org/mailman/options/freeswitch-users
>>>> http://www.freeswitch.org
>>>>
>>>
>>>
>>> _________________________________________________________________________
>>> Professional FreeSWITCH Consulting Services:
>>> consulting at freeswitch.org
>>> http://www.freeswitchsolutions.com
>>>
>>> 
>>> 
>>>
>>> Official FreeSWITCH Sites
>>> http://www.freeswitch.org
>>> http://wiki.freeswitch.org
>>> http://www.cluecon.com
>>>
>>> FreeSWITCH-users mailing list
>>> FreeSWITCH-users at lists.freeswitch.org
>>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
>>> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
>>> http://www.freeswitch.org
>>>
>>>
>>
>> _________________________________________________________________________
>> Professional FreeSWITCH Consulting Services:
>> consulting at freeswitch.org
>> http://www.freeswitchsolutions.com
>>
>> 
>> 
>>
>> Official FreeSWITCH Sites
>> http://www.freeswitch.org
>> http://wiki.freeswitch.org
>> http://www.cluecon.com
>>
>> FreeSWITCH-users mailing list
>> FreeSWITCH-users at lists.freeswitch.org
>> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
>> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
>> http://www.freeswitch.org
>>
>>
> _________________________________________________________________________
> Professional FreeSWITCH Consulting Services:
> consulting at freeswitch.org
> http://www.freeswitchsolutions.com
>
> 
> 
>
> Official FreeSWITCH Sites
> http://www.freeswitch.org
> http://wiki.freeswitch.org
> http://www.cluecon.com
>
> FreeSWITCH-users mailing list
> FreeSWITCH-users at lists.freeswitch.org
> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
> http://www.freeswitch.org
>
>
>
> _________________________________________________________________________
> Professional FreeSWITCH Consulting Services:
> consulting at freeswitch.org
> http://www.freeswitchsolutions.com
>
> 
> 
>
> Official FreeSWITCH Sites
> http://www.freeswitch.org
> http://wiki.freeswitch.org
> http://www.cluecon.com
>
> FreeSWITCH-users mailing list
> FreeSWITCH-users at lists.freeswitch.org
> http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
> UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
> http://www.freeswitch.org
>
>


-- 
Mit freundlichen Grüßen
*Karsten Horsmann*
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.freeswitch.org/pipermail/freeswitch-users/attachments/20140124/79c84293/attachment-0001.html 


Join us at ClueCon 2013 Aug 6-8, 2013
More information about the FreeSWITCH-users mailing list