Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F21907328
captcha.ex
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
captcha.ex
View Options
# Pleroma: A lightweight social networking server
# Copyright © 2017-2018 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only
defmodule
Pleroma.Captcha
do
use
GenServer
@ets_options
[
:ordered_set
,
:private
,
:named_table
,
{
:read_concurrency
,
true
}]
@doc
false
def
start_link
()
do
GenServer
.
start_link
(
__MODULE__
,
[],
name
:
__MODULE__
)
end
@doc
false
def
init
(
_
)
do
# Create a ETS table to store captchas
ets_name
=
Module
.
concat
(
method
(),
Ets
)
^
ets_name
=
:ets
.
new
(
Module
.
concat
(
method
(),
Ets
),
@ets_options
)
# Clean up old captchas every few minutes
seconds_retained
=
Pleroma.Config
.
get!
([
__MODULE__
,
:seconds_retained
])
Process
.
send_after
(
self
(),
:cleanup
,
1000
*
seconds_retained
)
{
:ok
,
nil
}
end
@doc
"""
Ask the configured captcha service for a new captcha
"""
def
new
()
do
GenServer
.
call
(
__MODULE__
,
:new
)
end
@doc
"""
Ask the configured captcha service to validate the captcha
"""
def
validate
(
token
,
captcha
)
do
GenServer
.
call
(
__MODULE__
,
{
:validate
,
token
,
captcha
})
end
@doc
false
def
handle_call
(
:new
,
_from
,
state
)
do
enabled
=
Pleroma.Config
.
get
([
__MODULE__
,
:enabled
])
if
!
enabled
do
{
:reply
,
%{
type
:
:none
},
state
}
else
{
:reply
,
method
()
.
new
(),
state
}
end
end
@doc
false
def
handle_call
({
:validate
,
token
,
captcha
},
_from
,
state
)
do
{
:reply
,
method
()
.
validate
(
token
,
captcha
),
state
}
end
@doc
false
def
handle_info
(
:cleanup
,
state
)
do
:ok
=
method
()
.
cleanup
()
seconds_retained
=
Pleroma.Config
.
get!
([
__MODULE__
,
:seconds_retained
])
# Schedule the next clenup
Process
.
send_after
(
self
(),
:cleanup
,
1000
*
seconds_retained
)
{
:noreply
,
state
}
end
defp
method
,
do
:
Pleroma.Config
.
get!
([
__MODULE__
,
:method
])
end
File Metadata
Details
Attached
Mime Type
text/x-ruby
Expires
Sun, Dec 28, 1:41 AM (16 h, 50 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
805557
Default Alt Text
captcha.ex (1 KB)
Attached To
Mode
rPUBE pleroma-upstream
Attached
Detach File
Event Timeline
Log In to Comment