2023-01-08 18:36:39 +04:00
|
|
|
justcaptcha ver. 2.0.1
|
2022-08-17 21:49:57 +04:00
|
|
|
======================
|
2022-06-24 23:09:46 +04:00
|
|
|
|
|
|
|
A simple CAPTCHA service implementation.
|
|
|
|
|
2023-01-08 17:38:51 +04:00
|
|
|
## Service usage
|
2022-06-26 21:01:47 +04:00
|
|
|
|
2023-01-08 17:38:51 +04:00
|
|
|
justcaptchad -expiry 10m -listen /var/run/justcaptcha/sock
|
2022-06-26 21:01:47 +04:00
|
|
|
|
2022-08-19 21:37:51 +04:00
|
|
|
`-expiry` takes time for CAPTCHA to be valid for in format X{s,m,h}.
|
2022-06-26 21:01:47 +04:00
|
|
|
|
|
|
|
`-listen` is `ip:port` or `/path/to/unix.sock` to listen on.
|
|
|
|
|
2023-01-08 17:38:51 +04:00
|
|
|
## Service HTTP API
|
2022-06-24 23:09:46 +04:00
|
|
|
|
2022-10-20 22:49:08 +04:00
|
|
|
### Errors
|
2022-06-24 23:09:46 +04:00
|
|
|
|
2022-10-20 22:49:08 +04:00
|
|
|
All error codes are returned with an error message in `text/plain`.
|
2022-06-24 23:09:46 +04:00
|
|
|
|
2022-10-20 22:49:08 +04:00
|
|
|
### Create a new CAPTCHA
|
|
|
|
|
|
|
|
POST /
|
|
|
|
|
|
|
|
It will return an ID of a new CAPTCHA in `text/plain`.
|
2022-06-24 23:09:46 +04:00
|
|
|
|
|
|
|
#### HTTP codes
|
2022-10-20 22:49:08 +04:00
|
|
|
- `201` if created (always being created)
|
2022-06-24 23:09:46 +04:00
|
|
|
|
2022-08-28 23:33:59 +04:00
|
|
|
### Get an image for a CAPTCHA
|
2022-06-24 23:09:46 +04:00
|
|
|
|
2022-06-27 01:21:16 +04:00
|
|
|
GET /:captcha_id/image?style=
|
2022-06-24 23:09:46 +04:00
|
|
|
|
2022-10-20 22:49:08 +04:00
|
|
|
Responds with an image in JPEG format (`image/jpeg`).
|
2022-06-24 23:09:46 +04:00
|
|
|
|
2022-10-20 22:49:08 +04:00
|
|
|
An optional URL parameter `style=` set a name of a CAPTCHA style if it is
|
2023-01-08 17:38:51 +04:00
|
|
|
supported by CAPTCHA implementation.
|
2022-06-27 01:21:16 +04:00
|
|
|
|
2022-06-24 23:09:46 +04:00
|
|
|
#### HTTP codes
|
2022-06-26 21:03:11 +04:00
|
|
|
- `200` if exists
|
|
|
|
- `404` if doesn't exist
|
2022-08-28 23:33:59 +04:00
|
|
|
- `500` if for some reason an image wasn't created
|
2022-06-24 23:09:46 +04:00
|
|
|
|
|
|
|
### Submit an answer
|
|
|
|
|
|
|
|
POST /:captcha_id
|
|
|
|
|
2022-08-28 23:33:59 +04:00
|
|
|
Accepts `application/x-www-form-urlencoded` content type.
|
2022-06-24 23:09:46 +04:00
|
|
|
|
2022-08-28 23:33:59 +04:00
|
|
|
It takes one parameter `answer=123456`.
|
|
|
|
|
|
|
|
Responds with an empty body and one of the HTTP codes.
|
2022-06-24 23:09:46 +04:00
|
|
|
|
|
|
|
#### HTTP codes
|
2022-10-20 22:49:08 +04:00
|
|
|
- `202` if solved
|
2022-06-26 21:03:11 +04:00
|
|
|
- `403` if not solved
|
2022-06-24 23:09:46 +04:00
|
|
|
|
|
|
|
### Check if captcha is solved
|
|
|
|
|
2022-08-28 23:33:59 +04:00
|
|
|
GET /:captcha_id?remove
|
|
|
|
|
|
|
|
Responds with an empty body and one of the HTTP codes.
|
|
|
|
|
2022-10-20 22:49:08 +04:00
|
|
|
If an optional `remove` parameter without a value supplied CAPTCHA will be
|
|
|
|
removed without checking and a HTTP code `204` will be sent. Otherwise, a `403`
|
2022-10-21 00:03:09 +04:00
|
|
|
HTTP code will be sent if it is not solved.
|
2022-10-20 22:49:08 +04:00
|
|
|
|
|
|
|
A `remove` parameter was added because browsers will print an error in a console
|
|
|
|
if HTTP code is not within `2xx`, so to keep a console clean you can provide
|
|
|
|
this parameter.
|
2022-06-24 23:09:46 +04:00
|
|
|
|
2022-08-28 23:33:59 +04:00
|
|
|
This can be useful to remove an unused CAPTCHA from a DB without waiting for it
|
2022-10-20 22:49:08 +04:00
|
|
|
to be expired. E.g. when a visitor requests for a new CAPTCHA or leaving a page.
|
2022-06-24 23:09:46 +04:00
|
|
|
|
|
|
|
#### HTTP codes
|
2022-10-20 22:49:08 +04:00
|
|
|
- `204` if solved
|
2022-06-26 21:03:11 +04:00
|
|
|
- `403` if not solved
|
2022-10-20 22:49:08 +04:00
|
|
|
|
|
|
|
### Example of interaction
|
|
|
|
|
|
|
|
First a client makes a POST request with empty body to create a new CAPTCHA and obtains an ID for it.
|
|
|
|
|
|
|
|
POST /
|
|
|
|
|
|
|
|
As a result we get an ID `n60f2K9JiD5c4qX9MYe90A54nT0nnJrtgfhAjfaWtBg`.
|
|
|
|
|
|
|
|
Then a client requests an image for a new CAPTCHA. E.g. with a dark style.
|
|
|
|
|
|
|
|
GET /n60f2K9JiD5c4qX9MYe90A54nT0nnJrtgfhAjfaWtBg/image?style=dark
|
|
|
|
|
|
|
|
Then a client submits an answer for a CAPTCHA.
|
|
|
|
|
|
|
|
POST 'answer=198807' /n60f2K9JiD5c4qX9MYe90A54nT0nnJrtgfhAjfaWtBg
|
|
|
|
|
|
|
|
And if answer was correct a client gets a HTTP code 202. Or 403 otherwise.
|
|
|
|
|
|
|
|
Then a server checks if CAPTCHA was solved with following request.
|
|
|
|
|
2023-01-08 18:34:35 +04:00
|
|
|
GET /n60f2K9JiD5c4qX9MYe90A54nT0nnJrtgfhAjfaWtBg
|
|
|
|
|
|
|
|
## Library usage
|
|
|
|
|
|
|
|
A simple example using built-in dwelling CAPTCHA implementation.
|
|
|
|
|
|
|
|
Create a new CAPTCHA:
|
|
|
|
|
|
|
|
c := dwcaptcha.NewDwellingCaptcha(expiry)
|
|
|
|
_, id := inmemdb.New(someAdditionalDataUsedInIDGenerationUsuallyIPAddr, c)
|
|
|
|
|
|
|
|
Get an image for a CAPTCHA:
|
|
|
|
|
|
|
|
i := inmemdb.Image(captchaID, captchaStyle)
|
|
|
|
if i == nil {
|
|
|
|
... // error handling
|
|
|
|
}
|
|
|
|
|
|
|
|
jpeg.Encode(w, *i, &jpeg.Options{Quality: 20})
|
|
|
|
|
|
|
|
Solve a CAPTCHA:
|
|
|
|
|
|
|
|
if ok := inmemdb.Solve(captchaID, answer); !ok {
|
|
|
|
... // not solved
|
|
|
|
}
|
|
|
|
// solved
|
|
|
|
...
|
|
|
|
|
|
|
|
Check is CAPTCHA was solved:
|
|
|
|
|
|
|
|
if ok := inmemdb.IsSolved(captchaID); !ok {
|
|
|
|
... // not solved
|
|
|
|
}
|
|
|
|
// solved
|
|
|
|
...
|