mirror of
https://github.com/processone/ejabberd.git
synced 2024-10-31 15:21:38 +01:00
c958fa2f06
Add code necessary to support publishing options as described in XEP-0060, #7.1.5. A node plugin that expects publishing options must add <<"publish-options">> to the features/0 list and then handle the publishing options handed over to the publish_item/7 call. Signed-off-by: Christian Ulrich <christian@rechenwerk.net>
179 lines
5.5 KiB
Erlang
179 lines
5.5 KiB
Erlang
%%% ====================================================================
|
|
%%% ``The contents of this file are subject to the Erlang Public License,
|
|
%%% Version 1.1, (the "License"); you may not use this file except in
|
|
%%% compliance with the License. You should have received a copy of the
|
|
%%% Erlang Public License along with this software. If not, it can be
|
|
%%% retrieved via the world wide web at http://www.erlang.org/.
|
|
%%%
|
|
%%%
|
|
%%% Software distributed under the License is distributed on an "AS IS"
|
|
%%% basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
|
|
%%% the License for the specific language governing rights and limitations
|
|
%%% under the License.
|
|
%%%
|
|
%%%
|
|
%%% The Initial Developer of the Original Code is ProcessOne.
|
|
%%% Portions created by ProcessOne are Copyright 2006-2016, ProcessOne
|
|
%%% All Rights Reserved.''
|
|
%%% This software is copyright 2006-2016, ProcessOne.
|
|
%%%
|
|
%%%
|
|
%%% copyright 2006-2016 ProcessOne
|
|
%%%
|
|
%%% This file contains pubsub types definition.
|
|
%%% ====================================================================
|
|
|
|
-include("ejabberd.hrl").
|
|
|
|
%% -------------------------------
|
|
%% Pubsub constants
|
|
-define(ERR_EXTENDED(E, C), mod_pubsub:extended_error(E, C)).
|
|
|
|
%% The actual limit can be configured with mod_pubsub's option max_items_node
|
|
-define(MAXITEMS, 10).
|
|
|
|
%% this is currently a hard limit.
|
|
%% Would be nice to have it configurable.
|
|
-define(MAX_PAYLOAD_SIZE, 60000).
|
|
|
|
%% -------------------------------
|
|
%% Pubsub types
|
|
|
|
-type(hostPubsub() :: binary()).
|
|
%% <p><tt>hostPubsub</tt> is the name of the PubSub service. For example, it can be
|
|
%% <tt>"pubsub.localhost"</tt>.</p>
|
|
|
|
-type(hostPEP() :: {binary(), binary(), <<>>}).
|
|
%% @type hostPEP() = {User, Server, Resource}
|
|
%% User = string()
|
|
%% Server = string()
|
|
%% Resource = [].
|
|
%% <p>For example, it can be :
|
|
%% ```{"bob", "example.org", []}'''.</p>
|
|
|
|
-type(host() :: hostPubsub() | hostPEP()).
|
|
%% @type host() = hostPubsub() | hostPEP().
|
|
|
|
-type(nodeId() :: binary()).
|
|
%% @type nodeId() = binary().
|
|
%% <p>A node is defined by a list of its ancestors. The last element is the name
|
|
%% of the current node. For example:
|
|
%% ```<<"/home/localhost/user">>'''</p>
|
|
|
|
-type(nodeIdx() :: pos_integer() | binary()).
|
|
%% @type nodeIdx() = integer() | binary().
|
|
%% note: pos_integer() should always be used, but we allow anything else coded
|
|
%% as binary, so one can have a custom implementation of nodetree with custom
|
|
%% indexing (see nodetree_virtual). this also allows to use any kind of key for
|
|
%% indexing nodes, as this can be usefull with external backends such as sql.
|
|
|
|
-type(itemId() :: binary()).
|
|
%% @type itemId() = string().
|
|
|
|
-type(subId() :: binary()).
|
|
%% @type subId() = string().
|
|
|
|
-type(nodeOption() ::
|
|
{Option::atom(),
|
|
Value::atom() | [binary()] | boolean() | non_neg_integer()
|
|
}).
|
|
|
|
-type(nodeOptions() :: [mod_pubsub:nodeOption(),...]).
|
|
|
|
%% @type nodeOption() = {Option, Value}
|
|
%% Option = atom()
|
|
%% Value = term().
|
|
%% Example:
|
|
%% ```{deliver_payloads, true}'''
|
|
|
|
-type(subOption() ::
|
|
{Option::atom(),
|
|
Value::binary() | [binary()] | boolean()
|
|
}).
|
|
|
|
-type(subOptions() :: [mod_pubsub:subOption(),...]).
|
|
|
|
-type(pubOption() ::
|
|
{Option::binary(),
|
|
Values::[binary()]
|
|
}).
|
|
|
|
-type(pubOptions() :: [mod_pubsub:pubOption()]).
|
|
|
|
-type(affiliation() :: 'none'
|
|
| 'owner'
|
|
| 'publisher'
|
|
| 'publish_only'
|
|
| 'member'
|
|
| 'outcast'
|
|
).
|
|
%% @type affiliation() = 'none' | 'owner' | 'publisher' | 'publish-only' | 'member' | 'outcast'.
|
|
|
|
-type(subscription() :: 'none'
|
|
| 'pending'
|
|
| 'unconfigured'
|
|
| 'subscribed'
|
|
).
|
|
%% @type subscription() = 'none' | 'pending' | 'unconfigured' | 'subscribed'.
|
|
|
|
-type(accessModel() :: 'open'
|
|
| 'presence'
|
|
| 'roster'
|
|
| 'authorize'
|
|
| 'whitelist'
|
|
).
|
|
%% @type accessModel() = 'open' | 'presence' | 'roster' | 'authorize' | 'whitelist'.
|
|
|
|
-type(publishModel() :: 'publishers'
|
|
| 'subscribers'
|
|
| 'open'
|
|
).
|
|
%% @type publishModel() = 'publishers' | 'subscribers' | 'open'
|
|
|
|
-record(pubsub_index,
|
|
{
|
|
index :: atom(),
|
|
last :: mod_pubsub:nodeIdx(),
|
|
free :: [mod_pubsub:nodeIdx()]
|
|
}).
|
|
|
|
-record(pubsub_node,
|
|
{
|
|
nodeid ,% :: {mod_pubsub:host(), mod_pubsub:nodeId()},
|
|
id ,% :: mod_pubsub:nodeIdx(),
|
|
parents = [] ,% :: [mod_pubsub:nodeId(),...],
|
|
type = <<"flat">>,% :: binary(),
|
|
owners = [] ,% :: [jlib:ljid(),...],
|
|
options = [] % :: mod_pubsub:nodeOptions()
|
|
}).
|
|
|
|
-record(pubsub_state,
|
|
{
|
|
stateid ,% :: {jlib:ljid(), mod_pubsub:nodeIdx()},
|
|
items = [] ,% :: [mod_pubsub:itemId(),...],
|
|
affiliation = 'none',% :: mod_pubsub:affiliation(),
|
|
subscriptions = [] % :: [{mod_pubsub:subscription(), mod_pubsub:subId()}]
|
|
}).
|
|
|
|
-record(pubsub_item,
|
|
{
|
|
itemid ,% :: {mod_pubsub:itemId(), mod_pubsub:nodeIdx()},
|
|
creation = {unknown, unknown},% :: {erlang:timestamp(), jlib:ljid()},
|
|
modification = {unknown, unknown},% :: {erlang:timestamp(), jlib:ljid()},
|
|
payload = [] % :: mod_pubsub:payload()
|
|
}).
|
|
|
|
-record(pubsub_subscription,
|
|
{
|
|
subid ,% :: mod_pubsub:subId(),
|
|
options = [] % :: mod_pubsub:subOptions()
|
|
}).
|
|
|
|
-record(pubsub_last_item,
|
|
{
|
|
nodeid ,% :: mod_pubsub:nodeIdx(),
|
|
itemid ,% :: mod_pubsub:itemId(),
|
|
creation ,% :: {erlang:timestamp(), jlib:ljid()},
|
|
payload % :: mod_pubsub:payload()
|
|
}).
|