-
Notifications
You must be signed in to change notification settings - Fork 510
/
Copy pathInMemoryUserService.scala
179 lines (159 loc) · 6.15 KB
/
InMemoryUserService.scala
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
/**
* Copyright 2012 Jorge Aliss (jaliss at gmail dot com) - twitter: @jaliss
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
package service
import play.api.Logger
import securesocial.core._
import securesocial.core.providers.{ UsernamePasswordProvider, MailToken }
import scala.concurrent.Future
import securesocial.core.services.{ UserService, SaveMode }
/**
* A Sample In Memory user service in Scala
*
* IMPORTANT: This is just a sample and not suitable for a production environment since
* it stores everything in memory.
*/
class InMemoryUserService extends UserService[DemoUser] {
val logger = Logger("application.controllers.InMemoryUserService")
//
var users = Map[(String, String), DemoUser]()
//private var identities = Map[String, BasicProfile]()
private var tokens = Map[String, MailToken]()
def find(providerId: String, userId: String): Future[Option[BasicProfile]] = {
if (logger.isDebugEnabled) {
logger.debug("users = %s".format(users))
}
val result = for (
user <- users.values;
basicProfile <- user.identities.find(su => su.providerId == providerId && su.userId == userId)
) yield {
basicProfile
}
Future.successful(result.headOption)
}
def findByEmailAndProvider(email: String, providerId: String): Future[Option[BasicProfile]] = {
if (logger.isDebugEnabled) {
logger.debug("users = %s".format(users))
}
val someEmail = Some(email)
val result = for (
user <- users.values;
basicProfile <- user.identities.find(su => su.providerId == providerId && su.email == someEmail)
) yield {
basicProfile
}
Future.successful(result.headOption)
}
private def findProfile(p: BasicProfile) = {
users.find {
case (key, value) if value.identities.exists(su => su.providerId == p.providerId && su.userId == p.userId) => true
case _ => false
}
}
private def updateProfile(user: BasicProfile, entry: ((String, String), DemoUser)): Future[DemoUser] = {
val identities = entry._2.identities
val updatedList = identities.patch(identities.indexWhere(i => i.providerId == user.providerId && i.userId == user.userId), Seq(user), 1)
val updatedUser = entry._2.copy(identities = updatedList)
users = users + (entry._1 -> updatedUser)
Future.successful(updatedUser)
}
def save(user: BasicProfile, mode: SaveMode): Future[DemoUser] = {
mode match {
case SaveMode.SignUp =>
val newUser = DemoUser(user, List(user))
users = users + ((user.providerId, user.userId) -> newUser)
Future.successful(newUser)
case SaveMode.LoggedIn =>
// first see if there is a user with this BasicProfile already.
findProfile(user) match {
case Some(existingUser) =>
updateProfile(user, existingUser)
case None =>
val newUser = DemoUser(user, List(user))
users = users + ((user.providerId, user.userId) -> newUser)
Future.successful(newUser)
}
case SaveMode.PasswordChange =>
findProfile(user).map { entry => updateProfile(user, entry) }.getOrElse(
// this should not happen as the profile will be there
throw new Exception("missing profile"))
case saveMode =>
throw new IllegalArgumentException(s"Unrecognized SaveMode: $saveMode")
}
}
def link(current: DemoUser, to: BasicProfile): Future[DemoUser] = {
if (current.identities.exists(i => i.providerId == to.providerId && i.userId == to.userId)) {
Future.successful(current)
} else {
val added = to :: current.identities
val updatedUser = current.copy(identities = added)
users = users + ((current.main.providerId, current.main.userId) -> updatedUser)
Future.successful(updatedUser)
}
}
def saveToken(token: MailToken): Future[MailToken] = {
Future.successful {
tokens += (token.uuid -> token)
token
}
}
def findToken(token: String): Future[Option[MailToken]] = {
Future.successful { tokens.get(token) }
}
def deleteToken(uuid: String): Future[Option[MailToken]] = {
Future.successful {
tokens.get(uuid) match {
case Some(token) =>
tokens -= uuid
Some(token)
case None => None
}
}
}
// def deleteTokens(): Future {
// tokens = Map()
// }
def deleteExpiredTokens() {
tokens = tokens.filter(!_._2.isExpired)
}
override def updatePasswordInfo(user: DemoUser, info: PasswordInfo): Future[Option[BasicProfile]] = {
Future.successful {
for (
found <- users.values.find(_ == user);
identityWithPasswordInfo <- found.identities.find(_.providerId == UsernamePasswordProvider.UsernamePassword)
) yield {
val idx = found.identities.indexOf(identityWithPasswordInfo)
val updated = identityWithPasswordInfo.copy(passwordInfo = Some(info))
val updatedIdentities = found.identities.patch(idx, Seq(updated), 1)
val updatedEntry = found.copy(identities = updatedIdentities)
users = users + ((updatedEntry.main.providerId, updatedEntry.main.userId) -> updatedEntry)
updated
}
}
}
override def passwordInfoFor(user: DemoUser): Future[Option[PasswordInfo]] = {
Future.successful {
for (
found <- users.values.find(u => u.main.providerId == user.main.providerId && u.main.userId == user.main.userId);
identityWithPasswordInfo <- found.identities.find(_.providerId == UsernamePasswordProvider.UsernamePassword)
) yield {
identityWithPasswordInfo.passwordInfo.get
}
}
}
}
// a simple User class that can have multiple identities
case class DemoUser(main: BasicProfile, identities: List[BasicProfile])