aboutsummaryrefslogtreecommitdiff
path: root/src/mod_muc_opt.erl
blob: c22a9594dd8959148f19d4fa08cab7a328bac5a4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
%% Generated automatically
%% DO NOT EDIT: run `make options` instead

-module(mod_muc_opt).

-export([access/1]).
-export([access_admin/1]).
-export([access_create/1]).
-export([access_mam/1]).
-export([access_persistent/1]).
-export([access_register/1]).
-export([cleanup_affiliations_on_start/1]).
-export([db_type/1]).
-export([default_room_options/1]).
-export([hibernation_timeout/1]).
-export([history_size/1]).
-export([host/1]).
-export([hosts/1]).
-export([max_captcha_whitelist/1]).
-export([max_password/1]).
-export([max_room_desc/1]).
-export([max_room_id/1]).
-export([max_room_name/1]).
-export([max_rooms_discoitems/1]).
-export([max_user_conferences/1]).
-export([max_users/1]).
-export([max_users_admin_threshold/1]).
-export([max_users_presence/1]).
-export([min_message_interval/1]).
-export([min_presence_interval/1]).
-export([name/1]).
-export([preload_rooms/1]).
-export([queue_type/1]).
-export([ram_db_type/1]).
-export([regexp_room_id/1]).
-export([room_shaper/1]).
-export([user_message_shaper/1]).
-export([user_presence_shaper/1]).
-export([vcard/1]).

-spec access(gen_mod:opts() | global | binary()) -> 'all' | acl:acl().
access(Opts) when is_map(Opts) ->
    gen_mod:get_opt(access, Opts);
access(Host) ->
    gen_mod:get_module_opt(Host, mod_muc, access).

-spec access_admin(gen_mod:opts() | global | binary()) -> 'none' | acl:acl().
access_admin(Opts) when is_map(Opts) ->
    gen_mod:get_opt(access_admin, Opts);
access_admin(Host) ->
    gen_mod:get_module_opt(Host, mod_muc, access_admin).

-spec access_create(gen_mod:opts() | global | binary()) -> 'all' | acl:acl().
access_create(Opts) when is_map(Opts) ->
    gen_mod:get_opt(access_create, Opts);
access_create(Host) ->
    gen_mod:get_module_opt(Host, mod_muc, access_create).

-spec access_mam(gen_mod:opts() | global | binary()) -> 'all' | acl:acl().
access_mam(Opts) when is_map(Opts) ->
    gen_mod:get_opt(access_mam, Opts);
access_mam(Host) ->
    gen_mod:get_module_opt(Host, mod_muc, access_mam).

-spec access_persistent(gen_mod:opts() | global | binary()) -> 'all' | acl:acl().
access_persistent(Opts) when is_map(Opts) ->
    gen_mod:get_opt(access_persistent, Opts);
access_persistent(Host) ->
    gen_mod:get_module_opt(Host, mod_muc, access_persistent).

-spec access_register(gen_mod:opts() | global | binary()) -> 'all' | acl:acl().
access_register(Opts) when is_map(Opts) ->
    gen_mod:get_opt(access_register, Opts);
access_register(Host) ->
    gen_mod:get_module_opt(Host, mod_muc, access_register).

-spec cleanup_affiliations_on_start(gen_mod:opts() | global | binary()) -> boolean().
cleanup_affiliations_on_start(Opts) when is_map(Opts) ->
    gen_mod:get_opt(cleanup_affiliations_on_start, Opts);
cleanup_affiliations_on_start(Host) ->
    gen_mod:get_module_opt(Host, mod_muc, cleanup_affiliations_on_start).

-spec db_type(gen_mod:opts() | global | binary()) -> atom().
db_type(Opts) when is_map(Opts) ->
    gen_mod:get_opt(db_type, Opts);
db_type(Host) ->
    gen_mod:get_module_opt(Host, mod_muc, db_type).

-spec default_room_options(gen_mod:opts() | global | binary()) -> [{atom(),'anyone' | 'false' | 'moderators' | 'nobody' | 'true' | 'undefined' | binary() | ['moderator' | 'participant' | 'visitor'] | pos_integer() | tuple()}].
default_room_options(Opts) when is_map(Opts) ->
    gen_mod:get_opt(default_room_options, Opts);
