repo.go 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743
  1. // Copyright 2014 The Gogs Authors. All rights reserved.
  2. // Use of this source code is governed by a MIT-style
  3. // license that can be found in the LICENSE file.
  4. package models
  5. import (
  6. "container/list"
  7. "errors"
  8. "fmt"
  9. "io/ioutil"
  10. "os"
  11. "os/exec"
  12. "path"
  13. "path/filepath"
  14. "regexp"
  15. "strings"
  16. "sync"
  17. "time"
  18. "unicode/utf8"
  19. "github.com/Unknwon/cae/zip"
  20. "github.com/Unknwon/com"
  21. "github.com/gogits/git"
  22. "github.com/gogits/gogs/modules/base"
  23. "github.com/gogits/gogs/modules/log"
  24. )
  25. var (
  26. ErrRepoAlreadyExist = errors.New("Repository already exist")
  27. ErrRepoNotExist = errors.New("Repository does not exist")
  28. ErrRepoFileNotExist = errors.New("Target Repo file does not exist")
  29. ErrRepoNameIllegal = errors.New("Repository name contains illegal characters")
  30. ErrRepoFileNotLoaded = fmt.Errorf("repo file not loaded")
  31. )
  32. var gitInitLocker = sync.Mutex{}
  33. var (
  34. LanguageIgns, Licenses []string
  35. )
  36. func LoadRepoConfig() {
  37. LanguageIgns = strings.Split(base.Cfg.MustValue("repository", "LANG_IGNS"), "|")
  38. Licenses = strings.Split(base.Cfg.MustValue("repository", "LICENSES"), "|")
  39. }
  40. func NewRepoContext() {
  41. zip.Verbose = false
  42. // Check if server has basic git setting.
  43. stdout, _, err := com.ExecCmd("git", "config", "--get", "user.name")
  44. if err != nil {
  45. fmt.Printf("repo.init(fail to get git user.name): %v", err)
  46. os.Exit(2)
  47. } else if len(stdout) == 0 {
  48. if _, _, err = com.ExecCmd("git", "config", "--global", "user.email", "gogitservice@gmail.com"); err != nil {
  49. fmt.Printf("repo.init(fail to set git user.email): %v", err)
  50. os.Exit(2)
  51. } else if _, _, err = com.ExecCmd("git", "config", "--global", "user.name", "Gogs"); err != nil {
  52. fmt.Printf("repo.init(fail to set git user.name): %v", err)
  53. os.Exit(2)
  54. }
  55. }
  56. // Initialize illegal patterns.
  57. for i := range illegalPatterns[1:] {
  58. pattern := ""
  59. for j := range illegalPatterns[i+1] {
  60. pattern += "[" + string(illegalPatterns[i+1][j]-32) + string(illegalPatterns[i+1][j]) + "]"
  61. }
  62. illegalPatterns[i+1] = pattern
  63. }
  64. }
  65. // Repository represents a git repository.
  66. type Repository struct {
  67. Id int64
  68. OwnerId int64 `xorm:"unique(s)"`
  69. ForkId int64
  70. LowerName string `xorm:"unique(s) index not null"`
  71. Name string `xorm:"index not null"`
  72. Description string
  73. Website string
  74. NumWatches int
  75. NumStars int
  76. NumForks int
  77. IsPrivate bool
  78. IsBare bool
  79. Created time.Time `xorm:"created"`
  80. Updated time.Time `xorm:"updated"`
  81. }
  82. // IsRepositoryExist returns true if the repository with given name under user has already existed.
  83. func IsRepositoryExist(user *User, repoName string) (bool, error) {
  84. repo := Repository{OwnerId: user.Id}
  85. has, err := orm.Where("lower_name = ?", strings.ToLower(repoName)).Get(&repo)
  86. if err != nil {
  87. return has, err
  88. }
  89. s, err := os.Stat(RepoPath(user.Name, repoName))
  90. if err != nil {
  91. return false, nil // Error simply means does not exist, but we don't want to show up.
  92. }
  93. return s.IsDir(), nil
  94. }
  95. var (
  96. // Define as all lower case!!
  97. illegalPatterns = []string{"[.][Gg][Ii][Tt]", "raw", "user", "help", "stars", "issues", "pulls", "commits", "admin", "repo", "template", "admin"}
  98. )
  99. // IsLegalName returns false if name contains illegal characters.
  100. func IsLegalName(repoName string) bool {
  101. for _, pattern := range illegalPatterns {
  102. has, _ := regexp.MatchString(pattern, repoName)
  103. if has {
  104. return false
  105. }
  106. }
  107. return true
  108. }
  109. // CreateRepository creates a repository for given user or orgnaziation.
  110. func CreateRepository(user *User, repoName, desc, repoLang, license string, private bool, initReadme bool) (*Repository, error) {
  111. if !IsLegalName(repoName) {
  112. return nil, ErrRepoNameIllegal
  113. }
  114. isExist, err := IsRepositoryExist(user, repoName)
  115. if err != nil {
  116. return nil, err
  117. } else if isExist {
  118. return nil, ErrRepoAlreadyExist
  119. }
  120. repo := &Repository{
  121. OwnerId: user.Id,
  122. Name: repoName,
  123. LowerName: strings.ToLower(repoName),
  124. Description: desc,
  125. IsPrivate: private,
  126. IsBare: repoLang == "" && license == "" && !initReadme,
  127. }
  128. repoPath := RepoPath(user.Name, repoName)
  129. if err = initRepository(repoPath, user, repo, initReadme, repoLang, license); err != nil {
  130. return nil, err
  131. }
  132. session := orm.NewSession()
  133. defer session.Close()
  134. session.Begin()
  135. if _, err = session.Insert(repo); err != nil {
  136. if err2 := os.RemoveAll(repoPath); err2 != nil {
  137. log.Error("repo.CreateRepository(repo): %v", err)
  138. return nil, errors.New(fmt.Sprintf(
  139. "delete repo directory %s/%s failed(1): %v", user.Name, repoName, err2))
  140. }
  141. session.Rollback()
  142. return nil, err
  143. }
  144. access := Access{
  145. UserName: user.Name,
  146. RepoName: repo.Name,
  147. Mode: AU_WRITABLE,
  148. }
  149. if _, err = session.Insert(&access); err != nil {
  150. session.Rollback()
  151. if err2 := os.RemoveAll(repoPath); err2 != nil {
  152. log.Error("repo.CreateRepository(access): %v", err)
  153. return nil, errors.New(fmt.Sprintf(
  154. "delete repo directory %s/%s failed(2): %v", user.Name, repoName, err2))
  155. }
  156. return nil, err
  157. }
  158. rawSql := "UPDATE `user` SET num_repos = num_repos + 1 WHERE id = ?"
  159. if _, err = session.Exec(rawSql, user.Id); err != nil {
  160. session.Rollback()
  161. if err2 := os.RemoveAll(repoPath); err2 != nil {
  162. log.Error("repo.CreateRepository(repo count): %v", err)
  163. return nil, errors.New(fmt.Sprintf(
  164. "delete repo directory %s/%s failed(3): %v", user.Name, repoName, err2))
  165. }
  166. return nil, err
  167. }
  168. if err = session.Commit(); err != nil {
  169. session.Rollback()
  170. if err2 := os.RemoveAll(repoPath); err2 != nil {
  171. log.Error("repo.CreateRepository(commit): %v", err)
  172. return nil, errors.New(fmt.Sprintf(
  173. "delete repo directory %s/%s failed(3): %v", user.Name, repoName, err2))
  174. }
  175. return nil, err
  176. }
  177. c := exec.Command("git", "update-server-info")
  178. c.Dir = repoPath
  179. err = c.Run()
  180. if err != nil {
  181. log.Error("repo.CreateRepository(exec update-server-info): %v", err)
  182. }
  183. return repo, NewRepoAction(user, repo)
  184. }
  185. // extractGitBareZip extracts git-bare.zip to repository path.
  186. func extractGitBareZip(repoPath string) error {
  187. z, err := zip.Open("conf/content/git-bare.zip")
  188. if err != nil {
  189. fmt.Println("shi?")
  190. return err
  191. }
  192. defer z.Close()
  193. return z.ExtractTo(repoPath)
  194. }
  195. // initRepoCommit temporarily changes with work directory.
  196. func initRepoCommit(tmpPath string, sig *git.Signature) error {
  197. gitInitLocker.Lock()
  198. defer gitInitLocker.Unlock()
  199. // Change work directory.
  200. curPath, err := os.Getwd()
  201. if err != nil {
  202. return err
  203. } else if err = os.Chdir(tmpPath); err != nil {
  204. return err
  205. }
  206. defer os.Chdir(curPath)
  207. var stderr string
  208. if _, stderr, err = com.ExecCmd("git", "add", "--all"); err != nil {
  209. return err
  210. }
  211. log.Info("stderr(1): %s", stderr)
  212. if _, stderr, err = com.ExecCmd("git", "commit", fmt.Sprintf("--author='%s <%s>'", sig.Name, sig.Email),
  213. "-m", "Init commit"); err != nil {
  214. return err
  215. }
  216. log.Info("stderr(2): %s", stderr)
  217. if _, stderr, err = com.ExecCmd("git", "push", "origin", "master"); err != nil {
  218. return err
  219. }
  220. log.Info("stderr(3): %s", stderr)
  221. return nil
  222. }
  223. // InitRepository initializes README and .gitignore if needed.
  224. func initRepository(f string, user *User, repo *Repository, initReadme bool, repoLang, license string) error {
  225. repoPath := RepoPath(user.Name, repo.Name)
  226. // Create bare new repository.
  227. if err := extractGitBareZip(repoPath); err != nil {
  228. return err
  229. }
  230. // hook/post-update
  231. pu, err := os.OpenFile(filepath.Join(repoPath, "hooks", "update"), os.O_CREATE|os.O_WRONLY, 0777)
  232. if err != nil {
  233. return err
  234. }
  235. defer pu.Close()
  236. // TODO: Windows .bat
  237. if _, err = pu.WriteString(fmt.Sprintf("#!/usr/bin/env bash\n%s update $1 $2 $3\n", appPath)); err != nil {
  238. return err
  239. }
  240. /*// hook/post-update
  241. pu2, err := os.OpenFile(filepath.Join(repoPath, "hooks", "post-receive"), os.O_CREATE|os.O_WRONLY, 0777)
  242. if err != nil {
  243. return err
  244. }
  245. defer pu2.Close()
  246. // TODO: Windows .bat
  247. if _, err = pu2.WriteString("#!/usr/bin/env bash\ngit update-server-info\n"); err != nil {
  248. return err
  249. }
  250. */
  251. // Initialize repository according to user's choice.
  252. fileName := map[string]string{}
  253. if initReadme {
  254. fileName["readme"] = "README.md"
  255. }
  256. if repoLang != "" {
  257. fileName["gitign"] = ".gitignore"
  258. }
  259. if license != "" {
  260. fileName["license"] = "LICENSE"
  261. }
  262. // Clone to temprory path and do the init commit.
  263. tmpDir := filepath.Join(os.TempDir(), fmt.Sprintf("%d", time.Now().Nanosecond()))
  264. os.MkdirAll(tmpDir, os.ModePerm)
  265. if _, _, err := com.ExecCmd("git", "clone", repoPath, tmpDir); err != nil {
  266. return err
  267. }
  268. // README
  269. if initReadme {
  270. defaultReadme := repo.Name + "\n" + strings.Repeat("=",
  271. utf8.RuneCountInString(repo.Name)) + "\n\n" + repo.Description
  272. if err := ioutil.WriteFile(filepath.Join(tmpDir, fileName["readme"]),
  273. []byte(defaultReadme), 0644); err != nil {
  274. return err
  275. }
  276. }
  277. // .gitignore
  278. if repoLang != "" {
  279. filePath := "conf/gitignore/" + repoLang
  280. if com.IsFile(filePath) {
  281. if _, err := com.Copy(filePath,
  282. filepath.Join(tmpDir, fileName["gitign"])); err != nil {
  283. return err
  284. }
  285. }
  286. }
  287. // LICENSE
  288. if license != "" {
  289. filePath := "conf/license/" + license
  290. if com.IsFile(filePath) {
  291. if _, err := com.Copy(filePath,
  292. filepath.Join(tmpDir, fileName["license"])); err != nil {
  293. return err
  294. }
  295. }
  296. }
  297. if len(fileName) == 0 {
  298. return nil
  299. }
  300. // Apply changes and commit.
  301. if err := initRepoCommit(tmpDir, user.NewGitSig()); err != nil {
  302. return err
  303. }
  304. return nil
  305. }
  306. // UserRepo reporesents a repository with user name.
  307. type UserRepo struct {
  308. *Repository
  309. UserName string
  310. }
  311. // GetRepos returns given number of repository objects with offset.
  312. func GetRepos(num, offset int) ([]UserRepo, error) {
  313. repos := make([]Repository, 0, num)
  314. if err := orm.Limit(num, offset).Asc("id").Find(&repos); err != nil {
  315. return nil, err
  316. }
  317. urepos := make([]UserRepo, len(repos))
  318. for i := range repos {
  319. urepos[i].Repository = &repos[i]
  320. u := new(User)
  321. has, err := orm.Id(urepos[i].Repository.OwnerId).Get(u)
  322. if err != nil {
  323. return nil, err
  324. } else if !has {
  325. return nil, ErrUserNotExist
  326. }
  327. urepos[i].UserName = u.Name
  328. }
  329. return urepos, nil
  330. }
  331. func RepoPath(userName, repoName string) string {
  332. return filepath.Join(UserPath(userName), repoName+".git")
  333. }
  334. func UpdateRepository(repo *Repository) error {
  335. if len(repo.Description) > 255 {
  336. repo.Description = repo.Description[:255]
  337. }
  338. if len(repo.Website) > 255 {
  339. repo.Website = repo.Website[:255]
  340. }
  341. _, err := orm.Id(repo.Id).AllCols().Update(repo)
  342. return err
  343. }
  344. // DeleteRepository deletes a repository for a user or orgnaztion.
  345. func DeleteRepository(userId, repoId int64, userName string) (err error) {
  346. repo := &Repository{Id: repoId, OwnerId: userId}
  347. has, err := orm.Get(repo)
  348. if err != nil {
  349. return err
  350. } else if !has {
  351. return ErrRepoNotExist
  352. }
  353. session := orm.NewSession()
  354. if err = session.Begin(); err != nil {
  355. return err
  356. }
  357. if _, err = session.Delete(&Repository{Id: repoId}); err != nil {
  358. session.Rollback()
  359. return err
  360. }
  361. if _, err := session.Delete(&Access{UserName: userName, RepoName: repo.Name}); err != nil {
  362. session.Rollback()
  363. return err
  364. }
  365. rawSql := "UPDATE `user` SET num_repos = num_repos - 1 WHERE id = ?"
  366. if _, err = session.Exec(rawSql, userId); err != nil {
  367. session.Rollback()
  368. return err
  369. }
  370. if _, err = session.Delete(&Watch{RepoId: repoId}); err != nil {
  371. session.Rollback()
  372. return err
  373. }
  374. if err = session.Commit(); err != nil {
  375. session.Rollback()
  376. return err
  377. }
  378. if err = os.RemoveAll(RepoPath(userName, repo.Name)); err != nil {
  379. // TODO: log and delete manully
  380. log.Error("delete repo %s/%s failed: %v", userName, repo.Name, err)
  381. return err
  382. }
  383. return nil
  384. }
  385. // GetRepositoryByName returns the repository by given name under user if exists.
  386. func GetRepositoryByName(userId int64, repoName string) (*Repository, error) {
  387. repo := &Repository{
  388. OwnerId: userId,
  389. LowerName: strings.ToLower(repoName),
  390. }
  391. has, err := orm.Get(repo)
  392. if err != nil {
  393. return nil, err
  394. } else if !has {
  395. return nil, ErrRepoNotExist
  396. }
  397. return repo, err
  398. }
  399. // GetRepositoryById returns the repository by given id if exists.
  400. func GetRepositoryById(id int64) (repo *Repository, err error) {
  401. has, err := orm.Id(id).Get(repo)
  402. if err != nil {
  403. return nil, err
  404. } else if !has {
  405. return nil, ErrRepoNotExist
  406. }
  407. return repo, err
  408. }
  409. // GetRepositories returns the list of repositories of given user.
  410. func GetRepositories(user *User) ([]Repository, error) {
  411. repos := make([]Repository, 0, 10)
  412. err := orm.Desc("updated").Find(&repos, &Repository{OwnerId: user.Id})
  413. return repos, err
  414. }
  415. func GetRepositoryCount(user *User) (int64, error) {
  416. return orm.Count(&Repository{OwnerId: user.Id})
  417. }
  418. // Watch is connection request for receiving repository notifycation.
  419. type Watch struct {
  420. Id int64
  421. RepoId int64 `xorm:"UNIQUE(watch)"`
  422. UserId int64 `xorm:"UNIQUE(watch)"`
  423. }
  424. // Watch or unwatch repository.
  425. func WatchRepo(userId, repoId int64, watch bool) (err error) {
  426. if watch {
  427. if _, err = orm.Insert(&Watch{RepoId: repoId, UserId: userId}); err != nil {
  428. return err
  429. }
  430. rawSql := "UPDATE `repository` SET num_watches = num_watches + 1 WHERE id = ?"
  431. _, err = orm.Exec(rawSql, repoId)
  432. } else {
  433. if _, err = orm.Delete(&Watch{0, repoId, userId}); err != nil {
  434. return err
  435. }
  436. rawSql := "UPDATE `repository` SET num_watches = num_watches - 1 WHERE id = ?"
  437. _, err = orm.Exec(rawSql, repoId)
  438. }
  439. return err
  440. }
  441. // GetWatches returns all watches of given repository.
  442. func GetWatches(repoId int64) ([]Watch, error) {
  443. watches := make([]Watch, 0, 10)
  444. err := orm.Find(&watches, &Watch{RepoId: repoId})
  445. return watches, err
  446. }
  447. // IsWatching checks if user has watched given repository.
  448. func IsWatching(userId, repoId int64) bool {
  449. has, _ := orm.Get(&Watch{0, repoId, userId})
  450. return has
  451. }
  452. func StarReposiory(user *User, repoName string) error {
  453. return nil
  454. }
  455. func UnStarRepository() {
  456. }
  457. func WatchRepository() {
  458. }
  459. func UnWatchRepository() {
  460. }
  461. func ForkRepository(reposName string, userId int64) {
  462. }
  463. // RepoFile represents a file object in git repository.
  464. type RepoFile struct {
  465. *git.TreeEntry
  466. Path string
  467. Size int64
  468. Repo *git.Repository
  469. Commit *git.Commit
  470. }
  471. // LookupBlob returns the content of an object.
  472. func (file *RepoFile) LookupBlob() (*git.Blob, error) {
  473. if file.Repo == nil {
  474. return nil, ErrRepoFileNotLoaded
  475. }
  476. return file.Repo.LookupBlob(file.Id)
  477. }
  478. // GetBranches returns all branches of given repository.
  479. func GetBranches(userName, reposName string) ([]string, error) {
  480. repo, err := git.OpenRepository(RepoPath(userName, reposName))
  481. if err != nil {
  482. return nil, err
  483. }
  484. refs, err := repo.AllReferences()
  485. if err != nil {
  486. return nil, err
  487. }
  488. brs := make([]string, len(refs))
  489. for i, ref := range refs {
  490. brs[i] = ref.Name
  491. }
  492. return brs, nil
  493. }
  494. func GetTargetFile(userName, reposName, branchName, commitId, rpath string) (*RepoFile, error) {
  495. repo, err := git.OpenRepository(RepoPath(userName, reposName))
  496. if err != nil {
  497. return nil, err
  498. }
  499. commit, err := repo.GetCommit(branchName, commitId)
  500. if err != nil {
  501. return nil, err
  502. }
  503. parts := strings.Split(path.Clean(rpath), "/")
  504. var entry *git.TreeEntry
  505. tree := commit.Tree
  506. for i, part := range parts {
  507. if i == len(parts)-1 {
  508. entry = tree.EntryByName(part)
  509. if entry == nil {
  510. return nil, ErrRepoFileNotExist
  511. }
  512. } else {
  513. tree, err = repo.SubTree(tree, part)
  514. if err != nil {
  515. return nil, err
  516. }
  517. }
  518. }
  519. size, err := repo.ObjectSize(entry.Id)
  520. if err != nil {
  521. return nil, err
  522. }
  523. repoFile := &RepoFile{
  524. entry,
  525. rpath,
  526. size,
  527. repo,
  528. commit,
  529. }
  530. return repoFile, nil
  531. }
  532. // GetReposFiles returns a list of file object in given directory of repository.
  533. func GetReposFiles(userName, reposName, branchName, commitId, rpath string) ([]*RepoFile, error) {
  534. repo, err := git.OpenRepository(RepoPath(userName, reposName))
  535. if err != nil {
  536. return nil, err
  537. }
  538. commit, err := repo.GetCommit(branchName, commitId)
  539. if err != nil {
  540. return nil, err
  541. }
  542. var repodirs []*RepoFile
  543. var repofiles []*RepoFile
  544. commit.Tree.Walk(func(dirname string, entry *git.TreeEntry) int {
  545. if dirname == rpath {
  546. // TODO: size get method shoule be improved
  547. size, err := repo.ObjectSize(entry.Id)
  548. if err != nil {
  549. return 0
  550. }
  551. var cm = commit
  552. var i int
  553. for {
  554. i = i + 1
  555. //fmt.Println(".....", i, cm.Id(), cm.ParentCount())
  556. if cm.ParentCount() == 0 {
  557. break
  558. } else if cm.ParentCount() == 1 {
  559. pt, _ := repo.SubTree(cm.Parent(0).Tree, dirname)
  560. if pt == nil {
  561. break
  562. }
  563. pEntry := pt.EntryByName(entry.Name)
  564. if pEntry == nil || !pEntry.Id.Equal(entry.Id) {
  565. break
  566. } else {
  567. cm = cm.Parent(0)
  568. }
  569. } else {
  570. var emptyCnt = 0
  571. var sameIdcnt = 0
  572. var lastSameCm *git.Commit
  573. //fmt.Println(".....", cm.ParentCount())
  574. for i := 0; i < cm.ParentCount(); i++ {
  575. //fmt.Println("parent", i, cm.Parent(i).Id())
  576. p := cm.Parent(i)
  577. pt, _ := repo.SubTree(p.Tree, dirname)
  578. var pEntry *git.TreeEntry
  579. if pt != nil {
  580. pEntry = pt.EntryByName(entry.Name)
  581. }
  582. //fmt.Println("pEntry", pEntry)
  583. if pEntry == nil {
  584. emptyCnt = emptyCnt + 1
  585. if emptyCnt+sameIdcnt == cm.ParentCount() {
  586. if lastSameCm == nil {
  587. goto loop
  588. } else {
  589. cm = lastSameCm
  590. break
  591. }
  592. }
  593. } else {
  594. //fmt.Println(i, "pEntry", pEntry.Id, "entry", entry.Id)
  595. if !pEntry.Id.Equal(entry.Id) {
  596. goto loop
  597. } else {
  598. lastSameCm = cm.Parent(i)
  599. sameIdcnt = sameIdcnt + 1
  600. if emptyCnt+sameIdcnt == cm.ParentCount() {
  601. // TODO: now follow the first parent commit?
  602. cm = lastSameCm
  603. //fmt.Println("sameId...")
  604. break
  605. }
  606. }
  607. }
  608. }
  609. }
  610. }
  611. loop:
  612. rp := &RepoFile{
  613. entry,
  614. path.Join(dirname, entry.Name),
  615. size,
  616. repo,
  617. cm,
  618. }
  619. if entry.IsFile() {
  620. repofiles = append(repofiles, rp)
  621. } else if entry.IsDir() {
  622. repodirs = append(repodirs, rp)
  623. }
  624. }
  625. return 0
  626. })
  627. return append(repodirs, repofiles...), nil
  628. }
  629. func GetCommit(userName, repoName, branchname, commitid string) (*git.Commit, error) {
  630. repo, err := git.OpenRepository(RepoPath(userName, repoName))
  631. if err != nil {
  632. return nil, err
  633. }
  634. return repo.GetCommit(branchname, commitid)
  635. }
  636. // GetCommits returns all commits of given branch of repository.
  637. func GetCommits(userName, reposName, branchname string) (*list.List, error) {
  638. repo, err := git.OpenRepository(RepoPath(userName, reposName))
  639. if err != nil {
  640. return nil, err
  641. }
  642. r, err := repo.LookupReference(fmt.Sprintf("refs/heads/%s", branchname))
  643. if err != nil {
  644. return nil, err
  645. }
  646. return r.AllCommits()
  647. }