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
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
|
<?php
// $Header: /cvsroot/bitweaver/_bit_users/admin/admin_login_inc.php,v 1.17 2006/07/03 21:22:38 hash9 Exp $
// Copyright (c) 2002-2003, Luis Argerich, Garland Foster, Eduardo Polidor, et. al.
// All Rights Reserved. See copyright.txt for details and a complete list of authors.
// Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details.
$loginSettings = array(
'users_allow_register' => array(
'label' => "Users can register",
'type' => "checkbox",
'note' => "",
),
'send_welcome_email' => array(
'label' => "Send registration welcome email",
'type' => "checkbox",
'note' => "Upon successful registration, this will send the user an email with login information, including their password.",
),
'users_eponymous_groups' => array(
'label' => "Create a group for each user",
'type' => "checkbox",
'note' => "This will create a group for each user with the same name as the user. This might be useful if you want to assign different permission settings to every user.",
),
'users_register_passcode' => array(
'label' => "Request passcode to register",
'type' => "checkbox",
'note' => "",
),
'users_register_passcode' => array(
'label' => "Passcode",
'type' => "text",
'note' => "Enter the Passcode that is required for users to register with your site.",
),
'users_random_number_reg' => array(
'label' => "Prevent automatic/robot registration",
'type' => "checkbox",
'note' => "This will generate a random number as an image, the user has to confirm during the registration step.",
),
'users_validate_user' => array(
'label' => "Validate users by email",
'type' => "checkbox",
'note' => "Send an email to the user, to validate registration.",
),
'users_validate_email' => array(
'label' => "Validate email address",
'type' => "checkbox",
'link' => "kernel/admin/index.php?page=server/General Settings",
'note' => "This feature should be used only when you need the maximum security and should be used with discretion. If a visitor's email server is not responding, they will not be able to register. You also must have a valid sender email to use this feature.",
),
'users_forgot_pass' => array(
'label' => "Remind passwords by email",
'type' => "checkbox",
'note' => "This will display a 'forgot password' link on the login page and allow users to have their password sent to their registered email address.",
),
'users_pass_due' => array(
'label' => "Password invalid after days",
'type' => "text",
'note' => "",
),
'users_clear_passwords' => array(
'label' => "Store plaintext passwords",
'type' => "checkbox",
'note' => "Passwords will be visible in the database. If a user requests a password, their password will *not* be reset and simply emailed to them in plain text. This option is less secure, but better suited to sites with a wide variety of users.",
),
'users_case_sensitive_login' => array(
'label' => 'Case-Sensitive Login',
'type' => "checkbox",
'note' => 'This determines whether user login names are case-sensitive.'
),
'user_password_generator' => array(
'label' => "Password generator",
'type' => "checkbox",
'note' => "Display password generator on registration page that creates secure passwords.",
),
'users_pass_chr_num' => array(
'label' => "Force to use characters <strong>and</strong> numbers in passwords",
'type' => "checkbox",
'note' => "",
),
'users_min_pass_length' => array(
'label' => "Minimum password length",
'type' => "text",
'note' => "",
),
'users_remember_me' => array(
'label' => "Remember me feature",
'type' => "checkbox",
'note' => "Registered users will stay logged even if they close their browser.",
),
'cookie_domain' => array(
'label' => "Remember me domain",
'type' => "text",
'note' => "Remember to use a '.' wildcard prefix if you want domain wide cookies.<br />e.g.: <strong>.mysite.com</strong> for a domain called <strong>www.mysite.com</strong>",
),
'cookie_path' => array(
'label' => "Remember me path",
'type' => "text",
'note' => "The path '/foo' would match '/foobar' and '/foo/bar.html'",
),
);
$gBitSmarty->assign( 'loginSettings', $loginSettings );
if( !function_exists("gd_info" ) ) {
$gBitSmarty->assign( 'warning', 'PHP GD library is required for this feature (not found on your system)' );
}
if( !empty( $_REQUEST["loginprefs"] ) ) {
if( !preg_match( "#^/#", $_REQUEST['cookie_path'] ) ) {
$_REQUEST['cookie_path'] = BIT_ROOT_URL;
}
foreach( array_keys( $loginSettings ) as $feature ) {
if( $loginSettings[$feature]['type'] == 'text' ) {
simple_set_value( $feature, USERS_PKG_NAME );
} else {
simple_set_toggle( $feature, USERS_PKG_NAME );
}
}
simple_set_value( 'users_remember_time', USERS_PKG_NAME );
simple_set_value( 'users_auth_method', USERS_PKG_NAME );
if ( isset( $_REQUEST['registration_group_choice'] ) ) {
$listHash = array();
$groupList = $gBitUser->getAllGroups( $listHash );
$in = array();
$out = array();
foreach ( $groupList['data'] as $gr ) {
if ($gr['group_id'] == -1)
continue;
if ( $gr['is_public'] == 'y' && !in_array( $gr['group_id'], $_REQUEST['registration_group_choice'] ) ) // deselect
$out[] = $gr['group_id'];
elseif ( $gr['is_public'] != 'y' && in_array( $gr['group_id'], $_REQUEST['registration_group_choice'] ) ) //select
$in[] = $gr['group_id'];
}
if ( count($in) ) {
$gBitUser->storeRegistrationChoice( $in, 'y' );
}
if ( count($out) ) {
$gBitUser->storeRegistrationChoice( $out, NULL );
}
}
}
$registerSettings = array(
'reg_real_name' => array(
'label' => "Real Name",
'type' => "checkbox",
'note' => "Allow users to supply their real name.",
),
'reg_country' => array(
'label' => "Country",
'type' => "checkbox",
'note' => "Allow users to pick country of residency.",
),
'reg_language' => array(
'label' => "Language",
'type' => "checkbox",
'note' => "Allow users to select their preferred language.",
),
'reg_homepage' => array(
'label' => "Homepage URL",
'type' => "checkbox",
'note' => "Allow users to enter the url to their own homepage.",
),
'reg_portrait' => array(
'label' => "Self Portrait",
'type' => "checkbox",
'note' => "Allow users to upload a self portrait.",
),
);
$gBitSmarty->assign( 'registerSettings', $registerSettings );
if( !empty( $_REQUEST["registerprefs"] ) ) {
foreach( array_keys( $registerSettings ) as $feature ) {
if( $registerSettings[$feature]['type'] == 'text' ) {
simple_set_value( $feature, USERS_PKG_NAME );
} else {
simple_set_toggle( $feature, USERS_PKG_NAME );
}
}
}
$httpSettings = array(
'site_https_login' => array(
'label' => "Allow secure (https) login",
'type' => "checkbox",
'note' => "",
),
'site_https_login_required' => array(
'label' => "Require secure (https) login",
'type' => "checkbox",
'note' => "",
),
'site_http_domain' => array(
'label' => "HTTP server name",
'type' => "text",
'note' => "",
),
'site_http_port' => array(
'label' => "HTTP port",
'type' => "text",
'note' => "",
),
'site_http_prefix' => array(
'label' => "HTTP URL prefix",
'type' => "text",
'note' => "",
),
'site_https_domain' => array(
'label' => "HTTPS server name",
'type' => "text",
'note' => "",
),
'site_https_port' => array(
'label' => "HTTPS port",
'type' => "text",
'note' => "",
),
'site_https_prefix' => array(
'label' => "HTTPS URL prefix",
'type' => "text",
'note' => "",
),
);
$gBitSmarty->assign( 'httpSettings', $httpSettings );
if( !empty( $_REQUEST["httpprefs"] ) ) {
foreach( array_keys( $httpSettings ) as $feature ) {
if( $httpSettings[$feature]['type'] == 'text' ) {
simple_set_value( $feature, USERS_PKG_NAME );
} else {
simple_set_toggle( $feature, USERS_PKG_NAME );
}
}
}
$ldapSettings = array(
'users_auth_create_gBitDbUser' => array(
'label' => "Create user if not in bitweaver",
'type' => "checkbox",
'note' => "",
),
'users_auth_create_user_auth' => array(
'label' => "Create user if not in Auth",
'type' => "checkbox",
'note' => "",
),
'users_auth_skip_admin' => array(
'label' => "Just use bitweaver auth for admin",
'type' => "checkbox",
'note' => "",
),
'users_ldap_host' => array(
'label' => "LDAP Host",
'type' => "text",
'note' => "",
),
'users_ldap_port' => array(
'label' => "LDAP Port",
'type' => "text",
'note' => "",
),
'users_ldap_basedn' => array(
'label' => "LDAP Base DN",
'type' => "text",
'note' => "",
),
'users_ldap_userdn' => array(
'label' => "LDAP User DN",
'type' => "text",
'note' => "",
),
'users_ldap_userattr' => array(
'label' => "LDAP User Attribute",
'type' => "text",
'note' => "",
),
'users_ldap_useroc' => array(
'label' => "LDAP User OC",
'type' => "text",
'note' => "",
),
'users_ldap_groupdn' => array(
'label' => "LDAP Group DN",
'type' => "text",
'note' => "",
),
'users_ldap_groupattr' => array(
'label' => "LDAP Group Atribute",
'type' => "text",
'note' => "",
),
'users_ldap_groupoc' => array(
'label' => "LDAP Group OC",
'type' => "text",
'note' => "",
),
'users_ldap_memberattr' => array(
'label' => "LDAP Member Attribute",
'type' => "text",
'note' => "",
),
'users_ldap_memberisdn' => array(
'label' => "LDAP Member Is DN",
'type' => "text",
'note' => "",
),
'users_ldap_adminuser' => array(
'label' => "LDAP Admin User",
'type' => "text",
'note' => "",
),
'users_ldap_adminpass' => array(
'label' => "LDAP Admin Pwd",
'type' => "password",
'note' => "",
),
);
$gBitSmarty->assign( 'ldapSettings', $ldapSettings );
$ldapEnabled= function_exists('ldap_connect');
$gBitSmarty->assign( 'ldapEnabled', $ldapEnabled );
if( $ldapEnabled && !empty( $_REQUEST["auth_pear"] ) ) {
foreach( array_keys( $ldapSettings ) as $feature ) {
if( $ldapSettings[$feature]['type'] == 'text' ) {
simple_set_value( $feature, USERS_PKG_NAME );
} else {
simple_set_toggle( $feature, USERS_PKG_NAME );
}
}
}
$listHash = array();
$groupList = $gBitUser->getAllGroups($listHash);
$gBitSmarty->assign_by_ref('groupList', $groupList['data']);
?>
|