default_room_options(Host) ->
    gen_mod:get_module_opt(Host, mod_muc, default_room_options).

-spec hibernation_timeout(gen_mod:opts() | global | binary()) -> 'infinity' | pos_integer().
hibernation_timeout(Opts) when is_map(Opts) ->
    gen_mod:get_opt(hibernation_timeout, Opts);
hibernation_timeout(Host) ->
    gen_mod:get_module_opt(Host, mod_muc, hibernation_timeout).

-spec history_size(gen_mod:opts() | global | binary()) -> non_neg_integer().
history_size(Opts) when is_map(Opts) ->
    gen_mod:get_opt(history_size, Opts);
history_size(Host) ->
    gen_mod:get_module_opt(Host, mod_muc, history_size).

-spec host(gen_mod:opts() | global | binary()) -> binary().
host(Opts) when is_map(Opts) ->
    gen_mod:get_opt(host, Opts);
host(Host) ->
    gen_mod:get_module_opt(Host, mod_muc, host).

-spec hosts(gen_mod:opts() | global | binary()) -> [binary()].
hosts(Opts) when is_map(Opts) ->
    gen_mod:get_opt(hosts, Opts);
hosts(Host) ->
    gen_mod:get_module_opt(Host, mod_muc, hosts).

-spec max_captcha_whitelist(gen_mod:opts() | global | binary()) -> 'infinity' | pos_integer().
max_captcha_whitelist(Opts) when is_map(Opts) ->
    gen_mod:get_opt(max_captcha_whitelist, Opts);
max_captcha_whitelist(Host) ->
    gen_mod:get_module_opt(Host, mod_muc, max_captcha_whitelist).

-spec max_password(gen_mod:opts() | global | binary()) -> 'infinity' | pos_integer().
max_password(Opts) when is_map(Opts) ->
    gen_mod:get_opt(max_password, Opts);
max_password(Host) ->
    gen_mod:get_module_opt(Host, mod_muc, max_password).

-spec max_room_desc(gen_mod:opts() | global | binary()) -> 'infinity' | pos_integer().
max_room_desc(Opts) when is_map(Opts) ->
    gen_mod:get_opt(max_room_desc, Opts);
max_room_desc(Host) ->
    gen_mod:get_module_opt(Host, mod_muc, max_room_desc).

-spec max_room_id(gen_mod:opts() | global | binary()) -> 'infinity' | pos_integer().
max_room_id(Opts) when is_map(Opts) ->
    gen_mod:get_opt(max_room_id, Opts);
max_room_id(Host) ->
    gen_mod:get_module_opt(Host, mod_muc, max_room_id).

-spec max_room_name(gen_mod:opts() | global | binary()) -> 'infinity' | pos_integer().
max_room_name(Opts) when is_map(Opts) ->
    gen_mod:get_opt(max_room_name, Opts);
max_room_name(Host) ->
    gen_mod:get_module_opt(Host, mod_muc, max_room_name).

-spec max_rooms_discoitems(gen_mod:opts() | global | binary()) -> non_neg_integer().
max_rooms_discoitems(Opts) when is_map(Opts) ->
    gen_mod:get_opt(max_rooms_discoitems, Opts);
max_rooms_discoitems(Host) ->
    gen_mod:get_module_opt(Host, mod_muc, max_rooms_discoitems).

-spec max_user_conferences(gen_mod:opts() | global | binary()) -> pos_integer().
max_user_conferences(Opts) when is_map(Opts) ->
    gen_mod:get_opt(max_user_conferences, Opts);
max_user_conferences(Host) ->
    gen_mod:get_module_opt(Host, mod_muc, max_user_conferences).

-spec max_users(gen_mod:opts() | global | binary()) -> pos_integer().
max_users(Opts) when is_map(Opts) ->
    gen_mod:get_opt(max_users, Opts);
max_users(Host) ->
    gen_mod:get_module_opt(Host, mod_muc, max_users).

