I have the below code which returns Future[Option[Password]]
db.run(passwords.filter {
x => x.providerID === loginInfo.providerID && x.providerKey === loginInfo.providerKey
}.result.headOption)
What I want to do is as in the below pseudo code:
if above query returns no results
do nothing
else
return new PasswordInfo(abovequeryresult.hasher, abovequeryresult.password, abovequeryresult.salt)
I am new to Scala and have no clue about this. Tried to use flatMap
like in below example, but the flatMap
signature for the above db.run()
is different.
find(loginInfo).flatMap {
case Some(_) => update(loginInfo, authInfo)
case None => add(loginInfo, authInfo)
}
I am using Play Slick version 1.1.1
I think your question is more related to how manipulate Futures in Scala. If your
db.run
code runs in an action of a Play Controller, the best option is to declare the actions asasync
and map the result of query to anplay.api.mvc.Result
. Something like this:Or if you only want the result