Skip to content
项目
群组
代码片段
帮助
正在加载...
登录
切换导航
F
freeswitch
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
张华
freeswitch
Commits
d146b15a
提交
d146b15a
authored
7月 28, 2010
作者:
Brian West
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
wip1
上级
0a04ecb8
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
104 行增加
和
30 行删除
+104
-30
sofia_glue.c
src/mod/endpoints/mod_sofia/sofia_glue.c
+5
-3
sofia_presence.c
src/mod/endpoints/mod_sofia/sofia_presence.c
+99
-27
没有找到文件。
src/mod/endpoints/mod_sofia/sofia_glue.c
浏览文件 @
d146b15a
...
...
@@ -4731,7 +4731,9 @@ int sofia_glue_init_sql(sofia_profile_t *profile)
" profile_name VARCHAR(255),
\n
"
" hostname VARCHAR(255),
\n
"
" network_ip VARCHAR(255),
\n
"
" network_port VARCHAR(6)
\n
"
" network_port VARCHAR(6),
\n
"
" content_type VARCHAR(255),
\n
"
" content text"
");
\n
"
;
char
dialog_sql
[]
=
...
...
@@ -4921,7 +4923,7 @@ int sofia_glue_init_sql(sofia_profile_t *profile)
}
free
(
test_sql
);
test_sql
=
switch_mprintf
(
"delete from sip_presence where hostname='%q' "
,
mod_sofia_globals
.
hostname
);
test_sql
=
switch_mprintf
(
"delete from sip_presence where hostname='%q'
or content_type=''
"
,
mod_sofia_globals
.
hostname
);
if
(
switch_odbc_handle_exec
(
odbc_dbh
,
test_sql
,
NULL
,
NULL
)
!=
SWITCH_ODBC_SUCCESS
)
{
switch_odbc_handle_exec
(
odbc_dbh
,
"DROP TABLE sip_presence"
,
NULL
,
NULL
);
...
...
@@ -4997,7 +4999,7 @@ int sofia_glue_init_sql(sofia_profile_t *profile)
switch_core_db_test_reactive
(
db
,
test_sql
,
"DROP TABLE sip_dialogs"
,
dialog_sql
);
free
(
test_sql
);
test_sql
=
switch_mprintf
(
"delete from sip_presence where hostname='%q' "
,
mod_sofia_globals
.
hostname
);
test_sql
=
switch_mprintf
(
"delete from sip_presence where hostname='%q'
or content_type=''
"
,
mod_sofia_globals
.
hostname
);
switch_core_db_test_reactive
(
db
,
test_sql
,
"DROP TABLE sip_presence"
,
pres_sql
);
free
(
test_sql
);
...
...
src/mod/endpoints/mod_sofia/sofia_presence.c
浏览文件 @
d146b15a
...
...
@@ -441,7 +441,7 @@ static void actual_sofia_presence_event_handler(switch_event_t *event)
"sip_subscriptions.contact,sip_subscriptions.call_id,sip_subscriptions.full_from,"
"sip_subscriptions.full_via,sip_subscriptions.expires,sip_subscriptions.user_agent,"
"sip_subscriptions.accept,sip_subscriptions.profile_name,sip_subscriptions.network_ip"
",1,'%q','%q',sip_presence.status,sip_presence.rpid "
",1,'%q','%q',sip_presence.status,sip_presence.rpid
,sip_presence.content_type,sip_presence.content
"
"from sip_subscriptions left join sip_presence on "
"(sip_subscriptions.sub_to_user=sip_presence.sip_user and sip_subscriptions.sub_to_host=sip_presence.sip_host and "
"sip_subscriptions.profile_name=sip_presence.profile_name) "
...
...
@@ -453,7 +453,7 @@ static void actual_sofia_presence_event_handler(switch_event_t *event)
"sip_subscriptions.contact,sip_subscriptions.call_id,sip_subscriptions.full_from,"
"sip_subscriptions.full_via,sip_subscriptions.expires,sip_subscriptions.user_agent,"
"sip_subscriptions.accept,sip_subscriptions.profile_name,sip_subscriptions.network_ip"
",1,'%q','%q',sip_presence.status,sip_presence.rpid "
",1,'%q','%q',sip_presence.status,sip_presence.rpid
,sip_presence.content_type,sip_presence.content
"
"from sip_subscriptions left join sip_presence on "
"(sip_subscriptions.sub_to_user=sip_presence.sip_user and sip_subscriptions.sub_to_host=sip_presence.sip_host and "
"sip_subscriptions.profile_name=sip_presence.profile_name) "
...
...
@@ -538,7 +538,7 @@ static void actual_sofia_presence_event_handler(switch_event_t *event)
if
(
probe_euser
&&
probe_host
&&
(
profile
=
sofia_glue_find_profile
(
probe_host
)))
{
sql
=
switch_mprintf
(
"select sip_registrations.sip_user, '%q', sip_registrations.status, "
"sip_registrations.rpid,'', sip_dialogs.uuid, sip_dialogs.state, sip_dialogs.direction, "
"sip_dialogs.sip_to_user, sip_dialogs.sip_to_host, sip_presence.status,sip_presence.rpid "
"sip_dialogs.sip_to_user, sip_dialogs.sip_to_host, sip_presence.status,sip_presence.rpid
,sip_presence.content_type,sip_presence.content
"
"from sip_registrations left join sip_dialogs on "
"(sip_dialogs.sip_from_user = sip_registrations.sip_user "
"and sip_dialogs.sip_from_host = sip_registrations.sip_host) "
...
...
@@ -641,7 +641,7 @@ static void actual_sofia_presence_event_handler(switch_event_t *event)
"sip_subscriptions.contact,sip_subscriptions.call_id,sip_subscriptions.full_from,"
"sip_subscriptions.full_via,sip_subscriptions.expires,sip_subscriptions.user_agent,"
"sip_subscriptions.accept,sip_subscriptions.profile_name"
",'%q','%q','%q',sip_presence.status,sip_presence.rpid "
",'%q','%q','%q',sip_presence.status,sip_presence.rpid
,sip_presence.content_type,sip_presence.content
"
"from sip_subscriptions "
"left join sip_presence on "
"(sip_subscriptions.sub_to_user=sip_presence.sip_user and sip_subscriptions.sub_to_host=sip_presence.sip_host and "
...
...
@@ -1011,23 +1011,52 @@ static char *gen_pidf(char *user_agent, char *id, char *url, char *open, char *r
" <atom id=
\"
%s
\"
>
\n
"
" <address uri=
\"
%s;user=ip
\"
priority=
\"
0.800000
\"
>
\n
"
" <status status=
\"
%s
\"
/>
\n
"
" <msnsubstatus substatus=
\"
%s
\"
/>
\n
"
" </address>
\n
"
" </atom>
\n
"
"</presence>
\n
"
,
status
,
id
,
id
,
url
,
open
,
prpid
);
" <msnsubstatus substatus=
\"
%s
\"
/>
\n
"
" </address>
\n
"
" </atom>
\n
"
"</presence>
\n
"
,
status
,
id
,
id
,
url
,
open
,
prpid
);
}
else
{
*
ct
=
"application/pidf+xml"
;
ret
=
switch_mprintf
(
"<?xml version=
\"
1.0
\"
encoding=
\"
ISO-8859-1
\"
?>
\n
"
"<presence xmlns='urn:ietf:params:xml:ns:pidf'
\n
"
"xmlns:dm='urn:ietf:params:xml:ns:pidf:data-model'
\n
"
"xmlns:rpid='urn:ietf:params:xml:ns:pidf:rpid'
\n
"
"xmlns:c='urn:ietf:params:xml:ns:pidf:cipid' entity='%s'>
\n
"
" <tuple id='t6a5ed77e'>
\n
"
" <status>
\r\n
"
" <basic>%s</basic>
\n
"
" </status>
\n
"
" </tuple>
\n
"
" <dm:person id='p06360c4a'>
\n
"
" <rpid:activities>
\r\n
"
" <rpid:%s/>
\n
"
" </rpid:activities>
\n
"
" <dm:note>%s</dm:note>
\n
"
" </dm:person>
\n
"
"</presence>"
,
id
,
open
,
prpid
,
status
);
if
(
!
strncasecmp
(
status
,
"Registered("
,
11
))
{
prpid
=
NULL
;
status
=
"Available"
;
}
if
(
prpid
)
{
ret
=
switch_mprintf
(
"<?xml version=
\"
1.0
\"
encoding=
\"
ISO-8859-1
\"
?>
\n
"
"<presence xmlns='urn:ietf:params:xml:ns:pidf'
\n
"
"xmlns:dm='urn:ietf:params:xml:ns:pidf:data-model'
\n
"
"xmlns:rpid='urn:ietf:params:xml:ns:pidf:rpid'
\n
"
"xmlns:c='urn:ietf:params:xml:ns:pidf:cipid' entity='%s'>
\n
"
" <tuple id='t6a5ed77e'>
\n
"
" <status>
\r\n
"
" <basic>%s</basic>
\n
"
" </status>
\n
"
" </tuple>
\n
"
" <dm:person id='p06360c4a'>
\n
"
" <rpid:activities>
\r\n
"
" <rpid:%s/>
\n
"
" </rpid:activities>
\n
"
" <dm:note>%s</dm:note>
\n
"
" </dm:person>
\n
"
"</presence>"
,
id
,
open
,
prpid
,
status
);
}
else
{
ret
=
switch_mprintf
(
"<?xml version=
\"
1.0
\"
encoding=
\"
ISO-8859-1
\"
?>
\n
"
"<presence xmlns='urn:ietf:params:xml:ns:pidf'
\n
"
"xmlns:dm='urn:ietf:params:xml:ns:pidf:data-model'
\n
"
"xmlns:rpid='urn:ietf:params:xml:ns:pidf:rpid'
\n
"
"xmlns:c='urn:ietf:params:xml:ns:pidf:cipid' entity='%s'>
\n
"
" <tuple id='t6a5ed77e'>
\n
"
" <status>
\r\n
"
" <basic>%s</basic>
\n
"
" </status>
\n
"
" </tuple>
\n
"
" <dm:person id='p06360c4a'>
\n
"
" <dm:note>%s</dm:note>
\n
"
" </dm:person>
\n
"
"</presence>"
,
id
,
open
,
status
);
}
}
...
...
@@ -1052,6 +1081,7 @@ static int sofia_presence_sub_callback(void *pArg, int argc, char **argv, char *
char
*
status
=
argv
[
14
];
char
*
rpid
=
argv
[
15
];
char
*
sub_to_host
=
argv
[
16
];
char
*
content
=
NULL
;
nua_handle_t
*
nh
;
char
*
to
=
NULL
;
...
...
@@ -1068,6 +1098,9 @@ static int sofia_presence_sub_callback(void *pArg, int argc, char **argv, char *
if
(
argc
>
18
&&
!
zstr
(
argv
[
17
])
&&
!
zstr
(
argv
[
18
]))
{
status
=
argv
[
17
];
rpid
=
argv
[
18
];
ct
=
argv
[
19
];
content
=
argv
[
20
];
}
in
=
helper
->
event
&&
helper
->
event
->
event_id
==
SWITCH_EVENT_PRESENCE_IN
;
...
...
@@ -1313,8 +1346,14 @@ static int sofia_presence_sub_callback(void *pArg, int argc, char **argv, char *
open
=
"closed"
;
}
prpid
=
translate_rpid
(
rpid
);
pl
=
gen_pidf
(
user_agent
,
clean_id
,
profile
->
url
,
open
,
rpid
,
prpid
,
status_line
,
&
ct
);
printf
(
"WTF %s
\n
%s
\n
"
,
ct
,
content
);
if
(
content
)
{
pl
=
strdup
(
content
);
}
else
{
prpid
=
translate_rpid
(
rpid
);
pl
=
gen_pidf
(
user_agent
,
clean_id
,
profile
->
url
,
open
,
rpid
,
prpid
,
status_line
,
&
ct
);
}
}
}
else
{
...
...
@@ -1323,8 +1362,15 @@ static int sofia_presence_sub_callback(void *pArg, int argc, char **argv, char *
}
else
{
open
=
"closed"
;
}
prpid
=
translate_rpid
(
rpid
);
pl
=
gen_pidf
(
user_agent
,
clean_id
,
profile
->
url
,
open
,
rpid
,
prpid
,
status
,
&
ct
);
printf
(
"WTF2 %s
\n
%s
\n
"
,
ct
,
content
);
if
(
content
)
{
pl
=
strdup
(
content
);
}
else
{
prpid
=
translate_rpid
(
rpid
);
pl
=
gen_pidf
(
user_agent
,
clean_id
,
profile
->
url
,
open
,
rpid
,
prpid
,
status
,
&
ct
);
}
}
nua_handle_bind
(
nh
,
&
mod_sofia_globals
.
keep_private
);
...
...
@@ -2128,7 +2174,17 @@ void sofia_presence_handle_sip_i_subscribe(int status,
switch_safe_free
(
sql
);
}
}
else
{
if
((
sql
=
switch_mprintf
(
"select proto,sip_user,'%q',sub_to_user,sub_to_host,event,contact,call_id,full_from,"
"full_via,expires,user_agent,accept,profile_name,network_ip"
" from sip_subscriptions where expires > -1 and event='%s' and sip_user='%q' "
"and (sip_host='%q' or presence_hosts like '%%%q%%')"
,
to_host
,
event
,
to_user
,
to_host
,
to_host
)))
{
sofia_glue_execute_sql_callback
(
profile
,
profile
->
ireg_mutex
,
sql
,
sofia_presence_sub_callback
,
profile
);
switch_safe_free
(
sql
);
}
}
end:
if
(
event
)
{
...
...
@@ -2249,6 +2305,7 @@ void sofia_presence_handle_sip_i_publish(nua_t *nua, sofia_profile_t *profile, n
char
etag
[
9
]
=
""
;
char
expstr
[
30
]
=
""
;
long
exp
=
0
,
exp_delta
=
3600
;
char
*
pd_dup
=
NULL
;
/* the following could instead be refactored back to the calling event handler in sofia.c XXX MTK */
if
(
sofia_test_pflag
(
profile
,
PFLAG_MANAGE_SHARED_APPEARANCE
))
{
...
...
@@ -2269,8 +2326,16 @@ void sofia_presence_handle_sip_i_publish(nua_t *nua, sofia_profile_t *profile, n
switch_event_t
*
event
;
char
*
sql
;
char
*
full_agent
=
NULL
;
char
*
ct
=
"no/idea"
;
if
((
xml
=
switch_xml_parse_str
(
payload
->
pl_data
,
strlen
(
payload
->
pl_data
))))
{
if
(
sip
->
sip_content_type
)
{
ct
=
sip_header_as_string
(
profile
->
home
,
(
void
*
)
sip
->
sip_content_type
);
}
pd_dup
=
strdup
(
payload
->
pl_data
);
if
((
xml
=
switch_xml_parse_str
(
pd_dup
,
strlen
(
pd_dup
))))
{
char
*
status_txt
=
""
,
*
note_txt
=
""
;
if
(
sip
->
sip_user_agent
)
{
...
...
@@ -2314,9 +2379,10 @@ void sofia_presence_handle_sip_i_publish(nua_t *nua, sofia_profile_t *profile, n
}
if
((
sql
=
switch_mprintf
(
"insert into sip_presence (sip_user, sip_host, status, rpid, expires, user_agent, profile_name, hostname) "
"values ('%q','%q','%q','%q',%ld,'%q','%q','%q')"
,
from_user
,
from_host
,
note_txt
,
rpid
,
exp
,
full_agent
,
profile
->
name
,
mod_sofia_globals
.
hostname
)))
{
switch_mprintf
(
"insert into sip_presence (sip_user, sip_host, status, rpid, expires, user_agent,"
" profile_name, hostname, content_type, content) "
"values ('%q','%q','%q','%q',%ld,'%q','%q','%q','%q','%q')"
,
from_user
,
from_host
,
note_txt
,
rpid
,
exp
,
full_agent
,
profile
->
name
,
mod_sofia_globals
.
hostname
,
ct
,
payload
->
pl_data
)))
{
sofia_glue_execute_sql_now
(
profile
,
&
sql
,
SWITCH_TRUE
);
}
...
...
@@ -2340,10 +2406,16 @@ void sofia_presence_handle_sip_i_publish(nua_t *nua, sofia_profile_t *profile, n
if
(
full_agent
)
{
su_free
(
profile
->
home
,
full_agent
);
}
if
(
ct
)
{
su_free
(
profile
->
home
,
ct
);
}
switch_xml_free
(
xml
);
}
}
switch_safe_free
(
pd_dup
);
switch_snprintf
(
expstr
,
sizeof
(
expstr
),
"%d"
,
exp_delta
);
switch_stun_random_string
(
etag
,
8
,
NULL
);
nua_respond
(
nh
,
SIP_200_OK
,
NUTAG_WITH_THIS
(
nua
),
SIPTAG_ETAG_STR
(
etag
),
SIPTAG_EXPIRES_STR
(
expstr
),
TAG_END
());
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论