-spec max_users_admin_threshold(gen_mod:opts() | global | binary()) -> pos_integer().
max_users_admin_threshold(Opts) when is_map(Opts) ->
    gen_mod:get_opt(max_users_admin_threshold, Opts);
max_users_admin_threshold(Host) ->
    gen_mod:get_module_opt(Host, mod_muc, max_users_admin_threshold).

-spec max_users_presence(gen_mod:opts() | global | binary()) -> integer().
max_users_presence(Opts) when is_map(Opts) ->
    gen_mod:get_opt(max_users_presence, Opts);
max_users_presence(Host) ->
    gen_mod:get_module_opt(Host, mod_muc, max_users_presence).

-spec min_message_interval(gen_mod:opts() | global | binary()) -> number().
min_message_interval(Opts) when is_map(Opts) ->
    gen_mod:get_opt(min_message_interval, Opts);
min_message_interval(Host) ->
    gen_mod:get_module_opt(Host, mod_muc, min_message_interval).

-spec min_presence_interval(gen_mod:opts() | global | binary()) -> number().
min_presence_interval(Opts) when is_map(Opts) ->
    gen_mod:get_opt(min_presence_interval, Opts);
min_presence_interval(Host) ->
    gen_mod:get_module_opt(Host, mod_muc, min_presence_interval).

-spec name(gen_mod:opts() | global | binary()) -> binary().
name(Opts) when is_map(Opts) ->
    gen_mod:get_opt(name, Opts);
name(Host) ->
    gen_mod:get_module_opt(Host, mod_muc, name).

-spec preload_rooms(gen_mod:opts() | global | binary()) -> boolean().
preload_rooms(Opts) when is_map(Opts) ->
    gen_mod:get_opt(preload_rooms, Opts);
preload_rooms(Host) ->
    gen_mod:get_module_opt(Host, mod_muc, preload_rooms).

-spec queue_type(gen_mod:opts() | global | binary()) -> 'file' | 'ram'.
queue_type(Opts) when is_map(Opts) ->
    gen_mod:get_opt(queue_type, Opts);
queue_type(Host) ->
    gen_mod:get_module_opt(Host, mod_muc, queue_type).

-spec ram_db_type(gen_mod:opts() | global | binary()) -> atom().
ram_db_type(Opts) when is_map(Opts) ->
    gen_mod:get_opt(ram_db_type, Opts);
ram_db_type(Host) ->
    gen_mod:get_module_opt(Host, mod_muc, ram_db_type).

-spec regexp_room_id(gen_mod:opts() | global | binary()) -> <<>> | re:mp().
regexp_room_id(Opts) when is_map(Opts) ->
    gen_mod:get_opt(regexp_room_id, Opts);
regexp_room_id(Host) ->
    gen_mod:get_module_opt(Host, mod_muc, regexp_room_id).

-spec room_shaper(gen_mod:opts() | global | binary()) -> atom().
room_shaper(Opts) when is_map(Opts) ->
    gen_mod:get_opt(room_shaper, Opts);
room_shaper(Host) ->
    gen_mod:get_module_opt(Host, mod_muc, room_shaper).

-spec user_message_shaper(gen_mod:opts() | global | binary()) -> atom().
user_message_shaper(Opts) when is_map(Opts) ->
    gen_mod:get_opt(user_message_shaper, Opts);
user_message_shaper(Host) ->
    gen_mod:get_module_opt(Host, mod_muc, user_message_shaper).

-spec user_presence_shaper(gen_mod:opts() | global | binary()) -> atom().
user_presence_shaper(Opts) when is_map(Opts) ->
    gen_mod:get_opt(user_presence_shaper, Opts);
user_presence_shaper(Host) ->
    gen_mod:get_module_opt(Host, mod_muc, user_presence_shaper).

-spec vcard(gen_mod:opts() | global | binary()) -> 'undefined' | tuple().
vcard(Opts) when is_map(Opts) ->
    gen_mod:get_opt(vcard, Opts);
vcard(Host) ->
    gen_mod:get_module_opt(Host, mod_muc, vcard).