Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dokuwiki
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
BRIC
dokuwiki
Commits
3394e804
Commit
3394e804
authored
11 years ago
by
Andreas Gohr
Browse files
Options
Downloads
Plain Diff
Merge pull request #230 from splitbrain/pwgen-event
AUTH_PASSWORD_GENERATE event added
parents
81ee3b1c
987c8d26
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
inc/auth.php
+32
-18
32 additions, 18 deletions
inc/auth.php
lib/plugins/usermanager/admin.php
+2
-2
2 additions, 2 deletions
lib/plugins/usermanager/admin.php
with
34 additions
and
20 deletions
inc/auth.php
+
32
−
18
View file @
3394e804
...
@@ -678,27 +678,41 @@ function auth_nameencode($name, $skip_group = false) {
...
@@ -678,27 +678,41 @@ function auth_nameencode($name, $skip_group = false) {
/**
/**
* Create a pronouncable password
* Create a pronouncable password
*
*
* @author Andreas Gohr <andi@splitbrain.org>
* The $foruser variable might be used by plugins to run additional password
* @link http://www.phpbuilder.com/annotate/message.php3?id=1014451
* policy checks, but is not used by the default implementation
*
* @author Andreas Gohr <andi@splitbrain.org>
* @link http://www.phpbuilder.com/annotate/message.php3?id=1014451
* @triggers AUTH_PASSWORD_GENERATE
*
*
* @param string $foruser username for which the password is generated
* @return string pronouncable password
* @return string pronouncable password
*/
*/
function
auth_pwgen
()
{
function
auth_pwgen
(
$foruser
=
''
)
{
$pw
=
''
;
$data
=
array
(
$c
=
'bcdfghjklmnprstvwz'
;
//consonants except hard to speak ones
'password'
=>
''
,
$v
=
'aeiou'
;
//vowels
'foruser'
=>
$foruser
$a
=
$c
.
$v
;
//both
);
//use two syllables...
$evt
=
new
Doku_Event
(
'AUTH_PASSWORD_GENERATE'
,
$data
);
for
(
$i
=
0
;
$i
<
2
;
$i
++
)
{
if
(
$evt
->
advise_before
(
true
))
{
$pw
.
=
$c
[
rand
(
0
,
strlen
(
$c
)
-
1
)];
$c
=
'bcdfghjklmnprstvwz'
;
//consonants except hard to speak ones
$pw
.
=
$v
[
rand
(
0
,
strlen
(
$v
)
-
1
)];
$v
=
'aeiou'
;
//vowels
$pw
.
=
$a
[
rand
(
0
,
strlen
(
$a
)
-
1
)];
$a
=
$c
.
$v
;
//both
$s
=
'!$%&?+*~#-_:.;,'
;
// specials
//use thre syllables...
for
(
$i
=
0
;
$i
<
3
;
$i
++
)
{
$data
[
'password'
]
.
=
$c
[
mt_rand
(
0
,
strlen
(
$c
)
-
1
)];
$data
[
'password'
]
.
=
$v
[
mt_rand
(
0
,
strlen
(
$v
)
-
1
)];
$data
[
'password'
]
.
=
$a
[
mt_rand
(
0
,
strlen
(
$a
)
-
1
)];
}
//... and add a nice number and special
$data
[
'password'
]
.
=
mt_rand
(
10
,
99
)
.
$s
[
mt_rand
(
0
,
strlen
(
$s
)
-
1
)];
}
}
//... and add a nice number
$evt
->
advise_after
();
$pw
.
=
rand
(
10
,
99
);
return
$
pw
;
return
$
data
[
'password'
]
;
}
}
/**
/**
...
@@ -765,7 +779,7 @@ function register() {
...
@@ -765,7 +779,7 @@ function register() {
}
}
if
(
$conf
[
'autopasswd'
])
{
if
(
$conf
[
'autopasswd'
])
{
$pass
=
auth_pwgen
();
// automatically generate password
$pass
=
auth_pwgen
(
$login
);
// automatically generate password
}
elseif
(
empty
(
$pass
)
||
empty
(
$passchk
))
{
}
elseif
(
empty
(
$pass
)
||
empty
(
$passchk
))
{
msg
(
$lang
[
'regmissing'
],
-
1
);
// complain about missing passwords
msg
(
$lang
[
'regmissing'
],
-
1
);
// complain about missing passwords
return
false
;
return
false
;
...
@@ -958,7 +972,7 @@ function act_resendpwd() {
...
@@ -958,7 +972,7 @@ function act_resendpwd() {
}
else
{
// autogenerate the password and send by mail
}
else
{
// autogenerate the password and send by mail
$pass
=
auth_pwgen
();
$pass
=
auth_pwgen
(
$user
);
if
(
!
$auth
->
triggerUserMod
(
'modify'
,
array
(
$user
,
array
(
'pass'
=>
$pass
))))
{
if
(
!
$auth
->
triggerUserMod
(
'modify'
,
array
(
$user
,
array
(
'pass'
=>
$pass
))))
{
msg
(
'error modifying user data'
,
-
1
);
msg
(
'error modifying user data'
,
-
1
);
return
false
;
return
false
;
...
...
This diff is collapsed.
Click to expand it.
lib/plugins/usermanager/admin.php
+
2
−
2
View file @
3394e804
...
@@ -355,7 +355,7 @@ class admin_plugin_usermanager extends DokuWiki_Admin_Plugin {
...
@@ -355,7 +355,7 @@ class admin_plugin_usermanager extends DokuWiki_Admin_Plugin {
if
(
$this
->
_auth
->
canDo
(
'modPass'
)){
if
(
$this
->
_auth
->
canDo
(
'modPass'
)){
if
(
empty
(
$pass
)){
if
(
empty
(
$pass
)){
if
(
$INPUT
->
has
(
'usernotify'
)){
if
(
$INPUT
->
has
(
'usernotify'
)){
$pass
=
auth_pwgen
();
$pass
=
auth_pwgen
(
$user
);
}
else
{
}
else
{
msg
(
$this
->
lang
[
'add_fail'
],
-
1
);
msg
(
$this
->
lang
[
'add_fail'
],
-
1
);
return
false
;
return
false
;
...
@@ -496,7 +496,7 @@ class admin_plugin_usermanager extends DokuWiki_Admin_Plugin {
...
@@ -496,7 +496,7 @@ class admin_plugin_usermanager extends DokuWiki_Admin_Plugin {
// generate password if left empty and notification is on
// generate password if left empty and notification is on
if
(
$INPUT
->
has
(
'usernotify'
)
&&
empty
(
$newpass
)){
if
(
$INPUT
->
has
(
'usernotify'
)
&&
empty
(
$newpass
)){
$newpass
=
auth_pwgen
();
$newpass
=
auth_pwgen
(
$olduser
);
}
}
if
(
!
empty
(
$newpass
)
&&
$this
->
_auth
->
canDo
(
'modPass'
))
if
(
!
empty
(
$newpass
)
&&
$this
->
_auth
->
canDo
(
'modPass'
))
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment