2015-12-15 16:11:29 +01:00
%%%----------------------------------------------------------------------
%%% File : mod_pubsub.erl
%%% Author : Christophe Romain <christophe.romain@process-one.net>
%%% Purpose : Publish Subscribe service (XEP-0060)
%%% Created : 1 Dec 2007 by Christophe Romain <christophe.romain@process-one.net>
2013-03-14 10:33:02 +01:00
%%%
%%%
2024-01-22 16:40:01 +01:00
%%% ejabberd, Copyright (C) 2002-2024 ProcessOne
2007-12-01 06:16:30 +01:00
%%%
2015-12-15 16:11:29 +01:00
%%% This program is free software; you can redistribute it and/or
%%% modify it under the terms of the GNU General Public License as
%%% published by the Free Software Foundation; either version 2 of the
%%% License, or (at your option) any later version.
2007-12-01 06:16:30 +01:00
%%%
2015-12-15 16:11:29 +01:00
%%% This program is distributed in the hope that it will be useful,
%%% but WITHOUT ANY WARRANTY; without even the implied warranty of
%%% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
%%% General Public License for more details.
2007-12-01 06:16:30 +01:00
%%%
2015-12-15 16:11:29 +01:00
%%% You should have received a copy of the GNU General Public License along
%%% with this program; if not, write to the Free Software Foundation, Inc.,
%%% 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
2009-06-15 15:58:40 +02:00
%%%
2015-12-15 16:11:29 +01:00
%%%----------------------------------------------------------------------
2009-06-15 15:58:40 +02:00
%%% Support for subscription-options and multi-subscribe features was
2009-08-17 19:16:43 +02:00
%%% added by Brian Cully (bjc AT kublai.com). Subscriptions and options are
2009-06-15 15:58:40 +02:00
%%% stored in the pubsub_subscription table, with a link to them provided
%%% by the subscriptions field of pubsub_state. For information on
%%% subscription-options and mulit-subscribe see XEP-0060 sections 6.1.6,
%%% 6.2.3.1, 6.2.3.5, and 6.3. For information on subscription leases see
%%% XEP-0060 section 12.18.
2007-12-01 06:16:30 +01:00
2003-07-08 22:11:27 +02:00
- module ( mod_pubsub ) .
- behaviour ( gen_mod ) .
2015-04-08 17:12:05 +02:00
- behaviour ( gen_server ) .
- author ( 'christophe.romain@process-one.net' ) .
2024-11-08 19:27:22 +01:00
- protocol ( { xep , 60 , '1.14' , '0.5.0' , " partial " , " " } ) .
- protocol ( { xep , 163 , '1.2' , '2.0.0' , " complete " , " " } ) .
- protocol ( { xep , 248 , '0.2' , '2.1.0' , " complete " , " " } ) .
2003-07-08 22:11:27 +02:00
2013-04-08 11:12:54 +02:00
- include ( " logger.hrl " ) .
2020-09-03 13:45:57 +02:00
- include_lib ( " xmpp/include/xmpp.hrl " ) .
2007-12-01 06:16:30 +01:00
- include ( " pubsub.hrl " ) .
2017-05-17 13:47:35 +02:00
- include ( " mod_roster.hrl " ) .
2018-01-08 09:29:17 +01:00
- include ( " translate.hrl " ) .
2019-07-06 11:30:57 +02:00
- include ( " ejabberd_stacktrace.hrl " ) .
2021-08-22 12:44:50 +02:00
- include ( " ejabberd_commands.hrl " ) .
2007-12-01 06:16:30 +01:00
2013-03-14 10:33:02 +01:00
- define ( STDTREE , < < " tree " > > ) .
- define ( STDNODE , < < " flat " > > ) .
- define ( PEPNODE , < < " pep " > > ) .
2007-12-01 06:16:30 +01:00
%% exports for hooks
2015-07-07 00:24:06 +02:00
- export ( [ presence_probe / 3 , caps_add / 3 , caps_update / 3 ,
2018-01-26 13:02:06 +01:00
in_subscription / 2 , out_subscription / 1 ,
2017-12-05 23:10:12 +01:00
on_self_presence / 1 , on_user_offline / 2 , remove_user / 2 ,
2015-04-08 17:12:05 +02:00
disco_local_identity / 5 , disco_local_features / 5 ,
disco_local_items / 5 , disco_sm_identity / 5 ,
2016-12-11 13:03:37 +01:00
disco_sm_features / 5 , disco_sm_items / 5 ,
c2s_handle_info / 2 ] ) .
2013-03-14 10:33:02 +01:00
2007-12-01 06:16:30 +01:00
%% exported iq handlers
2016-08-30 08:48:08 +02:00
- export ( [ iq_sm / 1 , process_disco_info / 1 , process_disco_items / 1 ,
process_pubsub / 1 , process_pubsub_owner / 1 , process_vcard / 1 ,
process_commands / 1 ] ) .
2007-12-01 06:16:30 +01:00
%% exports for console debug manual use
2015-04-08 17:12:05 +02:00
- export ( [ create_node / 5 , create_node / 7 , delete_node / 3 ,
2018-11-23 11:33:29 +01:00
subscribe_node / 5 , unsubscribe_node / 5 , publish_item / 6 , publish_item / 8 ,
2016-03-08 18:04:29 +01:00
delete_item / 4 , delete_item / 5 , send_items / 7 , get_items / 2 , get_item / 3 ,
2015-04-08 17:12:05 +02:00
get_cached_item / 2 , get_configure / 5 , set_configure / 5 ,
tree_action / 3 , node_action / 4 , node_call / 4 ] ) .
2007-12-01 06:16:30 +01:00
%% general helpers for plugins
2016-09-13 11:30:05 +02:00
- export ( [ extended_error / 2 , service_jid / 1 ,
2015-11-30 14:57:21 +01:00
tree / 1 , tree / 2 , plugin / 2 , plugins / 1 , config / 3 ,
host / 1 , serverhost / 1 ] ) .
2007-12-01 06:16:30 +01:00
2016-08-30 08:48:08 +02:00
%% pubsub#errors
- export ( [ err_closed_node / 0 , err_configuration_required / 0 ,
err_invalid_jid / 0 , err_invalid_options / 0 , err_invalid_payload / 0 ,
err_invalid_subid / 0 , err_item_forbidden / 0 , err_item_required / 0 ,
err_jid_required / 0 , err_max_items_exceeded / 0 , err_max_nodes_exceeded / 0 ,
err_nodeid_required / 0 , err_not_in_roster_group / 0 , err_not_subscribed / 0 ,
err_payload_too_big / 0 , err_payload_required / 0 ,
2017-12-12 01:04:14 +01:00
err_pending_subscription / 0 , err_precondition_not_met / 0 ,
err_presence_subscription_required / 0 , err_subid_required / 0 ,
err_too_many_subscriptions / 0 , err_unsupported / 1 ,
2016-08-30 08:48:08 +02:00
err_unsupported_access_model / 0 ] ) .
2007-12-01 06:16:30 +01:00
%% API and gen_server callbacks
2017-02-14 10:39:26 +01:00
- export ( [ start / 2 , stop / 1 , init / 1 ,
2020-01-13 13:25:08 +01:00
handle_call / 3 , handle_cast / 2 , handle_info / 2 , mod_doc / 0 ,
2018-01-23 08:54:52 +01:00
terminate / 2 , code_change / 3 , depends / 2 , mod_opt_type / 1 , mod_options / 1 ] ) .
2003-07-08 22:11:27 +02:00
2021-08-22 12:44:50 +02:00
%% ejabberd commands
2021-10-30 13:19:30 +02:00
- export ( [ get_commands_spec / 0 , delete_old_items / 1 , delete_expired_items / 0 ] ) .
2021-08-22 12:44:50 +02:00
2019-07-06 11:30:57 +02:00
- export ( [ route / 1 ] ) .
2006-02-02 06:00:27 +01:00
%%====================================================================
%% API
%%====================================================================
%%--------------------------------------------------------------------
%% Function: start_link() -> {ok,Pid} | ignore | {error,Error}
%% Description: Starts the server
%%--------------------------------------------------------------------
2013-03-14 10:33:02 +01:00
- export_type ( [
2015-04-08 17:12:05 +02:00
host / 0 ,
hostPubsub / 0 ,
hostPEP / 0 ,
%%
nodeIdx / 0 ,
nodeId / 0 ,
itemId / 0 ,
subId / 0 ,
payload / 0 ,
%%
nodeOption / 0 ,
nodeOptions / 0 ,
subOption / 0 ,
subOptions / 0 ,
2015-07-01 17:18:32 +02:00
pubOption / 0 ,
pubOptions / 0 ,
2015-04-08 17:12:05 +02:00
%%
affiliation / 0 ,
subscription / 0 ,
accessModel / 0 ,
publishModel / 0
] ) .
2013-03-14 10:33:02 +01:00
%% -type payload() defined here because the -type xmlel() is not accessible
%% from pubsub.hrl
- type ( payload ( ) : : [ ] | [ xmlel ( ) , . . . ] ) .
- export_type ( [
2015-04-08 17:12:05 +02:00
pubsubNode / 0 ,
pubsubState / 0 ,
pubsubItem / 0 ,
pubsubSubscription / 0 ,
pubsubLastItem / 0
] ) .
2013-03-14 10:33:02 +01:00
- type ( pubsubNode ( ) : :
#pubsub_node {
2015-04-08 17:12:05 +02:00
nodeid : : { Host : : mod_pubsub : host ( ) , Node : : mod_pubsub : nodeId ( ) } ,
id : : Nidx : : mod_pubsub : nodeIdx ( ) ,
parents : : [ Node : : mod_pubsub : nodeId ( ) ] ,
type : : Type : : binary ( ) ,
owners : : [ Owner : : ljid ( ) , . . . ] ,
options : : Opts : : mod_pubsub : nodeOptions ( )
}
) .
2013-03-14 10:33:02 +01:00
- type ( pubsubState ( ) : :
#pubsub_state {
2015-04-08 17:12:05 +02:00
stateid : : { Entity : : ljid ( ) , Nidx : : mod_pubsub : nodeIdx ( ) } ,
2017-03-30 14:26:30 +02:00
nodeidx : : Nidx : : mod_pubsub : nodeIdx ( ) ,
2015-04-08 17:12:05 +02:00
items : : [ ItemId : : mod_pubsub : itemId ( ) ] ,
affiliation : : Affs : : mod_pubsub : affiliation ( ) ,
subscriptions : : [ { Sub : : mod_pubsub : subscription ( ) , SubId : : mod_pubsub : subId ( ) } ]
}
) .
2013-03-14 10:33:02 +01:00
- type ( pubsubItem ( ) : :
#pubsub_item {
2015-04-08 17:12:05 +02:00
itemid : : { ItemId : : mod_pubsub : itemId ( ) , Nidx : : mod_pubsub : nodeIdx ( ) } ,
2017-03-30 14:26:30 +02:00
nodeidx : : Nidx : : mod_pubsub : nodeIdx ( ) ,
2015-04-08 17:12:05 +02:00
creation : : { erlang : timestamp ( ) , ljid ( ) } ,
modification : : { erlang : timestamp ( ) , ljid ( ) } ,
payload : : mod_pubsub : payload ( )
}
) .
2013-03-14 10:33:02 +01:00
- type ( pubsubSubscription ( ) : :
#pubsub_subscription {
2015-04-08 17:12:05 +02:00
subid : : SubId : : mod_pubsub : subId ( ) ,
options : : [ ] | mod_pubsub : subOptions ( )
}
) .
2013-03-14 10:33:02 +01:00
- type ( pubsubLastItem ( ) : :
#pubsub_last_item {
2017-01-21 00:14:56 +01:00
nodeid : : { binary ( ) , mod_pubsub : nodeIdx ( ) } ,
2015-04-08 17:12:05 +02:00
itemid : : mod_pubsub : itemId ( ) ,
creation : : { erlang : timestamp ( ) , ljid ( ) } ,
payload : : mod_pubsub : payload ( )
}
) .
2013-03-14 10:33:02 +01:00
- record ( state ,
2015-04-08 17:12:05 +02:00
{
server_host ,
2017-08-08 16:46:26 +02:00
hosts ,
2015-04-08 17:12:05 +02:00
access ,
pep_mapping = [ ] ,
ignore_pep_from_offline = true ,
last_item_cache = false ,
max_items_node = ? MAXITEMS ,
2015-11-10 16:28:57 +01:00
max_subscriptions_node = undefined ,
default_node_config = [ ] ,
2015-04-08 17:12:05 +02:00
nodetree = < < " nodetree_ " , ( ? STDTREE ) / binary > > ,
plugins = [ ? STDNODE ] ,
db_type
} ) .
2013-03-14 10:33:02 +01:00
- type ( state ( ) : :
#state {
2015-04-08 17:12:05 +02:00
server_host : : binary ( ) ,
2017-08-08 16:46:26 +02:00
hosts : : [ mod_pubsub : hostPubsub ( ) ] ,
2015-04-08 17:12:05 +02:00
access : : atom ( ) ,
pep_mapping : : [ { binary ( ) , binary ( ) } ] ,
ignore_pep_from_offline : : boolean ( ) ,
last_item_cache : : boolean ( ) ,
2021-08-21 12:29:37 +02:00
max_items_node : : non_neg_integer ( ) | unlimited ,
2015-11-10 16:28:57 +01:00
max_subscriptions_node : : non_neg_integer ( ) | undefined ,
default_node_config : : [ { atom ( ) , binary ( ) | boolean ( ) | integer ( ) | atom ( ) } ] ,
2015-04-08 17:12:05 +02:00
nodetree : : binary ( ) ,
plugins : : [ binary ( ) , . . . ] ,
db_type : : atom ( )
}
2013-03-14 10:33:02 +01:00
2015-04-08 17:12:05 +02:00
) .
2013-03-14 10:33:02 +01:00
2019-07-29 16:13:16 +02:00
- type subs_by_depth ( ) : : [ { integer ( ) , [ { #pubsub_node { } , [ { ljid ( ) , subId ( ) , subOptions ( ) } ] } ] } ] .
2013-03-14 10:33:02 +01:00
2006-02-02 06:00:27 +01:00
start ( Host , Opts ) - >
2017-02-14 10:39:26 +01:00
gen_mod : start_child ( ? MODULE , Host , Opts ) .
2003-07-08 22:11:27 +02:00
2006-02-02 06:00:27 +01:00
stop ( Host ) - >
2017-02-14 10:39:26 +01:00
gen_mod : stop_child ( ? MODULE , Host ) .
2005-07-20 05:09:34 +02:00
2006-02-02 06:00:27 +01:00
%%====================================================================
%% gen_server callbacks
%%====================================================================
%%--------------------------------------------------------------------
%% Function: init(Args) -> {ok, State} |
2015-04-08 17:12:05 +02:00
%% {ok, State, Timeout} |
%% ignore |
%% {stop, Reason}
2006-02-02 06:00:27 +01:00
%% Description: Initiates the server
%%--------------------------------------------------------------------
2016-07-01 21:18:55 +02:00
- spec init ( [ binary ( ) | [ { _ , _ } ] , . . . ] ) - > { 'ok' , state ( ) } .
2013-03-14 10:33:02 +01:00
2019-08-04 20:46:18 +02:00
init ( [ ServerHost | _ ] ) - >
2017-02-14 08:25:08 +01:00
process_flag ( trap_exit , true ) ,
2019-08-04 20:46:18 +02:00
Opts = gen_mod : get_module_opts ( ServerHost , ? MODULE ) ,
2019-06-14 11:33:26 +02:00
Hosts = gen_mod : get_opt_hosts ( Opts ) ,
Access = mod_pubsub_opt : access_createnode ( Opts ) ,
PepOffline = mod_pubsub_opt : ignore_pep_from_offline ( Opts ) ,
LastItemCache = mod_pubsub_opt : last_item_cache ( Opts ) ,
MaxItemsNode = mod_pubsub_opt : max_items_node ( Opts ) ,
MaxSubsNode = mod_pubsub_opt : max_subscriptions_node ( Opts ) ,
2016-11-30 11:09:17 +01:00
ejabberd_mnesia : create ( ? MODULE , pubsub_last_item ,
2017-08-08 16:46:26 +02:00
[ { ram_copies , [ node ( ) ] } ,
{ attributes , record_info ( fields , pubsub_last_item ) } ] ) ,
2019-06-14 11:33:26 +02:00
DBMod = gen_mod : db_mod ( Opts , ? MODULE ) ,
2017-08-08 16:46:26 +02:00
AllPlugins =
lists : flatmap (
fun ( Host ) - >
2019-06-14 11:33:26 +02:00
DBMod : init ( Host , ServerHost , Opts ) ,
2019-07-06 11:30:57 +02:00
ejabberd_router : register_route (
Host , ServerHost , { apply , ? MODULE , route } ) ,
2017-08-08 16:46:26 +02:00
{ Plugins , NodeTree , PepMapping } = init_plugins ( Host , ServerHost , Opts ) ,
2024-09-28 16:45:59 +02:00
DefaultNodeCfg = mod_pubsub_opt : default_node_config ( Opts ) ,
2017-08-08 16:46:26 +02:00
lists : foreach (
fun ( H ) - >
T = gen_mod : get_module_proc ( H , config ) ,
try
ets : new ( T , [ set , named_table ] ) ,
ets : insert ( T , { nodetree , NodeTree } ) ,
ets : insert ( T , { plugins , Plugins } ) ,
ets : insert ( T , { last_item_cache , LastItemCache } ) ,
ets : insert ( T , { max_items_node , MaxItemsNode } ) ,
ets : insert ( T , { max_subscriptions_node , MaxSubsNode } ) ,
ets : insert ( T , { default_node_config , DefaultNodeCfg } ) ,
ets : insert ( T , { pep_mapping , PepMapping } ) ,
ets : insert ( T , { ignore_pep_from_offline , PepOffline } ) ,
ets : insert ( T , { host , Host } ) ,
ets : insert ( T , { access , Access } )
catch error : badarg when H == ServerHost - >
ok
end
end , [ Host , ServerHost ] ) ,
gen_iq_handler : add_iq_handler ( ejabberd_local , Host , ? NS_DISCO_INFO ,
2018-02-11 10:54:15 +01:00
? MODULE , process_disco_info ) ,
2017-08-08 16:46:26 +02:00
gen_iq_handler : add_iq_handler ( ejabberd_local , Host , ? NS_DISCO_ITEMS ,
2018-02-11 10:54:15 +01:00
? MODULE , process_disco_items ) ,
2017-08-08 16:46:26 +02:00
gen_iq_handler : add_iq_handler ( ejabberd_local , Host , ? NS_PUBSUB ,
2018-02-11 10:54:15 +01:00
? MODULE , process_pubsub ) ,
2017-08-08 16:46:26 +02:00
gen_iq_handler : add_iq_handler ( ejabberd_local , Host , ? NS_PUBSUB_OWNER ,
2018-02-11 10:54:15 +01:00
? MODULE , process_pubsub_owner ) ,
2017-08-08 16:46:26 +02:00
gen_iq_handler : add_iq_handler ( ejabberd_local , Host , ? NS_VCARD ,
2018-02-11 10:54:15 +01:00
? MODULE , process_vcard ) ,
2017-08-08 16:46:26 +02:00
gen_iq_handler : add_iq_handler ( ejabberd_local , Host , ? NS_COMMANDS ,
2018-02-11 10:54:15 +01:00
? MODULE , process_commands ) ,
2017-08-08 16:46:26 +02:00
Plugins
end , Hosts ) ,
2017-12-05 23:10:12 +01:00
ejabberd_hooks : add ( c2s_self_presence , ServerHost ,
? MODULE , on_self_presence , 75 ) ,
2017-08-14 15:25:45 +02:00
ejabberd_hooks : add ( c2s_terminated , ServerHost ,
2015-04-08 17:12:05 +02:00
? MODULE , on_user_offline , 75 ) ,
2013-03-14 10:33:02 +01:00
ejabberd_hooks : add ( disco_local_identity , ServerHost ,
2015-04-08 17:12:05 +02:00
? MODULE , disco_local_identity , 75 ) ,
2013-03-14 10:33:02 +01:00
ejabberd_hooks : add ( disco_local_features , ServerHost ,
2015-04-08 17:12:05 +02:00
? MODULE , disco_local_features , 75 ) ,
2013-03-14 10:33:02 +01:00
ejabberd_hooks : add ( disco_local_items , ServerHost ,
2015-04-08 17:12:05 +02:00
? MODULE , disco_local_items , 75 ) ,
2013-03-14 10:33:02 +01:00
ejabberd_hooks : add ( presence_probe_hook , ServerHost ,
2015-04-08 17:12:05 +02:00
? MODULE , presence_probe , 80 ) ,
2013-03-14 10:33:02 +01:00
ejabberd_hooks : add ( roster_in_subscription , ServerHost ,
2015-04-08 17:12:05 +02:00
? MODULE , in_subscription , 50 ) ,
2013-03-14 10:33:02 +01:00
ejabberd_hooks : add ( roster_out_subscription , ServerHost ,
2015-04-08 17:12:05 +02:00
? MODULE , out_subscription , 50 ) ,
ejabberd_hooks : add ( remove_user , ServerHost ,
? MODULE , remove_user , 50 ) ,
2016-12-11 13:03:37 +01:00
ejabberd_hooks : add ( c2s_handle_info , ServerHost ,
? MODULE , c2s_handle_info , 50 ) ,
2017-08-08 16:46:26 +02:00
case lists : member ( ? PEPNODE , AllPlugins ) of
2015-04-08 17:12:05 +02:00
true - >
2015-07-07 00:24:06 +02:00
ejabberd_hooks : add ( caps_add , ServerHost ,
? MODULE , caps_add , 80 ) ,
2015-04-08 17:12:05 +02:00
ejabberd_hooks : add ( caps_update , ServerHost ,
? MODULE , caps_update , 80 ) ,
ejabberd_hooks : add ( disco_sm_identity , ServerHost ,
? MODULE , disco_sm_identity , 75 ) ,
ejabberd_hooks : add ( disco_sm_features , ServerHost ,
? MODULE , disco_sm_features , 75 ) ,
ejabberd_hooks : add ( disco_sm_items , ServerHost ,
? MODULE , disco_sm_items , 75 ) ,
gen_iq_handler : add_iq_handler ( ejabberd_sm , ServerHost ,
2018-02-11 10:54:15 +01:00
? NS_PUBSUB , ? MODULE , iq_sm ) ,
2015-04-08 17:12:05 +02:00
gen_iq_handler : add_iq_handler ( ejabberd_sm , ServerHost ,
2018-02-11 10:54:15 +01:00
? NS_PUBSUB_OWNER , ? MODULE , iq_sm ) ;
2015-04-08 17:12:05 +02:00
false - >
ok
2009-04-08 21:30:24 +02:00
end ,
2021-08-22 12:44:50 +02:00
ejabberd_commands : register_commands ( ? MODULE , get_commands_spec ( ) ) ,
2015-04-08 17:12:05 +02:00
NodeTree = config ( ServerHost , nodetree ) ,
Plugins = config ( ServerHost , plugins ) ,
PepMapping = config ( ServerHost , pep_mapping ) ,
2019-06-14 11:33:26 +02:00
DBType = mod_pubsub_opt : db_type ( ServerHost ) ,
2017-08-14 15:25:45 +02:00
{ ok , #state { hosts = Hosts , server_host = ServerHost ,
access = Access , pep_mapping = PepMapping ,
ignore_pep_from_offline = PepOffline ,
last_item_cache = LastItemCache ,
max_items_node = MaxItemsNode , nodetree = NodeTree ,
plugins = Plugins , db_type = DBType } } .
2015-04-08 17:12:05 +02:00
2019-06-14 11:33:26 +02:00
depends ( ServerHost , Opts ) - >
[ Host | _ ] = gen_mod : get_opt_hosts ( Opts ) ,
Plugins = mod_pubsub_opt : plugins ( Opts ) ,
Db = mod_pubsub_opt : db_type ( Opts ) ,
2016-07-06 13:58:48 +02:00
lists : flatmap (
fun ( Name ) - >
2019-06-14 11:33:26 +02:00
Plugin = plugin ( Db , Name ) ,
2016-07-06 13:58:48 +02:00
try apply ( Plugin , depends , [ Host , ServerHost , Opts ] )
catch _ : undef - > [ ]
end
end , Plugins ) .
2007-12-01 06:16:30 +01:00
%% @doc Call the init/1 function for each plugin declared in the config file.
%% The default plugin module is implicit.
%% <p>The Erlang code for the plugin is located in a module called
%% <em>node_plugin</em>. The 'node_' prefix is mandatory.</p>
2009-05-29 02:27:26 +02:00
%% <p>See {@link node_hometree:init/1} for an example implementation.</p>
2007-12-01 06:16:30 +01:00
init_plugins ( Host , ServerHost , Opts ) - >
2019-06-14 11:33:26 +02:00
TreePlugin = tree ( Host , mod_pubsub_opt : nodetree ( Opts ) ) ,
2007-12-01 06:16:30 +01:00
TreePlugin : init ( Host , ServerHost , Opts ) ,
2019-06-14 11:33:26 +02:00
Plugins = mod_pubsub_opt : plugins ( Opts ) ,
PepMapping = mod_pubsub_opt : pep_mapping ( Opts ) ,
2015-04-08 17:12:05 +02:00
PluginsOK = lists : foldl (
fun ( Name , Acc ) - >
Plugin = plugin ( Host , Name ) ,
2018-03-13 20:10:58 +01:00
apply ( Plugin , init , [ Host , ServerHost , Opts ] ) ,
[ Name | Acc ]
2015-04-08 17:12:05 +02:00
end ,
[ ] , Plugins ) ,
2010-11-09 14:32:40 +01:00
{ lists : reverse ( PluginsOK ) , TreePlugin , PepMapping } .
2007-12-01 06:16:30 +01:00
2015-04-08 17:12:05 +02:00
terminate_plugins ( Host , ServerHost , Plugins , TreePlugin ) - >
lists : foreach (
fun ( Name ) - >
Plugin = plugin ( Host , Name ) ,
Plugin : terminate ( Host , ServerHost )
end ,
Plugins ) ,
2007-12-01 06:16:30 +01:00
TreePlugin : terminate ( Host , ServerHost ) ,
ok .
%% -------
2007-12-11 17:19:17 +01:00
%% disco hooks handling functions
2007-12-01 06:16:30 +01:00
%%
2016-08-30 08:48:08 +02:00
- spec disco_local_identity ( [ identity ( ) ] , jid ( ) , jid ( ) ,
binary ( ) , binary ( ) ) - > [ identity ( ) ] .
2013-03-14 10:33:02 +01:00
disco_local_identity ( Acc , _ From , To , < < > > , _ Lang ) - >
2016-02-26 09:33:07 +01:00
case lists : member ( ? PEPNODE , plugins ( host ( To #jid.lserver ) ) ) of
2015-04-08 17:12:05 +02:00
true - >
2016-08-30 08:48:08 +02:00
[ #identity { category = < < " pubsub " > > , type = < < " pep " > > } | Acc ] ;
2015-04-08 17:12:05 +02:00
false - >
Acc
2010-08-02 17:07:23 +02:00
end ;
2007-12-01 06:16:30 +01:00
disco_local_identity ( Acc , _ From , _ To , _ Node , _ Lang ) - >
Acc .
2016-09-08 16:08:48 +02:00
- spec disco_local_features ( { error , stanza_error ( ) } | { result , [ binary ( ) ] } | empty ,
2016-08-30 08:48:08 +02:00
jid ( ) , jid ( ) , binary ( ) , binary ( ) ) - >
2016-09-08 16:08:48 +02:00
{ error , stanza_error ( ) } | { result , [ binary ( ) ] } | empty .
2013-03-14 10:33:02 +01:00
disco_local_features ( Acc , _ From , To , < < > > , _ Lang ) - >
2016-03-03 14:43:56 +01:00
Host = host ( To #jid.lserver ) ,
2007-12-11 17:19:17 +01:00
Feats = case Acc of
2015-04-08 17:12:05 +02:00
{ result , I } - > I ;
_ - > [ ]
end ,
2017-01-09 15:02:17 +01:00
{ result , Feats ++ [ ? NS_PUBSUB | [ feature ( F ) | | F < - features ( Host , < < > > ) ] ] } ;
2007-12-21 01:08:59 +01:00
disco_local_features ( Acc , _ From , _ To , _ Node , _ Lang ) - >
Acc .
2007-12-11 17:19:17 +01:00
2016-09-08 16:08:48 +02:00
- spec disco_local_items ( { error , stanza_error ( ) } | { result , [ disco_item ( ) ] } | empty ,
2016-08-30 08:48:08 +02:00
jid ( ) , jid ( ) , binary ( ) , binary ( ) ) - >
2016-09-08 16:08:48 +02:00
{ error , stanza_error ( ) } | { result , [ disco_item ( ) ] } | empty .
2013-03-14 10:33:02 +01:00
disco_local_items ( Acc , _ From , _ To , < < > > , _ Lang ) - > Acc ;
disco_local_items ( Acc , _ From , _ To , _ Node , _ Lang ) - > Acc .
2016-08-30 08:48:08 +02:00
- spec disco_sm_identity ( [ identity ( ) ] , jid ( ) , jid ( ) ,
binary ( ) , binary ( ) ) - > [ identity ( ) ] .
2007-12-01 06:16:30 +01:00
disco_sm_identity ( Acc , From , To , Node , _ Lang ) - >
2015-11-24 16:44:13 +01:00
disco_identity ( jid : tolower ( jid : remove_resource ( To ) ) , Node , From )
2015-04-08 17:12:05 +02:00
++ Acc .
2010-08-02 17:07:23 +02:00
2019-06-14 11:33:26 +02:00
- spec disco_identity ( host ( ) , binary ( ) , jid ( ) ) - > [ identity ( ) ] .
2010-08-02 17:07:23 +02:00
disco_identity ( _ Host , < < > > , _ From ) - >
2016-08-30 08:48:08 +02:00
[ #identity { category = < < " pubsub " > > , type = < < " pep " > > } ] ;
2010-08-02 17:07:23 +02:00
disco_identity ( Host , Node , From ) - >
2016-08-30 08:48:08 +02:00
Action =
fun ( #pubsub_node { id = Nidx , type = Type ,
options = Options , owners = O } ) - >
Owners = node_owners_call ( Host , Type , Nidx , O ) ,
case get_allowed_items_call ( Host , Nidx , From , Type ,
Options , Owners ) of
{ result , _ } - >
2017-08-03 15:48:23 +02:00
{ result , [ #identity { category = < < " pubsub " > > , type = < < " pep " > > } ,
#identity { category = < < " pubsub " > > , type = < < " leaf " > > ,
2017-10-25 11:48:56 +02:00
name = get_option ( Options , title , < < > > ) } ] } ;
2016-08-30 08:48:08 +02:00
_ - >
{ result , [ ] }
end
end ,
2010-08-02 17:07:23 +02:00
case transaction ( Host , Node , Action , sync_dirty ) of
2015-04-08 17:12:05 +02:00
{ result , { _ , Result } } - > Result ;
_ - > [ ]
2010-08-02 17:07:23 +02:00
end .
2007-12-01 06:16:30 +01:00
2016-09-08 16:08:48 +02:00
- spec disco_sm_features ( { error , stanza_error ( ) } | { result , [ binary ( ) ] } | empty ,
2016-08-30 08:48:08 +02:00
jid ( ) , jid ( ) , binary ( ) , binary ( ) ) - >
2016-09-08 16:08:48 +02:00
{ error , stanza_error ( ) } | { result , [ binary ( ) ] } .
2010-08-02 17:07:23 +02:00
disco_sm_features ( empty , From , To , Node , Lang ) - >
disco_sm_features ( { result , [ ] } , From , To , Node , Lang ) ;
disco_sm_features ( { result , OtherFeatures } = _ Acc , From , To , Node , _ Lang ) - >
{ result ,
2016-08-30 08:48:08 +02:00
OtherFeatures ++
disco_features ( jid : tolower ( jid : remove_resource ( To ) ) , Node , From ) } ;
2013-03-14 10:33:02 +01:00
disco_sm_features ( Acc , _ From , _ To , _ Node , _ Lang ) - > Acc .
2010-08-02 17:07:23 +02:00
2016-08-30 08:48:08 +02:00
- spec disco_features ( ljid ( ) , binary ( ) , jid ( ) ) - > [ binary ( ) ] .
2015-04-08 17:12:05 +02:00
disco_features ( Host , < < > > , _ From ) - >
[ ? NS_PUBSUB | [ feature ( F ) | | F < - plugin_features ( Host , < < " pep " > > ) ] ] ;
2010-08-02 17:07:23 +02:00
disco_features ( Host , Node , From ) - >
2016-08-30 08:48:08 +02:00
Action =
fun ( #pubsub_node { id = Nidx , type = Type ,
options = Options , owners = O } ) - >
Owners = node_owners_call ( Host , Type , Nidx , O ) ,
case get_allowed_items_call ( Host , Nidx , From ,
Type , Options , Owners ) of
{ result , _ } - >
{ result ,
2017-08-01 14:41:16 +02:00
[ ? NS_PUBSUB | [ feature ( F ) | | F < - plugin_features ( Host , < < " pep " > > ) ] ] } ;
2016-08-30 08:48:08 +02:00
_ - >
{ result , [ ] }
end
end ,
2010-08-02 17:07:23 +02:00
case transaction ( Host , Node , Action , sync_dirty ) of
2015-04-08 17:12:05 +02:00
{ result , { _ , Result } } - > Result ;
_ - > [ ]
2007-12-01 06:16:30 +01:00
end .
2016-09-08 16:08:48 +02:00
- spec disco_sm_items ( { error , stanza_error ( ) } | { result , [ disco_item ( ) ] } | empty ,
2016-08-30 08:48:08 +02:00
jid ( ) , jid ( ) , binary ( ) , binary ( ) ) - >
2016-09-08 16:08:48 +02:00
{ error , stanza_error ( ) } | { result , [ disco_item ( ) ] } .
2010-08-02 17:07:23 +02:00
disco_sm_items ( empty , From , To , Node , Lang ) - >
disco_sm_items ( { result , [ ] } , From , To , Node , Lang ) ;
disco_sm_items ( { result , OtherItems } , From , To , Node , _ Lang ) - >
2015-04-08 17:12:05 +02:00
{ result , lists : usort ( OtherItems ++
2015-11-24 16:44:13 +01:00
disco_items ( jid : tolower ( jid : remove_resource ( To ) ) , Node , From ) ) } ;
2013-03-14 10:33:02 +01:00
disco_sm_items ( Acc , _ From , _ To , _ Node , _ Lang ) - > Acc .
2016-08-30 08:48:08 +02:00
- spec disco_items ( ljid ( ) , binary ( ) , jid ( ) ) - > [ disco_item ( ) ] .
2010-08-02 17:07:23 +02:00
disco_items ( Host , < < > > , From ) - >
2019-10-24 13:59:47 +02:00
MaxNodes = mod_pubsub_opt : max_nodes_discoitems ( serverhost ( Host ) ) ,
2016-08-30 08:48:08 +02:00
Action =
fun ( #pubsub_node { nodeid = { _ , Node } , options = Options ,
type = Type , id = Nidx , owners = O } , Acc ) - >
Owners = node_owners_call ( Host , Type , Nidx , O ) ,
case get_allowed_items_call ( Host , Nidx , From ,
Type , Options , Owners ) of
{ result , _ } - >
[ #disco_item { node = Node ,
jid = jid : make ( Host ) ,
2017-10-25 11:48:56 +02:00
name = get_option ( Options , title , < < > > ) } | Acc ] ;
2016-08-30 08:48:08 +02:00
_ - >
Acc
end
end ,
2015-04-08 17:12:05 +02:00
NodeBloc = fun ( ) - >
2019-10-24 13:59:47 +02:00
case tree_call ( Host , get_nodes , [ Host , MaxNodes ] ) of
2019-07-29 16:13:16 +02:00
Nodes when is_list ( Nodes ) - >
{ result , lists : foldl ( Action , [ ] , Nodes ) } ;
Error - >
Error
end
2016-08-30 08:48:08 +02:00
end ,
2015-04-08 17:12:05 +02:00
case transaction ( Host , NodeBloc , sync_dirty ) of
{ result , Items } - > Items ;
_ - > [ ]
2007-12-01 06:16:30 +01:00
end ;
2010-08-02 17:07:23 +02:00
disco_items ( Host , Node , From ) - >
2016-08-30 08:48:08 +02:00
Action =
fun ( #pubsub_node { id = Nidx , type = Type ,
options = Options , owners = O } ) - >
Owners = node_owners_call ( Host , Type , Nidx , O ) ,
case get_allowed_items_call ( Host , Nidx , From ,
Type , Options , Owners ) of
{ result , Items } - >
{ result , [ #disco_item { jid = jid : make ( Host ) ,
name = ItemId }
| | #pubsub_item { itemid = { ItemId , _ } } < - Items ] } ;
_ - >
{ result , [ ] }
end
end ,
2009-04-30 07:18:06 +02:00
case transaction ( Host , Node , Action , sync_dirty ) of
2015-04-08 17:12:05 +02:00
{ result , { _ , Result } } - > Result ;
_ - > [ ]
2007-12-01 06:16:30 +01:00
end .
2007-12-11 17:19:17 +01:00
%% -------
2017-08-14 15:25:45 +02:00
%% presence and session hooks handling functions
2007-12-11 17:19:17 +01:00
%%
2007-12-01 06:16:30 +01:00
2016-08-09 09:56:32 +02:00
- spec caps_add ( jid ( ) , jid ( ) , [ binary ( ) ] ) - > ok .
2021-01-25 20:00:07 +01:00
caps_add ( JID , JID , Features ) - >
2017-12-13 18:59:06 +01:00
%% Send the owner his last PEP items.
2021-01-25 20:00:07 +01:00
send_last_pep ( JID , JID , Features ) ;
caps_add ( #jid { lserver = S1 } = From , #jid { lserver = S2 } = To , Features )
2017-08-14 15:25:45 +02:00
when S1 =/= S2 - >
2015-07-06 23:45:25 +02:00
%% When a remote contact goes online while the local user is offline, the
%% remote contact won't receive last items from the local user even if
%% ignore_pep_from_offline is set to false. To work around this issue a bit,
%% we'll also send the last items to remote contacts when the local user
2015-07-07 00:24:06 +02:00
%% connects. That's the reason to use the caps_add hook instead of the
2015-07-06 23:45:25 +02:00
%% presence_probe_hook for remote contacts: The latter is only called when a
2015-07-07 00:24:06 +02:00
%% contact becomes available; the former is also executed when the local
%% user goes online (because that triggers the contact to send a presence
%% packet with CAPS).
2021-01-25 20:00:07 +01:00
send_last_pep ( To , From , Features ) ;
2021-01-25 19:58:22 +01:00
caps_add ( _ From , _ To , _ Features ) - >
2014-05-05 17:35:38 +02:00
ok .
2016-08-09 09:56:32 +02:00
- spec caps_update ( jid ( ) , jid ( ) , [ binary ( ) ] ) - > ok .
2021-01-25 20:00:07 +01:00
caps_update ( From , To , Features ) - >
send_last_pep ( To , From , Features ) .
2015-07-07 00:24:06 +02:00
2016-08-09 09:56:32 +02:00
- spec presence_probe ( jid ( ) , jid ( ) , pid ( ) ) - > ok .
2014-05-05 17:35:38 +02:00
presence_probe ( #jid { luser = U , lserver = S } , #jid { luser = U , lserver = S } , _ Pid ) - >
2019-07-16 21:07:39 +02:00
%% ignore presence_probe from my other resources
2009-12-07 00:18:17 +01:00
ok ;
2017-08-14 15:25:45 +02:00
presence_probe ( #jid { lserver = S } = From , #jid { lserver = S } = To , _ Pid ) - >
2021-01-25 19:58:22 +01:00
send_last_pep ( To , From , unknown ) ;
2017-08-01 17:00:52 +02:00
presence_probe ( _ From , _ To , _ Pid ) - >
2017-08-14 15:25:45 +02:00
%% ignore presence_probe from remote contacts, those are handled via caps_add
2014-11-18 01:13:22 +01:00
ok .
2010-01-12 16:14:47 +01:00
2017-12-05 23:10:12 +01:00
- spec on_self_presence ( { presence ( ) , ejabberd_c2s : state ( ) } )
- > { presence ( ) , ejabberd_c2s : state ( ) } .
on_self_presence ( { _ , #{ pres_last : = _ } } = Acc ) - > % Just a presence update.
Acc ;
on_self_presence ( { #presence { type = available } , #{ jid : = JID } } = Acc ) - >
2017-08-14 15:25:45 +02:00
send_last_items ( JID ) ,
2017-12-05 23:10:12 +01:00
Acc ;
on_self_presence ( Acc ) - >
Acc .
2017-08-14 15:25:45 +02:00
- spec on_user_offline ( ejabberd_c2s : state ( ) , atom ( ) ) - > ejabberd_c2s : state ( ) .
on_user_offline ( #{ jid : = JID } = C2SState , _ Reason ) - >
2024-11-30 20:38:33 +01:00
purge_offline ( JID ) ,
2017-08-14 15:25:45 +02:00
C2SState ;
on_user_offline ( C2SState , _ Reason ) - >
C2SState .
2006-02-02 06:00:27 +01:00
2009-03-03 23:42:37 +01:00
%% -------
%% subscription hooks handling functions
%%
2009-03-10 11:35:57 +01:00
2018-01-26 13:02:06 +01:00
- spec out_subscription ( presence ( ) ) - > any ( ) .
out_subscription ( #presence { type = subscribed , from = From , to = To } ) - >
2019-07-22 10:13:27 +02:00
if From #jid.lserver == To #jid.lserver - >
2021-01-25 19:58:22 +01:00
send_last_pep ( jid : remove_resource ( From ) , To , unknown ) ;
2019-07-22 10:13:27 +02:00
true - >
ok
end ;
2018-01-26 13:02:06 +01:00
out_subscription ( _ ) - >
ok .
2013-03-14 10:33:02 +01:00
2018-01-26 13:02:06 +01:00
- spec in_subscription ( boolean ( ) , presence ( ) ) - > true .
in_subscription ( _ , #presence { to = To , from = Owner , type = unsubscribed } ) - >
unsubscribe_user ( jid : remove_resource ( To ) , Owner ) ,
2010-10-18 18:41:29 +02:00
true ;
2018-01-26 13:02:06 +01:00
in_subscription ( _ , _ ) - >
2015-04-08 17:12:05 +02:00
true .
2009-03-03 23:42:37 +01:00
2019-07-29 16:13:16 +02:00
- spec unsubscribe_user ( jid ( ) , jid ( ) ) - > ok .
2010-01-12 16:14:47 +01:00
unsubscribe_user ( Entity , Owner ) - >
2019-07-29 16:13:16 +02:00
lists : foreach (
fun ( ServerHost ) - >
unsubscribe_user ( ServerHost , Entity , Owner )
end ,
lists : usort (
lists : foldl (
fun ( UserHost , Acc ) - >
case gen_mod : is_loaded ( UserHost , mod_pubsub ) of
true - > [ UserHost | Acc ] ;
false - > Acc
end
end , [ ] , [ Entity #jid.lserver , Owner #jid.lserver ] ) ) ) .
- spec unsubscribe_user ( binary ( ) , jid ( ) , jid ( ) ) - > ok .
2015-05-26 19:19:57 +02:00
unsubscribe_user ( Host , Entity , Owner ) - >
2015-11-24 16:44:13 +01:00
BJID = jid : tolower ( jid : remove_resource ( Owner ) ) ,
2019-07-29 16:13:16 +02:00
lists : foreach (
fun ( PType ) - >
case node_action ( Host , PType ,
get_entity_subscriptions ,
[ Host , Entity ] ) of
{ result , Subs } - >
lists : foreach (
fun ( { #pubsub_node { options = Options ,
owners = O ,
id = Nidx } ,
subscribed , _ , JID } ) - >
Unsubscribe = match_option ( Options , access_model , presence )
andalso lists : member ( BJID , node_owners_action ( Host , PType , Nidx , O ) ) ,
case Unsubscribe of
true - >
node_action ( Host , PType ,
unsubscribe_node , [ Nidx , Entity , JID , all ] ) ;
false - >
ok
end ;
( _ ) - >
ok
end , Subs ) ;
_ - >
ok
end
end , plugins ( Host ) ) .
2010-01-12 16:14:47 +01:00
2007-12-18 15:45:26 +01:00
%% -------
%% user remove hook handling function
%%
2016-08-09 09:56:32 +02:00
- spec remove_user ( binary ( ) , binary ( ) ) - > ok .
2007-12-18 15:45:26 +01:00
remove_user ( User , Server ) - >
2015-11-24 16:44:13 +01:00
LUser = jid : nodeprep ( User ) ,
LServer = jid : nameprep ( Server ) ,
2017-02-25 08:01:01 +01:00
Entity = jid : make ( LUser , LServer ) ,
2010-01-12 16:14:47 +01:00
Host = host ( LServer ) ,
2013-03-14 10:33:02 +01:00
HomeTreeBase = < < " /home/ " , LServer / binary , " / " , LUser / binary > > ,
2019-07-29 16:13:16 +02:00
lists : foreach (
fun ( PType ) - >
case node_action ( Host , PType ,
get_entity_subscriptions ,
[ Host , Entity ] ) of
{ result , Subs } - >
lists : foreach (
fun ( { #pubsub_node { id = Nidx } , _ , _ , JID } ) - >
node_action ( Host , PType ,
2015-04-08 17:12:05 +02:00
unsubscribe_node ,
[ Nidx , Entity , JID , all ] ) ;
2019-07-29 16:13:16 +02:00
( _ ) - >
ok
end , Subs ) ,
case node_action ( Host , PType ,
get_entity_affiliations ,
[ Host , Entity ] ) of
{ result , Affs } - >
lists : foreach (
fun ( { #pubsub_node { nodeid = { H , N } , parents = [ ] } , owner } ) - >
2015-04-08 17:12:05 +02:00
delete_node ( H , N , Entity ) ;
2019-07-29 16:13:16 +02:00
( { #pubsub_node { nodeid = { H , N } , type = Type } , owner } )
when N == HomeTreeBase , Type == < < " hometree " > > - >
2015-04-08 17:12:05 +02:00
delete_node ( H , N , Entity ) ;
2019-07-29 16:13:16 +02:00
( { #pubsub_node { id = Nidx } , _ } ) - >
case node_action ( Host , PType ,
get_state ,
[ Nidx , jid : tolower ( Entity ) ] ) of
2021-03-25 14:32:24 +01:00
{ result , #pubsub_state { items = ItemIds } } - >
2019-07-29 16:13:16 +02:00
node_action ( Host , PType ,
remove_extra_items ,
[ Nidx , 0 , ItemIds ] ) ,
node_action ( Host , PType ,
set_affiliation ,
[ Nidx , Entity , none ] ) ;
_ - >
ok
end
end , Affs ) ;
_ - >
ok
end ;
_ - >
ok
end
end , plugins ( Host ) ) .
2013-03-14 10:33:02 +01:00
2007-12-01 06:16:30 +01:00
handle_call ( server_host , _ From , State ) - >
{ reply , State #state.server_host , State } ;
handle_call ( plugins , _ From , State ) - >
{ reply , State #state.plugins , State } ;
2008-09-25 19:26:06 +02:00
handle_call ( pep_mapping , _ From , State ) - >
{ reply , State #state.pep_mapping , State } ;
2007-12-01 06:16:30 +01:00
handle_call ( nodetree , _ From , State ) - >
{ reply , State #state.nodetree , State } ;
2006-02-02 06:00:27 +01:00
handle_call ( stop , _ From , State ) - >
2019-07-29 16:13:16 +02:00
{ stop , normal , ok , State } ;
handle_call ( Request , From , State ) - >
? WARNING_MSG ( " Unexpected call from ~p : ~p " , [ From , Request ] ) ,
{ noreply , State } .
2006-02-02 06:00:27 +01:00
2019-07-29 16:13:16 +02:00
handle_cast ( Msg , State ) - >
? WARNING_MSG ( " Unexpected cast: ~p " , [ Msg ] ) ,
{ noreply , State } .
2013-03-14 10:33:02 +01:00
2017-02-16 09:00:26 +01:00
handle_info ( { route , Packet } , State ) - >
2019-07-06 11:30:57 +02:00
try route ( Packet )
catch ? EX_RULE ( Class , Reason , St ) - >
StackTrace = ? EX_STACK ( St ) ,
2019-09-23 14:17:20 +02:00
? ERROR_MSG ( " Failed to route packet: ~n ~ ts ~n ** ~ ts " ,
2019-07-06 11:30:57 +02:00
[ xmpp : pp ( Packet ) ,
misc : format_exception ( 2 , Class , Reason , StackTrace ) ] )
2006-02-02 06:00:27 +01:00
end ,
{ noreply , State } ;
2019-07-29 16:13:16 +02:00
handle_info ( Info , State ) - >
? WARNING_MSG ( " Unexpected info: ~p " , [ Info ] ) ,
2013-06-14 00:04:25 +02:00
{ noreply , State } .
2013-03-14 10:33:02 +01:00
terminate ( _ Reason ,
2017-08-08 16:46:26 +02:00
#state { hosts = Hosts , server_host = ServerHost , nodetree = TreePlugin , plugins = Plugins } ) - >
2009-04-10 23:11:35 +02:00
case lists : member ( ? PEPNODE , Plugins ) of
2015-04-08 17:12:05 +02:00
true - >
2015-07-07 00:24:06 +02:00
ejabberd_hooks : delete ( caps_add , ServerHost ,
? MODULE , caps_add , 80 ) ,
2015-04-08 17:12:05 +02:00
ejabberd_hooks : delete ( caps_update , ServerHost ,
? MODULE , caps_update , 80 ) ,
ejabberd_hooks : delete ( disco_sm_identity , ServerHost ,
? MODULE , disco_sm_identity , 75 ) ,
ejabberd_hooks : delete ( disco_sm_features , ServerHost ,
? MODULE , disco_sm_features , 75 ) ,
ejabberd_hooks : delete ( disco_sm_items , ServerHost ,
? MODULE , disco_sm_items , 75 ) ,
gen_iq_handler : remove_iq_handler ( ejabberd_sm ,
ServerHost , ? NS_PUBSUB ) ,
gen_iq_handler : remove_iq_handler ( ejabberd_sm ,
ServerHost , ? NS_PUBSUB_OWNER ) ;
false - >
ok
2009-04-10 09:36:17 +02:00
end ,
2017-12-05 23:10:12 +01:00
ejabberd_hooks : delete ( c2s_self_presence , ServerHost ,
? MODULE , on_self_presence , 75 ) ,
2017-08-14 15:25:45 +02:00
ejabberd_hooks : delete ( c2s_terminated , ServerHost ,
2015-04-08 17:12:05 +02:00
? MODULE , on_user_offline , 75 ) ,
2013-03-14 10:33:02 +01:00
ejabberd_hooks : delete ( disco_local_identity , ServerHost ,
2015-04-08 17:12:05 +02:00
? MODULE , disco_local_identity , 75 ) ,
2013-03-14 10:33:02 +01:00
ejabberd_hooks : delete ( disco_local_features , ServerHost ,
2015-04-08 17:12:05 +02:00
? MODULE , disco_local_features , 75 ) ,
2013-03-14 10:33:02 +01:00
ejabberd_hooks : delete ( disco_local_items , ServerHost ,
2015-04-08 17:12:05 +02:00
? MODULE , disco_local_items , 75 ) ,
2013-03-14 10:33:02 +01:00
ejabberd_hooks : delete ( presence_probe_hook , ServerHost ,
2015-04-08 17:12:05 +02:00
? MODULE , presence_probe , 80 ) ,
ejabberd_hooks : delete ( roster_in_subscription , ServerHost ,
? MODULE , in_subscription , 50 ) ,
ejabberd_hooks : delete ( roster_out_subscription , ServerHost ,
? MODULE , out_subscription , 50 ) ,
ejabberd_hooks : delete ( remove_user , ServerHost ,
? MODULE , remove_user , 50 ) ,
2016-12-11 13:03:37 +01:00
ejabberd_hooks : delete ( c2s_handle_info , ServerHost ,
? MODULE , c2s_handle_info , 50 ) ,
2017-08-08 16:46:26 +02:00
lists : foreach (
fun ( Host ) - >
gen_iq_handler : remove_iq_handler ( ejabberd_local , Host , ? NS_DISCO_INFO ) ,
gen_iq_handler : remove_iq_handler ( ejabberd_local , Host , ? NS_DISCO_ITEMS ) ,
gen_iq_handler : remove_iq_handler ( ejabberd_local , Host , ? NS_PUBSUB ) ,
gen_iq_handler : remove_iq_handler ( ejabberd_local , Host , ? NS_PUBSUB_OWNER ) ,
gen_iq_handler : remove_iq_handler ( ejabberd_local , Host , ? NS_VCARD ) ,
gen_iq_handler : remove_iq_handler ( ejabberd_local , Host , ? NS_COMMANDS ) ,
terminate_plugins ( Host , ServerHost , Plugins , TreePlugin ) ,
ejabberd_router : unregister_route ( Host )
2021-08-22 12:44:50 +02:00
end , Hosts ) ,
case gen_mod : is_loaded_elsewhere ( ServerHost , ? MODULE ) of
false - >
ejabberd_commands : unregister_commands ( get_commands_spec ( ) ) ;
true - >
ok
end .
2013-06-14 00:04:25 +02:00
2006-02-02 06:00:27 +01:00
%%--------------------------------------------------------------------
%% Func: code_change(OldVsn, State, Extra) -> {ok, NewState}
%% Description: Convert process state when code is changed
%%--------------------------------------------------------------------
2007-12-01 06:16:30 +01:00
%% @private
2013-03-14 10:33:02 +01:00
code_change ( _ OldVsn , State , _ Extra ) - > { ok , State } .
2006-02-02 06:00:27 +01:00
%%--------------------------------------------------------------------
%%% Internal functions
%%--------------------------------------------------------------------
2016-08-30 08:48:08 +02:00
- spec process_disco_info ( iq ( ) ) - > iq ( ) .
process_disco_info ( #iq { type = set , lang = Lang } = IQ ) - >
2019-06-22 16:08:45 +02:00
Txt = ? T ( " Value 'set' of 'type' attribute is not allowed " ) ,
2016-08-30 08:48:08 +02:00
xmpp : make_error ( IQ , xmpp : err_not_allowed ( Txt , Lang ) ) ;
process_disco_info ( #iq { from = From , to = To , lang = Lang , type = get ,
sub_els = [ #disco_info { node = Node } ] } = IQ ) - >
Host = To #jid.lserver ,
ServerHost = ejabberd_router : host_of_route ( Host ) ,
Info = ejabberd_hooks : run_fold ( disco_info , ServerHost ,
[ ] ,
[ ServerHost , ? MODULE , < < > > , < < > > ] ) ,
2018-01-08 09:29:17 +01:00
case iq_disco_info ( ServerHost , Host , Node , From , Lang ) of
2016-08-30 08:48:08 +02:00
{ result , IQRes } - >
2017-10-25 10:34:11 +02:00
XData = IQRes #disco_info.xdata ++ Info ,
xmpp : make_iq_result ( IQ , IQRes #disco_info { node = Node , xdata = XData } ) ;
2016-08-30 08:48:08 +02:00
{ error , Error } - >
xmpp : make_error ( IQ , Error )
end .
- spec process_disco_items ( iq ( ) ) - > iq ( ) .
process_disco_items ( #iq { type = set , lang = Lang } = IQ ) - >
2019-06-22 16:08:45 +02:00
Txt = ? T ( " Value 'set' of 'type' attribute is not allowed " ) ,
2016-08-30 08:48:08 +02:00
xmpp : make_error ( IQ , xmpp : err_not_allowed ( Txt , Lang ) ) ;
process_disco_items ( #iq { type = get , from = From , to = To ,
sub_els = [ #disco_items { node = Node } = SubEl ] } = IQ ) - >
Host = To #jid.lserver ,
case iq_disco_items ( Host , Node , From , SubEl #disco_items.rsm ) of
{ result , IQRes } - >
xmpp : make_iq_result ( IQ , IQRes #disco_items { node = Node } ) ;
{ error , Error } - >
xmpp : make_error ( IQ , Error )
end .
- spec process_pubsub ( iq ( ) ) - > iq ( ) .
process_pubsub ( #iq { to = To } = IQ ) - >
Host = To #jid.lserver ,
ServerHost = ejabberd_router : host_of_route ( Host ) ,
Access = config ( ServerHost , access ) ,
case iq_pubsub ( Host , Access , IQ ) of
{ result , IQRes } - >
xmpp : make_iq_result ( IQ , IQRes ) ;
{ error , Error } - >
xmpp : make_error ( IQ , Error )
end .
- spec process_pubsub_owner ( iq ( ) ) - > iq ( ) .
process_pubsub_owner ( #iq { to = To } = IQ ) - >
Host = To #jid.lserver ,
case iq_pubsub_owner ( Host , IQ ) of
{ result , IQRes } - >
xmpp : make_iq_result ( IQ , IQRes ) ;
{ error , Error } - >
xmpp : make_error ( IQ , Error )
end .
- spec process_vcard ( iq ( ) ) - > iq ( ) .
2019-08-02 12:55:48 +02:00
process_vcard ( #iq { type = get , to = To , lang = Lang } = IQ ) - >
ServerHost = ejabberd_router : host_of_route ( To #jid.lserver ) ,
xmpp : make_iq_result ( IQ , iq_get_vcard ( ServerHost , Lang ) ) ;
2016-08-30 08:48:08 +02:00
process_vcard ( #iq { type = set , lang = Lang } = IQ ) - >
2019-06-22 16:08:45 +02:00
Txt = ? T ( " Value 'set' of 'type' attribute is not allowed " ) ,
2016-08-30 08:48:08 +02:00
xmpp : make_error ( IQ , xmpp : err_not_allowed ( Txt , Lang ) ) .
- spec process_commands ( iq ( ) ) - > iq ( ) .
process_commands ( #iq { type = set , to = To , from = From ,
sub_els = [ #adhoc_command { } = Request ] } = IQ ) - >
Host = To #jid.lserver ,
ServerHost = ejabberd_router : host_of_route ( Host ) ,
Plugins = config ( ServerHost , plugins ) ,
Access = config ( ServerHost , access ) ,
case adhoc_request ( Host , ServerHost , From , Request , Access , Plugins ) of
{ error , Error } - >
xmpp : make_error ( IQ , Error ) ;
Response - >
xmpp : make_iq_result (
IQ , xmpp_util : make_adhoc_response ( Request , Response ) )
end ;
process_commands ( #iq { type = get , lang = Lang } = IQ ) - >
2019-06-22 16:08:45 +02:00
Txt = ? T ( " Value 'get' of 'type' attribute is not allowed " ) ,
2016-08-30 08:48:08 +02:00
xmpp : make_error ( IQ , xmpp : err_not_allowed ( Txt , Lang ) ) .
2019-07-06 11:30:57 +02:00
- spec route ( stanza ( ) ) - > ok .
route ( #iq { to = To } = IQ ) when To #jid.lresource == < < " " > > - >
ejabberd_router : process_iq ( IQ ) ;
route ( Packet ) - >
2017-02-16 09:00:26 +01:00
To = xmpp : get_to ( Packet ) ,
2003-07-08 22:11:27 +02:00
case To of
2015-04-08 17:12:05 +02:00
#jid { luser = < < > > , lresource = < < > > } - >
2016-08-30 08:48:08 +02:00
case Packet of
#message { type = T } when T / = error - >
case find_authorization_response ( Packet ) of
undefined - >
2015-04-08 17:12:05 +02:00
ok ;
2016-10-07 09:31:03 +02:00
{ error , Err } - >
2017-02-16 09:00:26 +01:00
ejabberd_router : route_error ( Packet , Err ) ;
2016-10-07 09:31:03 +02:00
AuthResponse - >
handle_authorization_response (
2019-07-06 11:30:57 +02:00
To #jid.lserver , Packet , AuthResponse )
2015-04-08 17:12:05 +02:00
end ;
_ - >
2016-08-30 08:48:08 +02:00
Err = xmpp : err_service_unavailable ( ) ,
2017-02-16 09:00:26 +01:00
ejabberd_router : route_error ( Packet , Err )
2015-04-08 17:12:05 +02:00
end ;
_ - >
2016-08-30 08:48:08 +02:00
Err = xmpp : err_item_not_found ( ) ,
2017-02-16 09:00:26 +01:00
ejabberd_router : route_error ( Packet , Err )
2003-07-08 22:11:27 +02:00
end .
2016-08-30 08:48:08 +02:00
- spec command_disco_info ( binary ( ) , binary ( ) , jid ( ) ) - > { result , disco_info ( ) } .
2013-03-14 10:33:02 +01:00
command_disco_info ( _ Host , ? NS_COMMANDS , _ From ) - >
2016-08-30 08:48:08 +02:00
{ result , #disco_info { identities = [ #identity { category = < < " automation " > > ,
type = < < " command-list " > > } ] } } ;
2015-04-08 17:12:05 +02:00
command_disco_info ( _ Host , ? NS_PUBSUB_GET_PENDING , _ From ) - >
2016-08-30 08:48:08 +02:00
{ result , #disco_info { identities = [ #identity { category = < < " automation " > > ,
type = < < " command-node " > > } ] ,
features = [ ? NS_COMMANDS ] } } .
2009-11-04 20:54:15 +01:00
2016-08-30 08:48:08 +02:00
- spec node_disco_info ( binary ( ) , binary ( ) , jid ( ) ) - > { result , disco_info ( ) } |
2016-09-08 16:08:48 +02:00
{ error , stanza_error ( ) } .
2007-12-01 06:16:30 +01:00
node_disco_info ( Host , Node , From ) - >
node_disco_info ( Host , Node , From , true , true ) .
2013-03-14 10:33:02 +01:00
2016-08-30 08:48:08 +02:00
- spec node_disco_info ( binary ( ) , binary ( ) , jid ( ) , boolean ( ) , boolean ( ) ) - >
2016-09-08 16:08:48 +02:00
{ result , disco_info ( ) } | { error , stanza_error ( ) } .
2015-04-21 15:02:20 +02:00
node_disco_info ( Host , Node , _ From , _ Identity , _ Features ) - >
2016-08-30 08:48:08 +02:00
Action =
2017-10-25 10:34:11 +02:00
fun ( #pubsub_node { id = Nidx , type = Type , options = Options } ) - >
2016-08-30 08:48:08 +02:00
NodeType = case get_option ( Options , node_type ) of
collection - > < < " collection " > > ;
_ - > < < " leaf " > >
end ,
2017-10-25 10:34:11 +02:00
Affs = case node_call ( Host , Type , get_node_affiliations , [ Nidx ] ) of
2017-11-30 15:27:34 +01:00
{ result , As } - > As ;
_ - > [ ]
end ,
Subs = case node_call ( Host , Type , get_node_subscriptions , [ Nidx ] ) of
{ result , Ss } - > Ss ;
2017-10-25 10:34:11 +02:00
_ - > [ ]
end ,
Meta = [ { title , get_option ( Options , title , < < > > ) } ,
2022-10-07 13:43:23 +02:00
{ type , get_option ( Options , type , < < > > ) } ,
2017-10-25 10:34:11 +02:00
{ description , get_option ( Options , description , < < > > ) } ,
2017-10-26 09:29:23 +02:00
{ owner , [ jid : make ( LJID ) | | { LJID , Aff } < - Affs , Aff =:= owner ] } ,
{ publisher , [ jid : make ( LJID ) | | { LJID , Aff } < - Affs , Aff =:= publisher ] } ,
2019-07-30 09:45:32 +02:00
{ access_model , get_option ( Options , access_model , open ) } ,
{ publish_model , get_option ( Options , publish_model , publishers ) } ,
2017-11-30 15:27:34 +01:00
{ num_subscribers , length ( Subs ) } ] ,
2017-10-25 10:34:11 +02:00
XData = #xdata { type = result ,
fields = pubsub_meta_data : encode ( Meta ) } ,
2016-08-30 08:48:08 +02:00
Is = [ #identity { category = < < " pubsub " > > , type = NodeType } ] ,
Fs = [ ? NS_PUBSUB | [ feature ( F ) | | F < - plugin_features ( Host , Type ) ] ] ,
2017-10-25 10:34:11 +02:00
{ result , #disco_info { identities = Is , features = Fs , xdata = [ XData ] } }
2016-08-30 08:48:08 +02:00
end ,
2009-04-30 07:18:06 +02:00
case transaction ( Host , Node , Action , sync_dirty ) of
2015-04-08 17:12:05 +02:00
{ result , { _ , Result } } - > { result , Result } ;
Other - > Other
2009-04-30 07:18:06 +02:00
end .
2003-07-08 22:11:27 +02:00
2018-01-08 09:29:17 +01:00
- spec iq_disco_info ( binary ( ) , binary ( ) , binary ( ) , jid ( ) , binary ( ) )
2016-09-08 16:08:48 +02:00
- > { result , disco_info ( ) } | { error , stanza_error ( ) } .
2018-01-08 09:29:17 +01:00
iq_disco_info ( ServerHost , Host , SNode , From , Lang ) - >
2013-03-14 10:33:02 +01:00
[ Node | _ ] = case SNode of
2016-08-30 08:48:08 +02:00
< < > > - > [ < < > > ] ;
_ - > str : tokens ( SNode , < < " ! " > > )
end ,
2003-07-08 22:11:27 +02:00
case Node of
2015-04-08 17:12:05 +02:00
< < > > - >
2019-06-14 11:33:26 +02:00
Name = mod_pubsub_opt : name ( ServerHost ) ,
2016-08-30 08:48:08 +02:00
{ result ,
#disco_info {
identities = [ #identity {
category = < < " pubsub " > > ,
type = < < " service " > > ,
2018-01-08 09:29:17 +01:00
name = translate : translate ( Lang , Name ) } ] ,
2016-08-30 08:48:08 +02:00
features = [ ? NS_DISCO_INFO ,
? NS_DISCO_ITEMS ,
? NS_PUBSUB ,
? NS_COMMANDS ,
? NS_VCARD |
[ feature ( F ) | | F < - features ( Host , Node ) ] ] } } ;
2015-04-08 17:12:05 +02:00
? NS_COMMANDS - >
command_disco_info ( Host , Node , From ) ;
? NS_PUBSUB_GET_PENDING - >
command_disco_info ( Host , Node , From ) ;
_ - >
node_disco_info ( Host , Node , From )
2013-03-14 10:33:02 +01:00
end .
2016-08-30 08:48:08 +02:00
- spec iq_disco_items ( host ( ) , binary ( ) , jid ( ) , undefined | rsm_set ( ) ) - >
2016-09-08 16:08:48 +02:00
{ result , disco_items ( ) } | { error , stanza_error ( ) } .
2019-10-24 13:59:47 +02:00
iq_disco_items ( Host , < < > > , _ From , _ RSM ) - >
MaxNodes = mod_pubsub_opt : max_nodes_discoitems ( serverhost ( Host ) ) ,
case tree_action ( Host , get_subnodes , [ Host , < < > > , MaxNodes ] ) of
2019-07-29 16:13:16 +02:00
{ error , #stanza_error { } } = Err - >
Err ;
Nodes when is_list ( Nodes ) - >
Items =
lists : map (
fun ( #pubsub_node { nodeid = { _ , SubNode } , options = Options } ) - >
case get_option ( Options , title ) of
false - >
#disco_item { jid = jid : make ( Host ) ,
node = SubNode } ;
Title - >
#disco_item { jid = jid : make ( Host ) ,
name = Title ,
node = SubNode }
end
end , Nodes ) ,
{ result , #disco_items { items = Items } }
end ;
2015-04-08 17:12:05 +02:00
iq_disco_items ( Host , ? NS_COMMANDS , _ From , _ RSM ) - >
2016-08-30 08:48:08 +02:00
{ result ,
#disco_items { items = [ #disco_item { jid = jid : make ( Host ) ,
node = ? NS_PUBSUB_GET_PENDING ,
2019-06-22 16:08:45 +02:00
name = ? T ( " Get Pending " ) } ] } } ;
2015-04-08 17:12:05 +02:00
iq_disco_items ( _ Host , ? NS_PUBSUB_GET_PENDING , _ From , _ RSM ) - >
2016-08-30 08:48:08 +02:00
{ result , #disco_items { } } ;
2015-04-08 17:12:05 +02:00
iq_disco_items ( Host , Item , From , RSM ) - >
2013-03-14 10:33:02 +01:00
case str : tokens ( Item , < < " ! " > > ) of
2015-04-08 17:12:05 +02:00
[ _ Node , _ ItemId ] - >
2016-08-30 08:48:08 +02:00
{ result , #disco_items { } } ;
2015-04-08 17:12:05 +02:00
[ Node ] - >
2019-10-24 13:59:47 +02:00
MaxNodes = mod_pubsub_opt : max_nodes_discoitems ( serverhost ( Host ) ) ,
2019-07-29 16:13:16 +02:00
Action = fun ( #pubsub_node { id = Nidx , type = Type , options = Options , owners = O } ) - >
Owners = node_owners_call ( Host , Type , Nidx , O ) ,
{ NodeItems , RsmOut } = case get_allowed_items_call (
Host , Nidx , From , Type , Options , Owners , RSM ) of
{ result , R } - > R ;
_ - > { [ ] , undefined }
end ,
2019-10-24 13:59:47 +02:00
case tree_call ( Host , get_subnodes , [ Host , Node , MaxNodes ] ) of
2019-07-29 16:13:16 +02:00
SubNodes when is_list ( SubNodes ) - >
Nodes = lists : map (
fun ( #pubsub_node { nodeid = { _ , SubNode } , options = SubOptions } ) - >
case get_option ( SubOptions , title ) of
false - >
#disco_item { jid = jid : make ( Host ) ,
node = SubNode } ;
Title - >
#disco_item { jid = jid : make ( Host ) ,
name = Title ,
node = SubNode }
end
end , SubNodes ) ,
Items = lists : flatmap (
fun ( #pubsub_item { itemid = { RN , _ } } ) - >
case node_call ( Host , Type , get_item_name , [ Host , Node , RN ] ) of
{ result , Name } - >
[ #disco_item { jid = jid : make ( Host ) , name = Name } ] ;
_ - >
[ ]
end
end , NodeItems ) ,
{ result , #disco_items { items = Nodes ++ Items ,
rsm = RsmOut } } ;
Error - >
Error
end
end ,
2015-04-08 17:12:05 +02:00
case transaction ( Host , Node , Action , sync_dirty ) of
{ result , { _ , Result } } - > { result , Result } ;
Other - > Other
end
2003-07-08 22:11:27 +02:00
end .
2016-08-30 08:48:08 +02:00
- spec iq_sm ( iq ( ) ) - > iq ( ) .
iq_sm ( #iq { to = To , sub_els = [ SubEl ] } = IQ ) - >
2015-11-24 16:44:13 +01:00
LOwner = jid : tolower ( jid : remove_resource ( To ) ) ,
2016-08-30 08:48:08 +02:00
Res = case xmpp : get_ns ( SubEl ) of
? NS_PUBSUB - >
iq_pubsub ( LOwner , all , IQ ) ;
? NS_PUBSUB_OWNER - >
iq_pubsub_owner ( LOwner , IQ )
end ,
2007-12-01 06:16:30 +01:00
case Res of
2016-08-30 08:48:08 +02:00
{ result , IQRes } - >
xmpp : make_iq_result ( IQ , IQRes ) ;
{ error , Error } - >
xmpp : make_error ( IQ , Error )
2007-12-01 06:16:30 +01:00
end .
2003-07-08 22:11:27 +02:00
2019-08-02 12:55:48 +02:00
- spec iq_get_vcard ( binary ( ) , binary ( ) ) - > vcard_temp ( ) .
iq_get_vcard ( ServerHost , Lang ) - >
case mod_pubsub_opt : vcard ( ServerHost ) of
undefined - >
Desc = misc : get_descr ( Lang , ? T ( " ejabberd Publish-Subscribe module " ) ) ,
#vcard_temp { fn = < < " ejabberd/mod_pubsub " > > ,
url = ejabberd_config : get_uri ( ) ,
desc = Desc } ;
VCard - >
VCard
end .
2016-08-30 08:48:08 +02:00
- spec iq_pubsub ( binary ( ) | ljid ( ) , atom ( ) , iq ( ) ) - >
2016-09-08 16:08:48 +02:00
{ result , pubsub ( ) } | { error , stanza_error ( ) } .
2016-08-30 08:48:08 +02:00
iq_pubsub ( Host , Access , #iq { from = From , type = IQType , lang = Lang ,
sub_els = [ SubEl ] } ) - >
case { IQType , SubEl } of
2016-09-08 14:49:27 +02:00
{ set , #pubsub { create = Node , configure = Configure ,
2016-08-30 08:48:08 +02:00
_ = undefined } } when is_binary ( Node ) - >
ServerHost = serverhost ( Host ) ,
Plugins = config ( ServerHost , plugins ) ,
2016-09-08 14:49:27 +02:00
Config = case Configure of
2016-10-07 09:31:03 +02:00
{ _ , XData } - > decode_node_config ( XData , Host , Lang ) ;
2016-09-08 14:49:27 +02:00
undefined - > [ ]
end ,
2016-08-30 08:48:08 +02:00
Type = hd ( Plugins ) ,
2016-10-07 09:31:03 +02:00
case Config of
{ error , _ } = Err - >
Err ;
_ - >
create_node ( Host , ServerHost , Node , From , Type , Access , Config )
end ;
2016-08-30 08:48:08 +02:00
{ set , #pubsub { publish = #ps_publish { node = Node , items = Items } ,
2017-03-27 16:24:24 +02:00
publish_options = XData , configure = _ , _ = undefined } } - >
2016-08-30 08:48:08 +02:00
ServerHost = serverhost ( Host ) ,
case Items of
2018-01-25 18:02:47 +01:00
[ #ps_item { id = ItemId , sub_els = Payload } ] - >
2016-10-07 09:31:03 +02:00
case decode_publish_options ( XData , Lang ) of
{ error , _ } = Err - >
Err ;
PubOpts - >
publish_item ( Host , ServerHost , Node , From , ItemId ,
Payload , PubOpts , Access )
end ;
2016-08-30 08:48:08 +02:00
[ ] - >
2018-03-16 17:17:53 +01:00
publish_item ( Host , ServerHost , Node , From , < < > > , [ ] , [ ] , Access ) ;
2015-04-08 17:12:05 +02:00
_ - >
2016-08-30 08:48:08 +02:00
{ error , extended_error ( xmpp : err_bad_request ( ) , err_invalid_payload ( ) ) }
2015-04-08 17:12:05 +02:00
end ;
2016-08-30 08:48:08 +02:00
{ set , #pubsub { retract = #ps_retract { node = Node , notify = Notify , items = Items } ,
_ = undefined } } - >
case Items of
[ #ps_item { id = ItemId } ] - >
2016-09-08 14:49:27 +02:00
if ItemId / = < < > > - >
delete_item ( Host , Node , From , ItemId , Notify ) ;
true - >
{ error , extended_error ( xmpp : err_bad_request ( ) ,
err_item_required ( ) ) }
end ;
2016-08-30 08:48:08 +02:00
[ ] - >
{ error , extended_error ( xmpp : err_bad_request ( ) , err_item_required ( ) ) } ;
2015-04-08 17:12:05 +02:00
_ - >
2016-08-30 08:48:08 +02:00
{ error , extended_error ( xmpp : err_bad_request ( ) , err_invalid_payload ( ) ) }
2015-04-08 17:12:05 +02:00
end ;
2016-08-30 08:48:08 +02:00
{ set , #pubsub { subscribe = #ps_subscribe { node = Node , jid = JID } ,
options = Options , _ = undefined } } - >
Config = case Options of
2018-07-13 20:15:17 +02:00
#ps_options { xdata = XData , jid = undefined , node = < < > > } - >
2016-10-07 09:31:03 +02:00
decode_subscribe_options ( XData , Lang ) ;
2018-07-14 15:52:09 +02:00
#ps_options { xdata = _ XData , jid = #jid { } } - >
2019-06-22 16:08:45 +02:00
Txt = ? T ( " Attribute 'jid' is not allowed here " ) ,
2018-07-13 20:15:17 +02:00
{ error , xmpp : err_bad_request ( Txt , Lang ) } ;
2018-07-14 15:52:09 +02:00
#ps_options { xdata = _ XData } - >
2019-06-22 16:08:45 +02:00
Txt = ? T ( " Attribute 'node' is not allowed here " ) ,
2018-07-13 20:15:17 +02:00
{ error , xmpp : err_bad_request ( Txt , Lang ) } ;
2016-10-07 09:31:03 +02:00
_ - >
[ ]
2016-08-30 08:48:08 +02:00
end ,
2016-10-07 09:31:03 +02:00
case Config of
{ error , _ } = Err - >
Err ;
_ - >
subscribe_node ( Host , Node , From , JID , Config )
end ;
2016-08-30 08:48:08 +02:00
{ set , #pubsub { unsubscribe = #ps_unsubscribe { node = Node , jid = JID , subid = SubId } ,
_ = undefined } } - >
unsubscribe_node ( Host , Node , From , JID , SubId ) ;
{ get , #pubsub { items = #ps_items { node = Node ,
max_items = MaxItems ,
subid = SubId ,
items = Items } ,
rsm = RSM , _ = undefined } } - >
ItemIds = [ ItemId | | #ps_item { id = ItemId } < - Items , ItemId / = < < > > ] ,
get_items ( Host , Node , From , SubId , MaxItems , ItemIds , RSM ) ;
{ get , #pubsub { subscriptions = { Node , _ } , _ = undefined } } - >
Plugins = config ( serverhost ( Host ) , plugins ) ,
get_subscriptions ( Host , Node , From , Plugins ) ;
{ get , #pubsub { affiliations = { Node , _ } , _ = undefined } } - >
Plugins = config ( serverhost ( Host ) , plugins ) ,
get_affiliations ( Host , Node , From , Plugins ) ;
2018-07-13 20:15:17 +02:00
{ _ , #pubsub { options = #ps_options { jid = undefined } , _ = undefined } } - >
2018-07-14 15:52:09 +02:00
{ error , extended_error ( xmpp : err_bad_request ( ) , err_jid_required ( ) ) } ;
2018-07-13 20:15:17 +02:00
{ _ , #pubsub { options = #ps_options { node = < < > > } , _ = undefined } } - >
2018-07-14 15:52:09 +02:00
{ error , extended_error ( xmpp : err_bad_request ( ) , err_nodeid_required ( ) ) } ;
2016-08-30 08:48:08 +02:00
{ get , #pubsub { options = #ps_options { node = Node , subid = SubId , jid = JID } ,
_ = undefined } } - >
get_options ( Host , Node , JID , SubId , Lang ) ;
{ set , #pubsub { options = #ps_options { node = Node , subid = SubId ,
jid = JID , xdata = XData } ,
_ = undefined } } - >
2016-10-07 09:31:03 +02:00
case decode_subscribe_options ( XData , Lang ) of
{ error , _ } = Err - >
Err ;
Config - >
set_options ( Host , Node , JID , SubId , Config )
end ;
2016-09-08 14:49:27 +02:00
{ set , #pubsub { } } - >
{ error , xmpp : err_bad_request ( ) } ;
2015-04-08 17:12:05 +02:00
_ - >
2016-08-30 08:48:08 +02:00
{ error , xmpp : err_feature_not_implemented ( ) }
2003-07-08 22:11:27 +02:00
end .
2016-09-08 14:49:27 +02:00
- spec iq_pubsub_owner ( binary ( ) | ljid ( ) , iq ( ) ) - > { result , pubsub_owner ( ) | undefined } |
2016-09-08 16:08:48 +02:00
{ error , stanza_error ( ) } .
2016-08-30 08:48:08 +02:00
iq_pubsub_owner ( Host , #iq { type = IQType , from = From ,
lang = Lang , sub_els = [ SubEl ] } ) - >
case { IQType , SubEl } of
{ get , #pubsub_owner { configure = { Node , undefined } , _ = undefined } } - >
ServerHost = serverhost ( Host ) ,
get_configure ( Host , ServerHost , Node , From , Lang ) ;
{ set , #pubsub_owner { configure = { Node , XData } , _ = undefined } } - >
case XData of
undefined - >
2019-06-22 16:08:45 +02:00
{ error , xmpp : err_bad_request ( ? T ( " No data form found " ) , Lang ) } ;
2016-08-30 08:48:08 +02:00
#xdata { type = cancel } - >
2016-09-08 14:49:27 +02:00
{ result , #pubsub_owner { } } ;
2016-08-30 08:48:08 +02:00
#xdata { type = submit } - >
2016-10-07 09:31:03 +02:00
case decode_node_config ( XData , Host , Lang ) of
{ error , _ } = Err - >
Err ;
Config - >
set_configure ( Host , Node , From , Config , Lang )
end ;
2016-08-30 08:48:08 +02:00
#xdata { } - >
2019-06-22 16:08:45 +02:00
{ error , xmpp : err_bad_request ( ? T ( " Incorrect data form " ) , Lang ) }
2015-04-08 17:12:05 +02:00
end ;
2016-08-30 08:48:08 +02:00
{ get , #pubsub_owner { default = { Node , undefined } , _ = undefined } } - >
get_default ( Host , Node , From , Lang ) ;
{ set , #pubsub_owner { delete = { Node , _ } , _ = undefined } } - >
delete_node ( Host , Node , From ) ;
{ set , #pubsub_owner { purge = Node , _ = undefined } } when Node / = undefined - >
purge_node ( Host , Node , From ) ;
{ get , #pubsub_owner { subscriptions = { Node , [ ] } , _ = undefined } } - >
get_subscriptions ( Host , Node , From ) ;
{ set , #pubsub_owner { subscriptions = { Node , Subs } , _ = undefined } } - >
set_subscriptions ( Host , Node , From , Subs ) ;
{ get , #pubsub_owner { affiliations = { Node , [ ] } , _ = undefined } } - >
get_affiliations ( Host , Node , From ) ;
{ set , #pubsub_owner { affiliations = { Node , Affs } , _ = undefined } } - >
set_affiliations ( Host , Node , From , Affs ) ;
{ _ , #pubsub_owner { } } - >
{ error , xmpp : err_bad_request ( ) } ;
_ - >
{ error , xmpp : err_feature_not_implemented ( ) }
2009-07-20 10:53:56 +02:00
end .
2016-08-30 08:48:08 +02:00
- spec adhoc_request ( binary ( ) , binary ( ) , jid ( ) , adhoc_command ( ) ,
2016-09-08 16:08:48 +02:00
atom ( ) , [ binary ( ) ] ) - > adhoc_command ( ) | { error , stanza_error ( ) } .
2009-07-20 10:53:56 +02:00
adhoc_request ( Host , _ ServerHost , Owner ,
2016-08-30 08:48:08 +02:00
#adhoc_command { node = ? NS_PUBSUB_GET_PENDING , lang = Lang ,
action = execute , xdata = undefined } ,
_ Access , Plugins ) - >
2009-07-20 10:53:56 +02:00
send_pending_node_form ( Host , Owner , Lang , Plugins ) ;
adhoc_request ( Host , _ ServerHost , Owner ,
2016-08-30 08:48:08 +02:00
#adhoc_command { node = ? NS_PUBSUB_GET_PENDING , lang = Lang ,
2016-10-07 09:31:03 +02:00
action = execute , xdata = #xdata { } = XData } = Request ,
2016-08-30 08:48:08 +02:00
_ Access , _ Plugins ) - >
2016-10-07 09:31:03 +02:00
case decode_get_pending ( XData , Lang ) of
{ error , _ } = Err - >
Err ;
Config - >
Node = proplists : get_value ( node , Config ) ,
case send_pending_auth_events ( Host , Node , Owner , Lang ) of
ok - >
xmpp_util : make_adhoc_response (
2019-06-14 11:33:26 +02:00
Request , #adhoc_command { status = completed } ) ;
2016-10-07 09:31:03 +02:00
Err - >
Err
end
2009-07-20 10:53:56 +02:00
end ;
2013-03-14 10:33:02 +01:00
adhoc_request ( _ Host , _ ServerHost , _ Owner ,
2016-08-30 08:48:08 +02:00
#adhoc_command { action = cancel } , _ Access , _ Plugins ) - >
#adhoc_command { status = canceled } ;
2015-04-08 17:12:05 +02:00
adhoc_request ( _ Host , _ ServerHost , _ Owner , Other , _ Access , _ Plugins ) - >
2009-07-20 10:53:56 +02:00
? DEBUG ( " Couldn't process ad hoc command: ~n ~p " , [ Other ] ) ,
2016-08-30 08:48:08 +02:00
{ error , xmpp : err_item_not_found ( ) } .
2009-07-20 10:53:56 +02:00
2016-08-30 08:48:08 +02:00
- spec send_pending_node_form ( binary ( ) , jid ( ) , binary ( ) ,
2016-09-08 16:08:48 +02:00
[ binary ( ) ] ) - > adhoc_command ( ) | { error , stanza_error ( ) } .
2017-03-20 07:57:11 +01:00
send_pending_node_form ( Host , Owner , Lang , Plugins ) - >
2015-04-08 17:12:05 +02:00
Filter = fun ( Type ) - >
lists : member ( < < " get-pending " > > , plugin_features ( Host , Type ) )
end ,
2009-07-20 10:53:56 +02:00
case lists : filter ( Filter , Plugins ) of
2015-04-08 17:12:05 +02:00
[ ] - >
2016-08-30 08:48:08 +02:00
Err = extended_error ( xmpp : err_feature_not_implemented ( ) ,
err_unsupported ( 'get-pending' ) ) ,
2016-04-05 12:09:44 +02:00
{ error , Err } ;
2015-04-08 17:12:05 +02:00
Ps - >
2016-08-30 08:48:08 +02:00
case get_pending_nodes ( Host , Owner , Ps ) of
{ ok , Nodes } - >
2019-07-16 14:09:51 +02:00
Form = [ { node , < < > > , lists : zip ( Nodes , Nodes ) } ] ,
2016-08-30 08:48:08 +02:00
XForm = #xdata { type = form ,
2019-07-16 14:09:51 +02:00
fields = pubsub_get_pending : encode ( Form , Lang ) } ,
2016-08-30 08:48:08 +02:00
#adhoc_command { status = executing , action = execute ,
xdata = XForm } ;
Err - >
Err
end
2009-07-20 10:53:56 +02:00
end .
2016-08-30 08:48:08 +02:00
- spec get_pending_nodes ( binary ( ) , jid ( ) , [ binary ( ) ] ) - > { ok , [ binary ( ) ] } |
2016-09-08 16:08:48 +02:00
{ error , stanza_error ( ) } .
2009-07-20 10:53:56 +02:00
get_pending_nodes ( Host , Owner , Plugins ) - >
2013-03-14 10:33:02 +01:00
Tr = fun ( Type ) - >
2015-04-08 17:12:05 +02:00
case node_call ( Host , Type , get_pending_nodes , [ Host , Owner ] ) of
{ result , Nodes } - > Nodes ;
_ - > [ ]
end
2016-08-30 08:48:08 +02:00
end ,
2015-04-08 17:12:05 +02:00
Action = fun ( ) - > { result , lists : flatmap ( Tr , Plugins ) } end ,
case transaction ( Host , Action , sync_dirty ) of
2016-08-30 08:48:08 +02:00
{ result , Res } - > { ok , Res } ;
2015-04-08 17:12:05 +02:00
Err - > Err
2009-07-20 10:53:56 +02:00
end .
%% @doc <p>Send a subscription approval form to Owner for all pending
%% subscriptions on Host and Node.</p>
2016-08-30 08:48:08 +02:00
- spec send_pending_auth_events ( binary ( ) , binary ( ) , jid ( ) ,
2019-06-14 11:33:26 +02:00
binary ( ) ) - > ok | { error , stanza_error ( ) } .
2016-08-30 08:48:08 +02:00
send_pending_auth_events ( Host , Node , Owner , Lang ) - >
2019-09-23 14:17:20 +02:00
? DEBUG ( " Sending pending auth events for ~ ts on ~ ts: ~ ts " ,
2017-02-26 08:07:12 +01:00
[ jid : encode ( Owner ) , Host , Node ] ) ,
2016-08-30 08:48:08 +02:00
Action =
fun ( #pubsub_node { id = Nidx , type = Type } ) - >
case lists : member ( < < " get-pending " > > , plugin_features ( Host , Type ) ) of
true - >
case node_call ( Host , Type , get_affiliation , [ Nidx , Owner ] ) of
{ result , owner } - >
node_call ( Host , Type , get_node_subscriptions , [ Nidx ] ) ;
_ - >
{ error , xmpp : err_forbidden (
2019-06-22 16:08:45 +02:00
? T ( " Owner privileges required " ) , Lang ) }
2016-08-30 08:48:08 +02:00
end ;
false - >
{ error , extended_error ( xmpp : err_feature_not_implemented ( ) ,
err_unsupported ( 'get-pending' ) ) }
end
end ,
2009-07-20 10:53:56 +02:00
case transaction ( Host , Node , Action , sync_dirty ) of
2015-04-08 17:12:05 +02:00
{ result , { N , Subs } } - >
2016-08-30 08:48:08 +02:00
lists : foreach (
fun ( { J , pending , _ SubId } ) - > send_authorization_request ( N , jid : make ( J ) ) ;
( { J , pending } ) - > send_authorization_request ( N , jid : make ( J ) ) ;
( _ ) - > ok
2019-06-14 11:33:26 +02:00
end , Subs ) ;
2015-04-08 17:12:05 +02:00
Err - >
Err
2009-07-20 10:53:56 +02:00
end .
2007-12-01 06:16:30 +01:00
%%% authorization handling
2016-08-30 08:48:08 +02:00
- spec send_authorization_request ( #pubsub_node { } , jid ( ) ) - > ok .
send_authorization_request ( #pubsub_node { nodeid = { Host , Node } ,
type = Type , id = Nidx , owners = O } ,
Subscriber ) - >
%% TODO: pass lang to this function
2013-03-14 10:33:02 +01:00
Lang = < < " en " > > ,
2016-10-07 09:31:03 +02:00
Fs = pubsub_subscribe_authorization : encode (
[ { node , Node } ,
{ subscriber_jid , Subscriber } ,
{ allow , false } ] ,
2017-03-20 07:57:11 +01:00
Lang ) ,
2016-08-30 08:48:08 +02:00
X = #xdata { type = form ,
title = translate : translate (
2019-06-22 16:08:45 +02:00
Lang , ? T ( " PubSub subscriber request " ) ) ,
2016-08-30 08:48:08 +02:00
instructions = [ translate : translate (
Lang ,
2019-06-22 16:08:45 +02:00
? T ( " Choose whether to approve this entity's "
" subscription. " ) ) ] ,
2016-08-30 08:48:08 +02:00
fields = Fs } ,
2017-02-16 09:00:26 +01:00
Stanza = #message { from = service_jid ( Host ) , sub_els = [ X ] } ,
2016-08-30 08:48:08 +02:00
lists : foreach (
fun ( Owner ) - >
2017-02-16 09:00:26 +01:00
ejabberd_router : route ( xmpp : set_to ( Stanza , jid : make ( Owner ) ) )
2016-08-30 08:48:08 +02:00
end , node_owners_action ( Host , Type , Nidx , O ) ) .
2007-12-01 06:16:30 +01:00
2016-10-07 09:31:03 +02:00
- spec find_authorization_response ( message ( ) ) - > undefined |
pubsub_subscribe_authorization : result ( ) |
{ error , stanza_error ( ) } .
2007-12-01 06:16:30 +01:00
find_authorization_response ( Packet ) - >
2017-02-18 07:36:27 +01:00
case xmpp : get_subtag ( Packet , #xdata { type = form } ) of
2016-10-07 09:31:03 +02:00
#xdata { type = cancel } - >
undefined ;
#xdata { type = submit , fields = Fs } - >
try pubsub_subscribe_authorization : decode ( Fs ) of
Result - > Result
catch _ : { pubsub_subscribe_authorization , Why } - >
Lang = xmpp : get_lang ( Packet ) ,
Txt = pubsub_subscribe_authorization : format_error ( Why ) ,
{ error , xmpp : err_bad_request ( Txt , Lang ) }
2016-08-30 08:48:08 +02:00
end ;
2016-10-07 09:31:03 +02:00
#xdata { } - >
{ error , xmpp : err_bad_request ( ) } ;
false - >
2016-08-30 08:48:08 +02:00
undefined
2007-12-01 06:16:30 +01:00
end .
2015-04-08 17:12:05 +02:00
2008-12-08 20:50:50 +01:00
%% @doc Send a message to JID with the supplied Subscription
2016-08-30 08:48:08 +02:00
- spec send_authorization_approval ( binary ( ) , jid ( ) , binary ( ) , subscribed | none ) - > ok .
2009-04-08 17:53:46 +02:00
send_authorization_approval ( Host , JID , SNode , Subscription ) - >
2016-08-30 08:48:08 +02:00
Event = #ps_event { subscription =
#ps_subscription { jid = JID ,
node = SNode ,
type = Subscription } } ,
2017-02-16 09:00:26 +01:00
Stanza = #message { from = service_jid ( Host ) , to = JID , sub_els = [ Event ] } ,
ejabberd_router : route ( Stanza ) .
2008-12-08 20:50:50 +01:00
2017-02-16 09:00:26 +01:00
- spec handle_authorization_response ( binary ( ) , message ( ) ,
2016-10-07 09:31:03 +02:00
pubsub_subscribe_authorization : result ( ) ) - > ok .
2017-02-16 09:00:26 +01:00
handle_authorization_response ( Host , #message { from = From } = Packet , Response ) - >
2016-10-07 09:31:03 +02:00
Node = proplists : get_value ( node , Response ) ,
Subscriber = proplists : get_value ( subscriber_jid , Response ) ,
Allow = proplists : get_value ( allow , Response ) ,
2016-08-30 08:48:08 +02:00
Lang = xmpp : get_lang ( Packet ) ,
2016-10-07 09:31:03 +02:00
FromLJID = jid : tolower ( jid : remove_resource ( From ) ) ,
Action =
fun ( #pubsub_node { type = Type , id = Nidx , owners = O } ) - >
Owners = node_owners_call ( Host , Type , Nidx , O ) ,
case lists : member ( FromLJID , Owners ) of
true - >
2019-07-29 16:13:16 +02:00
case node_call ( Host , Type , get_subscriptions , [ Nidx , Subscriber ] ) of
{ result , Subs } - >
update_auth ( Host , Node , Type , Nidx , Subscriber , Allow , Subs ) ;
{ error , _ } = Err - >
Err
end ;
2016-10-07 09:31:03 +02:00
false - >
2019-06-22 16:08:45 +02:00
{ error , xmpp : err_forbidden ( ? T ( " Owner privileges required " ) , Lang ) }
2016-10-07 09:31:03 +02:00
end
end ,
case transaction ( Host , Node , Action , sync_dirty ) of
{ error , Error } - >
2017-02-16 09:00:26 +01:00
ejabberd_router : route_error ( Packet , Error ) ;
2016-10-07 09:31:03 +02:00
{ result , { _ , _ NewSubscription } } - >
%% XXX: notify about subscription state change, section 12.11
2019-07-29 16:13:16 +02:00
ok
2007-12-01 06:16:30 +01:00
end .
2003-07-08 22:11:27 +02:00
2016-08-30 08:48:08 +02:00
- spec update_auth ( binary ( ) , binary ( ) , _ , _ , jid ( ) | error , boolean ( ) , _ ) - >
2016-09-08 16:08:48 +02:00
{ result , ok } | { error , stanza_error ( ) } .
2015-04-08 17:12:05 +02:00
update_auth ( Host , Node , Type , Nidx , Subscriber , Allow , Subs ) - >
Sub = lists : filter ( fun
( { pending , _ } ) - > true ;
( _ ) - > false
end ,
Subs ) ,
case Sub of
2016-04-05 12:09:44 +02:00
[ { pending , SubId } | _ ] - >
2015-04-08 17:12:05 +02:00
NewSub = case Allow of
true - > subscribed ;
false - > none
end ,
node_call ( Host , Type , set_subscriptions , [ Nidx , Subscriber , NewSub , SubId ] ) ,
send_authorization_approval ( Host , Subscriber , Node , NewSub ) ,
{ result , ok } ;
_ - >
2019-06-22 16:08:45 +02:00
Txt = ? T ( " No pending subscriptions found " ) ,
2019-06-14 11:33:26 +02:00
{ error , xmpp : err_unexpected_request ( Txt , ejabberd_option : language ( ) ) }
2009-05-29 04:14:07 +02:00
end .
2007-12-01 06:16:30 +01:00
%% @doc <p>Create new pubsub nodes</p>
%%<p>In addition to method-specific error conditions, there are several general reasons why the node creation request might fail:</p>
%%<ul>
2008-04-01 12:11:39 +02:00
%%<li>The service does not support node creation.</li>
%%<li>Only entities that are registered with the service are allowed to create nodes but the requesting entity is not registered.</li>
%%<li>The requesting entity does not have sufficient privileges to create nodes.</li>
2015-04-08 17:12:05 +02:00
%%<li>The requested Node already exists.</li>
%%<li>The request did not include a Node and "instant nodes" are not supported.</li>
2007-12-01 06:16:30 +01:00
%%</ul>
%%<p>ote: node creation is a particular case, error return code is evaluated at many places:</p>
%%<ul>
2008-04-01 12:11:39 +02:00
%%<li>iq_pubsub checks if service supports node creation (type exists)</li>
%%<li>create_node checks if instant nodes are supported</li>
%%<li>create_node asks node plugin if entity have sufficient privilege</li>
%%<li>nodetree create_node checks if nodeid already exists</li>
%%<li>node plugin create_node just sets default affiliation/subscription</li>
2007-12-01 06:16:30 +01:00
%%</ul>
2016-08-30 08:48:08 +02:00
- spec create_node ( host ( ) , binary ( ) , binary ( ) , jid ( ) ,
2016-09-08 16:08:48 +02:00
binary ( ) ) - > { result , pubsub ( ) } | { error , stanza_error ( ) } .
2016-03-07 14:47:42 +01:00
create_node ( Host , ServerHost , Node , Owner , Type ) - >
create_node ( Host , ServerHost , Node , Owner , Type , all , [ ] ) .
2016-08-30 08:48:08 +02:00
- spec create_node ( host ( ) , binary ( ) , binary ( ) , jid ( ) , binary ( ) ,
2016-09-08 16:08:48 +02:00
atom ( ) , [ { binary ( ) , [ binary ( ) ] } ] ) - > { result , pubsub ( ) } | { error , stanza_error ( ) } .
2009-10-20 17:03:07 +02:00
create_node ( Host , ServerHost , < < > > , Owner , Type , Access , Configuration ) - >
2015-04-08 17:12:05 +02:00
case lists : member ( < < " instant-nodes " > > , plugin_features ( Host , Type ) ) of
true - >
2018-07-05 10:51:49 +02:00
Node = p1_rand : get_string ( ) ,
2015-04-08 17:12:05 +02:00
case create_node ( Host , ServerHost , Node , Owner , Type , Access , Configuration ) of
{ result , _ } - >
2016-08-30 08:48:08 +02:00
{ result , #pubsub { create = Node } } ;
2015-04-08 17:12:05 +02:00
Error - >
Error
end ;
false - >
2016-08-30 08:48:08 +02:00
{ error , extended_error ( xmpp : err_not_acceptable ( ) , err_nodeid_required ( ) ) }
2007-12-01 06:16:30 +01:00
end ;
create_node ( Host , ServerHost , Node , Owner , GivenType , Access , Configuration ) - >
2008-09-25 19:26:06 +02:00
Type = select_type ( ServerHost , Host , Node , GivenType ) ,
2018-03-11 14:52:23 +01:00
NodeOptions = merge_config (
[ node_config ( Node , ServerHost ) ,
Configuration , node_options ( Host , Type ) ] ) ,
2016-10-07 09:31:03 +02:00
CreateNode =
fun ( ) - >
Parent = case node_call ( Host , Type , node_to_path , [ Node ] ) of
{ result , [ Node ] } - >
< < > > ;
{ result , Path } - >
element ( 2 , node_call ( Host , Type , path_to_node ,
[ lists : sublist ( Path , length ( Path ) - 1 ) ] ) )
end ,
Parents = case Parent of
< < > > - > [ ] ;
_ - > [ Parent ]
end ,
case node_call ( Host , Type , create_node_permission ,
[ Host , ServerHost , Node , Parent , Owner , Access ] ) of
{ result , true } - >
case tree_call ( Host , create_node ,
[ Host , Node , Type , Owner , NodeOptions , Parents ] )
of
{ ok , Nidx } - >
2019-07-29 16:13:16 +02:00
case get_node_subs_by_depth ( Host , Node , Owner ) of
{ result , SubsByDepth } - >
case node_call ( Host , Type , create_node , [ Nidx , Owner ] ) of
{ result , Result } - > { result , { Nidx , SubsByDepth , Result } } ;
Error - > Error
end ;
Error - >
Error
2016-08-30 08:48:08 +02:00
end ;
2016-10-07 09:31:03 +02:00
{ error , { virtual , Nidx } } - >
case node_call ( Host , Type , create_node , [ Nidx , Owner ] ) of
{ result , Result } - > { result , { Nidx , [ ] , Result } } ;
Error - > Error
end ;
Error - >
Error
end ;
2019-07-29 16:13:16 +02:00
{ result , _ } - >
2019-06-22 16:08:45 +02:00
Txt = ? T ( " You're not allowed to create nodes " ) ,
2019-07-29 16:13:16 +02:00
{ error , xmpp : err_forbidden ( Txt , ejabberd_option : language ( ) ) } ;
Err - >
Err
2016-10-07 09:31:03 +02:00
end
end ,
Reply = #pubsub { create = Node } ,
case transaction ( Host , CreateNode , transaction ) of
{ result , { Nidx , SubsByDepth , { Result , broadcast } } } - >
broadcast_created_node ( Host , Node , Nidx , Type , NodeOptions , SubsByDepth ) ,
ejabberd_hooks : run ( pubsub_create_node , ServerHost ,
[ ServerHost , Host , Node , Nidx , NodeOptions ] ) ,
case Result of
default - > { result , Reply } ;
_ - > { result , Result }
end ;
{ result , { Nidx , _ SubsByDepth , Result } } - >
ejabberd_hooks : run ( pubsub_create_node , ServerHost ,
[ ServerHost , Host , Node , Nidx , NodeOptions ] ) ,
case Result of
default - > { result , Reply } ;
_ - > { result , Result }
2007-12-01 06:16:30 +01:00
end ;
Error - >
2016-10-07 09:31:03 +02:00
%% in case we change transaction to sync_dirty...
%% node_call(Host, Type, delete_node, [Host, Node]),
%% tree_call(Host, delete_node, [Host, Node]),
2007-12-01 06:16:30 +01:00
Error
2003-07-08 22:11:27 +02:00
end .
2019-07-16 21:07:39 +02:00
%% @doc <p>Delete specified node and all children.</p>
2007-12-01 06:16:30 +01:00
%%<p>There are several reasons why the node deletion request might fail:</p>
%%<ul>
2008-04-01 12:11:39 +02:00
%%<li>The requesting entity does not have sufficient privileges to delete the node.</li>
%%<li>The node is the root collection node, which cannot be deleted.</li>
%%<li>The specified node does not exist.</li>
2007-12-01 06:16:30 +01:00
%%</ul>
2016-09-08 16:08:48 +02:00
- spec delete_node ( host ( ) , binary ( ) , jid ( ) ) - > { result , pubsub_owner ( ) } | { error , stanza_error ( ) } .
2009-11-05 18:36:15 +01:00
delete_node ( _ Host , < < > > , _ Owner ) - >
2019-06-22 16:08:45 +02:00
{ error , xmpp : err_not_allowed ( ? T ( " No node specified " ) , ejabberd_option : language ( ) ) } ;
2007-12-01 06:16:30 +01:00
delete_node ( Host , Node , Owner ) - >
2019-07-29 16:13:16 +02:00
Action =
fun ( #pubsub_node { type = Type , id = Nidx } ) - >
case node_call ( Host , Type , get_affiliation , [ Nidx , Owner ] ) of
{ result , owner } - >
case get_node_subs_by_depth ( Host , Node , service_jid ( Host ) ) of
{ result , SubsByDepth } - >
case tree_call ( Host , delete_node , [ Host , Node ] ) of
Removed when is_list ( Removed ) - >
case node_call ( Host , Type , delete_node , [ Removed ] ) of
{ result , Res } - > { result , { SubsByDepth , Res } } ;
Error - > Error
end ;
Error - >
Error
end ;
Error - >
Error
end ;
{ result , _ } - >
Lang = ejabberd_option : language ( ) ,
{ error , xmpp : err_forbidden ( ? T ( " Owner privileges required " ) , Lang ) } ;
Error - >
Error
end
end ,
2016-09-08 14:49:27 +02:00
Reply = undefined ,
2015-04-08 17:12:05 +02:00
ServerHost = serverhost ( Host ) ,
2007-12-01 06:16:30 +01:00
case transaction ( Host , Node , Action , transaction ) of
2015-04-08 17:12:05 +02:00
{ result , { _ , { SubsByDepth , { Result , broadcast , Removed } } } } - >
lists : foreach ( fun ( { RNode , _ RSubs } ) - >
{ RH , RN } = RNode #pubsub_node.nodeid ,
RNidx = RNode #pubsub_node.id ,
RType = RNode #pubsub_node.type ,
ROptions = RNode #pubsub_node.options ,
2017-10-27 21:16:25 +02:00
unset_cached_item ( RH , RNidx ) ,
2015-04-08 17:12:05 +02:00
broadcast_removed_node ( RH , RN , RNidx , RType , ROptions , SubsByDepth ) ,
ejabberd_hooks : run ( pubsub_delete_node ,
ServerHost ,
[ ServerHost , RH , RN , RNidx ] )
end ,
Removed ) ,
2007-12-01 06:16:30 +01:00
case Result of
default - > { result , Reply } ;
_ - > { result , Result }
end ;
2015-04-08 17:12:05 +02:00
{ result , { _ , { _ , { Result , Removed } } } } - >
lists : foreach ( fun ( { RNode , _ RSubs } ) - >
{ RH , RN } = RNode #pubsub_node.nodeid ,
RNidx = RNode #pubsub_node.id ,
2017-10-27 21:16:25 +02:00
unset_cached_item ( RH , RNidx ) ,
2015-04-08 17:12:05 +02:00
ejabberd_hooks : run ( pubsub_delete_node ,
ServerHost ,
[ ServerHost , RH , RN , RNidx ] )
end ,
Removed ) ,
2007-12-01 06:16:30 +01:00
case Result of
default - > { result , Reply } ;
_ - > { result , Result }
end ;
2011-11-29 14:13:13 +01:00
{ result , { TNode , { _ , Result } } } - >
2015-04-08 17:12:05 +02:00
Nidx = TNode #pubsub_node.id ,
2017-10-27 21:16:25 +02:00
unset_cached_item ( Host , Nidx ) ,
2015-04-08 17:12:05 +02:00
ejabberd_hooks : run ( pubsub_delete_node , ServerHost ,
[ ServerHost , Host , Node , Nidx ] ) ,
case Result of
default - > { result , Reply } ;
_ - > { result , Result }
end ;
2009-04-30 07:18:06 +02:00
Error - >
Error
2003-07-08 22:11:27 +02:00
end .
2009-05-29 02:27:26 +02:00
%% @see node_hometree:subscribe_node/5
2008-04-01 12:11:39 +02:00
%% @doc <p>Accepts or rejects subcription requests on a PubSub node.</p>
2007-12-01 06:16:30 +01:00
%%<p>There are several reasons why the subscription request might fail:</p>
%%<ul>
2008-04-01 12:11:39 +02:00
%%<li>The bare JID portions of the JIDs do not match.</li>
%%<li>The node has an access model of "presence" and the requesting entity is not subscribed to the owner's presence.</li>
%%<li>The node has an access model of "roster" and the requesting entity is not in one of the authorized roster groups.</li>
%%<li>The node has an access model of "whitelist" and the requesting entity is not on the whitelist.</li>
%%<li>The service requires payment for subscriptions to the node.</li>
%%<li>The requesting entity is anonymous and the service does not allow anonymous entities to subscribe.</li>
%%<li>The requesting entity has a pending subscription.</li>
%%<li>The requesting entity is blocked from subscribing (e.g., because having an affiliation of outcast).</li>
%%<li>The node does not support subscriptions.</li>
%%<li>The node does not exist.</li>
2007-12-01 06:16:30 +01:00
%%</ul>
2017-08-02 10:31:42 +02:00
- spec subscribe_node ( host ( ) , binary ( ) , jid ( ) , jid ( ) , [ { binary ( ) , [ binary ( ) ] } ] ) - >
2016-09-08 16:08:48 +02:00
{ result , pubsub ( ) } | { error , stanza_error ( ) } .
2009-05-29 04:14:07 +02:00
subscribe_node ( Host , Node , From , JID , Configuration ) - >
2015-04-08 17:12:05 +02:00
SubModule = subscription_plugin ( Host ) ,
SubOpts = case SubModule : parse_options_xform ( Configuration ) of
{ result , GoodSubOpts } - > GoodSubOpts ;
_ - > invalid
end ,
2016-08-30 08:48:08 +02:00
Subscriber = jid : tolower ( JID ) ,
2015-04-08 17:12:05 +02:00
Action = fun ( #pubsub_node { options = Options , type = Type , id = Nidx , owners = O } ) - >
Features = plugin_features ( Host , Type ) ,
SubscribeFeature = lists : member ( < < " subscribe " > > , Features ) ,
OptionsFeature = lists : member ( < < " subscription-options " > > , Features ) ,
HasOptions = not ( SubOpts == [ ] ) ,
SubscribeConfig = get_option ( Options , subscribe ) ,
AccessModel = get_option ( Options , access_model ) ,
SendLast = get_option ( Options , send_last_published_item ) ,
AllowedGroups = get_option ( Options , roster_groups_allowed , [ ] ) ,
2015-11-10 16:28:57 +01:00
CanSubscribe = case get_max_subscriptions_node ( Host ) of
Max when is_integer ( Max ) - >
case node_call ( Host , Type , get_node_subscriptions , [ Nidx ] ) of
{ result , NodeSubs } - >
SubsNum = lists : foldl (
fun ( { _ , subscribed , _ } , Acc ) - > Acc + 1 ;
( _ , Acc ) - > Acc
end , 0 , NodeSubs ) ,
SubsNum < Max ;
_ - >
true
end ;
_ - >
true
end ,
2015-04-08 17:12:05 +02:00
if not SubscribeFeature - >
2016-08-30 08:48:08 +02:00
{ error , extended_error ( xmpp : err_feature_not_implemented ( ) ,
err_unsupported ( 'subscribe' ) ) } ;
2015-04-08 17:12:05 +02:00
not SubscribeConfig - >
2016-08-30 08:48:08 +02:00
{ error , extended_error ( xmpp : err_feature_not_implemented ( ) ,
err_unsupported ( 'subscribe' ) ) } ;
2015-04-08 17:12:05 +02:00
HasOptions andalso not OptionsFeature - >
2016-08-30 08:48:08 +02:00
{ error , extended_error ( xmpp : err_feature_not_implemented ( ) ,
err_unsupported ( 'subscription-options' ) ) } ;
2015-04-08 17:12:05 +02:00
SubOpts == invalid - >
2016-08-30 08:48:08 +02:00
{ error , extended_error ( xmpp : err_bad_request ( ) ,
err_invalid_options ( ) ) } ;
2015-11-10 16:28:57 +01:00
not CanSubscribe - >
%% fallback to closest XEP compatible result, assume we are not allowed to subscribe
2016-08-30 08:48:08 +02:00
{ error , extended_error ( xmpp : err_not_allowed ( ) ,
err_closed_node ( ) ) } ;
2015-04-08 17:12:05 +02:00
true - >
Owners = node_owners_call ( Host , Type , Nidx , O ) ,
2019-06-14 11:33:26 +02:00
{ PS , RG } = get_presence_and_roster_permissions ( Host , JID ,
2015-04-08 17:12:05 +02:00
Owners , AccessModel , AllowedGroups ) ,
node_call ( Host , Type , subscribe_node ,
[ Nidx , From , Subscriber , AccessModel ,
SendLast , PS , RG , SubOpts ] )
end
end ,
2013-03-14 10:33:02 +01:00
Reply = fun ( Subscription ) - >
2016-08-30 08:48:08 +02:00
Sub = case Subscription of
{ subscribed , SubId } - >
2017-02-18 07:36:27 +01:00
#ps_subscription { jid = JID , type = subscribed , subid = SubId } ;
2016-08-30 08:48:08 +02:00
Other - >
2017-02-18 07:36:27 +01:00
#ps_subscription { jid = JID , type = Other }
2016-08-30 08:48:08 +02:00
end ,
2017-02-18 07:36:27 +01:00
#pubsub { subscription = Sub #ps_subscription { node = Node } }
2015-04-08 17:12:05 +02:00
end ,
2007-12-01 06:16:30 +01:00
case transaction ( Host , Node , Action , sync_dirty ) of
2015-04-08 17:12:05 +02:00
{ result , { TNode , { Result , subscribed , SubId , send_last } } } - >
Nidx = TNode #pubsub_node.id ,
Type = TNode #pubsub_node.type ,
Options = TNode #pubsub_node.options ,
2018-04-12 15:38:12 +02:00
send_items ( Host , Node , Nidx , Type , Options , Subscriber , last ) ,
2016-04-28 15:57:55 +02:00
ServerHost = serverhost ( Host ) ,
ejabberd_hooks : run ( pubsub_subscribe_node , ServerHost ,
[ ServerHost , Host , Node , Subscriber , SubId ] ) ,
2015-04-08 17:12:05 +02:00
case Result of
default - > { result , Reply ( { subscribed , SubId } ) } ;
_ - > { result , Result }
end ;
{ result , { _ TNode , { default , subscribed , SubId } } } - >
{ result , Reply ( { subscribed , SubId } ) } ;
{ result , { _ TNode , { Result , subscribed , _ SubId } } } - >
{ result , Result } ;
{ result , { TNode , { default , pending , _ SubId } } } - >
2019-06-14 11:33:26 +02:00
send_authorization_request ( TNode , JID ) ,
2015-04-08 17:12:05 +02:00
{ result , Reply ( pending ) } ;
{ result , { TNode , { Result , pending } } } - >
2019-06-14 11:33:26 +02:00
send_authorization_request ( TNode , JID ) ,
2015-04-08 17:12:05 +02:00
{ result , Result } ;
{ result , { _ , Result } } - >
{ result , Result } ;
Error - > Error
2003-07-08 22:11:27 +02:00
end .
2007-12-01 06:16:30 +01:00
%% @doc <p>Unsubscribe <tt>JID</tt> from the <tt>Node</tt>.</p>
%%<p>There are several reasons why the unsubscribe request might fail:</p>
%%<ul>
2008-04-01 12:11:39 +02:00
%%<li>The requesting entity has multiple subscriptions to the node but does not specify a subscription ID.</li>
%%<li>The request does not specify an existing subscriber.</li>
%%<li>The requesting entity does not have sufficient privileges to unsubscribe the specified JID.</li>
%%<li>The node does not exist.</li>
%%<li>The request specifies a subscription ID that is not valid or current.</li>
%%</ul>
2016-08-30 08:48:08 +02:00
- spec unsubscribe_node ( host ( ) , binary ( ) , jid ( ) , jid ( ) , binary ( ) ) - >
2016-09-08 16:08:48 +02:00
{ result , undefined } | { error , stanza_error ( ) } .
2016-08-30 08:48:08 +02:00
unsubscribe_node ( Host , Node , From , JID , SubId ) - >
Subscriber = jid : tolower ( JID ) ,
2015-04-08 17:12:05 +02:00
Action = fun ( #pubsub_node { type = Type , id = Nidx } ) - >
node_call ( Host , Type , unsubscribe_node , [ Nidx , From , Subscriber , SubId ] )
end ,
2009-04-30 07:18:06 +02:00
case transaction ( Host , Node , Action , sync_dirty ) of
2016-04-28 15:57:55 +02:00
{ result , { _ , default } } - >
ServerHost = serverhost ( Host ) ,
ejabberd_hooks : run ( pubsub_unsubscribe_node , ServerHost ,
2016-08-30 08:48:08 +02:00
[ ServerHost , Host , Node , Subscriber , SubId ] ) ,
{ result , undefined } ;
2015-04-08 17:12:05 +02:00
Error - > Error
2007-12-01 06:16:30 +01:00
end .
2003-07-08 22:11:27 +02:00
2007-12-01 06:16:30 +01:00
%% @doc <p>Publish item to a PubSub node.</p>
%% <p>The permission to publish an item must be verified by the plugin implementation.</p>
%%<p>There are several reasons why the publish request might fail:</p>
%%<ul>
2008-04-01 12:11:39 +02:00
%%<li>The requesting entity does not have sufficient privileges to publish.</li>
%%<li>The node does not support item publication.</li>
%%<li>The node does not exist.</li>
%%<li>The payload size exceeds a service-defined limit.</li>
%%<li>The item contains more than one payload element or the namespace of the root payload element does not match the configured namespace for the node.</li>
%%<li>The request does not match the node configuration.</li>
2007-12-01 06:16:30 +01:00
%%</ul>
2016-08-30 08:48:08 +02:00
- spec publish_item ( host ( ) , binary ( ) , binary ( ) , jid ( ) , binary ( ) ,
2016-09-08 16:08:48 +02:00
[ xmlel ( ) ] ) - > { result , pubsub ( ) } | { error , stanza_error ( ) } .
2007-12-01 06:16:30 +01:00
publish_item ( Host , ServerHost , Node , Publisher , ItemId , Payload ) - >
2015-07-01 17:18:32 +02:00
publish_item ( Host , ServerHost , Node , Publisher , ItemId , Payload , [ ] , all ) .
publish_item ( Host , ServerHost , Node , Publisher , < < > > , Payload , PubOpts , Access ) - >
publish_item ( Host , ServerHost , Node , Publisher , uniqid ( ) , Payload , PubOpts , Access ) ;
publish_item ( Host , ServerHost , Node , Publisher , ItemId , Payload , PubOpts , Access ) - >
2015-04-08 17:12:05 +02:00
Action = fun ( #pubsub_node { options = Options , type = Type , id = Nidx } ) - >
Features = plugin_features ( Host , Type ) ,
PublishFeature = lists : member ( < < " publish " > > , Features ) ,
PublishModel = get_option ( Options , publish_model ) ,
DeliverPayloads = get_option ( Options , deliver_payloads ) ,
PersistItems = get_option ( Options , persist_items ) ,
MaxItems = max_items ( Host , Options ) ,
PayloadCount = payload_xmlelements ( Payload ) ,
PayloadSize = byte_size ( term_to_binary ( Payload ) ) - 2 ,
PayloadMaxSize = get_option ( Options , max_payload_size ) ,
2017-12-12 01:04:14 +01:00
PreconditionsMet = preconditions_met ( PubOpts , Options ) ,
2015-04-08 17:12:05 +02:00
if not PublishFeature - >
2016-08-30 08:48:08 +02:00
{ error , extended_error ( xmpp : err_feature_not_implemented ( ) ,
err_unsupported ( publish ) ) } ;
2017-12-12 01:04:14 +01:00
not PreconditionsMet - >
{ error , extended_error ( xmpp : err_conflict ( ) ,
err_precondition_not_met ( ) ) } ;
2015-04-08 17:12:05 +02:00
PayloadSize > PayloadMaxSize - >
2016-08-30 08:48:08 +02:00
{ error , extended_error ( xmpp : err_not_acceptable ( ) ,
err_payload_too_big ( ) ) } ;
2018-03-16 17:17:53 +01:00
( DeliverPayloads or PersistItems ) and ( PayloadCount == 0 ) - >
2016-08-30 08:48:08 +02:00
{ error , extended_error ( xmpp : err_bad_request ( ) ,
2018-03-16 17:17:53 +01:00
err_item_required ( ) ) } ;
( DeliverPayloads or PersistItems ) and ( PayloadCount > 1 ) - >
2016-08-30 08:48:08 +02:00
{ error , extended_error ( xmpp : err_bad_request ( ) ,
err_invalid_payload ( ) ) } ;
2019-06-11 10:18:36 +02:00
( not ( DeliverPayloads or PersistItems ) ) and ( PayloadCount > 0 ) - >
2016-08-30 08:48:08 +02:00
{ error , extended_error ( xmpp : err_bad_request ( ) ,
err_item_forbidden ( ) ) } ;
2015-04-08 17:12:05 +02:00
true - >
node_call ( Host , Type , publish_item ,
2015-07-01 17:18:32 +02:00
[ Nidx , Publisher , PublishModel , MaxItems , ItemId , Payload , PubOpts ] )
2015-04-08 17:12:05 +02:00
end
end ,
2016-08-30 08:48:08 +02:00
Reply = #pubsub { publish = #ps_publish { node = Node ,
items = [ #ps_item { id = ItemId } ] } } ,
2007-12-01 06:16:30 +01:00
case transaction ( Host , Node , Action , sync_dirty ) of
2009-10-13 18:43:02 +02:00
{ result , { TNode , { Result , Broadcast , Removed } } } - >
2015-04-08 17:12:05 +02:00
Nidx = TNode #pubsub_node.id ,
2009-04-30 07:18:06 +02:00
Type = TNode #pubsub_node.type ,
Options = TNode #pubsub_node.options ,
2015-04-08 17:12:05 +02:00
BrPayload = case Broadcast of
broadcast - > Payload ;
PluginPayload - > PluginPayload
end ,
set_cached_item ( Host , Nidx , ItemId , Publisher , BrPayload ) ,
2011-08-31 16:11:01 +02:00
case get_option ( Options , deliver_notifications ) of
2015-04-08 17:12:05 +02:00
true - >
broadcast_publish_item ( Host , Node , Nidx , Type , Options , ItemId ,
Publisher , BrPayload , Removed ) ;
false - >
ok
end ,
2017-09-17 09:26:48 +02:00
ejabberd_hooks : run ( pubsub_publish_item , ServerHost ,
[ ServerHost , Node , Publisher , service_jid ( Host ) , ItemId , BrPayload ] ) ,
2009-04-30 07:18:06 +02:00
case Result of
default - > { result , Reply } ;
_ - > { result , Result }
end ;
{ result , { TNode , { default , Removed } } } - >
2015-04-08 17:12:05 +02:00
Nidx = TNode #pubsub_node.id ,
2009-04-30 07:18:06 +02:00
Type = TNode #pubsub_node.type ,
Options = TNode #pubsub_node.options ,
2024-11-30 20:38:33 +01:00
broadcast_retract_items ( Host , Publisher , Node , Nidx , Type , Options , Removed ) ,
2015-04-08 17:12:05 +02:00
set_cached_item ( Host , Nidx , ItemId , Publisher , Payload ) ,
2009-04-30 07:18:06 +02:00
{ result , Reply } ;
{ result , { TNode , { Result , Removed } } } - >
2015-04-08 17:12:05 +02:00
Nidx = TNode #pubsub_node.id ,
2009-04-30 07:18:06 +02:00
Type = TNode #pubsub_node.type ,
Options = TNode #pubsub_node.options ,
2024-11-30 20:38:33 +01:00
broadcast_retract_items ( Host , Publisher , Node , Nidx , Type , Options , Removed ) ,
2015-04-08 17:12:05 +02:00
set_cached_item ( Host , Nidx , ItemId , Publisher , Payload ) ,
2009-04-30 07:18:06 +02:00
{ result , Result } ;
{ result , { _ , default } } - >
{ result , Reply } ;
{ result , { _ , Result } } - >
{ result , Result } ;
2016-09-08 16:08:48 +02:00
{ error , #stanza_error { reason = 'item-not-found' } } - >
2016-08-30 08:48:08 +02:00
Type = select_type ( ServerHost , Host , Node ) ,
case lists : member ( < < " auto-create " > > , plugin_features ( Host , Type ) ) of
2007-12-01 06:16:30 +01:00
true - >
2017-12-12 01:04:14 +01:00
case create_node ( Host , ServerHost , Node , Publisher , Type , Access , PubOpts ) of
2016-08-30 08:48:08 +02:00
{ result , #pubsub { create = NewNode } } - >
2015-07-01 17:18:32 +02:00
publish_item ( Host , ServerHost , NewNode , Publisher , ItemId ,
2016-08-30 08:48:08 +02:00
Payload , PubOpts , Access ) ;
_ - >
{ error , xmpp : err_item_not_found ( ) }
2007-12-01 06:16:30 +01:00
end ;
false - >
2019-06-22 16:08:45 +02:00
Txt = ? T ( " Automatic node creation is not enabled " ) ,
2019-06-14 11:33:26 +02:00
{ error , xmpp : err_item_not_found ( Txt , ejabberd_option : language ( ) ) }
2003-07-08 22:11:27 +02:00
end ;
2009-04-30 07:18:06 +02:00
Error - >
Error
2003-07-08 22:11:27 +02:00
end .
2007-12-01 06:16:30 +01:00
%% @doc <p>Delete item from a PubSub node.</p>
%% <p>The permission to delete an item must be verified by the plugin implementation.</p>
%%<p>There are several reasons why the item retraction request might fail:</p>
%%<ul>
2008-04-01 12:11:39 +02:00
%%<li>The publisher does not have sufficient privileges to delete the requested item.</li>
%%<li>The node or item does not exist.</li>
%%<li>The request does not specify a node.</li>
%%<li>The request does not include an <item/> element or the <item/> element does not specify an ItemId.</li>
%%<li>The node does not support persistent items.</li>
%%<li>The service does not support the deletion of items.</li>
2007-12-01 06:16:30 +01:00
%%</ul>
2016-08-30 08:48:08 +02:00
- spec delete_item ( host ( ) , binary ( ) , jid ( ) , binary ( ) ) - > { result , undefined } |
2016-09-08 16:08:48 +02:00
{ error , stanza_error ( ) } .
2007-12-01 06:16:30 +01:00
delete_item ( Host , Node , Publisher , ItemId ) - >
delete_item ( Host , Node , Publisher , ItemId , false ) .
2015-04-08 17:12:05 +02:00
delete_item ( _ , < < > > , _ , _ , _ ) - >
2016-08-30 08:48:08 +02:00
{ error , extended_error ( xmpp : err_bad_request ( ) , err_nodeid_required ( ) ) } ;
2007-12-01 06:16:30 +01:00
delete_item ( Host , Node , Publisher , ItemId , ForceNotify ) - >
2015-04-08 17:12:05 +02:00
Action = fun ( #pubsub_node { options = Options , type = Type , id = Nidx } ) - >
Features = plugin_features ( Host , Type ) ,
PersistentFeature = lists : member ( < < " persistent-items " > > , Features ) ,
DeleteFeature = lists : member ( < < " delete-items " > > , Features ) ,
PublishModel = get_option ( Options , publish_model ) ,
2019-07-16 21:07:39 +02:00
if %%-> iq_pubsub just does that matches
2015-04-08 17:12:05 +02:00
%% %% Request does not specify an item
%% {error, extended_error(?ERR_BAD_REQUEST, "item-required")};
not PersistentFeature - >
2016-08-30 08:48:08 +02:00
{ error , extended_error ( xmpp : err_feature_not_implemented ( ) ,
err_unsupported ( 'persistent-items' ) ) } ;
2015-04-08 17:12:05 +02:00
not DeleteFeature - >
2016-08-30 08:48:08 +02:00
{ error , extended_error ( xmpp : err_feature_not_implemented ( ) ,
err_unsupported ( 'delete-items' ) ) } ;
2015-04-08 17:12:05 +02:00
true - >
node_call ( Host , Type , delete_item , [ Nidx , Publisher , PublishModel , ItemId ] )
end
end ,
2016-08-30 08:48:08 +02:00
Reply = undefined ,
2007-12-01 06:16:30 +01:00
case transaction ( Host , Node , Action , sync_dirty ) of
2015-04-08 17:12:05 +02:00
{ result , { TNode , { Result , broadcast } } } - >
Nidx = TNode #pubsub_node.id ,
Type = TNode #pubsub_node.type ,
Options = TNode #pubsub_node.options ,
2023-09-27 18:30:17 +02:00
ServerHost = serverhost ( Host ) ,
ejabberd_hooks : run ( pubsub_delete_item , ServerHost ,
[ ServerHost , Node , Publisher , service_jid ( Host ) , ItemId ] ) ,
2024-11-30 20:38:33 +01:00
broadcast_retract_items ( Host , Publisher , Node , Nidx , Type , Options , [ ItemId ] , ForceNotify ) ,
2015-04-08 17:12:05 +02:00
case get_cached_item ( Host , Nidx ) of
#pubsub_item { itemid = { ItemId , Nidx } } - > unset_cached_item ( Host , Nidx ) ;
_ - > ok
end ,
case Result of
default - > { result , Reply } ;
_ - > { result , Result }
end ;
{ result , { _ , default } } - >
{ result , Reply } ;
{ result , { _ , Result } } - >
{ result , Result } ;
Error - >
Error
2003-07-08 22:11:27 +02:00
end .
2007-12-01 06:16:30 +01:00
%% @doc <p>Delete all items of specified node owned by JID.</p>
%%<p>There are several reasons why the node purge request might fail:</p>
%%<ul>
2008-04-01 12:11:39 +02:00
%%<li>The node or service does not support node purging.</li>
%%<li>The requesting entity does not have sufficient privileges to purge the node.</li>
%%<li>The node is not configured to persist items.</li>
%%<li>The specified node does not exist.</li>
2007-12-01 06:16:30 +01:00
%%</ul>
2016-08-30 08:48:08 +02:00
- spec purge_node ( mod_pubsub : host ( ) , binary ( ) , jid ( ) ) - > { result , undefined } |
2016-09-08 16:08:48 +02:00
{ error , stanza_error ( ) } .
2007-12-01 06:16:30 +01:00
purge_node ( Host , Node , Owner ) - >
2015-04-08 17:12:05 +02:00
Action = fun ( #pubsub_node { options = Options , type = Type , id = Nidx } ) - >
Features = plugin_features ( Host , Type ) ,
PurgeFeature = lists : member ( < < " purge-nodes " > > , Features ) ,
PersistentFeature = lists : member ( < < " persistent-items " > > , Features ) ,
PersistentConfig = get_option ( Options , persist_items ) ,
if not PurgeFeature - >
2016-08-30 08:48:08 +02:00
{ error , extended_error ( xmpp : err_feature_not_implemented ( ) ,
err_unsupported ( 'purge-nodes' ) ) } ;
2015-04-08 17:12:05 +02:00
not PersistentFeature - >
2016-08-30 08:48:08 +02:00
{ error , extended_error ( xmpp : err_feature_not_implemented ( ) ,
err_unsupported ( 'persistent-items' ) ) } ;
2015-04-08 17:12:05 +02:00
not PersistentConfig - >
2016-08-30 08:48:08 +02:00
{ error , extended_error ( xmpp : err_feature_not_implemented ( ) ,
err_unsupported ( 'persistent-items' ) ) } ;
2015-04-08 17:12:05 +02:00
true - > node_call ( Host , Type , purge_node , [ Nidx , Owner ] )
end
end ,
2016-08-30 08:48:08 +02:00
Reply = undefined ,
2018-04-24 15:58:56 +02:00
case transaction ( Host , Node , Action , transaction ) of
2015-04-08 17:12:05 +02:00
{ result , { TNode , { Result , broadcast } } } - >
Nidx = TNode #pubsub_node.id ,
Type = TNode #pubsub_node.type ,
Options = TNode #pubsub_node.options ,
broadcast_purge_node ( Host , Node , Nidx , Type , Options ) ,
unset_cached_item ( Host , Nidx ) ,
case Result of
default - > { result , Reply } ;
_ - > { result , Result }
end ;
{ result , { _ , default } } - >
{ result , Reply } ;
{ result , { _ , Result } } - >
{ result , Result } ;
Error - >
Error
2007-12-01 06:16:30 +01:00
end .
2003-07-08 22:11:27 +02:00
2007-12-01 06:16:30 +01:00
%% @doc <p>Return the items of a given node.</p>
%% <p>The number of items to return is limited by MaxItems.</p>
%% <p>The permission are not checked in this function.</p>
2016-08-30 08:48:08 +02:00
- spec get_items ( host ( ) , binary ( ) , jid ( ) , binary ( ) ,
2019-06-14 11:33:26 +02:00
undefined | non_neg_integer ( ) , [ binary ( ) ] , undefined | rsm_set ( ) ) - >
2016-09-08 16:08:48 +02:00
{ result , pubsub ( ) } | { error , stanza_error ( ) } .
2017-09-27 20:54:50 +02:00
get_items ( Host , Node , From , SubId , MaxItems , ItemIds , undefined )
when MaxItems =/= undefined - >
get_items ( Host , Node , From , SubId , MaxItems , ItemIds ,
#rsm_set { max = MaxItems , before = < < > > } ) ;
get_items ( Host , Node , From , SubId , _ MaxItems , ItemIds , RSM ) - >
2016-08-30 08:48:08 +02:00
Action =
fun ( #pubsub_node { options = Options , type = Type ,
id = Nidx , owners = O } ) - >
Features = plugin_features ( Host , Type ) ,
RetreiveFeature = lists : member ( < < " retrieve-items " > > , Features ) ,
PersistentFeature = lists : member ( < < " persistent-items " > > , Features ) ,
AccessModel = get_option ( Options , access_model ) ,
AllowedGroups = get_option ( Options , roster_groups_allowed , [ ] ) ,
if not RetreiveFeature - >
{ error , extended_error ( xmpp : err_feature_not_implemented ( ) ,
err_unsupported ( 'retrieve-items' ) ) } ;
not PersistentFeature - >
{ error , extended_error ( xmpp : err_feature_not_implemented ( ) ,
err_unsupported ( 'persistent-items' ) ) } ;
true - >
Owners = node_owners_call ( Host , Type , Nidx , O ) ,
{ PS , RG } = get_presence_and_roster_permissions (
Host , From , Owners , AccessModel , AllowedGroups ) ,
2017-09-27 10:51:37 +02:00
case ItemIds of
[ ItemId ] - >
2018-04-10 15:02:03 +02:00
NotFound = xmpp : err_item_not_found ( ) ,
2018-03-17 10:55:14 +01:00
case node_call ( Host , Type , get_item ,
[ Nidx , ItemId , From , AccessModel , PS , RG , undefined ] )
of
2018-04-10 15:02:03 +02:00
{ error , NotFound } - > { result , { [ ] , undefined } } ;
2018-03-17 10:55:14 +01:00
Result - > Result
end ;
2017-09-27 10:51:37 +02:00
_ - >
node_call ( Host , Type , get_items ,
[ Nidx , From , AccessModel , PS , RG , SubId , RSM ] )
end
2016-08-30 08:48:08 +02:00
end
end ,
case transaction ( Host , Node , Action , sync_dirty ) of
2018-04-12 15:38:12 +02:00
{ result , { TNode , { Items , RsmOut } } } - >
2016-08-30 08:48:08 +02:00
SendItems = case ItemIds of
[ ] - >
Items ;
_ - >
lists : filter (
fun ( #pubsub_item { itemid = { ItemId , _ } } ) - >
lists : member ( ItemId , ItemIds )
end , Items )
end ,
2018-04-12 15:38:12 +02:00
Options = TNode #pubsub_node.options ,
{ result , #pubsub { items = items_els ( Node , Options , SendItems ) ,
rsm = RsmOut } } ;
{ result , { TNode , Item } } - >
Options = TNode #pubsub_node.options ,
{ result , #pubsub { items = items_els ( Node , Options , [ Item ] ) } } ;
2018-03-17 10:55:14 +01:00
Error - >
Error
2003-07-08 22:11:27 +02:00
end .
2013-03-14 10:33:02 +01:00
2019-07-29 16:13:16 +02:00
%% Seems like this function broken
2009-05-29 00:30:43 +02:00
get_items ( Host , Node ) - >
2015-04-08 17:12:05 +02:00
Action = fun ( #pubsub_node { type = Type , id = Nidx } ) - >
2016-09-13 11:30:05 +02:00
node_call ( Host , Type , get_items , [ Nidx , service_jid ( Host ) , undefined ] )
2015-04-08 17:12:05 +02:00
end ,
2009-05-29 00:30:43 +02:00
case transaction ( Host , Node , Action , sync_dirty ) of
2015-04-08 17:12:05 +02:00
{ result , { _ , { Items , _ } } } - > Items ;
Error - > Error
2009-05-29 00:30:43 +02:00
end .
2013-03-14 10:33:02 +01:00
2019-07-29 16:13:16 +02:00
%% This function is broken too?
2009-05-29 00:30:43 +02:00
get_item ( Host , Node , ItemId ) - >
2015-04-08 17:12:05 +02:00
Action = fun ( #pubsub_node { type = Type , id = Nidx } ) - >
node_call ( Host , Type , get_item , [ Nidx , ItemId ] )
end ,
2009-05-29 00:30:43 +02:00
case transaction ( Host , Node , Action , sync_dirty ) of
2015-04-08 17:12:05 +02:00
{ result , { _ , Items } } - > Items ;
Error - > Error
2009-05-29 00:30:43 +02:00
end .
2013-03-14 10:33:02 +01:00
2019-07-29 16:13:16 +02:00
- spec get_allowed_items_call ( host ( ) , nodeIdx ( ) , jid ( ) ,
binary ( ) , nodeOptions ( ) , [ ljid ( ) ] ) - > { result , [ #pubsub_item { } ] } |
{ error , stanza_error ( ) } .
2015-04-08 17:12:05 +02:00
get_allowed_items_call ( Host , Nidx , From , Type , Options , Owners ) - >
2016-09-13 11:30:05 +02:00
case get_allowed_items_call ( Host , Nidx , From , Type , Options , Owners , undefined ) of
2015-10-07 16:14:45 +02:00
{ result , { Items , _ RSM } } - > { result , Items } ;
2015-04-08 17:12:05 +02:00
Error - > Error
end .
2019-07-29 16:13:16 +02:00
- spec get_allowed_items_call ( host ( ) , nodeIdx ( ) , jid ( ) ,
binary ( ) , nodeOptions ( ) , [ ljid ( ) ] ,
undefined | rsm_set ( ) ) - >
{ result , { [ #pubsub_item { } ] , undefined | rsm_set ( ) } } |
{ error , stanza_error ( ) } .
2015-04-08 17:12:05 +02:00
get_allowed_items_call ( Host , Nidx , From , Type , Options , Owners , RSM ) - >
2010-08-02 17:07:23 +02:00
AccessModel = get_option ( Options , access_model ) ,
AllowedGroups = get_option ( Options , roster_groups_allowed , [ ] ) ,
2015-04-08 17:12:05 +02:00
{ PS , RG } = get_presence_and_roster_permissions ( Host , From , Owners , AccessModel , AllowedGroups ) ,
node_call ( Host , Type , get_items , [ Nidx , From , AccessModel , PS , RG , undefined , RSM ] ) .
2019-07-29 16:13:16 +02:00
- spec get_last_items ( host ( ) , binary ( ) , nodeIdx ( ) , ljid ( ) , last | integer ( ) ) - > [ #pubsub_item { } ] .
2018-04-12 15:38:12 +02:00
get_last_items ( Host , Type , Nidx , LJID , last ) - >
% hack to handle section 6.1.7 of XEP-0060
get_last_items ( Host , Type , Nidx , LJID , 1 ) ;
2017-08-14 15:25:45 +02:00
get_last_items ( Host , Type , Nidx , LJID , 1 ) - >
2017-08-02 12:22:13 +02:00
case get_cached_item ( Host , Nidx ) of
undefined - >
2017-08-14 15:25:45 +02:00
case node_action ( Host , Type , get_last_items , [ Nidx , LJID , 1 ] ) of
2017-08-02 12:22:13 +02:00
{ result , Items } - > Items ;
2017-08-14 15:25:45 +02:00
_ - > [ ]
2017-08-02 12:22:13 +02:00
end ;
LastItem - >
[ LastItem ]
2009-05-29 00:30:43 +02:00
end ;
2017-08-14 15:25:45 +02:00
get_last_items ( Host , Type , Nidx , LJID , Count ) when Count > 1 - >
case node_action ( Host , Type , get_last_items , [ Nidx , LJID , Count ] ) of
{ result , Items } - > Items ;
_ - > [ ]
end ;
get_last_items ( _ Host , _ Type , _ Nidx , _ LJID , _ Count ) - >
[ ] .
2015-04-08 17:12:05 +02:00
2019-07-31 12:20:38 +02:00
- spec get_only_item ( host ( ) , binary ( ) , nodeIdx ( ) , ljid ( ) ) - > [ #pubsub_item { } ] .
get_only_item ( Host , Type , Nidx , LJID ) - >
case get_cached_item ( Host , Nidx ) of
undefined - >
case node_action ( Host , Type , get_only_item , [ Nidx , LJID ] ) of
{ result , Items } when length ( Items ) < 2 - >
Items ;
{ result , Items } - >
[ hd ( lists : keysort ( #pubsub_item.modification , Items ) ) ] ;
_ - > [ ]
end ;
LastItem - >
[ LastItem ]
end .
2013-06-14 00:04:25 +02:00
%% @doc <p>Return the list of affiliations as an XMPP response.</p>
2016-08-30 08:48:08 +02:00
- spec get_affiliations ( host ( ) , binary ( ) , jid ( ) , [ binary ( ) ] ) - >
2016-09-08 16:08:48 +02:00
{ result , pubsub ( ) } | { error , stanza_error ( ) } .
2015-04-08 17:12:05 +02:00
get_affiliations ( Host , Node , JID , Plugins ) when is_list ( Plugins ) - >
2016-08-30 08:48:08 +02:00
Result =
lists : foldl (
fun ( Type , { Status , Acc } ) - >
Features = plugin_features ( Host , Type ) ,
RetrieveFeature = lists : member ( < < " retrieve-affiliations " > > , Features ) ,
if not RetrieveFeature - >
{ { error , extended_error ( xmpp : err_feature_not_implemented ( ) ,
err_unsupported ( 'retrieve-affiliations' ) ) } ,
Acc } ;
true - >
2019-07-29 16:13:16 +02:00
case node_action ( Host , Type ,
get_entity_affiliations ,
[ Host , JID ] ) of
{ result , Affs } - >
{ Status , [ Affs | Acc ] } ;
{ error , _ } = Err - >
{ Err , Acc }
end
2016-08-30 08:48:08 +02:00
end
2019-07-29 16:13:16 +02:00
end , { ok , [ ] } , Plugins ) ,
2012-04-11 16:50:36 +02:00
case Result of
2015-04-08 17:12:05 +02:00
{ ok , Affs } - >
2016-08-30 08:48:08 +02:00
Entities = lists : flatmap (
fun ( { _ , none } ) - >
[ ] ;
( { #pubsub_node { nodeid = { _ , NodeId } } , Aff } ) - >
if ( Node == < < > > ) or ( Node == NodeId ) - >
[ #ps_affiliation { node = NodeId ,
type = Aff } ] ;
true - >
[ ]
end ;
( _ ) - >
[ ]
end , lists : usort ( lists : flatten ( Affs ) ) ) ,
{ result , #pubsub { affiliations = { < < > > , Entities } } } ;
2015-04-08 17:12:05 +02:00
{ Error , _ } - >
Error
2012-04-11 16:50:36 +02:00
end .
2016-08-30 08:48:08 +02:00
- spec get_affiliations ( host ( ) , binary ( ) , jid ( ) ) - >
2016-09-08 16:08:48 +02:00
{ result , pubsub_owner ( ) } | { error , stanza_error ( ) } .
2007-12-01 06:16:30 +01:00
get_affiliations ( Host , Node , JID ) - >
2016-08-30 08:48:08 +02:00
Action =
fun ( #pubsub_node { type = Type , id = Nidx } ) - >
Features = plugin_features ( Host , Type ) ,
RetrieveFeature = lists : member ( < < " modify-affiliations " > > , Features ) ,
{ result , Affiliation } = node_call ( Host , Type , get_affiliation , [ Nidx , JID ] ) ,
if not RetrieveFeature - >
{ error , extended_error ( xmpp : err_feature_not_implemented ( ) ,
err_unsupported ( 'modify-affiliations' ) ) } ;
Affiliation / = owner - >
2019-06-22 16:08:45 +02:00
{ error , xmpp : err_forbidden ( ? T ( " Owner privileges required " ) , ejabberd_option : language ( ) ) } ;
2016-08-30 08:48:08 +02:00
true - >
node_call ( Host , Type , get_node_affiliations , [ Nidx ] )
end
end ,
2007-12-01 06:16:30 +01:00
case transaction ( Host , Node , Action , sync_dirty ) of
2015-04-08 17:12:05 +02:00
{ result , { _ , [ ] } } - >
2016-08-30 08:48:08 +02:00
{ error , xmpp : err_item_not_found ( ) } ;
2015-04-08 17:12:05 +02:00
{ result , { _ , Affs } } - >
2016-08-30 08:48:08 +02:00
Entities = lists : flatmap (
fun ( { _ , none } ) - >
[ ] ;
( { AJID , Aff } ) - >
[ #ps_affiliation { jid = AJID , type = Aff } ]
end , Affs ) ,
{ result , #pubsub_owner { affiliations = { Node , Entities } } } ;
2015-04-08 17:12:05 +02:00
Error - >
Error
2003-07-08 22:11:27 +02:00
end .
2016-08-30 08:48:08 +02:00
- spec set_affiliations ( host ( ) , binary ( ) , jid ( ) , [ ps_affiliation ( ) ] ) - >
2016-09-08 16:08:48 +02:00
{ result , undefined } | { error , stanza_error ( ) } .
2016-08-30 08:48:08 +02:00
set_affiliations ( Host , Node , From , Affs ) - >
2015-11-24 16:44:13 +01:00
Owner = jid : tolower ( jid : remove_resource ( From ) ) ,
2016-08-30 08:48:08 +02:00
Action =
2022-02-02 22:35:28 +01:00
fun ( #pubsub_node { type = Type , id = Nidx , owners = O , options = Options } = N ) - >
2016-08-30 08:48:08 +02:00
Owners = node_owners_call ( Host , Type , Nidx , O ) ,
case lists : member ( Owner , Owners ) of
true - >
2022-02-02 22:35:28 +01:00
AccessModel = get_option ( Options , access_model ) ,
2016-08-30 08:48:08 +02:00
OwnerJID = jid : make ( Owner ) ,
FilteredAffs =
case Owners of
[ Owner ] - >
[ Aff | | Aff < - Affs ,
Aff #ps_affiliation.jid / = OwnerJID ] ;
_ - >
Affs
2015-04-08 17:12:05 +02:00
end ,
2016-08-30 08:48:08 +02:00
lists : foreach (
fun ( #ps_affiliation { jid = JID , type = Affiliation } ) - >
node_call ( Host , Type , set_affiliation , [ Nidx , JID , Affiliation ] ) ,
case Affiliation of
owner - >
NewOwner = jid : tolower ( jid : remove_resource ( JID ) ) ,
NewOwners = [ NewOwner | Owners ] ,
tree_call ( Host ,
2015-04-08 17:12:05 +02:00
set_node ,
[ N #pubsub_node { owners = NewOwners } ] ) ;
2016-08-30 08:48:08 +02:00
none - >
OldOwner = jid : tolower ( jid : remove_resource ( JID ) ) ,
case lists : member ( OldOwner , Owners ) of
true - >
NewOwners = Owners -- [ OldOwner ] ,
tree_call ( Host ,
2015-04-08 17:12:05 +02:00
set_node ,
[ N #pubsub_node { owners = NewOwners } ] ) ;
2016-08-30 08:48:08 +02:00
_ - >
ok
end ;
_ - >
ok
2022-02-02 22:35:28 +01:00
end ,
case AccessModel of
whitelist when Affiliation / = owner ,
Affiliation / = publisher ,
Affiliation / = member - >
node_action ( Host , Type ,
unsubscribe_node ,
[ Nidx , OwnerJID , JID ,
all ] ) ;
_ - >
ok
2016-08-30 08:48:08 +02:00
end
end , FilteredAffs ) ,
{ result , undefined } ;
_ - >
{ error , xmpp : err_forbidden (
2019-06-22 16:08:45 +02:00
? T ( " Owner privileges required " ) , ejabberd_option : language ( ) ) }
2016-08-30 08:48:08 +02:00
end
end ,
case transaction ( Host , Node , Action , sync_dirty ) of
{ result , { _ , Result } } - > { result , Result } ;
Other - > Other
2003-07-08 22:11:27 +02:00
end .
2016-08-30 08:48:08 +02:00
- spec get_options ( binary ( ) , binary ( ) , jid ( ) , binary ( ) , binary ( ) ) - >
2016-09-08 16:08:48 +02:00
{ result , xdata ( ) } | { error , stanza_error ( ) } .
2015-04-08 17:12:05 +02:00
get_options ( Host , Node , JID , SubId , Lang ) - >
Action = fun ( #pubsub_node { type = Type , id = Nidx } ) - >
case lists : member ( < < " subscription-options " > > , plugin_features ( Host , Type ) ) of
true - >
get_options_helper ( Host , JID , Lang , Node , Nidx , SubId , Type ) ;
false - >
2016-08-30 08:48:08 +02:00
{ error , extended_error ( xmpp : err_feature_not_implemented ( ) ,
err_unsupported ( 'subscription-options' ) ) }
2015-04-08 17:12:05 +02:00
end
end ,
2009-05-29 04:14:07 +02:00
case transaction ( Host , Node , Action , sync_dirty ) of
2016-08-30 08:48:08 +02:00
{ result , { _ Node , XForm } } - > { result , XForm } ;
2015-04-08 17:12:05 +02:00
Error - > Error
2009-05-29 04:14:07 +02:00
end .
2016-08-30 08:48:08 +02:00
- spec get_options_helper ( binary ( ) , jid ( ) , binary ( ) , binary ( ) , _ , binary ( ) ,
2016-09-08 16:08:48 +02:00
binary ( ) ) - > { result , pubsub ( ) } | { error , stanza_error ( ) } .
2015-04-08 17:12:05 +02:00
get_options_helper ( Host , JID , Lang , Node , Nidx , SubId , Type ) - >
2016-08-30 08:48:08 +02:00
Subscriber = jid : tolower ( JID ) ,
2019-07-29 16:13:16 +02:00
case node_call ( Host , Type , get_subscriptions , [ Nidx , Subscriber ] ) of
{ result , Subs } - >
SubIds = [ Id | | { Sub , Id } < - Subs , Sub == subscribed ] ,
case { SubId , SubIds } of
{ _ , [ ] } - >
2016-08-30 08:48:08 +02:00
{ error , extended_error ( xmpp : err_not_acceptable ( ) ,
2019-07-29 16:13:16 +02:00
err_not_subscribed ( ) ) } ;
{ < < > > , [ SID ] } - >
read_sub ( Host , Node , Nidx , Subscriber , SID , Lang ) ;
{ < < > > , _ } - >
{ error , extended_error ( xmpp : err_not_acceptable ( ) ,
err_subid_required ( ) ) } ;
{ _ , _ } - >
ValidSubId = lists : member ( SubId , SubIds ) ,
if ValidSubId - >
read_sub ( Host , Node , Nidx , Subscriber , SubId , Lang ) ;
true - >
{ error , extended_error ( xmpp : err_not_acceptable ( ) ,
err_invalid_subid ( ) ) }
end
end ;
{ error , _ } = Error - >
Error
2009-05-29 04:14:07 +02:00
end .
2016-08-30 08:48:08 +02:00
- spec read_sub ( binary ( ) , binary ( ) , nodeIdx ( ) , ljid ( ) , binary ( ) , binary ( ) ) - > { result , pubsub ( ) } .
2015-04-08 17:12:05 +02:00
read_sub ( Host , Node , Nidx , Subscriber , SubId , Lang ) - >
SubModule = subscription_plugin ( Host ) ,
2016-08-30 08:48:08 +02:00
XData = case SubModule : get_subscription ( Subscriber , Nidx , SubId ) of
{ error , notfound } - >
undefined ;
{ result , #pubsub_subscription { options = Options } } - >
{ result , X } = SubModule : get_options_xform ( Lang , Options ) ,
X
end ,
{ result , #pubsub { options = #ps_options { jid = jid : make ( Subscriber ) ,
subid = SubId ,
node = Node ,
xdata = XData } } } .
- spec set_options ( binary ( ) , binary ( ) , jid ( ) , binary ( ) ,
[ { binary ( ) , [ binary ( ) ] } ] ) - >
2016-09-08 16:08:48 +02:00
{ result , undefined } | { error , stanza_error ( ) } .
2015-04-08 17:12:05 +02:00
set_options ( Host , Node , JID , SubId , Configuration ) - >
Action = fun ( #pubsub_node { type = Type , id = Nidx } ) - >
case lists : member ( < < " subscription-options " > > , plugin_features ( Host , Type ) ) of
true - >
set_options_helper ( Host , Configuration , JID , Nidx , SubId , Type ) ;
false - >
2016-08-30 08:48:08 +02:00
{ error , extended_error ( xmpp : err_feature_not_implemented ( ) ,
err_unsupported ( 'subscription-options' ) ) }
2015-04-08 17:12:05 +02:00
end
end ,
2009-05-29 04:14:07 +02:00
case transaction ( Host , Node , Action , sync_dirty ) of
2015-04-08 17:12:05 +02:00
{ result , { _ Node , Result } } - > { result , Result } ;
Error - > Error
2009-05-29 04:14:07 +02:00
end .
2016-08-30 08:48:08 +02:00
- spec set_options_helper ( binary ( ) , [ { binary ( ) , [ binary ( ) ] } ] , jid ( ) ,
nodeIdx ( ) , binary ( ) , binary ( ) ) - >
2016-09-08 16:08:48 +02:00
{ result , undefined } | { error , stanza_error ( ) } .
2015-04-08 17:12:05 +02:00
set_options_helper ( Host , Configuration , JID , Nidx , SubId , Type ) - >
SubModule = subscription_plugin ( Host ) ,
SubOpts = case SubModule : parse_options_xform ( Configuration ) of
{ result , GoodSubOpts } - > GoodSubOpts ;
_ - > invalid
end ,
2016-08-30 08:48:08 +02:00
Subscriber = jid : tolower ( JID ) ,
2019-07-29 16:13:16 +02:00
case node_call ( Host , Type , get_subscriptions , [ Nidx , Subscriber ] ) of
{ result , Subs } - >
SubIds = [ Id | | { Sub , Id } < - Subs , Sub == subscribed ] ,
case { SubId , SubIds } of
{ _ , [ ] } - >
{ error , extended_error ( xmpp : err_not_acceptable ( ) , err_not_subscribed ( ) ) } ;
{ < < > > , [ SID ] } - >
write_sub ( Host , Nidx , Subscriber , SID , SubOpts ) ;
{ < < > > , _ } - >
{ error , extended_error ( xmpp : err_not_acceptable ( ) , err_subid_required ( ) ) } ;
{ _ , _ } - >
write_sub ( Host , Nidx , Subscriber , SubId , SubOpts )
end ;
{ error , _ } = Err - >
Err
2009-05-29 04:14:07 +02:00
end .
2016-08-30 08:48:08 +02:00
- spec write_sub ( binary ( ) , nodeIdx ( ) , ljid ( ) , binary ( ) , _ ) - > { result , undefined } |
2016-09-08 16:08:48 +02:00
{ error , stanza_error ( ) } .
2015-04-08 17:12:05 +02:00
write_sub ( _ Host , _ Nidx , _ Subscriber , _ SubId , invalid ) - >
2016-08-30 08:48:08 +02:00
{ error , extended_error ( xmpp : err_bad_request ( ) , err_invalid_options ( ) ) } ;
2015-04-08 17:12:05 +02:00
write_sub ( _ Host , _ Nidx , _ Subscriber , _ SubId , [ ] ) - >
2016-08-30 08:48:08 +02:00
{ result , undefined } ;
2015-04-08 17:12:05 +02:00
write_sub ( Host , Nidx , Subscriber , SubId , Options ) - >
SubModule = subscription_plugin ( Host ) ,
case SubModule : set_subscription ( Subscriber , Nidx , SubId , Options ) of
2016-08-30 08:48:08 +02:00
{ result , _ } - > { result , undefined } ;
{ error , _ } - > { error , extended_error ( xmpp : err_not_acceptable ( ) ,
err_invalid_subid ( ) ) }
2009-05-29 04:14:07 +02:00
end .
2003-07-08 22:11:27 +02:00
2007-12-01 06:16:30 +01:00
%% @doc <p>Return the list of subscriptions as an XMPP response.</p>
2016-08-30 08:48:08 +02:00
- spec get_subscriptions ( host ( ) , binary ( ) , jid ( ) , [ binary ( ) ] ) - >
2016-09-08 16:08:48 +02:00
{ result , pubsub ( ) } | { error , stanza_error ( ) } .
2009-05-08 01:35:59 +02:00
get_subscriptions ( Host , Node , JID , Plugins ) when is_list ( Plugins ) - >
2015-04-08 17:12:05 +02:00
Result = lists : foldl ( fun ( Type , { Status , Acc } ) - >
Features = plugin_features ( Host , Type ) ,
RetrieveFeature = lists : member ( < < " retrieve-subscriptions " > > , Features ) ,
if not RetrieveFeature - >
2016-08-30 08:48:08 +02:00
{ { error , extended_error ( xmpp : err_feature_not_implemented ( ) ,
err_unsupported ( 'retrieve-subscriptions' ) ) } ,
2015-04-08 17:12:05 +02:00
Acc } ;
true - >
2015-11-24 16:44:13 +01:00
Subscriber = jid : remove_resource ( JID ) ,
2019-07-29 16:13:16 +02:00
case node_action ( Host , Type ,
get_entity_subscriptions ,
[ Host , Subscriber ] ) of
{ result , Subs } - >
{ Status , [ Subs | Acc ] } ;
{ error , _ } = Err - >
{ Err , Acc }
end
2015-04-08 17:12:05 +02:00
end
2019-07-29 16:13:16 +02:00
end , { ok , [ ] } , Plugins ) ,
2007-12-01 06:16:30 +01:00
case Result of
2015-04-08 17:12:05 +02:00
{ ok , Subs } - >
Entities = lists : flatmap ( fun
( { #pubsub_node { nodeid = { _ , SubsNode } } , Sub } ) - >
case Node of
< < > > - >
2019-06-14 11:33:26 +02:00
[ #ps_subscription { jid = jid : remove_resource ( JID ) ,
node = SubsNode , type = Sub } ] ;
2015-04-08 17:12:05 +02:00
SubsNode - >
2019-06-14 11:33:26 +02:00
[ #ps_subscription { jid = jid : remove_resource ( JID ) ,
type = Sub } ] ;
2015-04-08 17:12:05 +02:00
_ - >
[ ]
end ;
( { #pubsub_node { nodeid = { _ , SubsNode } } , Sub , SubId , SubJID } ) - >
case Node of
< < > > - >
2016-08-30 08:48:08 +02:00
[ #ps_subscription { jid = SubJID ,
subid = SubId ,
type = Sub ,
node = SubsNode } ] ;
2015-04-08 17:12:05 +02:00
SubsNode - >
2016-08-30 08:48:08 +02:00
[ #ps_subscription { jid = SubJID ,
subid = SubId ,
type = Sub } ] ;
2015-04-08 17:12:05 +02:00
_ - >
[ ]
end ;
( { #pubsub_node { nodeid = { _ , SubsNode } } , Sub , SubJID } ) - >
case Node of
< < > > - >
2016-08-30 08:48:08 +02:00
[ #ps_subscription { jid = SubJID ,
type = Sub ,
node = SubsNode } ] ;
2015-04-08 17:12:05 +02:00
SubsNode - >
2016-08-30 08:48:08 +02:00
[ #ps_subscription { jid = SubJID , type = Sub } ] ;
2015-04-08 17:12:05 +02:00
_ - >
[ ]
end
end ,
lists : usort ( lists : flatten ( Subs ) ) ) ,
2016-08-30 08:48:08 +02:00
{ result , #pubsub { subscriptions = { < < > > , Entities } } } ;
2015-04-08 17:12:05 +02:00
{ Error , _ } - >
Error
2009-05-08 01:35:59 +02:00
end .
2013-03-14 10:33:02 +01:00
2016-09-08 14:49:27 +02:00
- spec get_subscriptions ( host ( ) , binary ( ) , jid ( ) ) - > { result , pubsub_owner ( ) } |
2016-09-08 16:08:48 +02:00
{ error , stanza_error ( ) } .
2007-12-01 06:16:30 +01:00
get_subscriptions ( Host , Node , JID ) - >
2019-07-29 16:13:16 +02:00
Action = fun ( #pubsub_node { type = Type , id = Nidx } ) - >
Features = plugin_features ( Host , Type ) ,
RetrieveFeature = lists : member ( < < " manage-subscriptions " > > , Features ) ,
case node_call ( Host , Type , get_affiliation , [ Nidx , JID ] ) of
{ result , Affiliation } - >
if not RetrieveFeature - >
{ error , extended_error ( xmpp : err_feature_not_implemented ( ) ,
err_unsupported ( 'manage-subscriptions' ) ) } ;
Affiliation / = owner - >
Lang = ejabberd_option : language ( ) ,
{ error , xmpp : err_forbidden ( ? T ( " Owner privileges required " ) , Lang ) } ;
true - >
node_call ( Host , Type , get_node_subscriptions , [ Nidx ] )
end ;
Error - >
Error
end
end ,
2007-12-01 06:16:30 +01:00
case transaction ( Host , Node , Action , sync_dirty ) of
2015-04-08 17:12:05 +02:00
{ result , { _ , Subs } } - >
2016-08-30 08:48:08 +02:00
Entities =
lists : flatmap (
fun ( { _ , none } ) - >
[ ] ;
( { _ , pending , _ } ) - >
[ ] ;
( { AJID , Sub } ) - >
[ #ps_subscription { jid = AJID , type = Sub } ] ;
2015-04-08 17:12:05 +02:00
( { AJID , Sub , SubId } ) - >
2016-08-30 08:48:08 +02:00
[ #ps_subscription { jid = AJID , type = Sub , subid = SubId } ]
end , Subs ) ,
2016-09-08 14:49:27 +02:00
{ result , #pubsub_owner { subscriptions = { Node , Entities } } } ;
2015-04-08 17:12:05 +02:00
Error - >
Error
2005-07-20 05:09:34 +02:00
end .
2003-07-08 22:11:27 +02:00
2019-07-29 16:13:16 +02:00
- spec get_subscriptions_for_send_last ( host ( ) , binary ( ) , atom ( ) , jid ( ) , ljid ( ) , ljid ( ) ) - >
[ { #pubsub_node { } , subId ( ) , ljid ( ) } ] .
2017-03-30 14:26:30 +02:00
get_subscriptions_for_send_last ( Host , PType , sql , JID , LJID , BJID ) - >
2019-07-29 16:13:16 +02:00
case node_action ( Host , PType ,
get_entity_subscriptions_for_send_last ,
[ Host , JID ] ) of
{ result , Subs } - >
[ { Node , SubId , SubJID }
| | { Node , Sub , SubId , SubJID } < - Subs ,
Sub =:= subscribed , ( SubJID == LJID ) or ( SubJID == BJID ) ] ;
_ - >
[ ]
end ;
%% sql version already filter result by on_sub_and_presence
2017-03-30 14:26:30 +02:00
get_subscriptions_for_send_last ( Host , PType , _ , JID , LJID , BJID ) - >
2019-07-29 16:13:16 +02:00
case node_action ( Host , PType ,
get_entity_subscriptions ,
[ Host , JID ] ) of
{ result , Subs } - >
[ { Node , SubId , SubJID }
| | { Node , Sub , SubId , SubJID } < - Subs ,
Sub =:= subscribed , ( SubJID == LJID ) or ( SubJID == BJID ) ,
match_option ( Node , send_last_published_item , on_sub_and_presence ) ] ;
_ - >
[ ]
end .
2015-04-08 17:12:05 +02:00
2016-09-08 14:49:27 +02:00
- spec set_subscriptions ( host ( ) , binary ( ) , jid ( ) , [ ps_subscription ( ) ] ) - >
2016-09-08 16:08:48 +02:00
{ result , undefined } | { error , stanza_error ( ) } .
2016-08-30 08:48:08 +02:00
set_subscriptions ( Host , Node , From , Entities ) - >
2015-11-24 16:44:13 +01:00
Owner = jid : tolower ( jid : remove_resource ( From ) ) ,
2016-08-30 08:48:08 +02:00
Notify = fun ( #ps_subscription { jid = JID , type = Sub } ) - >
Stanza = #message {
2017-02-16 09:00:26 +01:00
from = service_jid ( Host ) ,
to = JID ,
2016-10-07 09:31:03 +02:00
sub_els = [ #ps_event {
2016-08-30 08:48:08 +02:00
subscription = #ps_subscription {
jid = JID ,
type = Sub ,
node = Node } } ] } ,
2017-02-16 09:00:26 +01:00
ejabberd_router : route ( Stanza )
2016-08-30 08:48:08 +02:00
end ,
Action =
fun ( #pubsub_node { type = Type , id = Nidx , owners = O } ) - >
Owners = node_owners_call ( Host , Type , Nidx , O ) ,
case lists : member ( Owner , Owners ) of
true - >
Result =
lists : foldl (
fun ( _ , { error , _ } = Err ) - >
Err ;
( #ps_subscription { jid = JID , type = Sub ,
subid = SubId } = Entity , _ ) - >
case node_call ( Host , Type ,
set_subscriptions ,
[ Nidx , JID , Sub , SubId ] ) of
{ error , _ } = Err - >
Err ;
_ - >
Notify ( Entity )
end
end , ok , Entities ) ,
case Result of
ok - > { result , undefined } ;
{ error , _ } = Err - > Err
end ;
_ - >
{ error , xmpp : err_forbidden (
2019-06-22 16:08:45 +02:00
? T ( " Owner privileges required " ) , ejabberd_option : language ( ) ) }
2019-06-14 11:33:26 +02:00
2016-08-30 08:48:08 +02:00
end
end ,
case transaction ( Host , Node , Action , sync_dirty ) of
{ result , { _ , Result } } - > { result , Result } ;
Other - > Other
2003-07-08 22:11:27 +02:00
end .
2016-08-30 08:48:08 +02:00
- spec get_presence_and_roster_permissions (
2019-06-14 11:33:26 +02:00
host ( ) , jid ( ) , [ ljid ( ) ] , accessModel ( ) ,
2016-08-30 08:48:08 +02:00
[ binary ( ) ] ) - > { boolean ( ) , boolean ( ) } .
2010-08-02 17:07:23 +02:00
get_presence_and_roster_permissions ( Host , From , Owners , AccessModel , AllowedGroups ) - >
if ( AccessModel == presence ) or ( AccessModel == roster ) - >
2015-04-08 17:12:05 +02:00
case Host of
{ User , Server , _ } - >
get_roster_info ( User , Server , From , AllowedGroups ) ;
_ - >
[ { OUser , OServer , _ } | _ ] = Owners ,
get_roster_info ( OUser , OServer , From , AllowedGroups )
end ;
true - >
{ true , true }
2010-08-02 17:07:23 +02:00
end .
2019-06-14 11:33:26 +02:00
- spec get_roster_info ( binary ( ) , binary ( ) , ljid ( ) | jid ( ) , [ binary ( ) ] ) - > { boolean ( ) , boolean ( ) } .
2015-04-08 17:12:05 +02:00
get_roster_info ( _ , _ , { < < > > , < < > > , _ } , _ ) - >
2010-08-02 17:07:23 +02:00
{ false , false } ;
2015-04-08 17:12:05 +02:00
get_roster_info ( OwnerUser , OwnerServer , { SubscriberUser , SubscriberServer , _ } , AllowedGroups ) - >
LJID = { SubscriberUser , SubscriberServer , < < > > } ,
2018-01-26 13:02:06 +01:00
{ Subscription , _ Ask , Groups } = ejabberd_hooks : run_fold ( roster_get_jid_info ,
OwnerServer , { none , none , [ ] } ,
2015-04-08 17:12:05 +02:00
[ OwnerUser , OwnerServer , LJID ] ) ,
2013-03-14 10:33:02 +01:00
PresenceSubscription = Subscription == both orelse
2015-04-08 17:12:05 +02:00
Subscription == from orelse
{ OwnerUser , OwnerServer } == { SubscriberUser , SubscriberServer } ,
2013-03-14 10:33:02 +01:00
RosterGroup = lists : any ( fun ( Group ) - >
2015-04-08 17:12:05 +02:00
lists : member ( Group , AllowedGroups )
end ,
Groups ) ,
2010-08-02 17:07:23 +02:00
{ PresenceSubscription , RosterGroup } ;
2015-04-08 17:12:05 +02:00
get_roster_info ( OwnerUser , OwnerServer , JID , AllowedGroups ) - >
2015-11-24 16:44:13 +01:00
get_roster_info ( OwnerUser , OwnerServer , jid : tolower ( JID ) , AllowedGroups ) .
2013-03-14 10:33:02 +01:00
2017-12-12 01:04:14 +01:00
- spec preconditions_met ( pubsub_publish_options : result ( ) ,
pubsub_node_config : result ( ) ) - > boolean ( ) .
preconditions_met ( PubOpts , NodeOpts ) - >
lists : all ( fun ( Opt ) - > lists : member ( Opt , NodeOpts ) end , PubOpts ) .
2016-08-30 08:48:08 +02:00
- spec service_jid ( jid ( ) | ljid ( ) | binary ( ) ) - > jid ( ) .
2016-03-25 17:52:08 +01:00
service_jid ( #jid { } = Jid ) - > Jid ;
service_jid ( { U , S , R } ) - > jid : make ( U , S , R ) ;
2016-08-30 08:48:08 +02:00
service_jid ( Host ) - > jid : make ( Host ) .
2013-06-14 00:04:25 +02:00
2009-05-29 04:14:07 +02:00
%% @doc <p>Check if a notification must be delivered or not based on
%% node and subscription options.</p>
2019-07-29 16:13:16 +02:00
- spec is_to_deliver ( ljid ( ) , items | nodes , integer ( ) , nodeOptions ( ) , subOptions ( ) ) - > boolean ( ) .
2015-04-08 17:12:05 +02:00
is_to_deliver ( LJID , NotifyType , Depth , NodeOptions , SubOptions ) - >
2009-06-15 15:45:40 +02:00
sub_to_deliver ( LJID , NotifyType , Depth , SubOptions )
2015-04-08 17:12:05 +02:00
andalso node_to_deliver ( LJID , NodeOptions ) .
2009-06-15 15:45:40 +02:00
2019-07-29 16:13:16 +02:00
- spec sub_to_deliver ( ljid ( ) , items | nodes , integer ( ) , subOptions ( ) ) - > boolean ( ) .
2009-06-15 15:45:40 +02:00
sub_to_deliver ( _ LJID , NotifyType , Depth , SubOptions ) - >
lists : all ( fun ( Option ) - >
2015-04-08 17:12:05 +02:00
sub_option_can_deliver ( NotifyType , Depth , Option )
end ,
SubOptions ) .
2019-07-29 16:13:16 +02:00
- spec node_to_deliver ( ljid ( ) , nodeOptions ( ) ) - > boolean ( ) .
2015-04-08 17:12:05 +02:00
node_to_deliver ( LJID , NodeOptions ) - >
presence_can_deliver ( LJID , get_option ( NodeOptions , presence_based_delivery ) ) .
2009-06-15 15:45:40 +02:00
2019-07-29 16:13:16 +02:00
- spec sub_option_can_deliver ( items | nodes , integer ( ) , _ ) - > boolean ( ) .
2009-06-15 15:45:40 +02:00
sub_option_can_deliver ( items , _ , { subscription_type , nodes } ) - > false ;
sub_option_can_deliver ( nodes , _ , { subscription_type , items } ) - > false ;
2015-04-08 17:12:05 +02:00
sub_option_can_deliver ( _ , _ , { subscription_depth , all } ) - > true ;
sub_option_can_deliver ( _ , Depth , { subscription_depth , D } ) - > Depth =< D ;
sub_option_can_deliver ( _ , _ , { deliver , false } ) - > false ;
2019-02-27 09:56:20 +01:00
sub_option_can_deliver ( _ , _ , { expire , When } ) - > erlang : timestamp ( ) < When ;
2015-04-08 17:12:05 +02:00
sub_option_can_deliver ( _ , _ , _ ) - > true .
2009-05-29 04:14:07 +02:00
2016-08-30 08:48:08 +02:00
- spec presence_can_deliver ( ljid ( ) , boolean ( ) ) - > boolean ( ) .
2015-04-08 17:12:05 +02:00
presence_can_deliver ( _ , false ) - >
true ;
2010-05-05 15:42:49 +02:00
presence_can_deliver ( { User , Server , Resource } , true ) - >
2016-01-19 23:48:48 +01:00
case ejabberd_sm : get_user_present_resources ( User , Server ) of
2015-04-08 17:12:05 +02:00
[ ] - >
false ;
Ss - >
lists : foldl ( fun
( _ , true ) - >
true ;
2016-01-19 23:48:48 +01:00
( { _ , R } , _ Acc ) - >
case Resource of
2015-04-08 17:12:05 +02:00
< < > > - > true ;
R - > true ;
_ - > false
end
end ,
false , Ss )
2007-12-11 17:19:17 +01:00
end .
2007-12-01 06:16:30 +01:00
2019-07-29 16:13:16 +02:00
- spec state_can_deliver ( ljid ( ) , subOptions ( ) ) - > [ ljid ( ) ] .
2010-05-12 13:45:56 +02:00
state_can_deliver ( { U , S , R } , [ ] ) - > [ { U , S , R } ] ;
state_can_deliver ( { U , S , R } , SubOptions ) - >
2015-04-08 17:12:05 +02:00
case lists : keysearch ( show_values , 1 , SubOptions ) of
%% If not in suboptions, item can be delivered, case doesn't apply
false - > [ { U , S , R } ] ;
%% If in a suboptions ...
{ _ , { _ , ShowValues } } - >
Resources = case R of
%% If the subscriber JID is a bare one, get all its resources
< < > > - > user_resources ( U , S ) ;
%% If the subscriber JID is a full one, use its resource
R - > [ R ]
end ,
lists : foldl ( fun ( Resource , Acc ) - >
get_resource_state ( { U , S , Resource } , ShowValues , Acc )
end ,
[ ] , Resources )
2010-05-12 13:45:56 +02:00
end .
2016-08-30 08:48:08 +02:00
- spec get_resource_state ( ljid ( ) , [ binary ( ) ] , [ ljid ( ) ] ) - > [ ljid ( ) ] .
2010-05-12 13:45:56 +02:00
get_resource_state ( { U , S , R } , ShowValues , JIDs ) - >
case ejabberd_sm : get_session_pid ( U , S , R ) of
2015-04-08 17:12:05 +02:00
none - >
%% If no PID, item can be delivered
lists : append ( [ { U , S , R } ] , JIDs ) ;
Pid - >
Show = case ejabberd_c2s : get_presence ( Pid ) of
2016-12-11 13:03:37 +01:00
#presence { type = unavailable } - > < < " unavailable " > > ;
#presence { show = undefined } - > < < " online " > > ;
2019-06-14 11:33:26 +02:00
#presence { show = Sh } - > atom_to_binary ( Sh , latin1 )
2015-04-08 17:12:05 +02:00
end ,
case lists : member ( Show , ShowValues ) of
%% If yes, item can be delivered
true - > lists : append ( [ { U , S , R } ] , JIDs ) ;
%% If no, item can't be delivered
false - > JIDs
end
2010-05-12 13:45:56 +02:00
end .
2016-08-30 08:48:08 +02:00
- spec payload_xmlelements ( [ xmlel ( ) ] ) - > non_neg_integer ( ) .
2015-04-08 17:12:05 +02:00
payload_xmlelements ( Payload ) - >
payload_xmlelements ( Payload , 0 ) .
2019-07-29 16:13:16 +02:00
- spec payload_xmlelements ( [ xmlel ( ) ] , non_neg_integer ( ) ) - > non_neg_integer ( ) .
2008-12-09 23:02:47 +01:00
payload_xmlelements ( [ ] , Count ) - > Count ;
2013-03-14 10:33:02 +01:00
payload_xmlelements ( [ #xmlel { } | Tail ] , Count ) - >
payload_xmlelements ( Tail , Count + 1 ) ;
payload_xmlelements ( [ _ | Tail ] , Count ) - >
payload_xmlelements ( Tail , Count ) .
2008-12-08 20:50:50 +01:00
2019-07-29 16:13:16 +02:00
- spec items_els ( binary ( ) , nodeOptions ( ) , [ #pubsub_item { } ] ) - > ps_items ( ) .
2018-04-12 15:38:12 +02:00
items_els ( Node , Options , Items ) - >
Els = case get_option ( Options , itemreply ) of
publisher - >
[ #ps_item { id = ItemId , sub_els = Payload , publisher = jid : encode ( USR ) }
| | #pubsub_item { itemid = { ItemId , _ } , payload = Payload , modification = { _ , USR } }
< - Items ] ;
2015-04-08 17:12:05 +02:00
_ - >
2018-04-12 15:38:12 +02:00
[ #ps_item { id = ItemId , sub_els = Payload }
| | #pubsub_item { itemid = { ItemId , _ } , payload = Payload }
< - Items ]
2015-04-08 17:12:05 +02:00
end ,
2018-04-12 15:38:12 +02:00
#ps_items { node = Node , items = Els } .
2015-04-08 17:12:05 +02:00
2007-12-01 06:16:30 +01:00
%%%%%% broadcast functions
2019-07-29 16:13:16 +02:00
- spec broadcast_publish_item ( host ( ) , binary ( ) , nodeIdx ( ) , binary ( ) ,
nodeOptions ( ) , binary ( ) , jid ( ) , [ xmlel ( ) ] , _ ) - >
{ result , boolean ( ) } .
2015-04-08 17:12:05 +02:00
broadcast_publish_item ( Host , Node , Nidx , Type , NodeOptions , ItemId , From , Payload , Removed ) - >
2009-06-15 15:45:40 +02:00
case get_collection_subscriptions ( Host , Node ) of
2019-07-29 16:13:16 +02:00
{ result , SubsByDepth } - >
2018-04-12 15:38:12 +02:00
ItemPublisher = case get_option ( NodeOptions , itemreply ) of
publisher - > jid : encode ( From ) ;
2018-04-12 18:02:32 +02:00
_ - > < < > >
2018-04-12 15:38:12 +02:00
end ,
ItemPayload = case get_option ( NodeOptions , deliver_payloads ) of
true - > Payload ;
2018-04-12 18:02:32 +02:00
false - > [ ]
2018-04-12 15:38:12 +02:00
end ,
ItemsEls = #ps_items { node = Node ,
items = [ #ps_item { id = ItemId ,
publisher = ItemPublisher ,
sub_els = ItemPayload } ] } ,
Stanza = #message { sub_els = [ #ps_event { items = ItemsEls } ] } ,
2015-04-08 17:12:05 +02:00
broadcast_stanza ( Host , From , Node , Nidx , Type ,
2016-08-30 08:48:08 +02:00
NodeOptions , SubsByDepth , items , Stanza , true ) ,
2009-04-30 07:18:06 +02:00
case Removed of
[ ] - >
ok ;
_ - >
2009-05-29 04:14:07 +02:00
case get_option ( NodeOptions , notify_retract ) of
2009-04-30 07:18:06 +02:00
true - >
2016-08-30 08:48:08 +02:00
RetractStanza = #message {
sub_els =
[ #ps_event {
items = #ps_items {
node = Node ,
retract = Removed } } ] } ,
2015-04-08 17:12:05 +02:00
broadcast_stanza ( Host , Node , Nidx , Type ,
NodeOptions , SubsByDepth ,
items , RetractStanza , true ) ;
2009-04-30 07:18:06 +02:00
_ - >
ok
end
end ,
{ result , true } ;
_ - >
{ result , false }
end .
2024-11-30 20:38:33 +01:00
- spec broadcast_retract_items ( host ( ) , jid ( ) , binary ( ) , nodeIdx ( ) , binary ( ) ,
2019-07-29 16:13:16 +02:00
nodeOptions ( ) , [ itemId ( ) ] ) - > { result , boolean ( ) } .
2024-11-30 20:38:33 +01:00
broadcast_retract_items ( Host , Publisher , Node , Nidx , Type , NodeOptions , ItemIds ) - >
broadcast_retract_items ( Host , Publisher , Node , Nidx , Type , NodeOptions , ItemIds , false ) .
2019-07-29 16:13:16 +02:00
2024-11-30 20:38:33 +01:00
- spec broadcast_retract_items ( host ( ) , jid ( ) , binary ( ) , nodeIdx ( ) , binary ( ) ,
2019-07-29 16:13:16 +02:00
nodeOptions ( ) , [ itemId ( ) ] , boolean ( ) ) - > { result , boolean ( ) } .
2024-11-30 20:38:33 +01:00
broadcast_retract_items ( _ Host , _ Publisher , _ Node , _ Nidx , _ Type , _ NodeOptions , [ ] , _ ForceNotify ) - >
2009-04-30 07:18:06 +02:00
{ result , false } ;
2024-11-30 20:38:33 +01:00
broadcast_retract_items ( Host , Publisher , Node , Nidx , Type , NodeOptions , ItemIds , ForceNotify ) - >
2009-05-29 04:14:07 +02:00
case ( get_option ( NodeOptions , notify_retract ) or ForceNotify ) of
2009-04-30 07:18:06 +02:00
true - >
2009-06-15 15:45:40 +02:00
case get_collection_subscriptions ( Host , Node ) of
2019-07-29 16:13:16 +02:00
{ result , SubsByDepth } - >
2016-08-30 08:48:08 +02:00
Stanza = #message {
sub_els =
[ #ps_event {
items = #ps_items {
node = Node ,
retract = ItemIds } } ] } ,
2024-11-30 20:38:33 +01:00
broadcast_stanza ( Host , Publisher , Node , Nidx , Type ,
2015-04-08 17:12:05 +02:00
NodeOptions , SubsByDepth , items , Stanza , true ) ,
2009-01-03 01:25:40 +01:00
{ result , true } ;
_ - >
{ result , false }
2009-04-30 07:18:06 +02:00
end ;
_ - >
{ result , false }
end .
2007-12-01 06:16:30 +01:00
2019-07-29 16:13:16 +02:00
- spec broadcast_purge_node ( host ( ) , binary ( ) , nodeIdx ( ) , binary ( ) , nodeOptions ( ) ) - > { result , boolean ( ) } .
2015-04-08 17:12:05 +02:00
broadcast_purge_node ( Host , Node , Nidx , Type , NodeOptions ) - >
2009-05-29 04:14:07 +02:00
case get_option ( NodeOptions , notify_retract ) of
2009-04-30 07:18:06 +02:00
true - >
2009-06-15 15:45:40 +02:00
case get_collection_subscriptions ( Host , Node ) of
2019-07-29 16:13:16 +02:00
{ result , SubsByDepth } - >
2016-08-30 08:48:08 +02:00
Stanza = #message { sub_els = [ #ps_event { purge = Node } ] } ,
2015-04-08 17:12:05 +02:00
broadcast_stanza ( Host , Node , Nidx , Type ,
NodeOptions , SubsByDepth , nodes , Stanza , false ) ,
2009-04-30 07:18:06 +02:00
{ result , true } ;
2014-12-18 11:51:28 +01:00
_ - >
2009-01-03 01:25:40 +01:00
{ result , false }
2009-04-30 07:18:06 +02:00
end ;
_ - >
{ result , false }
end .
2003-07-08 22:11:27 +02:00
2019-07-29 16:13:16 +02:00
- spec broadcast_removed_node ( host ( ) , binary ( ) , nodeIdx ( ) , binary ( ) ,
nodeOptions ( ) , subs_by_depth ( ) ) - > { result , boolean ( ) } .
2015-04-08 17:12:05 +02:00
broadcast_removed_node ( Host , Node , Nidx , Type , NodeOptions , SubsByDepth ) - >
2009-05-29 04:14:07 +02:00
case get_option ( NodeOptions , notify_delete ) of
2009-04-30 07:18:06 +02:00
true - >
2009-06-15 15:45:40 +02:00
case SubsByDepth of
2010-05-28 13:34:05 +02:00
[ ] - >
2009-04-30 07:18:06 +02:00
{ result , false } ;
2009-01-03 01:25:40 +01:00
_ - >
2016-08-30 08:48:08 +02:00
Stanza = #message { sub_els = [ #ps_event { delete = { Node , < < > > } } ] } ,
2015-04-08 17:12:05 +02:00
broadcast_stanza ( Host , Node , Nidx , Type ,
NodeOptions , SubsByDepth , nodes , Stanza , false ) ,
2009-04-30 07:18:06 +02:00
{ result , true }
end ;
_ - >
{ result , false }
end .
2003-07-08 22:11:27 +02:00
2019-07-29 16:13:16 +02:00
- spec broadcast_created_node ( host ( ) , binary ( ) , nodeIdx ( ) , binary ( ) ,
nodeOptions ( ) , subs_by_depth ( ) ) - > { result , boolean ( ) } .
2010-05-28 13:34:05 +02:00
broadcast_created_node ( _ , _ , _ , _ , _ , [ ] ) - >
{ result , false } ;
2015-04-08 17:12:05 +02:00
broadcast_created_node ( Host , Node , Nidx , Type , NodeOptions , SubsByDepth ) - >
2016-08-30 08:48:08 +02:00
Stanza = #message { sub_els = [ #ps_event { create = Node } ] } ,
2015-04-08 17:12:05 +02:00
broadcast_stanza ( Host , Node , Nidx , Type , NodeOptions , SubsByDepth , nodes , Stanza , true ) ,
2010-05-28 13:34:05 +02:00
{ result , true } .
2019-07-29 16:13:16 +02:00
- spec broadcast_config_notification ( host ( ) , binary ( ) , nodeIdx ( ) , binary ( ) ,
nodeOptions ( ) , binary ( ) ) - > { result , boolean ( ) } .
2015-04-08 17:12:05 +02:00
broadcast_config_notification ( Host , Node , Nidx , Type , NodeOptions , Lang ) - >
2009-05-29 04:14:07 +02:00
case get_option ( NodeOptions , notify_config ) of
2009-04-30 07:18:06 +02:00
true - >
2009-06-15 15:45:40 +02:00
case get_collection_subscriptions ( Host , Node ) of
2019-07-29 16:13:16 +02:00
{ result , SubsByDepth } - >
2009-05-29 04:14:07 +02:00
Content = case get_option ( NodeOptions , deliver_payloads ) of
2009-04-30 07:18:06 +02:00
true - >
2016-08-30 08:48:08 +02:00
#xdata { type = result ,
fields = get_configure_xfields (
Type , NodeOptions , Lang , [ ] ) } ;
2009-04-30 07:18:06 +02:00
false - >
2016-08-30 08:48:08 +02:00
undefined
2009-04-30 07:18:06 +02:00
end ,
2016-08-30 08:48:08 +02:00
Stanza = #message {
sub_els = [ #ps_event {
configuration = { Node , Content } } ] } ,
2015-04-08 17:12:05 +02:00
broadcast_stanza ( Host , Node , Nidx , Type ,
NodeOptions , SubsByDepth , nodes , Stanza , false ) ,
2009-04-30 07:18:06 +02:00
{ result , true } ;
2010-05-28 13:34:05 +02:00
_ - >
2009-01-03 01:25:40 +01:00
{ result , false }
2009-04-30 07:18:06 +02:00
end ;
_ - >
{ result , false }
end .
2007-12-01 06:16:30 +01:00
2019-07-29 16:13:16 +02:00
- spec get_collection_subscriptions ( host ( ) , nodeId ( ) ) - > { result , subs_by_depth ( ) } |
{ error , stanza_error ( ) } .
2009-06-15 15:45:40 +02:00
get_collection_subscriptions ( Host , Node ) - >
2019-07-29 16:13:16 +02:00
Action = fun ( ) - > get_node_subs_by_depth ( Host , Node , service_jid ( Host ) ) end ,
transaction ( Host , Action , sync_dirty ) .
2009-06-15 15:45:40 +02:00
2019-07-29 16:13:16 +02:00
- spec get_node_subs_by_depth ( host ( ) , nodeId ( ) , jid ( ) ) - > { result , subs_by_depth ( ) } |
{ error , stanza_error ( ) } .
2015-04-08 17:12:05 +02:00
get_node_subs_by_depth ( Host , Node , From ) - >
2019-07-29 16:13:16 +02:00
case tree_call ( Host , get_parentnodes_tree , [ Host , Node , From ] ) of
ParentTree when is_list ( ParentTree ) - >
{ result ,
lists : filtermap (
fun ( { Depth , Nodes } ) - >
case lists : filtermap (
fun ( N ) - >
case get_node_subs ( Host , N ) of
{ result , Result } - > { true , { N , Result } } ;
_ - > false
end
end , Nodes ) of
[ ] - > false ;
Subs - > { true , { Depth , Subs } }
end
end , ParentTree ) } ;
Error - >
Error
end .
2015-04-08 17:12:05 +02:00
2019-07-29 16:13:16 +02:00
- spec get_node_subs ( host ( ) , #pubsub_node { } ) - > { result , [ { ljid ( ) , subId ( ) , subOptions ( ) } ] } |
{ error , stanza_error ( ) } .
2015-04-08 17:12:05 +02:00
get_node_subs ( Host , #pubsub_node { type = Type , id = Nidx } ) - >
2015-12-16 12:56:06 +01:00
WithOptions = lists : member ( < < " subscription-options " > > , plugin_features ( Host , Type ) ) ,
2015-04-08 17:12:05 +02:00
case node_call ( Host , Type , get_node_subscriptions , [ Nidx ] ) of
2019-07-29 16:13:16 +02:00
{ result , Subs } - > { result , get_options_for_subs ( Host , Nidx , Subs , WithOptions ) } ;
2009-08-27 23:38:23 +02:00
Other - > Other
2009-06-15 15:45:40 +02:00
end .
2019-07-29 16:13:16 +02:00
- spec get_options_for_subs ( host ( ) , nodeIdx ( ) ,
[ { ljid ( ) , subscription ( ) , subId ( ) } ] ,
boolean ( ) ) - >
[ { ljid ( ) , subId ( ) , subOptions ( ) } ] .
2015-12-16 12:56:06 +01:00
get_options_for_subs ( _ Host , _ Nidx , Subs , false ) - >
lists : foldl ( fun ( { JID , subscribed , SubID } , Acc ) - >
[ { JID , SubID , [ ] } | Acc ] ;
( _ , Acc ) - >
Acc
end , [ ] , Subs ) ;
get_options_for_subs ( Host , Nidx , Subs , true ) - >
2015-04-08 17:12:05 +02:00
SubModule = subscription_plugin ( Host ) ,
2009-07-31 16:55:05 +02:00
lists : foldl ( fun ( { JID , subscribed , SubID } , Acc ) - >
2015-04-08 17:12:05 +02:00
case SubModule : get_subscription ( JID , Nidx , SubID ) of
#pubsub_subscription { options = Options } - > [ { JID , SubID , Options } | Acc ] ;
{ error , notfound } - > [ { JID , SubID , [ ] } | Acc ]
end ;
( _ , Acc ) - >
Acc
end , [ ] , Subs ) .
2009-07-31 16:55:05 +02:00
2019-07-29 16:13:16 +02:00
- spec broadcast_stanza ( host ( ) , nodeId ( ) , nodeIdx ( ) , binary ( ) ,
nodeOptions ( ) , subs_by_depth ( ) ,
items | nodes , stanza ( ) , boolean ( ) ) - > ok .
2015-04-08 17:12:05 +02:00
broadcast_stanza ( Host , _ Node , _ Nidx , _ Type , NodeOptions , SubsByDepth , NotifyType , BaseStanza , SHIM ) - >
2009-10-12 11:05:26 +02:00
NotificationType = get_option ( NodeOptions , notification_type , headline ) ,
2018-01-27 17:35:38 +01:00
BroadcastAll = get_option ( NodeOptions , broadcast_all_resources ) , %% XXX this is not standard, but useful
2017-08-14 15:25:45 +02:00
Stanza = add_message_type (
xmpp : set_from ( BaseStanza , service_jid ( Host ) ) ,
NotificationType ) ,
2009-04-08 17:53:46 +02:00
%% Handles explicit subscriptions
2010-01-12 11:33:39 +01:00
SubIDsByJID = subscribed_nodes_by_jid ( NotifyType , SubsByDepth ) ,
2015-04-21 16:13:23 +02:00
lists : foreach ( fun ( { LJID , _ NodeName , SubIDs } ) - >
2015-04-08 17:12:05 +02:00
LJIDs = case BroadcastAll of
true - >
{ U , S , _ } = LJID ,
[ { U , S , R } | | R < - user_resources ( U , S ) ] ;
false - >
[ LJID ]
end ,
%% Determine if the stanza should have SHIM ('SubID' and 'name') headers
StanzaToSend = case { SHIM , SubIDs } of
{ false , _ } - >
Stanza ;
%% If there's only one SubID, don't add it
{ true , [ _ ] } - >
2015-04-21 16:13:23 +02:00
Stanza ;
2015-04-08 17:12:05 +02:00
{ true , SubIDs } - >
2015-04-21 16:11:00 +02:00
add_shim_headers ( Stanza , subid_shim ( SubIDs ) )
2015-04-08 17:12:05 +02:00
end ,
lists : foreach ( fun ( To ) - >
2017-02-16 09:00:26 +01:00
ejabberd_router : route (
2024-09-11 13:20:53 +02:00
xmpp : set_to ( xmpp : put_meta ( StanzaToSend , ignore_sm_bounce , true ) ,
jid : make ( To ) ) )
2015-04-08 17:12:05 +02:00
end , LJIDs )
end , SubIDsByJID ) .
2019-07-29 16:13:16 +02:00
- spec broadcast_stanza ( host ( ) , jid ( ) , nodeId ( ) , nodeIdx ( ) , binary ( ) ,
nodeOptions ( ) , subs_by_depth ( ) , items | nodes ,
stanza ( ) , boolean ( ) ) - > ok .
2015-04-08 17:12:05 +02:00
broadcast_stanza ( { LUser , LServer , LResource } , Publisher , Node , Nidx , Type , NodeOptions , SubsByDepth , NotifyType , BaseStanza , SHIM ) - >
2016-03-25 17:52:08 +01:00
broadcast_stanza ( { LUser , LServer , < < > > } , Node , Nidx , Type , NodeOptions , SubsByDepth , NotifyType , BaseStanza , SHIM ) ,
2009-04-08 17:53:46 +02:00
%% Handles implicit presence subscriptions
2014-05-06 12:37:44 +02:00
SenderResource = user_resource ( LUser , LServer , LResource ) ,
2017-03-27 16:24:24 +02:00
NotificationType = get_option ( NodeOptions , notification_type , headline ) ,
%% set the from address on the notification to the bare JID of the account owner
%% Also, add "replyto" if entity has presence subscription to the account owner
%% See XEP-0163 1.1 section 4.3.1
2019-06-20 18:18:14 +02:00
Owner = jid : make ( LUser , LServer ) ,
FromBareJid = xmpp : set_from ( BaseStanza , Owner ) ,
2017-11-16 15:31:28 +01:00
Stanza = add_extended_headers (
add_message_type ( FromBareJid , NotificationType ) ,
extended_headers ( [ Publisher ] ) ) ,
2019-06-20 18:18:14 +02:00
Pred = fun ( To ) - > delivery_permitted ( Owner , To , NodeOptions ) end ,
2016-12-11 13:03:37 +01:00
ejabberd_sm : route ( jid : make ( LUser , LServer , SenderResource ) ,
2024-09-13 20:50:00 +02:00
{ pep_message , < < ( ( Node ) ) / binary , " +notify " > > , Stanza , Pred } ) ;
2015-04-08 17:12:05 +02:00
broadcast_stanza ( Host , _ Publisher , Node , Nidx , Type , NodeOptions , SubsByDepth , NotifyType , BaseStanza , SHIM ) - >
broadcast_stanza ( Host , Node , Nidx , Type , NodeOptions , SubsByDepth , NotifyType , BaseStanza , SHIM ) .
2005-07-20 05:09:34 +02:00
2016-12-28 07:47:11 +01:00
- spec c2s_handle_info ( ejabberd_c2s : state ( ) , term ( ) ) - > ejabberd_c2s : state ( ) .
2017-08-14 15:25:45 +02:00
c2s_handle_info ( #{ lserver : = LServer } = C2SState ,
2019-06-20 18:18:14 +02:00
{ pep_message , Feature , Packet , Pred } ) when is_function ( Pred ) - >
2017-08-14 15:25:45 +02:00
[ maybe_send_pep_stanza ( LServer , USR , Caps , Feature , Packet )
2019-06-20 18:18:14 +02:00
| | { USR , Caps } < - mod_caps : list_features ( C2SState ) , Pred ( USR ) ] ,
2016-12-28 07:47:11 +01:00
{ stop , C2SState } ;
2017-08-14 15:25:45 +02:00
c2s_handle_info ( #{ lserver : = LServer } = C2SState ,
2019-07-29 16:13:16 +02:00
{ pep_message , Feature , Packet , { _ , _ , _ } = USR } ) - >
2017-08-14 15:25:45 +02:00
case mod_caps : get_user_caps ( USR , C2SState ) of
{ ok , Caps } - > maybe_send_pep_stanza ( LServer , USR , Caps , Feature , Packet ) ;
error - > ok
2016-12-11 13:03:37 +01:00
end ,
2016-12-28 07:47:11 +01:00
{ stop , C2SState } ;
c2s_handle_info ( C2SState , _ ) - >
C2SState .
2016-12-11 13:03:37 +01:00
2019-07-29 16:13:16 +02:00
- spec send_items ( host ( ) , nodeId ( ) , nodeIdx ( ) , binary ( ) ,
nodeOptions ( ) , ljid ( ) , last | integer ( ) ) - > ok .
2017-08-14 15:25:45 +02:00
send_items ( Host , Node , Nidx , Type , Options , LJID , Number ) - >
send_items ( Host , Node , Nidx , Type , Options , Host , LJID , LJID , Number ) .
send_items ( Host , Node , Nidx , Type , Options , Publisher , SubLJID , ToLJID , Number ) - >
2019-07-31 12:20:38 +02:00
Items = case max_items ( Host , Options ) of
1 - >
get_only_item ( Host , Type , Nidx , SubLJID ) ;
_ - >
get_last_items ( Host , Type , Nidx , SubLJID , Number )
end ,
case Items of
2017-08-14 15:25:45 +02:00
[ ] - >
ok ;
Items - >
2018-04-12 15:38:12 +02:00
Delay = case Number of
last - > % handle section 6.1.7 of XEP-0060
[ Last ] = Items ,
{ Stamp , _ USR } = Last #pubsub_item.modification ,
[ #delay { stamp = Stamp } ] ;
_ - >
[ ]
end ,
Stanza = #message {
sub_els = [ #ps_event { items = items_els ( Node , Options , Items ) }
| Delay ] } ,
NotificationType = get_option ( Options , notification_type , headline ) ,
send_stanza ( Publisher , ToLJID , Node ,
add_message_type ( Stanza , NotificationType ) )
2017-08-14 15:25:45 +02:00
end .
2019-07-29 16:13:16 +02:00
- spec send_stanza ( host ( ) , ljid ( ) , binary ( ) , stanza ( ) ) - > ok .
2017-08-14 15:25:45 +02:00
send_stanza ( { LUser , LServer , _ } = Publisher , USR , Node , BaseStanza ) - >
Stanza = xmpp : set_from ( BaseStanza , jid : make ( LUser , LServer ) ) ,
USRs = case USR of
{ PUser , PServer , < < > > } - >
[ { PUser , PServer , PRessource }
| | PRessource < - user_resources ( PUser , PServer ) ] ;
_ - >
[ USR ]
end ,
2019-07-29 16:13:16 +02:00
lists : foreach (
fun ( To ) - >
ejabberd_sm : route (
jid : make ( Publisher ) ,
{ pep_message , < < ( ( Node ) ) / binary , " +notify " > > ,
add_extended_headers (
Stanza , extended_headers ( [ jid : make ( Publisher ) ] ) ) ,
To } )
end , USRs ) ;
2017-08-14 15:25:45 +02:00
send_stanza ( Host , USR , _ Node , Stanza ) - >
ejabberd_router : route (
xmpp : set_from_to ( Stanza , service_jid ( Host ) , jid : make ( USR ) ) ) .
2019-07-29 16:13:16 +02:00
- spec maybe_send_pep_stanza ( binary ( ) , ljid ( ) , caps ( ) , binary ( ) , stanza ( ) ) - > ok .
2017-08-14 15:25:45 +02:00
maybe_send_pep_stanza ( LServer , USR , Caps , Feature , Packet ) - >
Features = mod_caps : get_features ( LServer , Caps ) ,
case lists : member ( Feature , Features ) of
true - >
ejabberd_router : route ( xmpp : set_to ( Packet , jid : make ( USR ) ) ) ;
false - >
ok
end .
2019-07-29 16:13:16 +02:00
- spec send_last_items ( jid ( ) ) - > ok .
2017-08-14 15:25:45 +02:00
send_last_items ( JID ) - >
ServerHost = JID #jid.lserver ,
Host = host ( ServerHost ) ,
DBType = config ( ServerHost , db_type ) ,
LJID = jid : tolower ( JID ) ,
BJID = jid : remove_resource ( LJID ) ,
lists : foreach (
fun ( PType ) - >
Subs = get_subscriptions_for_send_last ( Host , PType , DBType , JID , LJID , BJID ) ,
lists : foreach (
fun ( { #pubsub_node { nodeid = { _ , Node } , type = Type , id = Nidx ,
options = Options } , _ , SubJID } )
when Type == PType - >
send_items ( Host , Node , Nidx , PType , Options , Host , SubJID , LJID , 1 ) ;
( _ ) - >
ok
end ,
lists : usort ( Subs ) )
end , config ( ServerHost , plugins ) ) .
% pep_from_offline hack can not work anymore, as sender c2s does not
% exists when sender is offline, so we can't get match receiver caps
% does it make sens to send PEP from an offline contact anyway ?
% case config(ServerHost, ignore_pep_from_offline) of
% false ->
% Roster = ejabberd_hooks:run_fold(roster_get, ServerHost, [],
% [{JID#jid.luser, ServerHost}]),
% lists:foreach(
% fun(#roster{jid = {U, S, R}, subscription = Sub})
% when Sub == both orelse Sub == from,
% S == ServerHost ->
% case user_resources(U, S) of
% [] -> send_last_pep(jid:make(U, S, R), JID);
% _ -> ok %% this is already handled by presence probe
% end;
% (_) ->
% ok %% we can not do anything in any cases
% end, Roster);
% true ->
% ok
% end.
2021-01-25 19:58:22 +01:00
send_last_pep ( From , To , Features ) - >
2017-08-14 15:25:45 +02:00
ServerHost = From #jid.lserver ,
Host = host ( ServerHost ) ,
Publisher = jid : tolower ( From ) ,
Owner = jid : remove_resource ( Publisher ) ,
2021-01-25 19:58:22 +01:00
NotifyNodes =
case Features of
_ when is_list ( Features ) - >
lists : filtermap (
fun ( V ) - >
Vs = byte_size ( V ) - 7 ,
case V of
< < NotNode : Vs / binary , " +notify " > > - >
{ true , NotNode } ;
_ - >
false
end
end , Features ) ;
_ - >
unknown
end ,
2019-10-24 13:59:47 +02:00
case tree_action ( Host , get_nodes , [ Owner , infinity ] ) of
2021-01-25 19:58:22 +01:00
Nodes when is_list ( Nodes ) - >
lists : foreach (
fun ( #pubsub_node { nodeid = { _ , Node } , type = Type , id = Nidx , options = Options } ) - >
MaybeNotify =
case NotifyNodes of
unknown - > true ;
_ - > lists : member ( Node , NotifyNodes )
end ,
case MaybeNotify andalso match_option ( Options , send_last_published_item , on_sub_and_presence ) of
true - >
case delivery_permitted ( From , To , Options ) of
true - >
LJID = jid : tolower ( To ) ,
send_items ( Owner , Node , Nidx , Type , Options ,
Publisher , LJID , LJID , 1 ) ;
false - >
ok
end ;
_ - >
ok
end
end , Nodes ) ;
_ - >
ok
2019-07-29 16:13:16 +02:00
end .
2017-08-14 15:25:45 +02:00
2019-07-29 16:13:16 +02:00
- spec subscribed_nodes_by_jid ( items | nodes , subs_by_depth ( ) ) - > [ { ljid ( ) , binary ( ) , subId ( ) } ] .
2009-08-27 23:38:23 +02:00
subscribed_nodes_by_jid ( NotifyType , SubsByDepth ) - >
2015-04-08 17:12:05 +02:00
NodesToDeliver = fun ( Depth , Node , Subs , Acc ) - >
2017-06-29 15:24:18 +02:00
NodeName = case Node #pubsub_node.nodeid of
{ _ , N } - > N ;
Other - > Other
end ,
NodeOptions = Node #pubsub_node.options ,
lists : foldl ( fun ( { LJID , SubID , SubOptions } , { JIDs , Recipients } ) - >
case is_to_deliver ( LJID , NotifyType , Depth , NodeOptions , SubOptions ) of
true - >
case state_can_deliver ( LJID , SubOptions ) of
[ ] - > { JIDs , Recipients } ;
[ LJID ] - > { JIDs , [ { LJID , NodeName , [ SubID ] } | Recipients ] } ;
JIDsToDeliver - >
lists : foldl (
fun ( JIDToDeliver , { JIDsAcc , RecipientsAcc } ) - >
case lists : member ( JIDToDeliver , JIDs ) of
%% check if the JIDs co-accumulator contains the Subscription Jid,
false - >
%% - if not,
%% - add the Jid to JIDs list co-accumulator ;
%% - create a tuple of the Jid, Nidx, and SubID (as list),
%% and add the tuple to the Recipients list co-accumulator
{ [ JIDToDeliver | JIDsAcc ] ,
[ { JIDToDeliver , NodeName , [ SubID ] }
| RecipientsAcc ] } ;
true - >
%% - if the JIDs co-accumulator contains the Jid
%% get the tuple containing the Jid from the Recipient list co-accumulator
{ _ , { JIDToDeliver , NodeName1 , SubIDs } } =
lists : keysearch ( JIDToDeliver , 1 , RecipientsAcc ) ,
%% delete the tuple from the Recipients list
% v1 : Recipients1 = lists:keydelete(LJID, 1, Recipients),
% v2 : Recipients1 = lists:keyreplace(LJID, 1, Recipients, {LJID, Nidx1, [SubID | SubIDs]}),
%% add the SubID to the SubIDs list in the tuple,
%% and add the tuple back to the Recipients list co-accumulator
% v1.1 : {JIDs, lists:append(Recipients1, [{LJID, Nidx1, lists:append(SubIDs, [SubID])}])}
% v1.2 : {JIDs, [{LJID, Nidx1, [SubID | SubIDs]} | Recipients1]}
% v2: {JIDs, Recipients1}
{ JIDsAcc ,
lists : keyreplace ( JIDToDeliver , 1 ,
RecipientsAcc ,
{ JIDToDeliver , NodeName1 ,
[ SubID | SubIDs ] } ) }
end
end , { JIDs , Recipients } , JIDsToDeliver )
end ;
false - >
{ JIDs , Recipients }
end
end , Acc , Subs )
end ,
2010-05-12 13:45:56 +02:00
DepthsToDeliver = fun ( { Depth , SubsByNode } , Acc1 ) - >
2017-06-29 15:24:18 +02:00
lists : foldl ( fun ( { Node , Subs } , Acc2 ) - >
NodesToDeliver ( Depth , Node , Subs , Acc2 )
end , Acc1 , SubsByNode )
end ,
2010-01-12 13:31:08 +01:00
{ _ , JIDSubs } = lists : foldl ( DepthsToDeliver , { [ ] , [ ] } , SubsByDepth ) ,
JIDSubs .
2009-06-15 15:45:40 +02:00
2019-07-29 16:13:16 +02:00
- spec delivery_permitted ( jid ( ) | ljid ( ) , jid ( ) | ljid ( ) , nodeOptions ( ) ) - > boolean ( ) .
2019-06-20 18:18:14 +02:00
delivery_permitted ( From , To , Options ) - >
LFrom = jid : tolower ( From ) ,
LTo = jid : tolower ( To ) ,
RecipientIsOwner = jid : remove_resource ( LFrom ) == jid : remove_resource ( LTo ) ,
%% TODO: Fix the 'whitelist'/'authorize' cases for last PEP notifications.
%% Currently, only node owners receive those.
case get_option ( Options , access_model ) of
open - > true ;
presence - > true ;
whitelist - > RecipientIsOwner ;
authorize - > RecipientIsOwner ;
roster - >
Grps = get_option ( Options , roster_groups_allowed , [ ] ) ,
{ LUser , LServer , _ } = LFrom ,
{ _ , IsInGrp } = get_roster_info ( LUser , LServer , LTo , Grps ) ,
IsInGrp
end .
2016-08-30 08:48:08 +02:00
- spec user_resources ( binary ( ) , binary ( ) ) - > [ binary ( ) ] .
2009-03-03 23:42:37 +01:00
user_resources ( User , Server ) - >
2010-03-05 10:34:15 +01:00
ejabberd_sm : get_user_resources ( User , Server ) .
2007-12-22 01:04:05 +01:00
2016-08-30 08:48:08 +02:00
- spec user_resource ( binary ( ) , binary ( ) , binary ( ) ) - > binary ( ) .
2014-05-06 12:37:44 +02:00
user_resource ( User , Server , < < > > ) - >
case user_resources ( User , Server ) of
[ R | _ ] - > R ;
_ - > < < > >
end ;
2015-04-08 17:12:05 +02:00
user_resource ( _ , _ , Resource ) - >
Resource .
2014-05-06 12:37:44 +02:00
2007-12-01 06:16:30 +01:00
%%%%%%% Configuration handling
2016-08-30 08:48:08 +02:00
- spec get_configure ( host ( ) , binary ( ) , binary ( ) , jid ( ) ,
2016-09-08 16:08:48 +02:00
binary ( ) ) - > { error , stanza_error ( ) } | { result , pubsub_owner ( ) } .
2010-11-22 11:15:04 +01:00
get_configure ( Host , ServerHost , Node , From , Lang ) - >
2015-04-08 17:12:05 +02:00
Action = fun ( #pubsub_node { options = Options , type = Type , id = Nidx } ) - >
case node_call ( Host , Type , get_affiliation , [ Nidx , From ] ) of
{ result , owner } - >
Groups = ejabberd_hooks : run_fold ( roster_groups , ServerHost , [ ] , [ ServerHost ] ) ,
2016-08-30 08:48:08 +02:00
Fs = get_configure_xfields ( Type , Options , Lang , Groups ) ,
{ result , #pubsub_owner {
configure =
{ Node , #xdata { type = form , fields = Fs } } } } ;
2019-07-29 16:13:16 +02:00
{ result , _ } - >
{ error , xmpp : err_forbidden ( ? T ( " Owner privileges required " ) , Lang ) } ;
Error - >
Error
2015-04-08 17:12:05 +02:00
end
end ,
2009-04-30 07:18:06 +02:00
case transaction ( Host , Node , Action , sync_dirty ) of
2015-04-08 17:12:05 +02:00
{ result , { _ , Result } } - > { result , Result } ;
Other - > Other
2009-04-30 07:18:06 +02:00
end .
2007-12-01 06:16:30 +01:00
2016-09-08 14:49:27 +02:00
- spec get_default ( host ( ) , binary ( ) , jid ( ) , binary ( ) ) - > { result , pubsub_owner ( ) } .
2008-09-25 19:26:06 +02:00
get_default ( Host , Node , _ From , Lang ) - >
2017-11-15 19:04:47 +01:00
Type = select_type ( serverhost ( Host ) , Host , Node ) ,
2015-04-08 17:12:05 +02:00
Options = node_options ( Host , Type ) ,
2016-08-30 08:48:08 +02:00
Fs = get_configure_xfields ( Type , Options , Lang , [ ] ) ,
{ result , #pubsub_owner { default = { < < > > , #xdata { type = form , fields = Fs } } } } .
2015-04-08 17:12:05 +02:00
2016-08-30 08:48:08 +02:00
- spec match_option ( #pubsub_node { } | [ { atom ( ) , any ( ) } ] , atom ( ) , any ( ) ) - > boolean ( ) .
2015-04-08 17:12:05 +02:00
match_option ( Node , Var , Val ) when is_record ( Node , pubsub_node ) - >
match_option ( Node #pubsub_node.options , Var , Val ) ;
match_option ( Options , Var , Val ) when is_list ( Options ) - >
get_option ( Options , Var ) == Val ;
match_option ( _ , _ , _ ) - >
false .
2013-03-14 10:33:02 +01:00
2016-08-30 08:48:08 +02:00
- spec get_option ( [ { atom ( ) , any ( ) } ] , atom ( ) ) - > any ( ) .
2007-12-01 06:16:30 +01:00
get_option ( [ ] , _ ) - > false ;
2015-04-08 17:12:05 +02:00
get_option ( Options , Var ) - > get_option ( Options , Var , false ) .
2013-03-14 10:33:02 +01:00
2016-08-30 08:48:08 +02:00
- spec get_option ( [ { atom ( ) , any ( ) } ] , atom ( ) , any ( ) ) - > any ( ) .
2008-07-23 01:41:44 +02:00
get_option ( Options , Var , Def ) - >
2007-12-01 06:16:30 +01:00
case lists : keysearch ( Var , 1 , Options ) of
2015-04-08 17:12:05 +02:00
{ value , { _ Val , Ret } } - > Ret ;
_ - > Def
2007-12-01 06:16:30 +01:00
end .
2003-07-20 22:35:35 +02:00
2016-08-30 08:48:08 +02:00
- spec node_options ( host ( ) , binary ( ) ) - > [ { atom ( ) , any ( ) } ] .
2015-04-08 17:12:05 +02:00
node_options ( Host , Type ) - >
2024-09-28 16:56:46 +02:00
ConfigOpts = config ( Host , default_node_config ) ,
2024-09-28 17:58:07 +02:00
PluginOpts = node_plugin_options ( Host , Type ) ,
merge_config ( [ ConfigOpts , PluginOpts ] ) .
2016-08-30 08:48:08 +02:00
- spec node_plugin_options ( host ( ) , binary ( ) ) - > [ { atom ( ) , any ( ) } ] .
2015-11-10 16:28:57 +01:00
node_plugin_options ( Host , Type ) - >
2015-04-08 17:12:05 +02:00
Module = plugin ( Host , Type ) ,
2024-09-28 17:58:07 +02:00
case { lists : member ( Type , config ( Host , plugins ) ) , catch Module : options ( ) } of
{ true , Opts } when is_list ( Opts ) - >
Opts ;
{ _ , _ } - >
2015-04-08 17:12:05 +02:00
DefaultModule = plugin ( Host , ? STDNODE ) ,
2024-09-28 17:58:07 +02:00
DefaultModule : options ( )
2005-07-20 05:09:34 +02:00
end .
2016-08-30 08:48:08 +02:00
- spec node_owners_action ( host ( ) , binary ( ) , nodeIdx ( ) , [ ljid ( ) ] ) - > [ ljid ( ) ] .
2015-04-08 17:12:05 +02:00
node_owners_action ( Host , Type , Nidx , [ ] ) - >
2017-03-30 14:26:30 +02:00
case node_action ( Host , Type , get_node_affiliations , [ Nidx ] ) of
{ result , Affs } - > [ LJID | | { LJID , Aff } < - Affs , Aff =:= owner ] ;
_ - > [ ]
2015-04-08 17:12:05 +02:00
end ;
node_owners_action ( _ Host , _ Type , _ Nidx , Owners ) - >
Owners .
2016-08-30 08:48:08 +02:00
- spec node_owners_call ( host ( ) , binary ( ) , nodeIdx ( ) , [ ljid ( ) ] ) - > [ ljid ( ) ] .
2015-04-08 17:12:05 +02:00
node_owners_call ( Host , Type , Nidx , [ ] ) - >
2017-03-30 14:26:30 +02:00
case node_call ( Host , Type , get_node_affiliations , [ Nidx ] ) of
{ result , Affs } - > [ LJID | | { LJID , Aff } < - Affs , Aff =:= owner ] ;
_ - > [ ]
2015-04-08 17:12:05 +02:00
end ;
node_owners_call ( _ Host , _ Type , _ Nidx , Owners ) - >
Owners .
2018-03-11 14:52:23 +01:00
node_config ( Node , ServerHost ) - >
2019-06-14 11:33:26 +02:00
Opts = mod_pubsub_opt : force_node_config ( ServerHost ) ,
2018-03-11 14:52:23 +01:00
node_config ( Node , ServerHost , Opts ) .
node_config ( Node , ServerHost , [ { RE , Opts } | NodeOpts ] ) - >
case re : run ( Node , RE ) of
{ match , _ } - >
Opts ;
nomatch - >
node_config ( Node , ServerHost , NodeOpts )
end ;
node_config ( _ , _ , [ ] ) - >
[ ] .
2007-12-01 06:16:30 +01:00
%% @doc <p>Return the maximum number of items for a given node.</p>
%% <p>Unlimited means that there is no limit in the number of items that can
%% be stored.</p>
2021-08-21 12:29:37 +02:00
- spec max_items ( host ( ) , [ { atom ( ) , any ( ) } ] ) - > non_neg_integer ( ) | unlimited .
2009-07-30 23:37:19 +02:00
max_items ( Host , Options ) - >
2007-12-01 06:16:30 +01:00
case get_option ( Options , persist_items ) of
2015-04-08 17:12:05 +02:00
true - >
case get_option ( Options , max_items ) of
2015-06-18 12:06:29 +02:00
I when is_integer ( I ) , I < 0 - > 0 ;
I when is_integer ( I ) - > I ;
2021-07-28 18:53:15 +02:00
_ - > get_max_items_node ( Host )
2015-04-08 17:12:05 +02:00
end ;
false - >
case get_option ( Options , send_last_published_item ) of
never - >
0 ;
_ - >
case is_last_item_cache_enabled ( Host ) of
2015-06-18 12:54:46 +02:00
true - > 0 ;
false - > 1
2015-04-08 17:12:05 +02:00
end
end
2005-07-20 05:09:34 +02:00
end .
2021-10-30 13:19:30 +02:00
- spec item_expire ( host ( ) , [ { atom ( ) , any ( ) } ] ) - > non_neg_integer ( ) | infinity .
item_expire ( Host , Options ) - >
case get_option ( Options , item_expire ) of
I when is_integer ( I ) , I < 0 - > 0 ;
I when is_integer ( I ) - > I ;
_ - > get_max_item_expire_node ( Host )
end .
2016-10-07 09:31:03 +02:00
- spec get_configure_xfields ( _ , pubsub_node_config : result ( ) ,
binary ( ) , [ binary ( ) ] ) - > [ xdata_field ( ) ] .
2009-04-30 07:18:06 +02:00
get_configure_xfields ( _ Type , Options , Lang , Groups ) - >
2016-10-07 09:31:03 +02:00
pubsub_node_config : encode (
2019-07-16 14:59:33 +02:00
lists : filtermap (
2016-10-07 09:31:03 +02:00
fun ( { roster_groups_allowed , Value } ) - >
2019-07-16 14:59:33 +02:00
{ true , { roster_groups_allowed , Value , Groups } } ;
( { sql , _ } ) - > false ;
( { rsm , _ } ) - > false ;
2023-03-21 15:30:36 +01:00
( { Item , infinity } ) when Item == max_items ;
Item == item_expire ;
Item == children_max - >
{ true , { Item , max } } ;
2019-07-16 14:59:33 +02:00
( _ ) - > true
2016-10-07 09:31:03 +02:00
end , Options ) ,
2017-03-20 07:57:11 +01:00
Lang ) .
2005-07-20 05:09:34 +02:00
2007-12-01 06:16:30 +01:00
%%<p>There are several reasons why the node configuration request might fail:</p>
%%<ul>
2008-04-01 12:11:39 +02:00
%%<li>The service does not support node configuration.</li>
%%<li>The requesting entity does not have sufficient privileges to configure the node.</li>
%%<li>The request did not specify a node.</li>
%%<li>The node has no configuration options.</li>
%%<li>The specified node does not exist.</li>
2007-12-01 06:16:30 +01:00
%%</ul>
2016-08-30 08:48:08 +02:00
- spec set_configure ( host ( ) , binary ( ) , jid ( ) , [ { binary ( ) , [ binary ( ) ] } ] ,
2016-09-08 16:08:48 +02:00
binary ( ) ) - > { result , undefined } | { error , stanza_error ( ) } .
2016-09-08 14:49:27 +02:00
set_configure ( _ Host , < < > > , _ From , _ Config , _ Lang ) - >
{ error , extended_error ( xmpp : err_bad_request ( ) , err_nodeid_required ( ) ) } ;
2016-08-30 08:48:08 +02:00
set_configure ( Host , Node , From , Config , Lang ) - >
Action =
fun ( #pubsub_node { options = Options , type = Type , id = Nidx } = N ) - >
case node_call ( Host , Type , get_affiliation , [ Nidx , From ] ) of
{ result , owner } - >
OldOpts = case Options of
[ ] - > node_options ( Host , Type ) ;
_ - > Options
end ,
2018-03-11 14:52:23 +01:00
NewOpts = merge_config (
[ node_config ( Node , serverhost ( Host ) ) ,
Config , OldOpts ] ) ,
2016-10-07 09:31:03 +02:00
case tree_call ( Host ,
set_node ,
[ N #pubsub_node { options = NewOpts } ] ) of
2017-09-18 12:48:20 +02:00
{ result , Nidx } - > { result , NewOpts } ;
ok - > { result , NewOpts } ;
2016-10-07 09:31:03 +02:00
Err - > Err
2016-08-30 08:48:08 +02:00
end ;
2019-07-29 16:13:16 +02:00
{ result , _ } - >
2016-08-30 08:48:08 +02:00
{ error , xmpp : err_forbidden (
2019-07-29 16:13:16 +02:00
? T ( " Owner privileges required " ) , Lang ) } ;
Error - >
Error
2016-08-30 08:48:08 +02:00
end
end ,
case transaction ( Host , Node , Action , transaction ) of
2017-09-18 12:48:20 +02:00
{ result , { TNode , Options } } - >
2016-08-30 08:48:08 +02:00
Nidx = TNode #pubsub_node.id ,
Type = TNode #pubsub_node.type ,
broadcast_config_notification ( Host , Node , Nidx , Type , Options , Lang ) ,
{ result , undefined } ;
Other - >
Other
2005-07-20 05:09:34 +02:00
end .
2018-03-11 14:52:23 +01:00
- spec merge_config ( [ [ proplists : property ( ) ] ] ) - > [ proplists : property ( ) ] .
merge_config ( ListOfConfigs ) - >
lists : ukeysort ( 1 , lists : flatten ( ListOfConfigs ) ) .
2016-10-07 09:31:03 +02:00
- spec decode_node_config ( undefined | xdata ( ) , binary ( ) , binary ( ) ) - >
pubsub_node_config : result ( ) |
{ error , stanza_error ( ) } .
decode_node_config ( undefined , _ , _ ) - >
[ ] ;
decode_node_config ( #xdata { fields = Fs } , Host , Lang ) - >
try
Config = pubsub_node_config : decode ( Fs ) ,
2022-01-17 19:08:36 +01:00
MaxItems = get_max_items_node ( Host ) ,
MaxExpiry = get_max_item_expire_node ( Host ) ,
case { check_opt_range ( max_items , Config , MaxItems ) ,
check_opt_range ( item_expire , Config , MaxExpiry ) ,
2016-10-07 09:31:03 +02:00
check_opt_range ( max_payload_size , Config , ? MAX_PAYLOAD_SIZE ) } of
2022-01-17 19:08:36 +01:00
{ true , true , true } - >
2016-10-07 09:31:03 +02:00
Config ;
2022-01-17 19:08:36 +01:00
{ true , true , false } - >
2016-10-07 09:31:03 +02:00
erlang : error (
{ pubsub_node_config ,
{ bad_var_value , < < " pubsub#max_payload_size " > > ,
? NS_PUBSUB_NODE_CONFIG } } ) ;
2022-01-17 19:08:36 +01:00
{ true , false , _ } - >
erlang : error (
{ pubsub_node_config ,
{ bad_var_value , < < " pubsub#item_expire " > > ,
? NS_PUBSUB_NODE_CONFIG } } ) ;
{ false , _ , _ } - >
2016-10-07 09:31:03 +02:00
erlang : error (
{ pubsub_node_config ,
{ bad_var_value , < < " pubsub#max_items " > > ,
? NS_PUBSUB_NODE_CONFIG } } )
end
catch _ : { pubsub_node_config , Why } - >
Txt = pubsub_node_config : format_error ( Why ) ,
{ error , xmpp : err_resource_constraint ( Txt , Lang ) }
end .
2005-07-20 05:09:34 +02:00
2016-10-07 09:31:03 +02:00
- spec decode_subscribe_options ( undefined | xdata ( ) , binary ( ) ) - >
pubsub_subscribe_options : result ( ) |
{ error , stanza_error ( ) } .
decode_subscribe_options ( undefined , _ ) - >
[ ] ;
decode_subscribe_options ( #xdata { fields = Fs } , Lang ) - >
try pubsub_subscribe_options : decode ( Fs )
catch _ : { pubsub_subscribe_options , Why } - >
Txt = pubsub_subscribe_options : format_error ( Why ) ,
{ error , xmpp : err_resource_constraint ( Txt , Lang ) }
end .
2005-07-20 05:09:34 +02:00
2016-10-07 09:31:03 +02:00
- spec decode_publish_options ( undefined | xdata ( ) , binary ( ) ) - >
pubsub_publish_options : result ( ) |
{ error , stanza_error ( ) } .
decode_publish_options ( undefined , _ ) - >
2016-08-30 08:48:08 +02:00
[ ] ;
2016-10-07 09:31:03 +02:00
decode_publish_options ( #xdata { fields = Fs } , Lang ) - >
try pubsub_publish_options : decode ( Fs )
catch _ : { pubsub_publish_options , Why } - >
Txt = pubsub_publish_options : format_error ( Why ) ,
{ error , xmpp : err_resource_constraint ( Txt , Lang ) }
end .
- spec decode_get_pending ( xdata ( ) , binary ( ) ) - >
pubsub_get_pending : result ( ) |
{ error , stanza_error ( ) } .
decode_get_pending ( #xdata { fields = Fs } , Lang ) - >
try pubsub_get_pending : decode ( Fs )
catch _ : { pubsub_get_pending , Why } - >
Txt = pubsub_get_pending : format_error ( Why ) ,
{ error , xmpp : err_resource_constraint ( Txt , Lang ) }
2019-06-14 11:33:26 +02:00
end .
2016-10-07 09:31:03 +02:00
2021-08-02 21:09:55 +02:00
- spec check_opt_range ( atom ( ) , [ proplists : property ( ) ] ,
2022-01-17 19:08:36 +01:00
non_neg_integer ( ) | unlimited | infinity ) - > boolean ( ) .
2021-08-21 12:29:37 +02:00
check_opt_range ( _ Opt , _ Opts , unlimited ) - >
true ;
2022-01-17 19:08:36 +01:00
check_opt_range ( _ Opt , _ Opts , infinity ) - >
true ;
2016-10-07 09:31:03 +02:00
check_opt_range ( Opt , Opts , Max ) - >
2021-08-20 20:30:11 +02:00
case proplists : get_value ( Opt , Opts , Max ) of
max - > true ;
Val - > Val =< Max
end .
2016-08-30 08:48:08 +02:00
2021-10-30 13:45:10 +02:00
- spec get_max_items_node ( host ( ) ) - > unlimited | non_neg_integer ( ) .
2009-09-23 17:56:06 +02:00
get_max_items_node ( Host ) - >
2021-10-30 13:45:10 +02:00
config ( Host , max_items_node , ? MAXITEMS ) .
2007-12-01 06:16:30 +01:00
2021-10-30 13:19:30 +02:00
- spec get_max_item_expire_node ( host ( ) ) - > infinity | non_neg_integer ( ) .
get_max_item_expire_node ( Host ) - >
config ( Host , max_item_expire_node , infinity ) .
2016-08-30 08:48:08 +02:00
- spec get_max_subscriptions_node ( host ( ) ) - > undefined | non_neg_integer ( ) .
2015-11-10 16:28:57 +01:00
get_max_subscriptions_node ( Host ) - >
2016-03-13 11:16:43 +01:00
config ( Host , max_subscriptions_node , undefined ) .
2015-11-10 16:28:57 +01:00
2009-05-29 00:30:43 +02:00
%%%% last item cache handling
2016-08-30 08:48:08 +02:00
- spec is_last_item_cache_enabled ( host ( ) ) - > boolean ( ) .
2009-07-30 23:00:44 +02:00
is_last_item_cache_enabled ( Host ) - >
2016-03-13 11:16:43 +01:00
config ( Host , last_item_cache , false ) .
2009-07-30 23:00:44 +02:00
2019-06-14 11:33:26 +02:00
- spec set_cached_item ( host ( ) , nodeIdx ( ) , binary ( ) , jid ( ) , [ xmlel ( ) ] ) - > ok .
2015-04-08 17:12:05 +02:00
set_cached_item ( { _ , ServerHost , _ } , Nidx , ItemId , Publisher , Payload ) - >
set_cached_item ( ServerHost , Nidx , ItemId , Publisher , Payload ) ;
set_cached_item ( Host , Nidx , ItemId , Publisher , Payload ) - >
2009-07-30 23:00:44 +02:00
case is_last_item_cache_enabled ( Host ) of
2017-02-22 17:44:47 +01:00
true - >
2019-02-27 09:56:20 +01:00
Stamp = { erlang : timestamp ( ) , jid : tolower ( jid : remove_resource ( Publisher ) ) } ,
2017-02-22 17:44:47 +01:00
Item = #pubsub_last_item { nodeid = { Host , Nidx } ,
itemid = ItemId ,
creation = Stamp ,
payload = Payload } ,
mnesia : dirty_write ( Item ) ;
_ - >
ok
2009-05-29 00:30:43 +02:00
end .
2013-03-14 10:33:02 +01:00
2016-08-30 08:48:08 +02:00
- spec unset_cached_item ( host ( ) , nodeIdx ( ) ) - > ok .
2015-04-08 17:12:05 +02:00
unset_cached_item ( { _ , ServerHost , _ } , Nidx ) - >
unset_cached_item ( ServerHost , Nidx ) ;
unset_cached_item ( Host , Nidx ) - >
2009-07-30 23:00:44 +02:00
case is_last_item_cache_enabled ( Host ) of
2017-01-21 00:14:56 +01:00
true - > mnesia : dirty_delete ( { pubsub_last_item , { Host , Nidx } } ) ;
2015-04-08 17:12:05 +02:00
_ - > ok
2009-05-29 00:30:43 +02:00
end .
2013-03-14 10:33:02 +01:00
2019-06-14 11:33:26 +02:00
- spec get_cached_item ( host ( ) , nodeIdx ( ) ) - > undefined | #pubsub_item { } .
2015-04-08 17:12:05 +02:00
get_cached_item ( { _ , ServerHost , _ } , Nidx ) - >
get_cached_item ( ServerHost , Nidx ) ;
get_cached_item ( Host , Nidx ) - >
2009-07-30 23:00:44 +02:00
case is_last_item_cache_enabled ( Host ) of
2015-04-08 17:12:05 +02:00
true - >
2017-01-21 00:14:56 +01:00
case mnesia : dirty_read ( { pubsub_last_item , { Host , Nidx } } ) of
2017-02-22 17:44:47 +01:00
[ #pubsub_last_item { itemid = ItemId , creation = Creation , payload = Payload } ] - >
2015-04-08 17:12:05 +02:00
#pubsub_item { itemid = { ItemId , Nidx } ,
payload = Payload , creation = Creation ,
modification = Creation } ;
_ - >
undefined
end ;
_ - >
undefined
2009-05-29 00:30:43 +02:00
end .
2007-12-01 06:16:30 +01:00
%%%% plugin handling
2016-08-30 08:48:08 +02:00
- spec host ( binary ( ) ) - > binary ( ) .
2010-01-12 16:14:47 +01:00
host ( ServerHost ) - >
2015-04-08 17:12:05 +02:00
config ( ServerHost , host , < < " pubsub. " , ServerHost / binary > > ) .
2016-08-30 08:48:08 +02:00
- spec serverhost ( host ( ) ) - > binary ( ) .
2016-02-26 09:33:07 +01:00
serverhost ( { _ U , ServerHost , _ R } ) - >
2016-03-13 11:16:43 +01:00
serverhost ( ServerHost ) ;
2015-04-08 17:12:05 +02:00
serverhost ( Host ) - >
2016-03-13 11:16:43 +01:00
ejabberd_router : host_of_route ( Host ) .
2015-04-08 17:12:05 +02:00
2016-08-30 08:48:08 +02:00
- spec tree ( host ( ) ) - > atom ( ) .
2015-04-08 17:12:05 +02:00
tree ( Host ) - >
2016-12-25 01:24:40 +01:00
case config ( Host , nodetree ) of
2015-04-08 17:12:05 +02:00
undefined - > tree ( Host , ? STDTREE ) ;
Tree - > Tree
end .
2019-06-14 11:33:26 +02:00
- spec tree ( host ( ) | atom ( ) , binary ( ) ) - > atom ( ) .
2015-11-30 15:20:38 +01:00
tree ( _ Host , < < " virtual " > > ) - >
nodetree_virtual ; % special case, virtual does not use any backend
2015-04-08 17:12:05 +02:00
tree ( Host , Name ) - >
2017-10-31 11:04:32 +01:00
submodule ( Host , < < " nodetree " > > , Name ) .
2015-04-08 17:12:05 +02:00
2019-06-14 11:33:26 +02:00
- spec plugin ( host ( ) | atom ( ) , binary ( ) ) - > atom ( ) .
2015-04-08 17:12:05 +02:00
plugin ( Host , Name ) - >
2017-10-31 11:04:32 +01:00
submodule ( Host , < < " node " > > , Name ) .
2010-01-12 16:14:47 +01:00
2016-08-30 08:48:08 +02:00
- spec plugins ( host ( ) ) - > [ binary ( ) ] .
2008-04-02 11:06:28 +02:00
plugins ( Host ) - >
2016-03-13 11:16:43 +01:00
case config ( Host , plugins ) of
2015-04-08 17:12:05 +02:00
undefined - > [ ? STDNODE ] ;
[ ] - > [ ? STDNODE ] ;
Plugins - > Plugins
end .
2019-06-14 11:33:26 +02:00
- spec subscription_plugin ( host ( ) | atom ( ) ) - > atom ( ) .
2015-04-08 17:12:05 +02:00
subscription_plugin ( Host ) - >
2017-10-31 11:04:32 +01:00
submodule ( Host , < < " pubsub " > > , < < " subscription " > > ) .
2017-03-30 14:26:30 +02:00
2019-06-14 11:33:26 +02:00
- spec submodule ( host ( ) | atom ( ) , binary ( ) , binary ( ) ) - > atom ( ) .
submodule ( Db , Type , Name ) when is_atom ( Db ) - >
case Db of
2017-10-31 11:04:32 +01:00
mnesia - > ejabberd : module_name ( [ < < " pubsub " > > , Type , Name ] ) ;
2019-06-14 11:33:26 +02:00
_ - > ejabberd : module_name ( [ < < " pubsub " > > , Type , Name , misc : atom_to_binary ( Db ) ] )
end ;
submodule ( Host , Type , Name ) - >
Db = mod_pubsub_opt : db_type ( serverhost ( Host ) ) ,
submodule ( Db , Type , Name ) .
2015-04-08 17:12:05 +02:00
2016-08-30 08:48:08 +02:00
- spec config ( binary ( ) , any ( ) ) - > any ( ) .
2015-04-08 17:12:05 +02:00
config ( ServerHost , Key ) - >
config ( ServerHost , Key , undefined ) .
2016-03-13 11:16:43 +01:00
2016-08-30 08:48:08 +02:00
- spec config ( host ( ) , any ( ) , any ( ) ) - > any ( ) .
2016-03-13 11:16:43 +01:00
config ( { _ User , Host , _ Resource } , Key , Default ) - >
config ( Host , Key , Default ) ;
2015-04-08 17:12:05 +02:00
config ( ServerHost , Key , Default ) - >
case catch ets : lookup ( gen_mod : get_module_proc ( ServerHost , config ) , Key ) of
[ { Key , Value } ] - > Value ;
_ - > Default
2008-04-02 11:06:28 +02:00
end .
2013-03-14 10:33:02 +01:00
2016-08-30 08:48:08 +02:00
- spec select_type ( binary ( ) , host ( ) , binary ( ) , binary ( ) ) - > binary ( ) .
2017-11-15 19:04:47 +01:00
select_type ( ServerHost , { _ User , _ Server , _ Resource } , Node , _ Type ) - >
case config ( ServerHost , pep_mapping ) of
undefined - > ? PEPNODE ;
Mapping - > proplists : get_value ( Node , Mapping , ? PEPNODE )
end ;
select_type ( ServerHost , _ Host , _ Node , Type ) - >
case config ( ServerHost , plugins ) of
undefined - >
Type ;
Plugins - >
case lists : member ( Type , Plugins ) of
true - > Type ;
false - > hd ( Plugins )
end
2008-09-25 19:26:06 +02:00
end .
2013-03-14 10:33:02 +01:00
2016-08-30 08:48:08 +02:00
- spec select_type ( binary ( ) , host ( ) , binary ( ) ) - > binary ( ) .
2013-03-14 10:33:02 +01:00
select_type ( ServerHost , Host , Node ) - >
2016-02-26 09:33:07 +01:00
select_type ( ServerHost , Host , Node , hd ( plugins ( Host ) ) ) .
2015-04-08 17:12:05 +02:00
2016-09-08 14:49:27 +02:00
- spec feature ( binary ( ) ) - > binary ( ) .
2015-04-08 17:12:05 +02:00
feature ( < < " rsm " > > ) - > ? NS_RSM ;
feature ( Feature ) - > < < ( ? NS_PUBSUB ) / binary , " # " , Feature / binary > > .
2008-04-02 11:06:28 +02:00
2016-09-08 14:49:27 +02:00
- spec features ( ) - > [ binary ( ) ] .
2007-12-01 06:16:30 +01:00
features ( ) - >
2013-03-14 10:33:02 +01:00
[ % see plugin "access-authorize", % OPTIONAL
2016-09-08 14:49:27 +02:00
< < " access-open " > > , % OPTIONAL this relates to access_model option in node_hometree
< < " access-presence " > > , % OPTIONAL this relates to access_model option in node_pep
< < " access-whitelist " > > , % OPTIONAL
< < " collections " > > , % RECOMMENDED
< < " config-node " > > , % RECOMMENDED
2021-08-20 20:30:11 +02:00
< < " config-node-max " > > ,
2016-09-08 14:49:27 +02:00
< < " create-and-configure " > > , % RECOMMENDED
< < " item-ids " > > , % RECOMMENDED
< < " last-published " > > , % RECOMMENDED
< < " member-affiliation " > > , % RECOMMENDED
< < " presence-notifications " > > , % OPTIONAL
< < " presence-subscribe " > > , % RECOMMENDED
< < " publisher-affiliation " > > , % RECOMMENDED
< < " publish-only-affiliation " > > , % OPTIONAL
2017-12-12 01:04:14 +01:00
< < " publish-options " > > , % OPTIONAL
2016-09-08 14:49:27 +02:00
< < " retrieve-default " > > ,
< < " shim " > > ] . % RECOMMENDED
2015-04-08 17:12:05 +02:00
% see plugin "retrieve-items", % RECOMMENDED
% see plugin "retrieve-subscriptions", % RECOMMENDED
% see plugin "subscribe", % REQUIRED
% see plugin "subscription-options", % OPTIONAL
% see plugin "subscription-notifications" % OPTIONAL
2019-06-14 11:33:26 +02:00
- spec plugin_features ( host ( ) , binary ( ) ) - > [ binary ( ) ] .
2015-04-08 17:12:05 +02:00
plugin_features ( Host , Type ) - >
Module = plugin ( Host , Type ) ,
case catch Module : features ( ) of
2013-03-14 10:33:02 +01:00
{ 'EXIT' , { undef , _ } } - > [ ] ;
Result - > Result
2015-04-08 17:12:05 +02:00
end .
2013-03-14 10:33:02 +01:00
2016-08-30 08:48:08 +02:00
- spec features ( binary ( ) , binary ( ) ) - > [ binary ( ) ] .
2009-11-04 20:54:15 +01:00
features ( Host , < < > > ) - >
2013-03-14 10:33:02 +01:00
lists : usort ( lists : foldl ( fun ( Plugin , Acc ) - >
2015-04-08 17:12:05 +02:00
Acc ++ plugin_features ( Host , Plugin )
end ,
features ( ) , plugins ( Host ) ) ) ;
features ( Host , Node ) when is_binary ( Node ) - >
2013-03-14 10:33:02 +01:00
Action = fun ( #pubsub_node { type = Type } ) - >
2015-04-08 17:12:05 +02:00
{ result , plugin_features ( Host , Type ) }
end ,
2009-04-30 07:18:06 +02:00
case transaction ( Host , Node , Action , sync_dirty ) of
2015-04-08 17:12:05 +02:00
{ result , Features } - > lists : usort ( features ( ) ++ Features ) ;
_ - > features ( )
2009-04-30 07:18:06 +02:00
end .
2007-12-01 06:16:30 +01:00
%% @doc <p>node tree plugin call.</p>
2019-07-29 16:13:16 +02:00
- spec tree_call ( host ( ) , atom ( ) , list ( ) ) - > { error , stanza_error ( ) | { virtual , nodeIdx ( ) } } | any ( ) .
2007-12-01 06:16:30 +01:00
tree_call ( { _ User , Server , _ Resource } , Function , Args ) - >
tree_call ( Server , Function , Args ) ;
tree_call ( Host , Function , Args ) - >
2016-04-05 12:09:44 +02:00
Tree = tree ( Host ) ,
2019-09-23 14:17:20 +02:00
? DEBUG ( " Tree_call apply( ~ ts, ~ ts, ~p ) @ ~ ts " , [ Tree , Function , Args , Host ] ) ,
2023-10-02 14:39:30 +02:00
Res = apply ( Tree , Function , Args ) ,
Res2 = ejabberd_hooks : run_fold ( pubsub_tree_call , Host , Res , [ Tree , Function , Args ] ) ,
case Res2 of
2019-07-29 16:13:16 +02:00
{ error , #stanza_error { } } = Err - >
Err ;
{ error , { virtual , _ } } = Err - >
Err ;
{ error , _ } - >
ErrTxt = ? T ( " Database failure " ) ,
Lang = ejabberd_option : language ( ) ,
{ error , xmpp : err_internal_server_error ( ErrTxt , Lang ) } ;
Other - >
Other
end .
2013-03-14 10:33:02 +01:00
2019-07-29 16:13:16 +02:00
- spec tree_action ( host ( ) , atom ( ) , list ( ) ) - > { error , stanza_error ( ) | { virtual , nodeIdx ( ) } } | any ( ) .
2007-12-01 06:16:30 +01:00
tree_action ( Host , Function , Args ) - >
2019-06-24 19:32:34 +02:00
? DEBUG ( " Tree_action ~p ~p ~p " , [ Host , Function , Args ] ) ,
2015-04-08 17:12:05 +02:00
ServerHost = serverhost ( Host ) ,
2019-07-29 21:24:26 +02:00
DBType = mod_pubsub_opt : db_type ( ServerHost ) ,
Fun = fun ( ) - >
try tree_call ( Host , Function , Args )
catch ? EX_RULE ( Class , Reason , St ) when DBType == sql - >
StackTrace = ? EX_STACK ( St ) ,
ejabberd_sql : abort ( { exception , Class , Reason , StackTrace } )
end
end ,
Ret = case DBType of
2019-07-29 16:13:16 +02:00
mnesia - >
mnesia : sync_dirty ( Fun ) ;
sql - >
ejabberd_sql : sql_bloc ( ServerHost , Fun ) ;
_ - >
2019-07-29 21:24:26 +02:00
Fun ( )
2019-07-29 16:13:16 +02:00
end ,
2019-07-29 21:24:26 +02:00
get_tree_action_result ( Ret ) .
- spec get_tree_action_result ( any ( ) ) - > { error , stanza_error ( ) | { virtual , nodeIdx ( ) } } | any ( ) .
get_tree_action_result ( { atomic , Result } ) - >
Result ;
get_tree_action_result ( { aborted , { exception , Class , Reason , StackTrace } } ) - >
2019-09-23 14:17:20 +02:00
? ERROR_MSG ( " Transaction aborted: ~n ** ~ ts " ,
2019-07-29 21:24:26 +02:00
[ misc : format_exception ( 2 , Class , Reason , StackTrace ) ] ) ,
get_tree_action_result ( { error , db_failure } ) ;
get_tree_action_result ( { aborted , Reason } ) - >
? ERROR_MSG ( " Transaction aborted: ~p ~n " , [ Reason ] ) ,
get_tree_action_result ( { error , db_failure } ) ;
get_tree_action_result ( { error , #stanza_error { } } = Err ) - >
Err ;
get_tree_action_result ( { error , { virtual , _ } } = Err ) - >
Err ;
get_tree_action_result ( { error , _ } ) - >
ErrTxt = ? T ( " Database failure " ) ,
Lang = ejabberd_option : language ( ) ,
{ error , xmpp : err_internal_server_error ( ErrTxt , Lang ) } ;
get_tree_action_result ( Other ) - >
%% This is very risky, but tree plugins design is really bad
Other .
2007-12-01 06:16:30 +01:00
%% @doc <p>node plugin call.</p>
2019-07-29 16:13:16 +02:00
- spec node_call ( host ( ) , binary ( ) , atom ( ) , list ( ) ) - > { result , any ( ) } | { error , stanza_error ( ) } .
2015-04-08 17:12:05 +02:00
node_call ( Host , Type , Function , Args ) - >
2019-06-24 19:32:34 +02:00
? DEBUG ( " Node_call ~p ~p ~p " , [ Type , Function , Args ] ) ,
2015-04-08 17:12:05 +02:00
Module = plugin ( Host , Type ) ,
2019-07-29 16:13:16 +02:00
case erlang : function_exported ( Module , Function , length ( Args ) ) of
true - >
case apply ( Module , Function , Args ) of
{ result , Result } - >
{ result , Result } ;
2021-03-25 14:32:24 +01:00
#pubsub_state { } = Result - >
{ result , Result } ;
2019-07-29 16:13:16 +02:00
{ error , #stanza_error { } } = Err - >
Err ;
{ error , _ } - >
ErrTxt = ? T ( " Database failure " ) ,
Lang = ejabberd_option : language ( ) ,
{ error , xmpp : err_internal_server_error ( ErrTxt , Lang ) }
2015-04-08 17:12:05 +02:00
end ;
2019-07-29 16:13:16 +02:00
false when Type / = ? STDNODE - >
node_call ( Host , ? STDNODE , Function , Args ) ;
false - >
%% Let it crash with the stacktrace
apply ( Module , Function , Args )
2005-07-20 05:09:34 +02:00
end .
2019-07-29 16:13:16 +02:00
- spec node_action ( host ( ) , binary ( ) , atom ( ) , list ( ) ) - > { result , any ( ) } | { error , stanza_error ( ) } .
2009-05-26 23:50:13 +02:00
node_action ( Host , Type , Function , Args ) - >
2019-06-24 19:32:34 +02:00
? DEBUG ( " Node_action ~p ~p ~p ~p " , [ Host , Type , Function , Args ] ) ,
2019-07-29 16:13:16 +02:00
transaction ( Host , fun ( ) - > node_call ( Host , Type , Function , Args ) end , sync_dirty ) .
2007-12-01 06:16:30 +01:00
%% @doc <p>plugin transaction handling.</p>
2019-07-29 16:13:16 +02:00
- spec transaction ( host ( ) , binary ( ) , fun ( ( #pubsub_node { } ) - > _ ) , transaction | sync_dirty ) - >
{ result , any ( ) } | { error , stanza_error ( ) } .
2007-12-01 06:16:30 +01:00
transaction ( Host , Node , Action , Trans ) - >
2019-07-29 16:13:16 +02:00
transaction (
Host ,
fun ( ) - >
case tree_call ( Host , get_node , [ Host , Node ] ) of
N when is_record ( N , pubsub_node ) - >
case Action ( N ) of
{ result , Result } - > { result , { N , Result } } ;
{ atomic , { result , Result } } - > { result , { N , Result } } ;
Other - > Other
end ;
Error - >
Error
end
end ,
Trans ) .
2015-04-08 17:12:05 +02:00
2019-07-29 16:13:16 +02:00
- spec transaction ( host ( ) , fun ( ) , transaction | sync_dirty ) - >
{ result , any ( ) } | { error , stanza_error ( ) } .
2015-04-08 17:12:05 +02:00
transaction ( Host , Fun , Trans ) - >
ServerHost = serverhost ( Host ) ,
2019-06-14 11:33:26 +02:00
DBType = mod_pubsub_opt : db_type ( ServerHost ) ,
2018-03-13 20:10:58 +01:00
do_transaction ( ServerHost , Fun , Trans , DBType ) .
2015-04-08 17:12:05 +02:00
2019-07-29 16:13:16 +02:00
- spec do_transaction ( binary ( ) , fun ( ) , transaction | sync_dirty , atom ( ) ) - >
{ result , any ( ) } | { error , stanza_error ( ) } .
2018-03-13 20:10:58 +01:00
do_transaction ( ServerHost , Fun , Trans , DBType ) - >
2019-07-29 16:13:16 +02:00
F = fun ( ) - >
try Fun ( )
2019-07-29 20:44:30 +02:00
catch ? EX_RULE ( Class , Reason , St ) when ( DBType == mnesia andalso
Trans == transaction ) orelse
DBType == sql - >
2019-07-29 16:13:16 +02:00
StackTrace = ? EX_STACK ( St ) ,
2019-07-29 20:44:30 +02:00
Ex = { exception , Class , Reason , StackTrace } ,
case DBType of
mnesia - > mnesia : abort ( Ex ) ;
sql - > ejabberd_sql : abort ( Ex )
end
2019-07-29 16:13:16 +02:00
end
end ,
2015-04-08 17:12:05 +02:00
Res = case DBType of
2019-07-29 16:13:16 +02:00
mnesia - >
mnesia : Trans ( F ) ;
sql - >
SqlFun = case Trans of
transaction - > sql_transaction ;
_ - > sql_bloc
end ,
ejabberd_sql : SqlFun ( ServerHost , F ) ;
_ - >
F ( )
end ,
get_transaction_response ( Res ) .
- spec get_transaction_response ( any ( ) ) - > { result , any ( ) } | { error , stanza_error ( ) } .
get_transaction_response ( { result , _ } = Result ) - >
Result ;
get_transaction_response ( { error , #stanza_error { } } = Err ) - >
Err ;
get_transaction_response ( { atomic , Result } ) - >
get_transaction_response ( Result ) ;
get_transaction_response ( { aborted , Err } ) - >
get_transaction_response ( Err ) ;
get_transaction_response ( { error , _ } ) - >
Lang = ejabberd_option : language ( ) ,
{ error , xmpp : err_internal_server_error ( ? T ( " Database failure " ) , Lang ) } ;
get_transaction_response ( { exception , Class , Reason , StackTrace } ) - >
2019-09-23 14:17:20 +02:00
? ERROR_MSG ( " Transaction aborted: ~n ** ~ ts " ,
2019-07-29 16:13:16 +02:00
[ misc : format_exception ( 2 , Class , Reason , StackTrace ) ] ) ,
get_transaction_response ( { error , db_failure } ) ;
get_transaction_response ( Err ) - >
? ERROR_MSG ( " Transaction error: ~p " , [ Err ] ) ,
get_transaction_response ( { error , db_failure } ) .
2005-04-17 20:08:34 +02:00
2007-12-01 06:16:30 +01:00
%%%% helpers
%% Add pubsub-specific error element
2016-09-08 16:08:48 +02:00
- spec extended_error ( stanza_error ( ) , ps_error ( ) ) - > stanza_error ( ) .
2016-08-30 08:48:08 +02:00
extended_error ( StanzaErr , PubSubErr ) - >
2016-09-08 16:08:48 +02:00
StanzaErr #stanza_error { sub_els = [ PubSubErr ] } .
2016-04-05 12:09:44 +02:00
2016-08-30 08:48:08 +02:00
- spec err_closed_node ( ) - > ps_error ( ) .
err_closed_node ( ) - >
#ps_error { type = 'closed-node' } .
- spec err_configuration_required ( ) - > ps_error ( ) .
err_configuration_required ( ) - >
#ps_error { type = 'configuration-required' } .
- spec err_invalid_jid ( ) - > ps_error ( ) .
err_invalid_jid ( ) - >
#ps_error { type = 'invalid-jid' } .
- spec err_invalid_options ( ) - > ps_error ( ) .
err_invalid_options ( ) - >
#ps_error { type = 'invalid-options' } .
- spec err_invalid_payload ( ) - > ps_error ( ) .
err_invalid_payload ( ) - >
#ps_error { type = 'invalid-payload' } .
- spec err_invalid_subid ( ) - > ps_error ( ) .
err_invalid_subid ( ) - >
#ps_error { type = 'invalid-subid' } .
- spec err_item_forbidden ( ) - > ps_error ( ) .
err_item_forbidden ( ) - >
#ps_error { type = 'item-forbidden' } .
- spec err_item_required ( ) - > ps_error ( ) .
err_item_required ( ) - >
#ps_error { type = 'item-required' } .
- spec err_jid_required ( ) - > ps_error ( ) .
err_jid_required ( ) - >
#ps_error { type = 'jid-required' } .
- spec err_max_items_exceeded ( ) - > ps_error ( ) .
err_max_items_exceeded ( ) - >
#ps_error { type = 'max-items-exceeded' } .
- spec err_max_nodes_exceeded ( ) - > ps_error ( ) .
err_max_nodes_exceeded ( ) - >
#ps_error { type = 'max-nodes-exceeded' } .
- spec err_nodeid_required ( ) - > ps_error ( ) .
err_nodeid_required ( ) - >
#ps_error { type = 'nodeid-required' } .
- spec err_not_in_roster_group ( ) - > ps_error ( ) .
err_not_in_roster_group ( ) - >
#ps_error { type = 'not-in-roster-group' } .
- spec err_not_subscribed ( ) - > ps_error ( ) .
err_not_subscribed ( ) - >
#ps_error { type = 'not-subscribed' } .
- spec err_payload_too_big ( ) - > ps_error ( ) .
err_payload_too_big ( ) - >
#ps_error { type = 'payload-too-big' } .
- spec err_payload_required ( ) - > ps_error ( ) .
err_payload_required ( ) - >
#ps_error { type = 'payload-required' } .
- spec err_pending_subscription ( ) - > ps_error ( ) .
err_pending_subscription ( ) - >
#ps_error { type = 'pending-subscription' } .
2017-12-12 01:04:14 +01:00
- spec err_precondition_not_met ( ) - > ps_error ( ) .
err_precondition_not_met ( ) - >
#ps_error { type = 'precondition-not-met' } .
2016-08-30 08:48:08 +02:00
- spec err_presence_subscription_required ( ) - > ps_error ( ) .
err_presence_subscription_required ( ) - >
#ps_error { type = 'presence-subscription-required' } .
- spec err_subid_required ( ) - > ps_error ( ) .
err_subid_required ( ) - >
#ps_error { type = 'subid-required' } .
- spec err_too_many_subscriptions ( ) - > ps_error ( ) .
err_too_many_subscriptions ( ) - >
#ps_error { type = 'too-many-subscriptions' } .
2016-09-08 14:49:27 +02:00
- spec err_unsupported ( ps_feature ( ) ) - > ps_error ( ) .
2016-08-30 08:48:08 +02:00
err_unsupported ( Feature ) - >
#ps_error { type = 'unsupported' , feature = Feature } .
- spec err_unsupported_access_model ( ) - > ps_error ( ) .
err_unsupported_access_model ( ) - >
#ps_error { type = 'unsupported-access-model' } .
2013-03-14 10:33:02 +01:00
2016-07-01 21:18:55 +02:00
- spec uniqid ( ) - > mod_pubsub : itemId ( ) .
2007-12-01 06:16:30 +01:00
uniqid ( ) - >
2019-02-27 09:56:20 +01:00
{ T1 , T2 , T3 } = erlang : timestamp ( ) ,
2016-11-24 13:06:06 +01:00
( str : format ( " ~.16B ~.16B ~.16B " , [ T1 , T2 , T3 ] ) ) .
2008-02-06 19:04:23 +01:00
2016-08-30 08:48:08 +02:00
- spec add_message_type ( message ( ) , message_type ( ) ) - > message ( ) .
add_message_type ( #message { } = Message , Type ) - >
Message #message { type = Type } .
2009-09-24 21:28:43 +02:00
2010-01-12 11:33:39 +01:00
%% Place of <headers/> changed at the bottom of the stanza
%% cf. http://xmpp.org/extensions/xep-0060.html#publisher-publish-success-subid
%%
%% "[SHIM Headers] SHOULD be included after the event notification information
%% (i.e., as the last child of the <message/> stanza)".
2016-08-30 08:48:08 +02:00
- spec add_shim_headers ( stanza ( ) , [ { binary ( ) , binary ( ) } ] ) - > stanza ( ) .
add_shim_headers ( Stanza , Headers ) - >
xmpp : set_subtag ( Stanza , #shim { headers = Headers } ) .
2010-03-05 17:52:41 +01:00
2016-08-30 08:48:08 +02:00
- spec add_extended_headers ( stanza ( ) , [ address ( ) ] ) - > stanza ( ) .
add_extended_headers ( Stanza , Addrs ) - >
xmpp : set_subtag ( Stanza , #addresses { list = Addrs } ) .
2010-01-12 11:33:39 +01:00
2016-08-30 08:48:08 +02:00
- spec subid_shim ( [ binary ( ) ] ) - > [ { binary ( ) , binary ( ) } ] .
2015-04-08 17:12:05 +02:00
subid_shim ( SubIds ) - >
2016-08-30 08:48:08 +02:00
[ { < < " SubId " > > , SubId } | | SubId < - SubIds ] .
2010-01-12 11:33:39 +01:00
2010-03-05 17:52:41 +01:00
%% The argument is a list of Jids because this function could be used
%% with the 'pubsub#replyto' (type=jid-multi) node configuration.
2016-08-30 08:48:08 +02:00
- spec extended_headers ( [ jid ( ) ] ) - > [ address ( ) ] .
2010-03-05 17:52:41 +01:00
extended_headers ( Jids ) - >
2016-08-30 08:48:08 +02:00
[ #address { type = replyto , jid = Jid } | | Jid < - Jids ] .
2010-03-05 17:52:41 +01:00
2024-11-30 20:38:33 +01:00
- spec purge_offline ( jid ( ) ) - > ok .
purge_offline ( #jid { lserver = Host } = JID ) - >
2010-03-05 11:35:20 +01:00
Plugins = plugins ( Host ) ,
2019-07-29 16:13:16 +02:00
Result = lists : foldl (
fun ( Type , { Status , Acc } ) - >
Features = plugin_features ( Host , Type ) ,
case lists : member ( < < " retrieve-affiliations " > > , plugin_features ( Host , Type ) ) of
false - >
{ { error , extended_error ( xmpp : err_feature_not_implemented ( ) ,
err_unsupported ( 'retrieve-affiliations' ) ) } ,
2015-04-08 17:12:05 +02:00
Acc } ;
2019-07-29 16:13:16 +02:00
true - >
Items = lists : member ( < < " retract-items " > > , Features )
andalso lists : member ( < < " persistent-items " > > , Features ) ,
if Items - >
case node_action ( Host , Type ,
2024-11-30 20:38:33 +01:00
get_entity_affiliations , [ Host , JID ] ) of
2019-07-29 16:13:16 +02:00
{ result , Affs } - >
{ Status , [ Affs | Acc ] } ;
{ error , _ } = Err - >
{ Err , Acc }
end ;
true - >
{ Status , Acc }
end
end
end , { ok , [ ] } , Plugins ) ,
2010-03-05 11:35:20 +01:00
case Result of
2015-04-08 17:12:05 +02:00
{ ok , Affs } - >
2015-04-22 18:11:39 +02:00
lists : foreach (
fun ( { Node , Affiliation } ) - >
Options = Node #pubsub_node.options ,
Publisher = lists : member ( Affiliation , [ owner , publisher , publish_only ] ) ,
Open = ( get_option ( Options , publish_model ) == open ) ,
Purge = ( get_option ( Options , purge_offline )
andalso get_option ( Options , persist_items ) ) ,
if ( Publisher or Open ) and Purge - >
2024-11-30 20:38:33 +01:00
purge_offline ( Host , JID , Node ) ;
2015-04-22 18:11:39 +02:00
true - >
ok
end
end , lists : usort ( lists : flatten ( Affs ) ) ) ;
2019-07-29 16:13:16 +02:00
_ - >
ok
2015-04-22 18:11:39 +02:00
end .
2024-11-30 20:38:33 +01:00
- spec purge_offline ( host ( ) , jid ( ) , #pubsub_node { } ) - > ok | { error , stanza_error ( ) } .
purge_offline ( Host , #jid { luser = User , lserver = Server , lresource = Resource } = JID , Node ) - >
2015-04-22 18:11:39 +02:00
Nidx = Node #pubsub_node.id ,
Type = Node #pubsub_node.type ,
Options = Node #pubsub_node.options ,
2017-10-24 15:35:01 +02:00
case node_action ( Host , Type , get_items , [ Nidx , service_jid ( Host ) , undefined ] ) of
2015-04-22 18:11:39 +02:00
{ result , { [ ] , _ } } - >
ok ;
{ result , { Items , _ } } - >
PublishModel = get_option ( Options , publish_model ) ,
ForceNotify = get_option ( Options , notify_retract ) ,
{ _ , NodeId } = Node #pubsub_node.nodeid ,
2019-07-29 16:13:16 +02:00
lists : foreach (
fun ( #pubsub_item { itemid = { ItemId , _ } , modification = { _ , { U , S , R } } } )
when ( U == User ) and ( S == Server ) and ( R == Resource ) - >
case node_action ( Host , Type , delete_item , [ Nidx , { U , S , < < > > } , PublishModel , ItemId ] ) of
{ result , { _ , broadcast } } - >
2024-11-30 20:38:33 +01:00
broadcast_retract_items ( Host , JID , NodeId , Nidx , Type , Options , [ ItemId ] , ForceNotify ) ,
2019-07-29 16:13:16 +02:00
case get_cached_item ( Host , Nidx ) of
#pubsub_item { itemid = { ItemId , Nidx } } - > unset_cached_item ( Host , Nidx ) ;
_ - > ok
end ;
_ - >
ok
end ;
( _ ) - >
true
end , Items ) ;
{ error , #stanza_error { } } = Err - >
Err ;
_ - >
Txt = ? T ( " Database failure " ) ,
Lang = ejabberd_option : language ( ) ,
{ error , xmpp : err_internal_server_error ( Txt , Lang ) }
2010-03-05 11:35:20 +01:00
end .
2015-06-01 14:38:27 +02:00
2021-08-22 12:44:50 +02:00
- spec delete_old_items ( non_neg_integer ( ) ) - > ok | error .
delete_old_items ( N ) - >
Results = lists : flatmap (
fun ( Host ) - >
case tree_action ( Host , get_all_nodes , [ Host ] ) of
Nodes when is_list ( Nodes ) - >
lists : map (
fun ( #pubsub_node { id = Nidx , type = Type } ) - >
case node_action ( Host , Type ,
remove_extra_items ,
2024-08-26 11:28:54 +02:00
[ Nidx , N ] ) of
2021-08-22 12:44:50 +02:00
{ result , _ } - >
ok ;
{ error , _ } - >
error
end
end , Nodes ) ;
_ - >
2022-08-31 18:10:22 +02:00
[ error ]
2021-08-22 12:44:50 +02:00
end
end , ejabberd_option : hosts ( ) ) ,
case lists : member ( error , Results ) of
true - >
error ;
false - >
ok
end .
2021-10-30 13:19:30 +02:00
- spec delete_expired_items ( ) - > ok | error .
delete_expired_items ( ) - >
Results = lists : flatmap (
fun ( Host ) - >
case tree_action ( Host , get_all_nodes , [ Host ] ) of
Nodes when is_list ( Nodes ) - >
lists : map (
fun ( #pubsub_node { id = Nidx , type = Type ,
options = Options } ) - >
case item_expire ( Host , Options ) of
infinity - >
ok ;
Seconds - >
case node_action (
Host , Type ,
remove_expired_items ,
[ Nidx , Seconds ] ) of
{ result , [ ] } - >
ok ;
{ result , [ _ | _ ] } - >
unset_cached_item (
Host , Nidx ) ;
{ error , _ } - >
error
end
end
end , Nodes ) ;
_ - >
2022-08-31 18:10:22 +02:00
[ error ]
2021-10-30 13:19:30 +02:00
end
end , ejabberd_option : hosts ( ) ) ,
case lists : member ( error , Results ) of
true - >
error ;
false - >
ok
end .
2021-08-22 12:44:50 +02:00
- spec get_commands_spec ( ) - > [ ejabberd_commands ( ) ] .
get_commands_spec ( ) - >
[ #ejabberd_commands { name = delete_old_pubsub_items , tags = [ purge ] ,
desc = " Keep only NUMBER of PubSub items per node " ,
2021-12-02 16:43:17 +01:00
note = " added in 21.12 " ,
2021-08-22 12:44:50 +02:00
module = ? MODULE , function = delete_old_items ,
args_desc = [ " Number of items to keep per node " ] ,
args = [ { number , integer } ] ,
result = { res , rescode } ,
result_desc = " 0 if command failed, 1 when succeeded " ,
args_example = [ 1000 ] ,
2021-10-30 13:19:30 +02:00
result_example = ok } ,
#ejabberd_commands { name = delete_expired_pubsub_items , tags = [ purge ] ,
desc = " Delete expired PubSub items " ,
2021-12-02 16:43:17 +01:00
note = " added in 21.12 " ,
2021-10-30 13:19:30 +02:00
module = ? MODULE , function = delete_expired_items ,
args = [ ] ,
result = { res , rescode } ,
result_desc = " 0 if command failed, 1 when succeeded " ,
2021-08-22 12:44:50 +02:00
result_example = ok } ] .
2019-07-29 16:13:16 +02:00
- spec mod_opt_type ( atom ( ) ) - > econf : validator ( ) .
2019-06-14 11:33:26 +02:00
mod_opt_type ( access_createnode ) - >
econf : acl ( ) ;
mod_opt_type ( name ) - >
econf : binary ( ) ;
2015-06-01 14:38:27 +02:00
mod_opt_type ( ignore_pep_from_offline ) - >
2019-06-14 11:33:26 +02:00
econf : bool ( ) ;
2015-06-01 14:38:27 +02:00
mod_opt_type ( last_item_cache ) - >
2019-06-14 11:33:26 +02:00
econf : bool ( ) ;
2015-06-01 14:38:27 +02:00
mod_opt_type ( max_items_node ) - >
2021-08-21 12:29:37 +02:00
econf : non_neg_int ( unlimited ) ;
2021-10-30 13:19:30 +02:00
mod_opt_type ( max_item_expire_node ) - >
econf : timeout ( second , infinity ) ;
2019-10-24 13:59:47 +02:00
mod_opt_type ( max_nodes_discoitems ) - >
econf : non_neg_int ( infinity ) ;
2015-11-10 16:28:57 +01:00
mod_opt_type ( max_subscriptions_node ) - >
2019-06-14 11:33:26 +02:00
econf : non_neg_int ( ) ;
2018-03-11 14:52:23 +01:00
mod_opt_type ( force_node_config ) - >
2019-06-14 11:33:26 +02:00
econf : map (
econf : glob ( ) ,
econf : map (
econf : atom ( ) ,
econf : either (
econf : int ( ) ,
econf : atom ( ) ) ,
[ { return , orddict } , unique ] ) ) ;
2015-11-10 16:28:57 +01:00
mod_opt_type ( default_node_config ) - >
2019-06-14 11:33:26 +02:00
econf : map (
econf : atom ( ) ,
econf : either (
econf : int ( ) ,
econf : atom ( ) ) ,
[ unique ] ) ;
2015-06-01 14:38:27 +02:00
mod_opt_type ( nodetree ) - >
2019-06-14 11:33:26 +02:00
econf : binary ( ) ;
2015-06-01 14:38:27 +02:00
mod_opt_type ( pep_mapping ) - >
2019-06-14 11:33:26 +02:00
econf : map ( econf : binary ( ) , econf : binary ( ) ) ;
2015-06-01 14:38:27 +02:00
mod_opt_type ( plugins ) - >
2019-06-17 12:42:58 +02:00
econf : list (
econf : enum ( [ < < " flat " > > , < < " pep " > > ] ) ,
[ unique ] ) ;
2019-06-14 11:33:26 +02:00
mod_opt_type ( host ) - >
2019-06-15 11:53:16 +02:00
econf : host ( ) ;
2019-06-14 11:33:26 +02:00
mod_opt_type ( hosts ) - >
2019-06-15 11:53:16 +02:00
econf : hosts ( ) ;
2019-06-14 11:33:26 +02:00
mod_opt_type ( db_type ) - >
2019-08-02 12:55:48 +02:00
econf : db_type ( ? MODULE ) ;
mod_opt_type ( vcard ) - >
econf : vcard_temp ( ) .
2018-01-23 08:54:52 +01:00
mod_options ( Host ) - >
[ { access_createnode , all } ,
{ db_type , ejabberd_config : default_db ( Host , ? MODULE ) } ,
2019-06-14 11:33:26 +02:00
{ host , < < " pubsub. " , Host / binary > > } ,
2018-01-23 08:54:52 +01:00
{ hosts , [ ] } ,
{ name , ? T ( " Publish-Subscribe " ) } ,
2019-08-02 12:55:48 +02:00
{ vcard , undefined } ,
2018-01-23 08:54:52 +01:00
{ ignore_pep_from_offline , true } ,
{ last_item_cache , false } ,
{ max_items_node , ? MAXITEMS } ,
2021-10-30 13:19:30 +02:00
{ max_item_expire_node , infinity } ,
2019-10-24 13:59:47 +02:00
{ max_nodes_discoitems , 100 } ,
2018-01-23 08:54:52 +01:00
{ nodetree , ? STDTREE } ,
{ pep_mapping , [ ] } ,
{ plugins , [ ? STDNODE ] } ,
{ max_subscriptions_node , undefined } ,
2018-03-23 14:09:18 +01:00
{ default_node_config , [ ] } ,
{ force_node_config , [ ] } ] .
2020-01-13 13:25:08 +01:00
mod_doc ( ) - >
#{ desc = >
[ ? T ( " This module offers a service for "
" https://xmpp.org/extensions/xep-0060.html "
" [XEP-0060: Publish-Subscribe]. The functionality in "
" 'mod_pubsub' can be extended using plugins. "
" The plugin that implements PEP "
" (https://xmpp.org/extensions/xep-0163.html "
" [XEP-0163: Personal Eventing via Pubsub]) "
" is enabled in the default ejabberd configuration file, "
2021-08-21 18:31:21 +02:00
" and it requires _`mod_caps`_. " ) ] ,
2020-01-13 13:25:08 +01:00
opts = >
2020-01-15 16:16:40 +01:00
[ { access_createnode ,
#{ value = > " AccessName " ,
desc = >
? T ( " This option restricts which users are allowed to "
" create pubsub nodes using 'acl' and 'access'. "
" By default any account in the local ejabberd server "
" is allowed to create pubsub nodes. "
" The default value is: 'all'. " ) } } ,
{ db_type ,
#{ value = > " mnesia | sql " ,
desc = >
2021-08-21 18:31:21 +02:00
? T ( " Same as top-level _`default_db`_ option, but applied to "
2020-01-15 16:16:40 +01:00
" this module only. " ) } } ,
{ default_node_config ,
#{ value = > " List of Key:Value " ,
desc = >
? T ( " To override default node configuration, regardless "
" of node plugin. Value is a list of key-value "
" definition. Node configuration still uses default "
" configuration defined by node plugin, and overrides "
" any items by value defined in this configurable list. " ) } } ,
{ force_node_config ,
#{ value = > " List of Node and the list of its Key:Value " ,
desc = >
? T ( " Define the configuration for given nodes. "
" The default value is: '[]'. " ) ,
example = >
[ " force_node_config: " ,
" ## Avoid buggy clients to make their bookmarks public " ,
" storage:bookmarks: " ,
" access_model: whitelist " ] } } ,
{ host ,
#{ desc = > ? T ( " Deprecated. Use 'hosts' instead. " ) } } ,
{ hosts ,
#{ value = > ? T ( " [Host, ...] " ) ,
desc = >
? T ( " This option defines the Jabber IDs of the service. "
" If the 'hosts' option is not specified, the only Jabber "
" ID will be the hostname of the virtual host with the "
2020-08-25 08:21:43 +02:00
" prefix \" pubsub. \" . The keyword '@HOST@' is replaced "
" with the real virtual host name. " ) } } ,
2020-01-15 16:16:40 +01:00
{ ignore_pep_from_offline ,
#{ value = > " false | true " ,
desc = >
? T ( " To specify whether or not we should get last "
" published PEP items from users in our roster which "
" are offline when we connect. Value is 'true' or "
" 'false'. If not defined, pubsub assumes true so we "
" only get last items of online contacts. " ) } } ,
{ last_item_cache ,
#{ value = > " false | true " ,
desc = >
? T ( " To specify whether or not pubsub should cache last "
" items. Value is 'true' or 'false'. If not defined, "
" pubsub does not cache last items. On systems with not "
" so many nodes, caching last items speeds up pubsub "
2024-01-11 13:23:45 +01:00
" and allows you to raise the user connection rate. The cost "
2020-01-15 16:16:40 +01:00
" is memory usage, as every item is stored in memory. " ) } } ,
2021-10-30 13:19:30 +02:00
{ max_item_expire_node ,
#{ value = > " timeout() | infinity " ,
2021-12-02 16:43:17 +01:00
note = > " added in 21.12 " ,
2021-10-30 13:19:30 +02:00
desc = >
? T ( " Specify the maximum item epiry time. Default value "
" is: 'infinity'. " ) } } ,
2020-01-15 16:16:40 +01:00
{ max_items_node ,
2021-08-21 12:29:37 +02:00
#{ value = > " non_neg_integer() | infinity " ,
2020-01-15 16:16:40 +01:00
desc = >
? T ( " Define the maximum number of items that can be "
2021-07-28 18:29:19 +02:00
" stored in a node. Default value is: '1000'. " ) } } ,
2020-01-15 16:16:40 +01:00
{ max_nodes_discoitems ,
#{ value = > " pos_integer() | infinity " ,
desc = >
? T ( " The maximum number of nodes to return in a "
" discoitem response. The default value is: '100'. " ) } } ,
{ max_subscriptions_node ,
#{ value = > " MaxSubs " ,
desc = >
? T ( " Define the maximum number of subscriptions managed "
" by a node. "
" Default value is no limitation: 'undefined'. " ) } } ,
{ name ,
#{ value = > ? T ( " Name " ) ,
desc = >
? T ( " The value of the service name. This name is only visible "
" in some clients that support "
" https://xmpp.org/extensions/xep-0030.html "
" [XEP-0030: Service Discovery]. "
" The default is 'vCard User Search'. " ) } } ,
2020-01-13 13:25:08 +01:00
{ nodetree ,
2020-01-15 16:16:40 +01:00
#{ value = > " Nodetree " ,
desc = >
2020-01-13 13:25:08 +01:00
[ ? T ( " To specify which nodetree to use. If not defined, the "
" default pubsub nodetree is used: 'tree'. Only one "
" nodetree can be used per host, and is shared by all "
" node plugins. " ) ,
? T ( " - 'tree' nodetree store node configuration and "
" relations on the database. 'flat' nodes are stored "
" without any relationship, and 'hometree' nodes can "
" have child nodes. " ) ,
? T ( " - 'virtual' nodetree does not store nodes on database. "
" This saves resources on systems with tons of nodes. "
" If using the 'virtual' nodetree, you can only enable "
" those node plugins: '[flat, pep]' or '[flat]'; any "
" other plugins configuration will not work. Also, all "
" nodes will have the default configuration, and this "
" can not be changed. Using 'virtual' nodetree requires "
" to start from a clean database, it will not work if "
2020-08-18 06:50:33 +02:00
" you used the default 'tree' nodetree before. " ) ] } } ,
2020-01-15 16:16:40 +01:00
{ pep_mapping ,
#{ value = > " List of Key:Value " ,
desc = >
2024-01-11 13:23:45 +01:00
? T ( " In this option you can provide a list of key-value to choose "
2020-05-12 21:21:28 +02:00
" defined node plugins on given PEP namespace. "
" The following example will use 'node_tune' instead of "
" 'node_pep' for every PEP node with the tune namespace: " ) ,
2020-01-15 16:16:40 +01:00
example = >
2020-01-13 13:25:08 +01:00
[ " modules: " ,
" ... " ,
" mod_pubsub: " ,
" pep_mapping: " ,
" http://jabber.org/protocol/tune: tune " ,
" ... " ]
2020-05-12 21:21:28 +02:00
} } ,
2020-01-15 16:16:40 +01:00
{ plugins ,
#{ value = > " [Plugin, ...] " ,
desc = > [ ? T ( " To specify which pubsub node plugins to use. "
" The first one in the list is used by default. "
" If this option is not defined, the default plugins "
" list is: '[flat]'. PubSub clients can define which "
" plugin to use when creating a node: "
" add 'type= \' plugin-name \' ' attribute "
" to the 'create' stanza element. " ) ,
? T ( " - 'flat' plugin handles the default behaviour and "
" follows standard XEP-0060 implementation. " ) ,
2022-01-24 01:01:39 +01:00
? T ( " - 'pep' plugin adds extension to handle Personal "
2020-01-15 16:16:40 +01:00
" Eventing Protocol (XEP-0163) to the PubSub engine. "
2024-01-11 13:23:45 +01:00
" When enabled, PEP is handled automatically. " ) ] } } ,
2020-01-13 13:25:08 +01:00
{ vcard ,
#{ value = > ? T ( " vCard " ) ,
desc = >
? T ( " A custom vCard of the server that will be displayed by "
" some XMPP clients in Service Discovery. The value of "
" 'vCard' is a YAML map constructed from an XML "
" representation of vCard. Since the representation has "
" no attributes, the mapping is straightforward. " ) ,
example = >
2024-03-29 16:36:47 +01:00
[ " # This XML representation of vCard: " ,
" # <vCard xmlns='vcard-temp'> " ,
" # <FN>Conferences</FN> " ,
" # <ADR> " ,
" # <WORK/> " ,
" # <STREET>Elm Street</STREET> " ,
" # </ADR> " ,
" # </vCard> " ,
" # " ,
" # is translated to: " ,
" vcard: " ,
" fn: Conferences " ,
" adr: " ,
" - " ,
" work: true " ,
" street: Elm Street " ] } }
2020-01-13 13:25:08 +01:00
] ,
example = >
[ { ? T ( " Example of configuration that uses flat nodes as default, "
" and allows use of flat, hometree and pep nodes: " ) ,
2020-01-15 16:16:40 +01:00
[ " modules: " ,
2020-01-13 13:25:08 +01:00
" mod_pubsub: " ,
" access_createnode: pubsub_createnode " ,
" max_subscriptions_node: 100 " ,
" default_node_config: " ,
" notification_type: normal " ,
" notify_retract: false " ,
" max_items: 4 " ,
" plugins: " ,
" - flat " ,
2024-03-29 16:09:50 +01:00
" - pep " ] } ,
2020-01-13 13:25:08 +01:00
{ ? T ( " Using relational database requires using mod_pubsub with "
" db_type 'sql'. Only flat, hometree and pep plugins supports "
" SQL. The following example shows previous configuration "
" with SQL usage: " ) ,
2020-01-15 16:16:40 +01:00
[ " modules: " ,
2020-01-13 13:25:08 +01:00
" mod_pubsub: " ,
" db_type: sql " ,
" access_createnode: pubsub_createnode " ,
" ignore_pep_from_offline: true " ,
" last_item_cache: false " ,
" plugins: " ,
" - flat " ,
2024-03-29 16:09:50 +01:00
" - pep " ] }
2020-01-13 13:25:08 +01:00
] } .