Newer
Older
gitbucket_jkp / src / main / scala / service / SshKeyService.scala
@Naoki Takezoe Naoki Takezoe on 29 Jul 2014 593 bytes (refs #374)Upgrading to Scalatra 2.3 and Slick 2.1.
package service

import model.Profile._
import profile.simple._
import model.SshKey

trait SshKeyService {

  def addPublicKey(userName: String, title: String, publicKey: String)(implicit s: Session): Unit =
    SshKeys insert SshKey(userName = userName, title = title, publicKey = publicKey)

  def getPublicKeys(userName: String)(implicit s: Session): List[SshKey] =
    SshKeys.filter(_.userName === userName.bind).sortBy(_.sshKeyId).list

  def deletePublicKey(userName: String, sshKeyId: Int)(implicit s: Session): Unit =
    SshKeys filter (_.byPrimaryKey(userName, sshKeyId)) delete

}