Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F21907361
kocaptcha.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
kocaptcha.ex
View Options
# Pleroma: A lightweight social networking server
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only
defmodule
Pleroma.Captcha.Kocaptcha
do
import
Pleroma.Web.Gettext
alias
Pleroma.Captcha.Service
@behaviour
Service
@impl
Service
def
new
do
endpoint
=
Pleroma.Config
.
get!
([
__MODULE__
,
:endpoint
])
case
Tesla
.
get
(
endpoint
<>
"/new"
)
do
{
:error
,
_
}
->
%{
error
:
dgettext
(
"errors"
,
"Kocaptcha service unavailable"
)}
{
:ok
,
res
}
->
json_resp
=
Jason
.
decode!
(
res
.
body
)
%{
type
:
:kocaptcha
,
token
:
json_resp
[
"token"
],
url
:
endpoint
<>
json_resp
[
"url"
],
answer_data
:
json_resp
[
"md5"
]
}
end
end
@impl
Service
def
validate
(
_token
,
captcha
,
answer_data
)
do
# Here the token is unsed, because the unencrypted captcha answer is just passed to method
if
not
is_nil
(
captcha
)
and
:crypto
.
hash
(
:md5
,
captcha
)
|>
Base
.
encode16
()
==
String
.
upcase
(
answer_data
),
do
:
:ok
,
else
:
{
:error
,
dgettext
(
"errors"
,
"Invalid CAPTCHA"
)}
end
end
File Metadata
Details
Attached
Mime Type
text/x-ruby
Expires
Sun, Dec 28, 1:41 AM (16 h, 43 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
799258
Default Alt Text
kocaptcha.ex (1 KB)
Attached To
Mode
rPUBE pleroma-upstream
Attached
Detach File
Event Timeline
Log In to Comment