repo.go 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020
  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. "errors"
  7. "fmt"
  8. "html"
  9. "html/template"
  10. "io/ioutil"
  11. "os"
  12. "os/exec"
  13. "path"
  14. "path/filepath"
  15. "regexp"
  16. "sort"
  17. "strings"
  18. "time"
  19. "unicode/utf8"
  20. "github.com/Unknwon/cae/zip"
  21. "github.com/Unknwon/com"
  22. "github.com/gogits/gogs/modules/git"
  23. "github.com/gogits/gogs/modules/log"
  24. "github.com/gogits/gogs/modules/process"
  25. "github.com/gogits/gogs/modules/setting"
  26. )
  27. const (
  28. TPL_UPDATE_HOOK = "#!/usr/bin/env %s\n%s update $1 $2 $3\n"
  29. )
  30. var (
  31. ErrRepoAlreadyExist = errors.New("Repository already exist")
  32. ErrRepoNotExist = errors.New("Repository does not exist")
  33. ErrRepoFileNotExist = errors.New("Repository file does not exist")
  34. ErrRepoNameIllegal = errors.New("Repository name contains illegal characters")
  35. ErrRepoFileNotLoaded = errors.New("Repository file not loaded")
  36. ErrMirrorNotExist = errors.New("Mirror does not exist")
  37. ErrInvalidReference = errors.New("Invalid reference specified")
  38. )
  39. var (
  40. Gitignores, Licenses []string
  41. )
  42. var (
  43. DescriptionPattern = regexp.MustCompile(`https?://\S+`)
  44. )
  45. func LoadRepoConfig() {
  46. // Load .gitignore and license files.
  47. types := []string{"gitignore", "license"}
  48. typeFiles := make([][]string, 2)
  49. for i, t := range types {
  50. files, err := com.StatDir(path.Join("conf", t))
  51. if err != nil {
  52. log.Fatal(4, "Fail to get %s files: %v", t, err)
  53. }
  54. customPath := path.Join(setting.CustomPath, "conf", t)
  55. if com.IsDir(customPath) {
  56. customFiles, err := com.StatDir(customPath)
  57. if err != nil {
  58. log.Fatal(4, "Fail to get custom %s files: %v", t, err)
  59. }
  60. for _, f := range customFiles {
  61. if !com.IsSliceContainsStr(files, f) {
  62. files = append(files, f)
  63. }
  64. }
  65. }
  66. typeFiles[i] = files
  67. }
  68. Gitignores = typeFiles[0]
  69. Licenses = typeFiles[1]
  70. sort.Strings(Gitignores)
  71. sort.Strings(Licenses)
  72. }
  73. func NewRepoContext() {
  74. zip.Verbose = false
  75. // Check Git installation.
  76. if _, err := exec.LookPath("git"); err != nil {
  77. log.Fatal(4, "Fail to test 'git' command: %v (forgotten install?)", err)
  78. }
  79. // Check Git version.
  80. ver, err := git.GetVersion()
  81. if err != nil {
  82. log.Fatal(4, "Fail to get Git version: %v", err)
  83. }
  84. if ver.Major < 2 && ver.Minor < 8 {
  85. log.Fatal(4, "Gogs requires Git version greater or equal to 1.8.0")
  86. }
  87. // Check if server has basic git setting.
  88. stdout, stderr, err := process.Exec("NewRepoContext(get setting)", "git", "config", "--get", "user.name")
  89. if err != nil {
  90. log.Fatal(4, "Fail to get git user.name: %s", stderr)
  91. } else if err != nil || len(strings.TrimSpace(stdout)) == 0 {
  92. if _, stderr, err = process.Exec("NewRepoContext(set email)", "git", "config", "--global", "user.email", "gogitservice@gmail.com"); err != nil {
  93. log.Fatal(4, "Fail to set git user.email: %s", stderr)
  94. } else if _, stderr, err = process.Exec("NewRepoContext(set name)", "git", "config", "--global", "user.name", "Gogs"); err != nil {
  95. log.Fatal(4, "Fail to set git user.name: %s", stderr)
  96. }
  97. }
  98. }
  99. // Repository represents a git repository.
  100. type Repository struct {
  101. Id int64
  102. OwnerId int64 `xorm:"UNIQUE(s)"`
  103. Owner *User `xorm:"-"`
  104. ForkId int64
  105. LowerName string `xorm:"UNIQUE(s) INDEX NOT NULL"`
  106. Name string `xorm:"INDEX NOT NULL"`
  107. Description string
  108. Website string
  109. NumWatches int
  110. NumStars int
  111. NumForks int
  112. NumIssues int
  113. NumClosedIssues int
  114. NumOpenIssues int `xorm:"-"`
  115. NumPulls int
  116. NumClosedPulls int
  117. NumOpenPulls int `xorm:"-"`
  118. NumMilestones int `xorm:"NOT NULL DEFAULT 0"`
  119. NumClosedMilestones int `xorm:"NOT NULL DEFAULT 0"`
  120. NumOpenMilestones int `xorm:"-"`
  121. NumTags int `xorm:"-"`
  122. IsPrivate bool
  123. IsMirror bool
  124. IsFork bool `xorm:"NOT NULL DEFAULT false"`
  125. IsBare bool
  126. IsGoget bool
  127. DefaultBranch string
  128. Created time.Time `xorm:"CREATED"`
  129. Updated time.Time `xorm:"UPDATED"`
  130. }
  131. func (repo *Repository) GetOwner() (err error) {
  132. repo.Owner, err = GetUserById(repo.OwnerId)
  133. return err
  134. }
  135. // DescriptionHtml does special handles to description and return HTML string.
  136. func (repo *Repository) DescriptionHtml() template.HTML {
  137. sanitize := func(s string) string {
  138. // TODO(nuss-justin): Improve sanitization. Strip all tags?
  139. ss := html.EscapeString(s)
  140. return fmt.Sprintf(`<a href="%s" target="_blank">%s</a>`, ss, ss)
  141. }
  142. return template.HTML(DescriptionPattern.ReplaceAllStringFunc(repo.Description, sanitize))
  143. }
  144. // IsRepositoryExist returns true if the repository with given name under user has already existed.
  145. func IsRepositoryExist(u *User, repoName string) (bool, error) {
  146. repo := Repository{OwnerId: u.Id}
  147. has, err := x.Where("lower_name = ?", strings.ToLower(repoName)).Get(&repo)
  148. if err != nil {
  149. return has, err
  150. } else if !has {
  151. return false, nil
  152. }
  153. return com.IsDir(RepoPath(u.Name, repoName)), nil
  154. }
  155. var (
  156. illegalEquals = []string{"debug", "raw", "install", "api", "avatar", "user", "org", "help", "stars", "issues", "pulls", "commits", "repo", "template", "admin", "new"}
  157. illegalSuffixs = []string{".git"}
  158. )
  159. // IsLegalName returns false if name contains illegal characters.
  160. func IsLegalName(repoName string) bool {
  161. repoName = strings.ToLower(repoName)
  162. for _, char := range illegalEquals {
  163. if repoName == char {
  164. return false
  165. }
  166. }
  167. for _, char := range illegalSuffixs {
  168. if strings.HasSuffix(repoName, char) {
  169. return false
  170. }
  171. }
  172. return true
  173. }
  174. // Mirror represents a mirror information of repository.
  175. type Mirror struct {
  176. Id int64
  177. RepoId int64
  178. RepoName string // <user name>/<repo name>
  179. Interval int // Hour.
  180. Updated time.Time `xorm:"UPDATED"`
  181. NextUpdate time.Time
  182. }
  183. // MirrorRepository creates a mirror repository from source.
  184. func MirrorRepository(repoId int64, userName, repoName, repoPath, url string) error {
  185. _, stderr, err := process.ExecTimeout(10*time.Minute,
  186. fmt.Sprintf("MirrorRepository: %s/%s", userName, repoName),
  187. "git", "clone", "--mirror", url, repoPath)
  188. if err != nil {
  189. return errors.New("git clone --mirror: " + stderr)
  190. }
  191. if _, err = x.InsertOne(&Mirror{
  192. RepoId: repoId,
  193. RepoName: strings.ToLower(userName + "/" + repoName),
  194. Interval: 24,
  195. NextUpdate: time.Now().Add(24 * time.Hour),
  196. }); err != nil {
  197. return err
  198. }
  199. // return git.UnpackRefs(repoPath)
  200. return nil
  201. }
  202. func GetMirror(repoId int64) (*Mirror, error) {
  203. m := &Mirror{RepoId: repoId}
  204. has, err := x.Get(m)
  205. if err != nil {
  206. return nil, err
  207. } else if !has {
  208. return nil, ErrMirrorNotExist
  209. }
  210. return m, nil
  211. }
  212. func UpdateMirror(m *Mirror) error {
  213. _, err := x.Id(m.Id).Update(m)
  214. return err
  215. }
  216. // MirrorUpdate checks and updates mirror repositories.
  217. func MirrorUpdate() {
  218. if err := x.Iterate(new(Mirror), func(idx int, bean interface{}) error {
  219. m := bean.(*Mirror)
  220. if m.NextUpdate.After(time.Now()) {
  221. return nil
  222. }
  223. repoPath := filepath.Join(setting.RepoRootPath, m.RepoName+".git")
  224. if _, stderr, err := process.ExecDir(10*time.Minute,
  225. repoPath, fmt.Sprintf("MirrorUpdate: %s", repoPath),
  226. "git", "remote", "update"); err != nil {
  227. return errors.New("git remote update: " + stderr)
  228. } // else if err = git.UnpackRefs(repoPath); err != nil {
  229. // return errors.New("UnpackRefs: " + err.Error())
  230. // }
  231. m.NextUpdate = time.Now().Add(time.Duration(m.Interval) * time.Hour)
  232. return UpdateMirror(m)
  233. }); err != nil {
  234. log.Error(4, "repo.MirrorUpdate: %v", err)
  235. }
  236. }
  237. // MigrateRepository migrates a existing repository from other project hosting.
  238. func MigrateRepository(u *User, name, desc string, private, mirror bool, url string) (*Repository, error) {
  239. repo, err := CreateRepository(u, name, desc, "", "", private, mirror, false)
  240. if err != nil {
  241. return nil, err
  242. }
  243. // Clone to temprory path and do the init commit.
  244. tmpDir := filepath.Join(os.TempDir(), fmt.Sprintf("%d", time.Now().Nanosecond()))
  245. os.MkdirAll(tmpDir, os.ModePerm)
  246. repoPath := RepoPath(u.Name, name)
  247. repo.IsBare = false
  248. if mirror {
  249. if err = MirrorRepository(repo.Id, u.Name, repo.Name, repoPath, url); err != nil {
  250. return repo, err
  251. }
  252. repo.IsMirror = true
  253. return repo, UpdateRepository(repo)
  254. }
  255. // Clone from local repository.
  256. _, stderr, err := process.ExecTimeout(10*time.Minute,
  257. fmt.Sprintf("MigrateRepository(git clone): %s", repoPath),
  258. "git", "clone", repoPath, tmpDir)
  259. if err != nil {
  260. return repo, errors.New("git clone: " + stderr)
  261. }
  262. // Pull data from source.
  263. if _, stderr, err = process.ExecDir(3*time.Minute,
  264. tmpDir, fmt.Sprintf("MigrateRepository(git pull): %s", repoPath),
  265. "git", "pull", url); err != nil {
  266. return repo, errors.New("git pull: " + stderr)
  267. }
  268. // Push data to local repository.
  269. if _, stderr, err = process.ExecDir(3*time.Minute,
  270. tmpDir, fmt.Sprintf("MigrateRepository(git push): %s", repoPath),
  271. "git", "push", "origin", "master"); err != nil {
  272. return repo, errors.New("git push: " + stderr)
  273. }
  274. return repo, UpdateRepository(repo)
  275. }
  276. // extractGitBareZip extracts git-bare.zip to repository path.
  277. func extractGitBareZip(repoPath string) error {
  278. z, err := zip.Open(path.Join(setting.ConfRootPath, "content/git-bare.zip"))
  279. if err != nil {
  280. return err
  281. }
  282. defer z.Close()
  283. return z.ExtractTo(repoPath)
  284. }
  285. // initRepoCommit temporarily changes with work directory.
  286. func initRepoCommit(tmpPath string, sig *git.Signature) (err error) {
  287. var stderr string
  288. if _, stderr, err = process.ExecDir(-1,
  289. tmpPath, fmt.Sprintf("initRepoCommit(git add): %s", tmpPath),
  290. "git", "add", "--all"); err != nil {
  291. return errors.New("git add: " + stderr)
  292. }
  293. if _, stderr, err = process.ExecDir(-1,
  294. tmpPath, fmt.Sprintf("initRepoCommit(git commit): %s", tmpPath),
  295. "git", "commit", fmt.Sprintf("--author='%s <%s>'", sig.Name, sig.Email),
  296. "-m", "Init commit"); err != nil {
  297. return errors.New("git commit: " + stderr)
  298. }
  299. if _, stderr, err = process.ExecDir(-1,
  300. tmpPath, fmt.Sprintf("initRepoCommit(git push): %s", tmpPath),
  301. "git", "push", "origin", "master"); err != nil {
  302. return errors.New("git push: " + stderr)
  303. }
  304. return nil
  305. }
  306. func createHookUpdate(hookPath, content string) error {
  307. pu, err := os.OpenFile(hookPath, os.O_CREATE|os.O_WRONLY, 0777)
  308. if err != nil {
  309. return err
  310. }
  311. defer pu.Close()
  312. _, err = pu.WriteString(content)
  313. return err
  314. }
  315. // InitRepository initializes README and .gitignore if needed.
  316. func initRepository(f string, u *User, repo *Repository, initReadme bool, repoLang, license string) error {
  317. repoPath := RepoPath(u.Name, repo.Name)
  318. // Create bare new repository.
  319. if err := extractGitBareZip(repoPath); err != nil {
  320. return err
  321. }
  322. // hook/post-update
  323. if err := createHookUpdate(filepath.Join(repoPath, "hooks", "update"),
  324. fmt.Sprintf(TPL_UPDATE_HOOK, setting.ScriptType, "\""+appPath+"\"")); err != nil {
  325. return err
  326. }
  327. // Initialize repository according to user's choice.
  328. fileName := map[string]string{}
  329. if initReadme {
  330. fileName["readme"] = "README.md"
  331. }
  332. if repoLang != "" {
  333. fileName["gitign"] = ".gitignore"
  334. }
  335. if license != "" {
  336. fileName["license"] = "LICENSE"
  337. }
  338. // Clone to temprory path and do the init commit.
  339. tmpDir := filepath.Join(os.TempDir(), com.ToStr(time.Now().Nanosecond()))
  340. os.MkdirAll(tmpDir, os.ModePerm)
  341. _, stderr, err := process.Exec(
  342. fmt.Sprintf("initRepository(git clone): %s", repoPath),
  343. "git", "clone", repoPath, tmpDir)
  344. if err != nil {
  345. return errors.New("initRepository(git clone): " + stderr)
  346. }
  347. // README
  348. if initReadme {
  349. defaultReadme := repo.Name + "\n" + strings.Repeat("=",
  350. utf8.RuneCountInString(repo.Name)) + "\n\n" + repo.Description
  351. if err := ioutil.WriteFile(filepath.Join(tmpDir, fileName["readme"]),
  352. []byte(defaultReadme), 0644); err != nil {
  353. return err
  354. }
  355. }
  356. // .gitignore
  357. filePath := "conf/gitignore/" + repoLang
  358. if com.IsFile(filePath) {
  359. targetPath := path.Join(tmpDir, fileName["gitign"])
  360. if com.IsFile(filePath) {
  361. if err = com.Copy(filePath, targetPath); err != nil {
  362. return err
  363. }
  364. } else {
  365. // Check custom files.
  366. filePath = path.Join(setting.CustomPath, "conf/gitignore", repoLang)
  367. if com.IsFile(filePath) {
  368. if err := com.Copy(filePath, targetPath); err != nil {
  369. return err
  370. }
  371. }
  372. }
  373. } else {
  374. delete(fileName, "gitign")
  375. }
  376. // LICENSE
  377. filePath = "conf/license/" + license
  378. if com.IsFile(filePath) {
  379. targetPath := path.Join(tmpDir, fileName["license"])
  380. if com.IsFile(filePath) {
  381. if err = com.Copy(filePath, targetPath); err != nil {
  382. return err
  383. }
  384. } else {
  385. // Check custom files.
  386. filePath = path.Join(setting.CustomPath, "conf/license", license)
  387. if com.IsFile(filePath) {
  388. if err := com.Copy(filePath, targetPath); err != nil {
  389. return err
  390. }
  391. }
  392. }
  393. } else {
  394. delete(fileName, "license")
  395. }
  396. if len(fileName) == 0 {
  397. return nil
  398. }
  399. // Apply changes and commit.
  400. return initRepoCommit(tmpDir, u.NewGitSig())
  401. }
  402. // CreateRepository creates a repository for given user or organization.
  403. func CreateRepository(u *User, name, desc, lang, license string, private, mirror, initReadme bool) (*Repository, error) {
  404. if !IsLegalName(name) {
  405. return nil, ErrRepoNameIllegal
  406. }
  407. isExist, err := IsRepositoryExist(u, name)
  408. if err != nil {
  409. return nil, err
  410. } else if isExist {
  411. return nil, ErrRepoAlreadyExist
  412. }
  413. sess := x.NewSession()
  414. defer sess.Close()
  415. if err = sess.Begin(); err != nil {
  416. return nil, err
  417. }
  418. repo := &Repository{
  419. OwnerId: u.Id,
  420. Owner: u,
  421. Name: name,
  422. LowerName: strings.ToLower(name),
  423. Description: desc,
  424. IsPrivate: private,
  425. IsBare: lang == "" && license == "" && !initReadme,
  426. }
  427. if !repo.IsBare {
  428. repo.DefaultBranch = "master"
  429. }
  430. if _, err = sess.Insert(repo); err != nil {
  431. sess.Rollback()
  432. return nil, err
  433. }
  434. var t *Team // Owner team.
  435. mode := WRITABLE
  436. if mirror {
  437. mode = READABLE
  438. }
  439. access := &Access{
  440. UserName: u.LowerName,
  441. RepoName: strings.ToLower(path.Join(u.Name, repo.Name)),
  442. Mode: mode,
  443. }
  444. // Give access to all members in owner team.
  445. if u.IsOrganization() {
  446. t, err = u.GetOwnerTeam()
  447. if err != nil {
  448. sess.Rollback()
  449. return nil, err
  450. }
  451. us, err := GetTeamMembers(u.Id, t.Id)
  452. if err != nil {
  453. sess.Rollback()
  454. return nil, err
  455. }
  456. for _, u := range us {
  457. access.UserName = u.LowerName
  458. if _, err = sess.Insert(access); err != nil {
  459. sess.Rollback()
  460. return nil, err
  461. }
  462. }
  463. } else {
  464. if _, err = sess.Insert(access); err != nil {
  465. sess.Rollback()
  466. return nil, err
  467. }
  468. }
  469. if _, err = sess.Exec(
  470. "UPDATE `user` SET num_repos = num_repos + 1 WHERE id = ?", u.Id); err != nil {
  471. sess.Rollback()
  472. return nil, err
  473. }
  474. // Update owner team info and count.
  475. if u.IsOrganization() {
  476. t.RepoIds += "$" + com.ToStr(repo.Id) + "|"
  477. t.NumRepos++
  478. if _, err = sess.Id(t.Id).AllCols().Update(t); err != nil {
  479. sess.Rollback()
  480. return nil, err
  481. }
  482. }
  483. if err = sess.Commit(); err != nil {
  484. return nil, err
  485. }
  486. if u.IsOrganization() {
  487. ous, err := GetOrgUsersByOrgId(u.Id)
  488. if err != nil {
  489. log.Error(4, "repo.CreateRepository(GetOrgUsersByOrgId): %v", err)
  490. } else {
  491. for _, ou := range ous {
  492. if err = WatchRepo(ou.Uid, repo.Id, true); err != nil {
  493. log.Error(4, "repo.CreateRepository(WatchRepo): %v", err)
  494. }
  495. }
  496. }
  497. }
  498. if err = WatchRepo(u.Id, repo.Id, true); err != nil {
  499. log.Error(4, "WatchRepo2: %v", err)
  500. }
  501. if err = NewRepoAction(u, repo); err != nil {
  502. log.Error(4, "NewRepoAction: %v", err)
  503. }
  504. // No need for init mirror.
  505. if mirror {
  506. return repo, nil
  507. }
  508. repoPath := RepoPath(u.Name, repo.Name)
  509. if err = initRepository(repoPath, u, repo, initReadme, lang, license); err != nil {
  510. if err2 := os.RemoveAll(repoPath); err2 != nil {
  511. log.Error(4, "initRepository: %v", err)
  512. return nil, fmt.Errorf(
  513. "delete repo directory %s/%s failed(2): %v", u.Name, repo.Name, err2)
  514. }
  515. return nil, fmt.Errorf("initRepository: %v", err)
  516. }
  517. _, stderr, err := process.ExecDir(-1,
  518. repoPath, fmt.Sprintf("CreateRepository(git update-server-info): %s", repoPath),
  519. "git", "update-server-info")
  520. if err != nil {
  521. return nil, errors.New("CreateRepository(git update-server-info): " + stderr)
  522. }
  523. return repo, nil
  524. }
  525. // CountRepositories returns number of repositories.
  526. func CountRepositories() int64 {
  527. count, _ := x.Count(new(Repository))
  528. return count
  529. }
  530. // GetRepositoriesWithUsers returns given number of repository objects with offset.
  531. // It also auto-gets corresponding users.
  532. func GetRepositoriesWithUsers(num, offset int) ([]*Repository, error) {
  533. repos := make([]*Repository, 0, num)
  534. if err := x.Limit(num, offset).Asc("id").Find(&repos); err != nil {
  535. return nil, err
  536. }
  537. for _, repo := range repos {
  538. repo.Owner = &User{Id: repo.OwnerId}
  539. has, err := x.Get(repo.Owner)
  540. if err != nil {
  541. return nil, err
  542. } else if !has {
  543. return nil, ErrUserNotExist
  544. }
  545. }
  546. return repos, nil
  547. }
  548. // RepoPath returns repository path by given user and repository name.
  549. func RepoPath(userName, repoName string) string {
  550. return filepath.Join(UserPath(userName), strings.ToLower(repoName)+".git")
  551. }
  552. // TransferOwnership transfers all corresponding setting from old user to new one.
  553. func TransferOwnership(u *User, newOwner string, repo *Repository) (err error) {
  554. newUser, err := GetUserByName(newOwner)
  555. if err != nil {
  556. return err
  557. }
  558. sess := x.NewSession()
  559. defer sess.Close()
  560. if err = sess.Begin(); err != nil {
  561. return err
  562. }
  563. if _, err = sess.Where("repo_name = ?", u.LowerName+"/"+repo.LowerName).
  564. And("user_name = ?", u.LowerName).Update(&Access{UserName: newUser.LowerName}); err != nil {
  565. sess.Rollback()
  566. return err
  567. }
  568. if _, err = sess.Where("repo_name = ?", u.LowerName+"/"+repo.LowerName).Update(&Access{
  569. RepoName: newUser.LowerName + "/" + repo.LowerName,
  570. }); err != nil {
  571. sess.Rollback()
  572. return err
  573. }
  574. // Update repository.
  575. repo.OwnerId = newUser.Id
  576. if _, err := sess.Id(repo.Id).Update(repo); err != nil {
  577. sess.Rollback()
  578. return err
  579. }
  580. // Update user repository number.
  581. rawSql := "UPDATE `user` SET num_repos = num_repos + 1 WHERE id = ?"
  582. if _, err = sess.Exec(rawSql, newUser.Id); err != nil {
  583. sess.Rollback()
  584. return err
  585. }
  586. rawSql = "UPDATE `user` SET num_repos = num_repos - 1 WHERE id = ?"
  587. if _, err = sess.Exec(rawSql, u.Id); err != nil {
  588. sess.Rollback()
  589. return err
  590. }
  591. // Change repository directory name.
  592. if err = os.Rename(RepoPath(u.Name, repo.Name), RepoPath(newUser.Name, repo.Name)); err != nil {
  593. sess.Rollback()
  594. return err
  595. }
  596. if err = sess.Commit(); err != nil {
  597. return err
  598. }
  599. // Add watch of new owner to repository.
  600. if !IsWatching(newUser.Id, repo.Id) {
  601. if err = WatchRepo(newUser.Id, repo.Id, true); err != nil {
  602. return err
  603. }
  604. }
  605. if err = TransferRepoAction(u, newUser, repo); err != nil {
  606. return err
  607. }
  608. return nil
  609. }
  610. // ChangeRepositoryName changes all corresponding setting from old repository name to new one.
  611. func ChangeRepositoryName(userName, oldRepoName, newRepoName string) (err error) {
  612. // Update accesses.
  613. accesses := make([]Access, 0, 10)
  614. if err = x.Find(&accesses, &Access{RepoName: strings.ToLower(userName + "/" + oldRepoName)}); err != nil {
  615. return err
  616. }
  617. sess := x.NewSession()
  618. defer sess.Close()
  619. if err = sess.Begin(); err != nil {
  620. return err
  621. }
  622. for i := range accesses {
  623. accesses[i].RepoName = userName + "/" + newRepoName
  624. if err = UpdateAccessWithSession(sess, &accesses[i]); err != nil {
  625. return err
  626. }
  627. }
  628. // Change repository directory name.
  629. if err = os.Rename(RepoPath(userName, oldRepoName), RepoPath(userName, newRepoName)); err != nil {
  630. sess.Rollback()
  631. return err
  632. }
  633. return sess.Commit()
  634. }
  635. func UpdateRepository(repo *Repository) error {
  636. repo.LowerName = strings.ToLower(repo.Name)
  637. if len(repo.Description) > 255 {
  638. repo.Description = repo.Description[:255]
  639. }
  640. if len(repo.Website) > 255 {
  641. repo.Website = repo.Website[:255]
  642. }
  643. _, err := x.Id(repo.Id).AllCols().Update(repo)
  644. return err
  645. }
  646. // DeleteRepository deletes a repository for a user or orgnaztion.
  647. func DeleteRepository(userId, repoId int64, userName string) error {
  648. repo := &Repository{Id: repoId, OwnerId: userId}
  649. has, err := x.Get(repo)
  650. if err != nil {
  651. return err
  652. } else if !has {
  653. return ErrRepoNotExist
  654. }
  655. sess := x.NewSession()
  656. defer sess.Close()
  657. if err = sess.Begin(); err != nil {
  658. return err
  659. }
  660. if _, err = sess.Delete(&Repository{Id: repoId}); err != nil {
  661. sess.Rollback()
  662. return err
  663. }
  664. if _, err := sess.Delete(&Access{RepoName: strings.ToLower(path.Join(userName, repo.Name))}); err != nil {
  665. sess.Rollback()
  666. return err
  667. }
  668. if _, err := sess.Delete(&Action{RepoId: repo.Id}); err != nil {
  669. sess.Rollback()
  670. return err
  671. }
  672. if _, err = sess.Delete(&Watch{RepoId: repoId}); err != nil {
  673. sess.Rollback()
  674. return err
  675. }
  676. if _, err = sess.Delete(&Mirror{RepoId: repoId}); err != nil {
  677. sess.Rollback()
  678. return err
  679. }
  680. if _, err = sess.Delete(&IssueUser{RepoId: repoId}); err != nil {
  681. sess.Rollback()
  682. return err
  683. }
  684. if _, err = sess.Delete(&Milestone{RepoId: repoId}); err != nil {
  685. sess.Rollback()
  686. return err
  687. }
  688. if _, err = sess.Delete(&Release{RepoId: repoId}); err != nil {
  689. sess.Rollback()
  690. return err
  691. }
  692. // Delete comments.
  693. if err = x.Iterate(&Issue{RepoId: repoId}, func(idx int, bean interface{}) error {
  694. issue := bean.(*Issue)
  695. if _, err = sess.Delete(&Comment{IssueId: issue.Id}); err != nil {
  696. sess.Rollback()
  697. return err
  698. }
  699. return nil
  700. }); err != nil {
  701. sess.Rollback()
  702. return err
  703. }
  704. if _, err = sess.Delete(&Issue{RepoId: repoId}); err != nil {
  705. sess.Rollback()
  706. return err
  707. }
  708. rawSql := "UPDATE `user` SET num_repos = num_repos - 1 WHERE id = ?"
  709. if _, err = sess.Exec(rawSql, userId); err != nil {
  710. sess.Rollback()
  711. return err
  712. }
  713. if err = os.RemoveAll(RepoPath(userName, repo.Name)); err != nil {
  714. sess.Rollback()
  715. return err
  716. }
  717. return sess.Commit()
  718. }
  719. // GetRepositoryByRef returns a Repository specified by a GFM reference.
  720. // See https://help.github.com/articles/writing-on-github#references for more information on the syntax.
  721. func GetRepositoryByRef(ref string) (*Repository, error) {
  722. n := strings.IndexByte(ref, byte('/'))
  723. if n < 2 {
  724. return nil, ErrInvalidReference
  725. }
  726. userName, repoName := ref[:n], ref[n+1:]
  727. user, err := GetUserByName(userName)
  728. if err != nil {
  729. return nil, err
  730. }
  731. return GetRepositoryByName(user.Id, repoName)
  732. }
  733. // GetRepositoryByName returns the repository by given name under user if exists.
  734. func GetRepositoryByName(userId int64, repoName string) (*Repository, error) {
  735. repo := &Repository{
  736. OwnerId: userId,
  737. LowerName: strings.ToLower(repoName),
  738. }
  739. has, err := x.Get(repo)
  740. if err != nil {
  741. return nil, err
  742. } else if !has {
  743. return nil, ErrRepoNotExist
  744. }
  745. return repo, err
  746. }
  747. // GetRepositoryById returns the repository by given id if exists.
  748. func GetRepositoryById(id int64) (*Repository, error) {
  749. repo := &Repository{}
  750. has, err := x.Id(id).Get(repo)
  751. if err != nil {
  752. return nil, err
  753. } else if !has {
  754. return nil, ErrRepoNotExist
  755. }
  756. return repo, nil
  757. }
  758. // GetRepositories returns a list of repositories of given user.
  759. func GetRepositories(uid int64, private bool) ([]*Repository, error) {
  760. repos := make([]*Repository, 0, 10)
  761. sess := x.Desc("updated")
  762. if !private {
  763. sess.Where("is_private=?", false)
  764. }
  765. err := sess.Find(&repos, &Repository{OwnerId: uid})
  766. return repos, err
  767. }
  768. // GetRecentUpdatedRepositories returns the list of repositories that are recently updated.
  769. func GetRecentUpdatedRepositories() (repos []*Repository, err error) {
  770. err = x.Where("is_private=?", false).Limit(5).Desc("updated").Find(&repos)
  771. return repos, err
  772. }
  773. // GetRepositoryCount returns the total number of repositories of user.
  774. func GetRepositoryCount(user *User) (int64, error) {
  775. return x.Count(&Repository{OwnerId: user.Id})
  776. }
  777. // GetCollaboratorNames returns a list of user name of repository's collaborators.
  778. func GetCollaboratorNames(repoName string) ([]string, error) {
  779. accesses := make([]*Access, 0, 10)
  780. if err := x.Find(&accesses, &Access{RepoName: strings.ToLower(repoName)}); err != nil {
  781. return nil, err
  782. }
  783. names := make([]string, len(accesses))
  784. for i := range accesses {
  785. names[i] = accesses[i].UserName
  786. }
  787. return names, nil
  788. }
  789. // GetCollaborativeRepos returns a list of repositories that user is collaborator.
  790. func GetCollaborativeRepos(uname string) ([]*Repository, error) {
  791. uname = strings.ToLower(uname)
  792. accesses := make([]*Access, 0, 10)
  793. if err := x.Find(&accesses, &Access{UserName: uname}); err != nil {
  794. return nil, err
  795. }
  796. repos := make([]*Repository, 0, 10)
  797. for _, access := range accesses {
  798. infos := strings.Split(access.RepoName, "/")
  799. if infos[0] == uname {
  800. continue
  801. }
  802. u, err := GetUserByName(infos[0])
  803. if err != nil {
  804. return nil, err
  805. }
  806. repo, err := GetRepositoryByName(u.Id, infos[1])
  807. if err != nil {
  808. return nil, err
  809. }
  810. repo.Owner = u
  811. repos = append(repos, repo)
  812. }
  813. return repos, nil
  814. }
  815. // GetCollaborators returns a list of users of repository's collaborators.
  816. func GetCollaborators(repoName string) (us []*User, err error) {
  817. accesses := make([]*Access, 0, 10)
  818. if err = x.Find(&accesses, &Access{RepoName: strings.ToLower(repoName)}); err != nil {
  819. return nil, err
  820. }
  821. us = make([]*User, len(accesses))
  822. for i := range accesses {
  823. us[i], err = GetUserByName(accesses[i].UserName)
  824. if err != nil {
  825. return nil, err
  826. }
  827. }
  828. return us, nil
  829. }
  830. // Watch is connection request for receiving repository notifycation.
  831. type Watch struct {
  832. Id int64
  833. UserId int64 `xorm:"UNIQUE(watch)"`
  834. RepoId int64 `xorm:"UNIQUE(watch)"`
  835. }
  836. // Watch or unwatch repository.
  837. func WatchRepo(uid, rid int64, watch bool) (err error) {
  838. if watch {
  839. if _, err = x.Insert(&Watch{RepoId: rid, UserId: uid}); err != nil {
  840. return err
  841. }
  842. _, err = x.Exec("UPDATE `repository` SET num_watches = num_watches + 1 WHERE id = ?", rid)
  843. } else {
  844. if _, err = x.Delete(&Watch{0, uid, rid}); err != nil {
  845. return err
  846. }
  847. _, err = x.Exec("UPDATE `repository` SET num_watches = num_watches - 1 WHERE id = ?", rid)
  848. }
  849. return err
  850. }
  851. // GetWatchers returns all watchers of given repository.
  852. func GetWatchers(rid int64) ([]*Watch, error) {
  853. watches := make([]*Watch, 0, 10)
  854. err := x.Find(&watches, &Watch{RepoId: rid})
  855. return watches, err
  856. }
  857. // NotifyWatchers creates batch of actions for every watcher.
  858. func NotifyWatchers(act *Action) error {
  859. // Add feeds for user self and all watchers.
  860. watches, err := GetWatchers(act.RepoId)
  861. if err != nil {
  862. return errors.New("repo.NotifyWatchers(get watches): " + err.Error())
  863. }
  864. // Add feed for actioner.
  865. act.UserId = act.ActUserId
  866. if _, err = x.InsertOne(act); err != nil {
  867. return errors.New("repo.NotifyWatchers(create action): " + err.Error())
  868. }
  869. for i := range watches {
  870. if act.ActUserId == watches[i].UserId {
  871. continue
  872. }
  873. act.Id = 0
  874. act.UserId = watches[i].UserId
  875. if _, err = x.InsertOne(act); err != nil {
  876. return errors.New("repo.NotifyWatchers(create action): " + err.Error())
  877. }
  878. }
  879. return nil
  880. }
  881. // IsWatching checks if user has watched given repository.
  882. func IsWatching(uid, rid int64) bool {
  883. has, _ := x.Get(&Watch{0, uid, rid})
  884. return has
  885. }
  886. func ForkRepository(repoName string, uid int64) {
  887. }