mirror of
https://github.com/gitbucket/gitbucket.git
synced 2025-11-06 21:45:50 +01:00
Git repository creation works now!
This commit is contained in:
@@ -1,12 +1,11 @@
|
||||
package app
|
||||
|
||||
import util.Directory._
|
||||
|
||||
import org.scalatra._
|
||||
import java.io.File
|
||||
import org.eclipse.jgit.api.Git
|
||||
import org.eclipse.jgit.lib._
|
||||
import org.apache.commons.io.FileUtils
|
||||
import org.apache.commons.io._
|
||||
|
||||
/**
|
||||
* Creates new repository.
|
||||
@@ -16,33 +15,41 @@ class CreateRepositoryServlet extends ScalatraServlet with ServletBase {
|
||||
/**
|
||||
* Show the new repository form.
|
||||
*/
|
||||
get("/new") {
|
||||
get("/") {
|
||||
html.newrepo.render()
|
||||
}
|
||||
|
||||
/**
|
||||
* Create new repository.
|
||||
*/
|
||||
post("/new") {
|
||||
post("/") {
|
||||
val repositoryName = params("name")
|
||||
val description = params("description")
|
||||
|
||||
val dir = new File(getRepositoryDir(LoginUser, repositoryName), ".git")
|
||||
val dir = getRepositoryDir(LoginUser, repositoryName)
|
||||
val repository = new RepositoryBuilder()
|
||||
.setGitDir(dir)
|
||||
.build()
|
||||
.setBare
|
||||
.build
|
||||
|
||||
repository.create
|
||||
|
||||
|
||||
if(description.nonEmpty){
|
||||
val tmpdir = getInitRepositoryDir(LoginUser, repositoryName)
|
||||
Git.cloneRepository.setURI(dir.toURI.toString).setDirectory(tmpdir).call
|
||||
|
||||
// Create README.md
|
||||
val readme = new File(dir.getParentFile, "README.md")
|
||||
val readme = new File(tmpdir, "README.md")
|
||||
FileUtils.writeStringToFile(readme,
|
||||
repositoryName + "\n===============\n\n" + description, "UTF-8")
|
||||
|
||||
val git = new Git(repository)
|
||||
val git = Git.open(tmpdir)
|
||||
git.add.addFilepattern("README.md").call
|
||||
git.commit.setMessage("Initial commit").call
|
||||
git.push.call
|
||||
|
||||
FileUtils.deleteDirectory(tmpdir)
|
||||
}
|
||||
|
||||
// redirect to the repository
|
||||
|
||||
Reference in New Issue
Block a user