@@ -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
- // }
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>()
18
+ val connectionString: ConnectionString ? = System .getenv(" MONGODB_URI" )?.let {
19
+ ConnectionString (" $it ?retryWrites=false" )
20
+ }
25
21
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
@@ -46,15 +44,15 @@ fun main() {
46
44
staticResources(" /" , " static" )
47
45
route(ShoppingListItem .path) {
48
46
get {
49
- call.respond(collection)
47
+ call.respond(collection.find().toList() )
50
48
}
51
49
post {
52
- collection.add (call.receive<ShoppingListItem >())
50
+ collection.insertOne (call.receive<ShoppingListItem >())
53
51
call.respond(HttpStatusCode .OK )
54
52
}
55
53
delete(" /{id}" ) {
56
54
val id = call.parameters[" id" ]?.toInt() ? : error(" Invalid delete request" )
57
- collection.removeIf { it. id == id }
55
+ collection.deleteOne( ShoppingListItem :: id eq id)
58
56
call.respond(HttpStatusCode .OK )
59
57
}
60
58
}
0 commit comments