Updates... Pt 3 😬
This commit is contained in:
parent
942c088360
commit
c9814123b7
5 changed files with 11 additions and 9 deletions
|
@ -1,6 +1,9 @@
|
||||||
plugins {
|
plugins {
|
||||||
`kotlin-dsl`
|
`kotlin-dsl`
|
||||||
}
|
}
|
||||||
repositories {
|
|
||||||
jcenter()
|
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
|
||||||
|
kotlinOptions {
|
||||||
|
jvmTarget = "17"
|
||||||
|
}
|
||||||
}
|
}
|
2
gradle/wrapper/gradle-wrapper.properties
vendored
2
gradle/wrapper/gradle-wrapper.properties
vendored
|
@ -1,5 +1,5 @@
|
||||||
distributionBase=GRADLE_USER_HOME
|
distributionBase=GRADLE_USER_HOME
|
||||||
distributionPath=wrapper/dists
|
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
|
zipStoreBase=GRADLE_USER_HOME
|
||||||
zipStorePath=wrapper/dists
|
zipStorePath=wrapper/dists
|
||||||
|
|
|
@ -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.info.Info
|
||||||
import io.swagger.v3.oas.models.servers.Server
|
import io.swagger.v3.oas.models.servers.Server
|
||||||
import org.slf4j.LoggerFactory
|
import org.slf4j.LoggerFactory
|
||||||
|
import java.util.*
|
||||||
import kotlin.math.roundToInt
|
import kotlin.math.roundToInt
|
||||||
|
|
||||||
fun main() {
|
fun main() {
|
||||||
|
@ -52,7 +53,7 @@ fun main() {
|
||||||
it.summary = "POST for UPPERCASING"
|
it.summary = "POST for UPPERCASING"
|
||||||
}.body<String>().json<TextResponse>("200")) { ctx ->
|
}.body<String>().json<TextResponse>("200")) { ctx ->
|
||||||
logger.info("Uppercase: Received request from ${ctx.req.requestURL}")
|
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 {
|
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")
|
put("text", respObj.text.toSpongemock()); put("response_type", "in_channel")
|
||||||
}
|
}
|
||||||
Commands.Uppercase -> {
|
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 -> {
|
Commands.Claptext -> {
|
||||||
put("text", respObj.text.toClapText()); put("response_type", "in_channel")
|
put("text", respObj.text.toClapText()); put("response_type", "in_channel")
|
||||||
|
|
|
@ -6,9 +6,9 @@ fun String.toSpongemock(): String {
|
||||||
.map { word ->
|
.map { word ->
|
||||||
word.mapIndexed { index, char ->
|
word.mapIndexed { index, char ->
|
||||||
if (!index.isOdd()) {
|
if (!index.isOdd()) {
|
||||||
char.toUpperCase()
|
char.uppercaseChar()
|
||||||
} else {
|
} else {
|
||||||
char.toLowerCase()
|
char.lowercaseChar()
|
||||||
}
|
}
|
||||||
}.joinToString("")
|
}.joinToString("")
|
||||||
}.joinToString(" ")
|
}.joinToString(" ")
|
||||||
|
|
|
@ -9,8 +9,6 @@
|
||||||
|
|
||||||
plugin.com.github.johnrengelman.shadow=7.1.1
|
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.core..jackson-databind=2.13.0
|
||||||
|
|
||||||
version.com.fasterxml.jackson.module..jackson-module-kotlin=2.13.0
|
version.com.fasterxml.jackson.module..jackson-module-kotlin=2.13.0
|
||||||
|
|
Loading…
Add table
Reference in a new issue