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

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

package im.actor.server.persist

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

final class HttpApiTokenTable(tag: Tag) extends Table[HttpApiToken](tag, "http_api_tokens") {
  def token = column[String]("token", O.PrimaryKey)

  def isAdmin = column[Boolean]("is_admin")

  def * = (token, isAdmin) <> ((HttpApiToken.apply _).tupled, HttpApiToken.unapply)
}

object HttpApiTokenRepo {
  val httpApiTokens = TableQuery[HttpApiTokenTable]

  val byToken = Compiled { (token: Rep[String]) ⇒
    httpApiTokens filter (_.token === token)
  }

  def find(token: String) = byToken(token).result

  def fetchAll = httpApiTokens.result

  def create(token: String, isAdmin: Boolean) = httpApiTokens += HttpApiToken(token, isAdmin)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy