Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
pleroma
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
csaurus
pleroma
Commits
32aa83f3
Commit
32aa83f3
authored
7 years ago
by
lain
Browse files
Options
Downloads
Patches
Plain Diff
Short circuit user verification if cookie is present.
parent
e1525edb
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
lib/pleroma/plugs/authentication_plug.ex
+12
-4
12 additions, 4 deletions
lib/pleroma/plugs/authentication_plug.ex
test/plugs/authentication_plug_test.exs
+48
-5
48 additions, 5 deletions
test/plugs/authentication_plug_test.exs
with
60 additions
and
9 deletions
lib/pleroma/plugs/authentication_plug.ex
+
12
−
4
View file @
32aa83f3
...
...
@@ -8,20 +8,28 @@ defmodule Pleroma.Plugs.AuthenticationPlug do
def
call
(
conn
,
opts
)
do
with
{
:ok
,
username
,
password
}
<-
decode_header
(
conn
),
{
:ok
,
user
}
<-
opts
[
:fetcher
]
.
(
username
),
{
:ok
,
verified_user
}
<-
verify
(
user
,
password
)
saved_user_id
<-
get_session
(
conn
,
:user_id
),
{
:ok
,
verified_user
}
<-
verify
(
user
,
password
,
saved_user_id
)
do
conn
|>
assign
(
:user
,
verified_user
)
conn
|>
assign
(
:user
,
verified_user
)
|>
put_session
(
:user_id
,
verified_user
.
id
)
else
_
->
conn
|>
halt_or_continue
(
opts
)
end
end
defp
verify
(
nil
,
_password
)
do
# Short-circuit if we have a cookie with the id for the given user.
defp
verify
(%{
id:
id
}
=
user
,
_password
,
id
)
do
{
:ok
,
user
}
end
defp
verify
(
nil
,
_password
,
_user_id
)
do
Comeonin
.
Pbkdf2
.
dummy_checkpw
:error
end
defp
verify
(
user
,
password
)
do
defp
verify
(
user
,
password
,
_user_id
)
do
if
Comeonin
.
Pbkdf2
.
checkpw
(
password
,
user
.
password_hash
)
do
{
:ok
,
user
}
else
...
...
This diff is collapsed.
Click to expand it.
test/plugs/authentication_plug_test.exs
+
48
−
5
View file @
32aa83f3
...
...
@@ -13,6 +13,12 @@ defmodule Pleroma.Plugs.AuthenticationPlugTest do
password_hash:
Comeonin
.
Pbkdf2
.
hashpwsalt
(
"guy"
)
}
@session_opts
[
store:
:cookie
,
key:
"_test"
,
signing_salt:
"cooldude"
]
defp
fetch_user
(
_name
)
do
{
:ok
,
@user
}
end
...
...
@@ -23,14 +29,20 @@ defmodule Pleroma.Plugs.AuthenticationPlugTest do
describe
"without an authorization header"
do
test
"it halts the application"
do
conn
=
build_conn
()
|>
AuthenticationPlug
.
call
(%{})
conn
=
build_conn
()
|>
Plug
.
Session
.
call
(
Plug
.
Session
.
init
(
@session_opts
))
|>
fetch_session
|>
AuthenticationPlug
.
call
(%{})
assert
conn
.
status
==
403
assert
conn
.
halted
==
true
end
test
"it assigns a nil user if the 'optional' option is used"
do
conn
=
build_conn
()
|>
AuthenticationPlug
.
call
(%{
optional:
true
})
conn
=
build_conn
()
|>
Plug
.
Session
.
call
(
Plug
.
Session
.
init
(
@session_opts
))
|>
fetch_session
|>
AuthenticationPlug
.
call
(%{
optional:
true
})
assert
%{
user:
nil
}
==
conn
.
assigns
end
...
...
@@ -40,6 +52,8 @@ defmodule Pleroma.Plugs.AuthenticationPlugTest do
test
"it halts the application"
do
conn
=
build_conn
()
|>
Plug
.
Session
.
call
(
Plug
.
Session
.
init
(
@session_opts
))
|>
fetch_session
|>
AuthenticationPlug
.
call
(%{
fetcher:
&
fetch_nil
/
1
})
assert
conn
.
status
==
403
...
...
@@ -49,6 +63,8 @@ defmodule Pleroma.Plugs.AuthenticationPlugTest do
test
"it assigns a nil user if the 'optional' option is used"
do
conn
=
build_conn
()
|>
Plug
.
Session
.
call
(
Plug
.
Session
.
init
(
@session_opts
))
|>
fetch_session
|>
AuthenticationPlug
.
call
(%{
optional:
true
,
fetcher:
&
fetch_nil
/
1
})
assert
%{
user:
nil
}
==
conn
.
assigns
...
...
@@ -65,6 +81,8 @@ defmodule Pleroma.Plugs.AuthenticationPlugTest do
conn
=
build_conn
()
|>
Plug
.
Session
.
call
(
Plug
.
Session
.
init
(
@session_opts
))
|>
fetch_session
|>
put_req_header
(
"authorization"
,
header
)
|>
AuthenticationPlug
.
call
(
opts
)
...
...
@@ -82,6 +100,8 @@ defmodule Pleroma.Plugs.AuthenticationPlugTest do
conn
=
build_conn
()
|>
Plug
.
Session
.
call
(
Plug
.
Session
.
init
(
@session_opts
))
|>
fetch_session
|>
put_req_header
(
"authorization"
,
header
)
|>
AuthenticationPlug
.
call
(
opts
)
...
...
@@ -90,7 +110,7 @@ defmodule Pleroma.Plugs.AuthenticationPlugTest do
end
describe
"with a correct authorization header for an existing user"
do
test
"it assigns the user"
do
test
"it assigns the user"
,
%{
conn:
conn
}
do
opts
=
%{
optional:
true
,
fetcher:
&
fetch_user
/
1
...
...
@@ -98,12 +118,35 @@ defmodule Pleroma.Plugs.AuthenticationPlugTest do
header
=
basic_auth_enc
(
"dude"
,
"guy"
)
conn
=
build_conn
()
conn
=
conn
|>
Plug
.
Session
.
call
(
Plug
.
Session
.
init
(
@session_opts
))
|>
fetch_session
|>
put_req_header
(
"authorization"
,
header
)
|>
AuthenticationPlug
.
call
(
opts
)
assert
%{
user:
@user
}
==
conn
.
assigns
assert
get_session
(
conn
,
:user_id
)
==
@user
.
id
assert
conn
.
halted
==
false
end
end
describe
"with a user_id in the session for an existing user"
do
test
"it assigns the user"
,
%{
conn:
conn
}
do
opts
=
%{
optional:
true
,
fetcher:
&
fetch_user
/
1
}
header
=
basic_auth_enc
(
"dude"
,
"THIS IS WRONG"
)
conn
=
conn
|>
Plug
.
Session
.
call
(
Plug
.
Session
.
init
(
@session_opts
))
|>
fetch_session
|>
put_session
(
:user_id
,
@user
.
id
)
|>
put_req_header
(
"authorization"
,
header
)
|>
AuthenticationPlug
.
call
(
opts
)
assert
%{
user:
@user
}
==
conn
.
assigns
assert
get_session
(
conn
,
:user_id
)
==
@user
.
id
assert
conn
.
halted
==
false
end
end
...
...
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