Updates... Pt 3 😬

This commit is contained in:
Anthony Cicchetti 2021-12-16 11:18:07 -05:00
parent 942c088360
commit c9814123b7
5 changed files with 11 additions and 9 deletions

View file

@ -1,6 +1,9 @@
plugins {
`kotlin-dsl`
}
repositories {
jcenter()
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
kotlinOptions {
jvmTarget = "17"
}
}

View file

@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.8.3-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.2-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

View file

@ -14,6 +14,7 @@ import io.swagger.v3.oas.models.OpenAPI
import io.swagger.v3.oas.models.info.Info
import io.swagger.v3.oas.models.servers.Server
import org.slf4j.LoggerFactory
import java.util.*
import kotlin.math.roundToInt
fun main() {
@ -52,7 +53,7 @@ fun main() {
it.summary = "POST for UPPERCASING"
}.body<String>().json<TextResponse>("200")) { ctx ->
logger.info("Uppercase: Received request from ${ctx.req.requestURL}")
ctx.json(TextResponse(200, ctx.body().toUpperCase()))
ctx.json(TextResponse(200, ctx.body().uppercase(Locale.getDefault())))
})
post("/api/v1/claptext", documented(document().operation {
@ -110,7 +111,7 @@ private fun sendResponse(ctx: Context, respObj: RespObj) {
put("text", respObj.text.toSpongemock()); put("response_type", "in_channel")
}
Commands.Uppercase -> {
put("text", respObj.text.toUpperCase()); put("response_type", "in_channel")
put("text", respObj.text.uppercase(Locale.getDefault())); put("response_type", "in_channel")
}
Commands.Claptext -> {
put("text", respObj.text.toClapText()); put("response_type", "in_channel")

View file

@ -6,9 +6,9 @@ fun String.toSpongemock(): String {
.map { word ->
word.mapIndexed { index, char ->
if (!index.isOdd()) {
char.toUpperCase()
char.uppercaseChar()
} else {
char.toLowerCase()
char.lowercaseChar()
}
}.joinToString("")
}.joinToString(" ")

View file

@ -9,8 +9,6 @@
plugin.com.github.johnrengelman.shadow=7.1.1
plugin.org.gradle.kotlin.kotlin-dsl=2.1.7
version.com.fasterxml.jackson.core..jackson-databind=2.13.0
version.com.fasterxml.jackson.module..jackson-module-kotlin=2.13.0