Updated Jackson version, and did a quick reformat

This commit is contained in:
Anthony Cicchetti 2019-06-07 18:38:49 -04:00
parent e7df08f8dc
commit bff3537253
4 changed files with 31 additions and 18 deletions

3
.gitignore vendored Normal file
View file

@ -0,0 +1,3 @@
# Project exclude paths
/.gradle/
/build/

View file

@ -3,7 +3,7 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
plugins {
id("com.github.johnrengelman.shadow") version Versions.com_github_johnrengelman_shadow_gradle_plugin
id("de.fayard.buildSrcVersions") version Versions.de_fayard_buildsrcversions_gradle_plugin
kotlin("jvm") version "1.3.21"
kotlin("jvm") version "1.3.31"
application
}

View file

@ -7,7 +7,7 @@ import kotlin.String
*
* YOU are responsible for updating manually the dependency version. */
object Versions {
const val jackson_databind: String = "2.9.8"
const val jackson_databind: String = "2.9.9"
const val com_github_johnrengelman_shadow_gradle_plugin: String = "5.0.0"
@ -15,9 +15,9 @@ object Versions {
const val javalin: String = "2.8.0"
const val org_jetbrains_kotlin_jvm_gradle_plugin: String = "1.3.31"
const val org_jetbrains_kotlin_jvm_gradle_plugin: String = "1.3.31"
const val org_jetbrains_kotlin: String = "1.3.31"
const val org_jetbrains_kotlin: String = "1.3.31"
const val slf4j_simple: String = "1.7.26"
@ -31,8 +31,8 @@ object Versions {
const val currentVersion: String = "5.4.1"
const val nightlyVersion: String = "5.5-20190505000026+0000"
const val nightlyVersion: String = "5.6-20190607000159+0000"
const val releaseCandidate: String = ""
const val releaseCandidate: String = "5.5-rc-2"
}
}

View file

@ -8,16 +8,16 @@ fun main() {
val app = Javalin.create().start(7000)
app.get("/") { ctx -> ctx.result("Hello World") }
app.post("/slack/receive") {
ctx -> handleSlackEvent(ctx)
app.post("/slack/receive") { ctx ->
handleSlackEvent(ctx)
}
app.post("/api/v1/spongebob") {
ctx -> ctx.json(TextResponse(200, ctx.body().toSpongemock()))
app.post("/api/v1/spongebob") { ctx ->
ctx.json(TextResponse(200, ctx.body().toSpongemock()))
}
app.post("/api/v1/uppercase") {
ctx -> ctx.json(TextResponse(200, ctx.body().toUpperCase()))
app.post("/api/v1/uppercase") { ctx ->
ctx.json(TextResponse(200, ctx.body().toUpperCase()))
}
}
@ -30,7 +30,7 @@ fun handleSlackEvent(ctx: Context) {
}
val responseObj = RespObj(
command = ctx.formParamMap().get("command")?.get(0).processtoCommand(),
command = ctx.formParamMap().get("command")?.get(0).processToCommand(),
text = ctx.formParamMap().get("text")?.get(0) ?: "",
response_url = ctx.formParamMap().get("response_url")?.get(0) ?: "",
team_id = ctx.formParamMap().get("team_id")?.get(0) ?: "",
@ -40,7 +40,7 @@ fun handleSlackEvent(ctx: Context) {
sendResponse(ctx, responseObj)
}
private fun String?.processtoCommand(): Commands {
private fun String?.processToCommand(): Commands {
return when (this) {
"/spongemock2" -> Commands.Spongebob
"/uppercase" -> Commands.Uppercase
@ -52,9 +52,15 @@ fun sendResponse(ctx: Context, respObj: RespObj) {
val returnMap = mutableMapOf<String, String>()
with(returnMap) {
when (respObj.command) {
Commands.Spongebob -> {put("text", respObj.text.toSpongemock()); put("response_type", "in_channel")}
Commands.Uppercase -> {put("text", respObj.text.toUpperCase()); put("response_type", "in_channel")}
Commands.Error -> {put("text", respObj.text); put("response_type", "ephemeral")}
Commands.Spongebob -> {
put("text", respObj.text.toSpongemock()); put("response_type", "in_channel")
}
Commands.Uppercase -> {
put("text", respObj.text.toUpperCase()); put("response_type", "in_channel")
}
Commands.Error -> {
put("text", respObj.text); put("response_type", "ephemeral")
}
}
}
@ -64,7 +70,11 @@ fun sendResponse(ctx: Context, respObj: RespObj) {
data class TextResponse(val status: Int, val response: String)
private fun String.toSpongemock(): String {
return this.mapIndexed { index, c -> if (!index.isOdd()) { c.toUpperCase() } else c }.joinToString(separator = "")
return this.mapIndexed { index, c ->
if (!index.isOdd()) {
c.toUpperCase()
} else c
}.joinToString(separator = "")
}
private fun Int.isOdd(): Boolean = this.rem(2) == 0