com.mohiva.play.silhouette.impl.providers

BasicAuthProvider

class BasicAuthProvider extends RequestProvider with Logger

A request provider implementation which supports HTTP basic authentication.

The provider supports the change of password hashing algorithms on the fly. Sometimes it may be possible to change the hashing algorithm used by the application. But the hashes stored in the backing store can't be converted back into plain text passwords, to hash them again with the new algorithm. So if a user successfully authenticates after the application has changed the hashing algorithm, the provider hashes the entered password again with the new algorithm and stores the auth info in the backing store.

Linear Supertypes
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. BasicAuthProvider
  2. Logger
  3. RequestProvider
  4. Provider
  5. AnyRef
  6. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new BasicAuthProvider(authInfoRepository: AuthInfoRepository, passwordHasher: PasswordHasher, passwordHasherList: Seq[PasswordHasher])(implicit executionContext: ExecutionContext)

    authInfoRepository

    The auth info repository.

    passwordHasher

    The default password hasher used by the application.

    passwordHasherList

    List of password hasher supported by the application.

    executionContext

    The execution context to handle the asynchronous operations.

    Annotations
    @Inject()

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. def authenticate[B](request: Request[B]): Future[Option[LoginInfo]]

    Authenticates an identity based on credentials sent in a request.

    Authenticates an identity based on credentials sent in a request.

    B

    The type of the body.

    request

    The request.

    returns

    Some login info on successful authentication or None if the authentication was unsuccessful.

    Definition Classes
    BasicAuthProviderRequestProvider
  8. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  10. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  11. implicit val executionContext: ExecutionContext

    The execution context to handle the asynchronous operations.

  12. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  13. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  14. def getCredentials(request: RequestHeader): Option[Credentials]

    Encodes the credentials.

    Encodes the credentials.

    request

    Contains the colon-separated name-value pairs in clear-text string format

    returns

    The users credentials as plaintext

  15. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  16. def id: String

    Gets the provider ID.

    Gets the provider ID.

    returns

    The provider ID.

    Definition Classes
    BasicAuthProviderProvider
  17. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  18. val logger: Logger

    A named logger instance.

    A named logger instance.

    Definition Classes
    Logger
  19. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  20. final def notify(): Unit

    Definition Classes
    AnyRef
  21. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  22. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  23. def toString(): String

    Definition Classes
    AnyRef → Any
  24. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  25. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Logger

Inherited from RequestProvider

Inherited from Provider

Inherited from AnyRef

Inherited from Any

Ungrouped