repo.go 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014
  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. func GetMirror(repoId int64) (*Mirror, error) {
  184. m := &Mirror{RepoId: repoId}
  185. has, err := x.Get(m)
  186. if err != nil {
  187. return nil, err
  188. } else if !has {
  189. return nil, ErrMirrorNotExist
  190. }
  191. return m, nil
  192. }
  193. func UpdateMirror(m *Mirror) error {
  194. _, err := x.Id(m.Id).Update(m)
  195. return err
  196. }
  197. // MirrorRepository creates a mirror repository from source.
  198. func MirrorRepository(repoId int64, userName, repoName, repoPath, url string) error {
  199. _, stderr, err := process.ExecTimeout(10*time.Minute,
  200. fmt.Sprintf("MirrorRepository: %s/%s", userName, repoName),
  201. "git", "clone", "--mirror", url, repoPath)
  202. if err != nil {
  203. return errors.New("git clone --mirror: " + stderr)
  204. }
  205. if _, err = x.InsertOne(&Mirror{
  206. RepoId: repoId,
  207. RepoName: strings.ToLower(userName + "/" + repoName),
  208. Interval: 24,
  209. NextUpdate: time.Now().Add(24 * time.Hour),
  210. }); err != nil {
  211. return err
  212. }
  213. return nil
  214. }
  215. // MirrorUpdate checks and updates mirror repositories.
  216. func MirrorUpdate() {
  217. if err := x.Iterate(new(Mirror), func(idx int, bean interface{}) error {
  218. m := bean.(*Mirror)
  219. if m.NextUpdate.After(time.Now()) {
  220. return nil
  221. }
  222. repoPath := filepath.Join(setting.RepoRootPath, m.RepoName+".git")
  223. if _, stderr, err := process.ExecDir(10*time.Minute,
  224. repoPath, fmt.Sprintf("MirrorUpdate: %s", repoPath),
  225. "git", "remote", "update"); err != nil {
  226. return errors.New("git remote update: " + stderr)
  227. }
  228. m.NextUpdate = time.Now().Add(time.Duration(m.Interval) * time.Hour)
  229. return UpdateMirror(m)
  230. }); err != nil {
  231. log.Error(4, "repo.MirrorUpdate: %v", err)
  232. }
  233. }
  234. // MigrateRepository migrates a existing repository from other project hosting.
  235. func MigrateRepository(u *User, name, desc string, private, mirror bool, url string) (*Repository, error) {
  236. repo, err := CreateRepository(u, name, desc, "", "", private, mirror, false)
  237. if err != nil {
  238. return nil, err
  239. }
  240. // Clone to temprory path and do the init commit.
  241. tmpDir := filepath.Join(os.TempDir(), fmt.Sprintf("%d", time.Now().Nanosecond()))
  242. os.MkdirAll(tmpDir, os.ModePerm)
  243. repoPath := RepoPath(u.Name, name)
  244. repo.IsBare = false
  245. if mirror {
  246. if err = MirrorRepository(repo.Id, u.Name, repo.Name, repoPath, url); err != nil {
  247. return repo, err
  248. }
  249. repo.IsMirror = true
  250. return repo, UpdateRepository(repo)
  251. }
  252. // Clone from local repository.
  253. _, stderr, err := process.ExecTimeout(10*time.Minute,
  254. fmt.Sprintf("MigrateRepository(git clone): %s", repoPath),
  255. "git", "clone", repoPath, tmpDir)
  256. if err != nil {
  257. return repo, errors.New("git clone: " + stderr)
  258. }
  259. // Pull data from source.
  260. if _, stderr, err = process.ExecDir(3*time.Minute,
  261. tmpDir, fmt.Sprintf("MigrateRepository(git pull): %s", repoPath),
  262. "git", "pull", url); err != nil {
  263. return repo, errors.New("git pull: " + stderr)
  264. }
  265. // Push data to local repository.
  266. if _, stderr, err = process.ExecDir(3*time.Minute,
  267. tmpDir, fmt.Sprintf("MigrateRepository(git push): %s", repoPath),
  268. "git", "push", "origin", "master"); err != nil {
  269. return repo, errors.New("git push: " + stderr)
  270. }
  271. return repo, UpdateRepository(repo)
  272. }
  273. // extractGitBareZip extracts git-bare.zip to repository path.
  274. func extractGitBareZip(repoPath string) error {
  275. z, err := zip.Open(path.Join(setting.ConfRootPath, "content/git-bare.zip"))
  276. if err != nil {
  277. return err
  278. }
  279. defer z.Close()
  280. return z.ExtractTo(repoPath)
  281. }
  282. // initRepoCommit temporarily changes with work directory.
  283. func initRepoCommit(tmpPath string, sig *git.Signature) (err error) {
  284. var stderr string
  285. if _, stderr, err = process.ExecDir(-1,
  286. tmpPath, fmt.Sprintf("initRepoCommit(git add): %s", tmpPath),
  287. "git", "add", "--all"); err != nil {
  288. return errors.New("git add: " + stderr)
  289. }
  290. if _, stderr, err = process.ExecDir(-1,
  291. tmpPath, fmt.Sprintf("initRepoCommit(git commit): %s", tmpPath),
  292. "git", "commit", fmt.Sprintf("--author='%s <%s>'", sig.Name, sig.Email),
  293. "-m", "Init commit"); err != nil {
  294. return errors.New("git commit: " + stderr)
  295. }
  296. if _, stderr, err = process.ExecDir(-1,
  297. tmpPath, fmt.Sprintf("initRepoCommit(git push): %s", tmpPath),
  298. "git", "push", "origin", "master"); err != nil {
  299. return errors.New("git push: " + stderr)
  300. }
  301. return nil
  302. }
  303. func createHookUpdate(hookPath, content string) error {
  304. pu, err := os.OpenFile(hookPath, os.O_CREATE|os.O_WRONLY, 0777)
  305. if err != nil {
  306. return err
  307. }
  308. defer pu.Close()
  309. _, err = pu.WriteString(content)
  310. return err
  311. }
  312. // InitRepository initializes README and .gitignore if needed.
  313. func initRepository(f string, u *User, repo *Repository, initReadme bool, repoLang, license string) error {
  314. repoPath := RepoPath(u.Name, repo.Name)
  315. // Create bare new repository.
  316. if err := extractGitBareZip(repoPath); err != nil {
  317. return err
  318. }
  319. // hook/post-update
  320. if err := createHookUpdate(filepath.Join(repoPath, "hooks", "update"),
  321. fmt.Sprintf(TPL_UPDATE_HOOK, setting.ScriptType, "\""+appPath+"\"")); err != nil {
  322. return err
  323. }
  324. // Initialize repository according to user's choice.
  325. fileName := map[string]string{}
  326. if initReadme {
  327. fileName["readme"] = "README.md"
  328. }
  329. if repoLang != "" {
  330. fileName["gitign"] = ".gitignore"
  331. }
  332. if license != "" {
  333. fileName["license"] = "LICENSE"
  334. }
  335. // Clone to temprory path and do the init commit.
  336. tmpDir := filepath.Join(os.TempDir(), com.ToStr(time.Now().Nanosecond()))
  337. os.MkdirAll(tmpDir, os.ModePerm)
  338. _, stderr, err := process.Exec(
  339. fmt.Sprintf("initRepository(git clone): %s", repoPath),
  340. "git", "clone", repoPath, tmpDir)
  341. if err != nil {
  342. return errors.New("initRepository(git clone): " + stderr)
  343. }
  344. // README
  345. if initReadme {
  346. defaultReadme := repo.Name + "\n" + strings.Repeat("=",
  347. utf8.RuneCountInString(repo.Name)) + "\n\n" + repo.Description
  348. if err := ioutil.WriteFile(filepath.Join(tmpDir, fileName["readme"]),
  349. []byte(defaultReadme), 0644); err != nil {
  350. return err
  351. }
  352. }
  353. // .gitignore
  354. filePath := "conf/gitignore/" + repoLang
  355. if com.IsFile(filePath) {
  356. targetPath := path.Join(tmpDir, fileName["gitign"])
  357. if com.IsFile(filePath) {
  358. if err = com.Copy(filePath, targetPath); err != nil {
  359. return err
  360. }
  361. } else {
  362. // Check custom files.
  363. filePath = path.Join(setting.CustomPath, "conf/gitignore", repoLang)
  364. if com.IsFile(filePath) {
  365. if err := com.Copy(filePath, targetPath); err != nil {
  366. return err
  367. }
  368. }
  369. }
  370. } else {
  371. delete(fileName, "gitign")
  372. }
  373. // LICENSE
  374. filePath = "conf/license/" + license
  375. if com.IsFile(filePath) {
  376. targetPath := path.Join(tmpDir, fileName["license"])
  377. if com.IsFile(filePath) {
  378. if err = com.Copy(filePath, targetPath); err != nil {
  379. return err
  380. }
  381. } else {
  382. // Check custom files.
  383. filePath = path.Join(setting.CustomPath, "conf/license", license)
  384. if com.IsFile(filePath) {
  385. if err := com.Copy(filePath, targetPath); err != nil {
  386. return err
  387. }
  388. }
  389. }
  390. } else {
  391. delete(fileName, "license")
  392. }
  393. if len(fileName) == 0 {
  394. repo.IsBare = true
  395. repo.DefaultBranch = "master"
  396. return UpdateRepository(repo)
  397. }
  398. // Apply changes and commit.
  399. return initRepoCommit(tmpDir, u.NewGitSig())
  400. }
  401. // CreateRepository creates a repository for given user or organization.
  402. func CreateRepository(u *User, name, desc, lang, license string, private, mirror, initReadme bool) (*Repository, error) {
  403. if !IsLegalName(name) {
  404. return nil, ErrRepoNameIllegal
  405. }
  406. isExist, err := IsRepositoryExist(u, name)
  407. if err != nil {
  408. return nil, err
  409. } else if isExist {
  410. return nil, ErrRepoAlreadyExist
  411. }
  412. sess := x.NewSession()
  413. defer sess.Close()
  414. if err = sess.Begin(); err != nil {
  415. return nil, err
  416. }
  417. repo := &Repository{
  418. OwnerId: u.Id,
  419. Owner: u,
  420. Name: name,
  421. LowerName: strings.ToLower(name),
  422. Description: desc,
  423. IsPrivate: private,
  424. }
  425. if _, err = sess.Insert(repo); err != nil {
  426. sess.Rollback()
  427. return nil, err
  428. }
  429. var t *Team // Owner team.
  430. mode := WRITABLE
  431. if mirror {
  432. mode = READABLE
  433. }
  434. access := &Access{
  435. UserName: u.LowerName,
  436. RepoName: strings.ToLower(path.Join(u.Name, repo.Name)),
  437. Mode: mode,
  438. }
  439. // Give access to all members in owner team.
  440. if u.IsOrganization() {
  441. t, err = u.GetOwnerTeam()
  442. if err != nil {
  443. sess.Rollback()
  444. return nil, err
  445. }
  446. us, err := GetTeamMembers(u.Id, t.Id)
  447. if err != nil {
  448. sess.Rollback()
  449. return nil, err
  450. }
  451. for _, u := range us {
  452. access.UserName = u.LowerName
  453. if _, err = sess.Insert(access); err != nil {
  454. sess.Rollback()
  455. return nil, err
  456. }
  457. }
  458. } else {
  459. if _, err = sess.Insert(access); err != nil {
  460. sess.Rollback()
  461. return nil, err
  462. }
  463. }
  464. if _, err = sess.Exec(
  465. "UPDATE `user` SET num_repos = num_repos + 1 WHERE id = ?", u.Id); err != nil {
  466. sess.Rollback()
  467. return nil, err
  468. }
  469. // Update owner team info and count.
  470. if u.IsOrganization() {
  471. t.RepoIds += "$" + com.ToStr(repo.Id) + "|"
  472. t.NumRepos++
  473. if _, err = sess.Id(t.Id).AllCols().Update(t); err != nil {
  474. sess.Rollback()
  475. return nil, err
  476. }
  477. }
  478. if err = sess.Commit(); err != nil {
  479. return nil, err
  480. }
  481. if u.IsOrganization() {
  482. ous, err := GetOrgUsersByOrgId(u.Id)
  483. if err != nil {
  484. log.Error(4, "GetOrgUsersByOrgId: %v", err)
  485. } else {
  486. for _, ou := range ous {
  487. if err = WatchRepo(ou.Uid, repo.Id, true); err != nil {
  488. log.Error(4, "WatchRepo: %v", err)
  489. }
  490. }
  491. }
  492. }
  493. if err = WatchRepo(u.Id, repo.Id, true); err != nil {
  494. log.Error(4, "WatchRepo2: %v", err)
  495. }
  496. if err = NewRepoAction(u, repo); err != nil {
  497. log.Error(4, "NewRepoAction: %v", err)
  498. }
  499. // No need for init mirror.
  500. if mirror {
  501. return repo, nil
  502. }
  503. repoPath := RepoPath(u.Name, repo.Name)
  504. if err = initRepository(repoPath, u, repo, initReadme, lang, license); err != nil {
  505. if err2 := os.RemoveAll(repoPath); err2 != nil {
  506. log.Error(4, "initRepository: %v", err)
  507. return nil, fmt.Errorf(
  508. "delete repo directory %s/%s failed(2): %v", u.Name, repo.Name, err2)
  509. }
  510. return nil, fmt.Errorf("initRepository: %v", err)
  511. }
  512. _, stderr, err := process.ExecDir(-1,
  513. repoPath, fmt.Sprintf("CreateRepository(git update-server-info): %s", repoPath),
  514. "git", "update-server-info")
  515. if err != nil {
  516. return nil, errors.New("CreateRepository(git update-server-info): " + stderr)
  517. }
  518. return repo, nil
  519. }
  520. // CountRepositories returns number of repositories.
  521. func CountRepositories() int64 {
  522. count, _ := x.Count(new(Repository))
  523. return count
  524. }
  525. // GetRepositoriesWithUsers returns given number of repository objects with offset.
  526. // It also auto-gets corresponding users.
  527. func GetRepositoriesWithUsers(num, offset int) ([]*Repository, error) {
  528. repos := make([]*Repository, 0, num)
  529. if err := x.Limit(num, offset).Asc("id").Find(&repos); err != nil {
  530. return nil, err
  531. }
  532. for _, repo := range repos {
  533. repo.Owner = &User{Id: repo.OwnerId}
  534. has, err := x.Get(repo.Owner)
  535. if err != nil {
  536. return nil, err
  537. } else if !has {
  538. return nil, ErrUserNotExist
  539. }
  540. }
  541. return repos, nil
  542. }
  543. // RepoPath returns repository path by given user and repository name.
  544. func RepoPath(userName, repoName string) string {
  545. return filepath.Join(UserPath(userName), strings.ToLower(repoName)+".git")
  546. }
  547. // TransferOwnership transfers all corresponding setting from old user to new one.
  548. func TransferOwnership(u *User, newOwner string, repo *Repository) (err error) {
  549. newUser, err := GetUserByName(newOwner)
  550. if err != nil {
  551. return err
  552. }
  553. sess := x.NewSession()
  554. defer sess.Close()
  555. if err = sess.Begin(); err != nil {
  556. return err
  557. }
  558. if _, err = sess.Where("repo_name = ?", u.LowerName+"/"+repo.LowerName).
  559. And("user_name = ?", u.LowerName).Update(&Access{UserName: newUser.LowerName}); err != nil {
  560. sess.Rollback()
  561. return err
  562. }
  563. if _, err = sess.Where("repo_name = ?", u.LowerName+"/"+repo.LowerName).Update(&Access{
  564. RepoName: newUser.LowerName + "/" + repo.LowerName,
  565. }); err != nil {
  566. sess.Rollback()
  567. return err
  568. }
  569. // Update repository.
  570. repo.OwnerId = newUser.Id
  571. if _, err := sess.Id(repo.Id).Update(repo); err != nil {
  572. sess.Rollback()
  573. return err
  574. }
  575. // Update user repository number.
  576. rawSql := "UPDATE `user` SET num_repos = num_repos + 1 WHERE id = ?"
  577. if _, err = sess.Exec(rawSql, newUser.Id); err != nil {
  578. sess.Rollback()
  579. return err
  580. }
  581. rawSql = "UPDATE `user` SET num_repos = num_repos - 1 WHERE id = ?"
  582. if _, err = sess.Exec(rawSql, u.Id); err != nil {
  583. sess.Rollback()
  584. return err
  585. }
  586. // Change repository directory name.
  587. if err = os.Rename(RepoPath(u.Name, repo.Name), RepoPath(newUser.Name, repo.Name)); err != nil {
  588. sess.Rollback()
  589. return err
  590. }
  591. if err = sess.Commit(); err != nil {
  592. return err
  593. }
  594. // Add watch of new owner to repository.
  595. if !IsWatching(newUser.Id, repo.Id) {
  596. if err = WatchRepo(newUser.Id, repo.Id, true); err != nil {
  597. return err
  598. }
  599. }
  600. if err = TransferRepoAction(u, newUser, repo); err != nil {
  601. return err
  602. }
  603. return nil
  604. }
  605. // ChangeRepositoryName changes all corresponding setting from old repository name to new one.
  606. func ChangeRepositoryName(userName, oldRepoName, newRepoName string) (err error) {
  607. // Update accesses.
  608. accesses := make([]Access, 0, 10)
  609. if err = x.Find(&accesses, &Access{RepoName: strings.ToLower(userName + "/" + oldRepoName)}); err != nil {
  610. return err
  611. }
  612. sess := x.NewSession()
  613. defer sess.Close()
  614. if err = sess.Begin(); err != nil {
  615. return err
  616. }
  617. for i := range accesses {
  618. accesses[i].RepoName = userName + "/" + newRepoName
  619. if err = UpdateAccessWithSession(sess, &accesses[i]); err != nil {
  620. return err
  621. }
  622. }
  623. // Change repository directory name.
  624. if err = os.Rename(RepoPath(userName, oldRepoName), RepoPath(userName, newRepoName)); err != nil {
  625. sess.Rollback()
  626. return err
  627. }
  628. return sess.Commit()
  629. }
  630. func UpdateRepository(repo *Repository) error {
  631. repo.LowerName = strings.ToLower(repo.Name)
  632. if len(repo.Description) > 255 {
  633. repo.Description = repo.Description[:255]
  634. }
  635. if len(repo.Website) > 255 {
  636. repo.Website = repo.Website[:255]
  637. }
  638. _, err := x.Id(repo.Id).AllCols().Update(repo)
  639. return err
  640. }
  641. // DeleteRepository deletes a repository for a user or orgnaztion.
  642. func DeleteRepository(userId, repoId int64, userName string) error {
  643. repo := &Repository{Id: repoId, OwnerId: userId}
  644. has, err := x.Get(repo)
  645. if err != nil {
  646. return err
  647. } else if !has {
  648. return ErrRepoNotExist
  649. }
  650. sess := x.NewSession()
  651. defer sess.Close()
  652. if err = sess.Begin(); err != nil {
  653. return err
  654. }
  655. if _, err = sess.Delete(&Repository{Id: repoId}); err != nil {
  656. sess.Rollback()
  657. return err
  658. }
  659. if _, err := sess.Delete(&Access{RepoName: strings.ToLower(path.Join(userName, repo.Name))}); err != nil {
  660. sess.Rollback()
  661. return err
  662. }
  663. if _, err := sess.Delete(&Action{RepoId: repo.Id}); err != nil {
  664. sess.Rollback()
  665. return err
  666. }
  667. if _, err = sess.Delete(&Watch{RepoId: repoId}); err != nil {
  668. sess.Rollback()
  669. return err
  670. }
  671. if _, err = sess.Delete(&Mirror{RepoId: repoId}); err != nil {
  672. sess.Rollback()
  673. return err
  674. }
  675. if _, err = sess.Delete(&IssueUser{RepoId: repoId}); err != nil {
  676. sess.Rollback()
  677. return err
  678. }
  679. if _, err = sess.Delete(&Milestone{RepoId: repoId}); err != nil {
  680. sess.Rollback()
  681. return err
  682. }
  683. if _, err = sess.Delete(&Release{RepoId: repoId}); err != nil {
  684. sess.Rollback()
  685. return err
  686. }
  687. // Delete comments.
  688. if err = x.Iterate(&Issue{RepoId: repoId}, func(idx int, bean interface{}) error {
  689. issue := bean.(*Issue)
  690. if _, err = sess.Delete(&Comment{IssueId: issue.Id}); err != nil {
  691. sess.Rollback()
  692. return err
  693. }
  694. return nil
  695. }); err != nil {
  696. sess.Rollback()
  697. return err
  698. }
  699. if _, err = sess.Delete(&Issue{RepoId: repoId}); err != nil {
  700. sess.Rollback()
  701. return err
  702. }
  703. rawSql := "UPDATE `user` SET num_repos = num_repos - 1 WHERE id = ?"
  704. if _, err = sess.Exec(rawSql, userId); err != nil {
  705. sess.Rollback()
  706. return err
  707. }
  708. if err = os.RemoveAll(RepoPath(userName, repo.Name)); err != nil {
  709. sess.Rollback()
  710. return err
  711. }
  712. return sess.Commit()
  713. }
  714. // GetRepositoryByRef returns a Repository specified by a GFM reference.
  715. // See https://help.github.com/articles/writing-on-github#references for more information on the syntax.
  716. func GetRepositoryByRef(ref string) (*Repository, error) {
  717. n := strings.IndexByte(ref, byte('/'))
  718. if n < 2 {
  719. return nil, ErrInvalidReference
  720. }
  721. userName, repoName := ref[:n], ref[n+1:]
  722. user, err := GetUserByName(userName)
  723. if err != nil {
  724. return nil, err
  725. }
  726. return GetRepositoryByName(user.Id, repoName)
  727. }
  728. // GetRepositoryByName returns the repository by given name under user if exists.
  729. func GetRepositoryByName(userId int64, repoName string) (*Repository, error) {
  730. repo := &Repository{
  731. OwnerId: userId,
  732. LowerName: strings.ToLower(repoName),
  733. }
  734. has, err := x.Get(repo)
  735. if err != nil {
  736. return nil, err
  737. } else if !has {
  738. return nil, ErrRepoNotExist
  739. }
  740. return repo, err
  741. }
  742. // GetRepositoryById returns the repository by given id if exists.
  743. func GetRepositoryById(id int64) (*Repository, error) {
  744. repo := &Repository{}
  745. has, err := x.Id(id).Get(repo)
  746. if err != nil {
  747. return nil, err
  748. } else if !has {
  749. return nil, ErrRepoNotExist
  750. }
  751. return repo, nil
  752. }
  753. // GetRepositories returns a list of repositories of given user.
  754. func GetRepositories(uid int64, private bool) ([]*Repository, error) {
  755. repos := make([]*Repository, 0, 10)
  756. sess := x.Desc("updated")
  757. if !private {
  758. sess.Where("is_private=?", false)
  759. }
  760. err := sess.Find(&repos, &Repository{OwnerId: uid})
  761. return repos, err
  762. }
  763. // GetRecentUpdatedRepositories returns the list of repositories that are recently updated.
  764. func GetRecentUpdatedRepositories() (repos []*Repository, err error) {
  765. err = x.Where("is_private=?", false).Limit(5).Desc("updated").Find(&repos)
  766. return repos, err
  767. }
  768. // GetRepositoryCount returns the total number of repositories of user.
  769. func GetRepositoryCount(user *User) (int64, error) {
  770. return x.Count(&Repository{OwnerId: user.Id})
  771. }
  772. // GetCollaboratorNames returns a list of user name of repository's collaborators.
  773. func GetCollaboratorNames(repoName string) ([]string, error) {
  774. accesses := make([]*Access, 0, 10)
  775. if err := x.Find(&accesses, &Access{RepoName: strings.ToLower(repoName)}); err != nil {
  776. return nil, err
  777. }
  778. names := make([]string, len(accesses))
  779. for i := range accesses {
  780. names[i] = accesses[i].UserName
  781. }
  782. return names, nil
  783. }
  784. // GetCollaborativeRepos returns a list of repositories that user is collaborator.
  785. func GetCollaborativeRepos(uname string) ([]*Repository, error) {
  786. uname = strings.ToLower(uname)
  787. accesses := make([]*Access, 0, 10)
  788. if err := x.Find(&accesses, &Access{UserName: uname}); err != nil {
  789. return nil, err
  790. }
  791. repos := make([]*Repository, 0, 10)
  792. for _, access := range accesses {
  793. infos := strings.Split(access.RepoName, "/")
  794. if infos[0] == uname {
  795. continue
  796. }
  797. u, err := GetUserByName(infos[0])
  798. if err != nil {
  799. return nil, err
  800. }
  801. repo, err := GetRepositoryByName(u.Id, infos[1])
  802. if err != nil {
  803. return nil, err
  804. }
  805. repo.Owner = u
  806. repos = append(repos, repo)
  807. }
  808. return repos, nil
  809. }
  810. // GetCollaborators returns a list of users of repository's collaborators.
  811. func GetCollaborators(repoName string) (us []*User, err error) {
  812. accesses := make([]*Access, 0, 10)
  813. if err = x.Find(&accesses, &Access{RepoName: strings.ToLower(repoName)}); err != nil {
  814. return nil, err
  815. }
  816. us = make([]*User, len(accesses))
  817. for i := range accesses {
  818. us[i], err = GetUserByName(accesses[i].UserName)
  819. if err != nil {
  820. return nil, err
  821. }
  822. }
  823. return us, nil
  824. }
  825. // Watch is connection request for receiving repository notifycation.
  826. type Watch struct {
  827. Id int64
  828. UserId int64 `xorm:"UNIQUE(watch)"`
  829. RepoId int64 `xorm:"UNIQUE(watch)"`
  830. }
  831. // Watch or unwatch repository.
  832. func WatchRepo(uid, rid int64, watch bool) (err error) {
  833. if watch {
  834. if _, err = x.Insert(&Watch{RepoId: rid, UserId: uid}); err != nil {
  835. return err
  836. }
  837. _, err = x.Exec("UPDATE `repository` SET num_watches = num_watches + 1 WHERE id = ?", rid)
  838. } else {
  839. if _, err = x.Delete(&Watch{0, uid, rid}); err != nil {
  840. return err
  841. }
  842. _, err = x.Exec("UPDATE `repository` SET num_watches = num_watches - 1 WHERE id = ?", rid)
  843. }
  844. return err
  845. }
  846. // GetWatchers returns all watchers of given repository.
  847. func GetWatchers(rid int64) ([]*Watch, error) {
  848. watches := make([]*Watch, 0, 10)
  849. err := x.Find(&watches, &Watch{RepoId: rid})
  850. return watches, err
  851. }
  852. // NotifyWatchers creates batch of actions for every watcher.
  853. func NotifyWatchers(act *Action) error {
  854. // Add feeds for user self and all watchers.
  855. watches, err := GetWatchers(act.RepoId)
  856. if err != nil {
  857. return errors.New("repo.NotifyWatchers(get watches): " + err.Error())
  858. }
  859. // Add feed for actioner.
  860. act.UserId = act.ActUserId
  861. if _, err = x.InsertOne(act); err != nil {
  862. return errors.New("repo.NotifyWatchers(create action): " + err.Error())
  863. }
  864. for i := range watches {
  865. if act.ActUserId == watches[i].UserId {
  866. continue
  867. }
  868. act.Id = 0
  869. act.UserId = watches[i].UserId
  870. if _, err = x.InsertOne(act); err != nil {
  871. return errors.New("repo.NotifyWatchers(create action): " + err.Error())
  872. }
  873. }
  874. return nil
  875. }
  876. // IsWatching checks if user has watched given repository.
  877. func IsWatching(uid, rid int64) bool {
  878. has, _ := x.Get(&Watch{0, uid, rid})
  879. return has
  880. }
  881. func ForkRepository(repoName string, uid int64) {
  882. }