Hello Henning,
Thank you for your time.
Think I have not been able to explain my challenge, or I am so far off, I need to start at
zero.
I would want to only request the value of the in memory content, cause when I a call is
finished, the records in the presentity table stay valid till they expire and the action
to remove the expired records has been executed.
So to my best knowledge that would mean that even if the dialog has been ended, the record
could exist for x amount of time depending on the min_expires and the clean_period
parameters of the presence module.
For now I have solved my routing requirement by using the dialog funtions set_dlg_profile
and get_profile_size. So I am able to limit calls to an extension that has an active call,
but still allow outgoing calls from that extension.
I guess I have to look into doing something with the publish messages, get the information
in those before the handle_publish action, retrieve the information and put it in a
database table. But I think then the dialog option is the same, so just keep using that.
Am I correct in saying that monitoring (realtime) if an extension is in a dialog can be
checked by querying the presentity table, but that wont work to check if an extension is
not in a call due to the expires value an dthe clean_period
parameters. With extension I mean user..
Thank you.
Rgds,
Gertjan
From: "Henning Westerholt" <hw(a)skalatan.de>
To: "sr-users" <sr-users(a)lists.kamailio.org>
Cc: "Gertjan Wolzak" <g.wolzak(a)kazlow.nl>
Sent: Friday, July 12, 2019 10:17:20 PM
Subject: RE: Reading presence state
Hello Gertjan,
so you want to not only query the database, but also the in-memory content of the presence
module?
The PV $subs does not work for you? Another idea – have you looked to the parameter
subs_db_mode? From the docs:
“1 - Write-Through scheme. Subscriptions are updated synchronously in database and in
memory(used for read operations). Use this scheme if speed is not top priority, but
it's important that no subscriptions will be lost during crash or reboot or if you
have an external application that reads the state of the subscriptions from database and
they need to be updated synchronously.”
Cheers,
Henning
--
Henning Westerholt - [
https://skalatan.de/blog/ |
https://skalatan.de/blog/ ]
Kamailio services - [
https://skalatan.de/services |
https://skalatan.de/services ]
From: sr-users <sr-users-bounces(a)lists.kamailio.org> On Behalf Of Gertjan Wolzak
Sent: Monday, July 8, 2019 2:23 PM
To: sr-users <sr-users(a)lists.kamailio.org>
Subject: [SR-Users] Reading presence state
Hello Kamailions,
I have been able to get the presence configured, subscribers see the status of their
subscriptions, this is working fine, for internal, incoming external and external calls.
This was solved by enabling use_pubruri_avps in the pua_dialoginfo module.
Now I want to be able to route calls based on the presence state.
Using the presentity table could be used by doing a query based on the userpart of the
ruri, which works fine when the call is still active, but it can take a while for the
record to be removed from the presentity table, as that is dependend on the expires value.
So when a query is made after a call is finished, a record would still be present in the
presentity table till clean_period timer has hit again and the expires value is expired.
So I should get the status from memory, but I have not been able to find the information
on how to do that.
Can someone enlighten me on where to find that information?
Rgds,
Gertjan