@@ -15,15 +15,13 @@ import io.ktor.serialization.kotlinx.json.*
15
15
import io.ktor.server.plugins.cors.routing.*
16
16
import org.litote.kmongo.reactivestreams.KMongo
17
17
18
- // val connectionString: ConnectionString? = System.getenv("MONGODB_URI")?.let {
19
- // ConnectionString("$it?retryWrites=false")
20
- // }
18
+ val connectionString: ConnectionString ? = System .getenv(" MONGODB_URI" )?.let {
19
+ ConnectionString (" $it ?retryWrites=false" )
20
+ }
21
21
22
- // val client = if (connectionString != null) KMongo.createClient(connectionString).coroutine else KMongo.createClient().coroutine
23
- // val database = client.getDatabase(connectionString?.database ?: "shoppingList")
24
- // val collection = database.getCollection<ShoppingListItem>()
25
-
26
- val collection = mutableListOf<ShoppingListItem >();
22
+ val client = if (connectionString != null ) KMongo .createClient(connectionString).coroutine else KMongo .createClient().coroutine
23
+ val database = client.getDatabase(connectionString?.database ? : " shoppingList" )
24
+ val collection = database.getCollection<ShoppingListItem >()
27
25
28
26
fun main () {
29
27
val port = System .getenv(" PORT" )?.toInt() ? : 9090
@@ -52,15 +50,15 @@ fun main() {
52
50
staticResources(" /" , " static" )
53
51
route(ShoppingListItem .path) {
54
52
get {
55
- call.respond(collection)
53
+ call.respond(collection.find().toList() )
56
54
}
57
55
post {
58
- collection.add (call.receive<ShoppingListItem >())
56
+ collection.insertOne (call.receive<ShoppingListItem >())
59
57
call.respond(HttpStatusCode .OK )
60
58
}
61
59
delete(" /{id}" ) {
62
60
val id = call.parameters[" id" ]?.toInt() ? : error(" Invalid delete request" )
63
- collection.removeIf { it. id == id }
61
+ collection.deleteOne( ShoppingListItem :: id eq id)
64
62
call.respond(HttpStatusCode .OK )
65
63
}
66
64
}
0 commit comments