Reformat:Scalafmt

Signed-off-by: Rahul Rudragoudar <rr83019@gmail.com>
This commit is contained in:
Rahul Rudragoudar 2021-04-21 14:43:00 +05:30
parent 98c304ccd4
commit e38c3b680a
No known key found for this signature in database
GPG Key ID: 0D2CE231A7287EBC
3 changed files with 45 additions and 32 deletions

View File

@ -11,16 +11,22 @@ import scala.io.Source
import org.limium.picoserve.Server.StringResponse
class Server(port: Int) {
val server: picoserve.Server = picoserve.Server.builder()
val server: picoserve.Server = picoserve.Server
.builder()
.port(port)
.backlog(32)
.POST("/v1/captcha", (request) => {
.POST(
"/v1/captcha",
(request) => {
val json = parse(request.getBodyString())
val param = json.extract[Parameters]
val id = Captcha.getChallenge(param)
getResponse(id)
})
.GET("/v1/media", (request) => {
}
)
.GET(
"/v1/media",
(request) => {
val params = request.getQueryParams()
val result = if (params.containsKey("id")) {
val paramId = params.get("id").get(0)
@ -30,18 +36,25 @@ class Server(port: Int) {
Left(Error(ErrorMessageEnum.INVALID_PARAM.toString + "=> id"))
}
getResponse(result)
})
.POST("/v1/answer", (request) => {
}
)
.POST(
"/v1/answer",
(request) => {
val json = parse(request.getBodyString())
val answer = json.extract[Answer]
val result = Captcha.checkAnswer(answer)
getResponse(result)
})
.GET("/demo/index.html", (_) => {
}
)
.GET(
"/demo/index.html",
(_) => {
val resStream = getClass().getResourceAsStream("/index.html")
val str = Source.fromInputStream(resStream).mkString
new StringResponse(200, str)
})
}
)
.build()
private def getResponse(response: Either[Error, ByteConvert]): ByteResponse = {