Claptext, and dependency updates

This commit is contained in:
Anthony Cicchetti 2019-10-03 17:07:22 -04:00
parent 9f041b8272
commit 5493849d78
6 changed files with 38 additions and 4 deletions

View file

@ -14,17 +14,17 @@ import org.gradle.plugin.use.PluginDependencySpec
object Versions {
const val com_github_johnrengelman_shadow_gradle_plugin: String = "5.1.0"
const val de_fayard_buildsrcversions_gradle_plugin: String = "0.6.1"
const val de_fayard_buildsrcversions_gradle_plugin: String = "0.6.3"
const val org_jetbrains_kotlin_jvm_gradle_plugin: String = "1.3.50"
const val jackson_module_kotlin: String = "2.10.0.pr3"
const val jackson_module_kotlin: String = "2.10.0"
const val org_jetbrains_kotlin: String = "1.3.50"
const val kotlin_openapi3_dsl: String = "0.20.2"
const val jackson_databind: String = "2.10.0.pr3"
const val jackson_databind: String = "2.10.0"
const val junit_jupiter: String = "5.5.2"

View file

@ -1,2 +1 @@
rootProject.name = 'slackmemes'

View file

@ -54,6 +54,14 @@ fun main() {
logger.info("Uppercase: Received request from ${ctx.req.requestURL}")
ctx.json(TextResponse(200, ctx.body().toUpperCase()))
})
post("/api/v1/claptext", documented(document().operation {
it.description = "Responds \uD83D\uDC4F with \uD83D\uDC4F the \uD83D\uDC4F claptext \uD83D\uDC4F version"
it.summary = "POST \uD83D\uDC4F for \uD83D\uDC4F claptext"
}.body<String>().json<TextResponse>("200")) {ctx ->
logger.info("Claptext: Received request from ${ctx.req.requestURL}")
ctx.json(TextResponse(200, ctx.body().toClapText()))
})
}
@ -89,6 +97,7 @@ private fun String?.processToCommand(): Commands {
return when (this) {
"/spongemock2" -> Commands.Spongebob
"/uppercase" -> Commands.Uppercase
"/claptext" -> Commands.Claptext
else -> Commands.Error
}
}
@ -103,6 +112,9 @@ private fun sendResponse(ctx: Context, respObj: RespObj) {
Commands.Uppercase -> {
put("text", respObj.text.toUpperCase()); put("response_type", "in_channel")
}
Commands.Claptext -> {
put("text", respObj.text.toClapText()); put("response_type", "in_channel")
}
Commands.Error -> {
put("text", respObj.text); put("response_type", "ephemeral")
}

View file

@ -14,4 +14,10 @@ fun String.toSpongemock(): String {
}.joinToString(" ")
}
fun String.toClapText(): String {
return this
.split(' ')
.joinToString(separator = " 👏 ")
}
private fun Int.isOdd(): Boolean = this.rem(2) == 0

View file

@ -11,5 +11,6 @@ data class RespObj(
sealed class Commands {
object Spongebob : Commands()
object Uppercase : Commands()
object Claptext : Commands()
object Error : Commands()
}

View file

@ -62,4 +62,20 @@ internal class TransformationsTest {
assertEquals(expected, actual.toSpongemock())
}
@Test
fun `Claptext works with multiple words`() {
val actual = "Find a dentist in Boston your a grown man"
val expected = "Find \uD83D\uDC4F a \uD83D\uDC4F dentist \uD83D\uDC4F in \uD83D\uDC4F Boston \uD83D\uDC4F your \uD83D\uDC4F a \uD83D\uDC4F grown \uD83D\uDC4F man"
assertEquals(expected, actual.toClapText())
}
@Test
fun `Claptext works with one word`() {
val actual = "Find"
val expected = "Find"
assertEquals(expected, actual.toClapText())
}
}