mirror of
https://github.com/gitbucket/gitbucket.git
synced 2025-11-06 13:35:50 +01:00
87 lines
1.6 KiB
Scala
87 lines
1.6 KiB
Scala
package util
|
|
|
|
/**
|
|
* Define key strings for request attributes, session attributes or flash attributes.
|
|
*/
|
|
object Keys {
|
|
|
|
/**
|
|
* Define session keys.
|
|
*/
|
|
object Session {
|
|
|
|
/**
|
|
* Session key for the logged in account information.
|
|
*/
|
|
val LoginAccount = "loginAccount"
|
|
|
|
/**
|
|
* Session key for the issue search condition in dashboard.
|
|
*/
|
|
val DashboardIssues = "dashboard/issues"
|
|
|
|
/**
|
|
* Session key for the pull request search condition in dashboard.
|
|
*/
|
|
val DashboardPulls = "dashboard/pulls"
|
|
|
|
/**
|
|
* Generate session key for the issue search condition.
|
|
*/
|
|
def Issues(owner: String, name: String) = s"${owner}/${name}/issues"
|
|
|
|
/**
|
|
* Generate session key for the pull request search condition.
|
|
*/
|
|
def Pulls(owner: String, name: String) = s"${owner}/${name}/pulls"
|
|
|
|
/**
|
|
* Generate session key for the upload filename.
|
|
*/
|
|
def Upload(fileId: String) = s"upload_${fileId}"
|
|
|
|
}
|
|
|
|
object Flash {
|
|
|
|
/**
|
|
* Flash key for the redirect URL.
|
|
*/
|
|
val Redirect = "redirect"
|
|
|
|
/**
|
|
* Flash key for the information message.
|
|
*/
|
|
val Info = "info"
|
|
|
|
}
|
|
|
|
/**
|
|
* Define request keys.
|
|
*/
|
|
object Request {
|
|
|
|
/**
|
|
* Request key for the Slick Session.
|
|
*/
|
|
val DBSession = "DB_SESSION"
|
|
|
|
/**
|
|
* Request key for the Ajax request flag.
|
|
*/
|
|
val Ajax = "AJAX"
|
|
|
|
/**
|
|
* Request key for the username which is used during Git repository access.
|
|
*/
|
|
val UserName = "USER_NAME"
|
|
|
|
/**
|
|
* Generate request key for the request cache.
|
|
*/
|
|
def Cache(key: String) = s"cache.${key}"
|
|
|
|
}
|
|
|
|
}
|