From 5493849d7831e6cc6fe5f7dee3f5d0bc0be1a68e Mon Sep 17 00:00:00 2001 From: Anthony Cicchetti Date: Thu, 3 Oct 2019 17:07:22 -0400 Subject: [PATCH] Claptext, and dependency updates --- buildSrc/src/main/kotlin/Versions.kt | 6 +++--- settings.gradle | 1 - .../kotlin/com/anthonycicchetti/slackbot/Main.kt | 12 ++++++++++++ .../anthonycicchetti/slackbot/Transformations.kt | 6 ++++++ .../anthonycicchetti/slackbot/utility/RespObj.kt | 1 + .../slackbot/TransformationsTest.kt | 16 ++++++++++++++++ 6 files changed, 38 insertions(+), 4 deletions(-) diff --git a/buildSrc/src/main/kotlin/Versions.kt b/buildSrc/src/main/kotlin/Versions.kt index 2ed3a26..438acac 100644 --- a/buildSrc/src/main/kotlin/Versions.kt +++ b/buildSrc/src/main/kotlin/Versions.kt @@ -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" diff --git a/settings.gradle b/settings.gradle index f377f28..0eebe88 100644 --- a/settings.gradle +++ b/settings.gradle @@ -1,2 +1 @@ rootProject.name = 'slackmemes' - diff --git a/src/main/kotlin/com/anthonycicchetti/slackbot/Main.kt b/src/main/kotlin/com/anthonycicchetti/slackbot/Main.kt index cca3773..38a9ccf 100644 --- a/src/main/kotlin/com/anthonycicchetti/slackbot/Main.kt +++ b/src/main/kotlin/com/anthonycicchetti/slackbot/Main.kt @@ -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().json("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") } diff --git a/src/main/kotlin/com/anthonycicchetti/slackbot/Transformations.kt b/src/main/kotlin/com/anthonycicchetti/slackbot/Transformations.kt index 718e8e5..2d4cbd0 100644 --- a/src/main/kotlin/com/anthonycicchetti/slackbot/Transformations.kt +++ b/src/main/kotlin/com/anthonycicchetti/slackbot/Transformations.kt @@ -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 \ No newline at end of file diff --git a/src/main/kotlin/com/anthonycicchetti/slackbot/utility/RespObj.kt b/src/main/kotlin/com/anthonycicchetti/slackbot/utility/RespObj.kt index 56ce028..a71a718 100644 --- a/src/main/kotlin/com/anthonycicchetti/slackbot/utility/RespObj.kt +++ b/src/main/kotlin/com/anthonycicchetti/slackbot/utility/RespObj.kt @@ -11,5 +11,6 @@ data class RespObj( sealed class Commands { object Spongebob : Commands() object Uppercase : Commands() + object Claptext : Commands() object Error : Commands() } \ No newline at end of file diff --git a/src/test/kotlin/com/anthonycicchetti/slackbot/TransformationsTest.kt b/src/test/kotlin/com/anthonycicchetti/slackbot/TransformationsTest.kt index 1cd7047..8752e06 100644 --- a/src/test/kotlin/com/anthonycicchetti/slackbot/TransformationsTest.kt +++ b/src/test/kotlin/com/anthonycicchetti/slackbot/TransformationsTest.kt @@ -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()) + } } \ No newline at end of file