All Downloads are FREE. Search and download functionalities are using the official Maven repository.

im.actor.server.persist.OAuth2TokenRepo.scala Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
package im.actor.server.persist

import java.time.LocalDateTime

import im.actor.server.db.ActorPostgresDriver.api._

import im.actor.server.model

final class OAuth2TokenTable(tag: Tag) extends Table[model.OAuth2Token](tag, "oauth2_tokens") {
  def id = column[Long]("id", O.PrimaryKey)
  def userId = column[String]("user_id", O.PrimaryKey)
  def accessToken = column[String]("access_token")
  def tokenType = column[String]("token_type")
  def expiresIn = column[Long]("expires_in")
  def refreshToken = column[Option[String]]("refresh_token")
  def createdAt = column[LocalDateTime]("created_at")

  def * = (id, userId, accessToken, tokenType, expiresIn, refreshToken, createdAt) <> (model.OAuth2Token.tupled, model.OAuth2Token.unapply)
}

object OAuth2TokenRepo {
  val tokens = TableQuery[OAuth2TokenTable]

  def create(token: model.OAuth2Token) =
    tokens += token

  def createOrUpdate(token: model.OAuth2Token) =
    tokens.insertOrUpdate(token)

  def findByUserId(userId: String) =
    tokens.filter(_.userId === userId).sortBy(_.createdAt.desc).result.headOption

  def findRefreshToken(userId: String) =
    tokens.filter(t ⇒ t.userId === userId && t.refreshToken.isDefined).result.headOption

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy