mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-04-05 02:49:32 +00:00
Create external accounts independent from signup config
Refs: #1619, #1621
This commit is contained in:
parent
2c9e012c96
commit
508ad5bc03
@ -20,8 +20,10 @@ trait OSignup[F[_]] {
|
||||
|
||||
def register(cfg: Config)(data: RegisterData): F[SignupResult]
|
||||
|
||||
/** Creates the given account if it doesn't exist. */
|
||||
def setupExternal(cfg: Config)(data: ExternalAccount): F[SignupResult]
|
||||
/** Creates the given account if it doesn't exist. This is independent from signup
|
||||
* configuration.
|
||||
*/
|
||||
def setupExternal(data: ExternalAccount): F[SignupResult]
|
||||
|
||||
def newInvite(cfg: Config)(password: Password): F[NewInviteResult]
|
||||
}
|
||||
@ -77,11 +79,7 @@ object OSignup {
|
||||
}
|
||||
}
|
||||
|
||||
def setupExternal(cfg: Config)(data: ExternalAccount): F[SignupResult] =
|
||||
cfg.mode match {
|
||||
case Config.Mode.Closed =>
|
||||
SignupResult.signupClosed.pure[F]
|
||||
case _ =>
|
||||
def setupExternal(data: ExternalAccount): F[SignupResult] =
|
||||
if (data.source == AccountSource.Local)
|
||||
SignupResult
|
||||
.failure(new Exception("Account source must not be LOCAL!"))
|
||||
@ -106,7 +104,6 @@ object OSignup {
|
||||
}
|
||||
}
|
||||
} yield res
|
||||
}
|
||||
|
||||
private def retryInvite(res: SignupResult): Boolean =
|
||||
res match {
|
||||
|
@ -105,9 +105,7 @@ object OpenId {
|
||||
import dsl._
|
||||
|
||||
for {
|
||||
setup <- backend.signup.setupExternal(cfg.backend.signup)(
|
||||
ExternalAccount(accountId)
|
||||
)
|
||||
setup <- backend.signup.setupExternal(ExternalAccount(accountId))
|
||||
res <- setup match {
|
||||
case SignupResult.Failure(ex) =>
|
||||
logger.error(ex)(s"Error when creating external account!") *>
|
||||
|
Loading…
x
Reference in New Issue
Block a user