Added Scaladoc.

This commit is contained in:
takezoe
2013-04-13 04:29:03 +09:00
parent 47182ec57f
commit 0d5657f248
3 changed files with 46 additions and 5 deletions

View File

@@ -2,20 +2,37 @@ package util
import java.io.File
/**
* Provides directories used by GitBucket.
*/
object Directory {
val GitBucketHome = new File(System.getProperty("user.home"), "gitbucket").getAbsolutePath
/**
* Repository names of the specified user.
*/
def getRepositories(owner: String): List[String] =
new File("%s/repositories/%s".format(GitBucketHome, owner))
.listFiles.filter(_.isDirectory).map(_.getName.replaceFirst("\\.git$", "")).toList
/**
* Substance directory of the repository.
*/
def getRepositoryDir(owner: String, repository: String): File =
new File("%s/repositories/%s/%s.git".format(GitBucketHome, owner, repository))
/**
* Temporary directory which is used in the repository viewer.
*/
def getBranchDir(owner: String, repository: String, branch: String): File =
new File("%s/tmp/%s/branches/%s/%s".format(GitBucketHome, owner, repository, branch))
/**
* Temporary directory which is used in the repository creation.
* GiyBucket generates initial repository contents in this directory and push them.
* This directory is removed after the repository creation.
*/
def getInitRepositoryDir(owner: String, repository: String): File =
new File("%s/tmp/%s/init-%s".format(GitBucketHome, owner, repository))