You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

repo.go 37KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447
  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/base"
  23. "github.com/gogits/gogs/modules/git"
  24. "github.com/gogits/gogs/modules/log"
  25. "github.com/gogits/gogs/modules/process"
  26. "github.com/gogits/gogs/modules/setting"
  27. )
  28. const (
  29. TPL_UPDATE_HOOK = "#!/usr/bin/env %s\n%s update $1 $2 $3\n"
  30. )
  31. var (
  32. ErrRepoAlreadyExist = errors.New("Repository already exist")
  33. ErrRepoNotExist = errors.New("Repository does not exist")
  34. ErrRepoFileNotExist = errors.New("Repository file does not exist")
  35. ErrRepoNameIllegal = errors.New("Repository name contains illegal characters")
  36. ErrRepoFileNotLoaded = errors.New("Repository file not loaded")
  37. ErrMirrorNotExist = errors.New("Mirror does not exist")
  38. ErrInvalidReference = errors.New("Invalid reference specified")
  39. )
  40. var (
  41. Gitignores, Licenses []string
  42. )
  43. var (
  44. DescPattern = regexp.MustCompile(`https?://\S+`)
  45. )
  46. func LoadRepoConfig() {
  47. // Load .gitignore and license files.
  48. types := []string{"gitignore", "license"}
  49. typeFiles := make([][]string, 2)
  50. for i, t := range types {
  51. files, err := com.StatDir(path.Join("conf", t))
  52. if err != nil {
  53. log.Fatal(4, "Fail to get %s files: %v", t, err)
  54. }
  55. customPath := path.Join(setting.CustomPath, "conf", t)
  56. if com.IsDir(customPath) {
  57. customFiles, err := com.StatDir(customPath)
  58. if err != nil {
  59. log.Fatal(4, "Fail to get custom %s files: %v", t, err)
  60. }
  61. for _, f := range customFiles {
  62. if !com.IsSliceContainsStr(files, f) {
  63. files = append(files, f)
  64. }
  65. }
  66. }
  67. typeFiles[i] = files
  68. }
  69. Gitignores = typeFiles[0]
  70. Licenses = typeFiles[1]
  71. sort.Strings(Gitignores)
  72. sort.Strings(Licenses)
  73. }
  74. func NewRepoContext() {
  75. zip.Verbose = false
  76. // Check Git installation.
  77. if _, err := exec.LookPath("git"); err != nil {
  78. log.Fatal(4, "Fail to test 'git' command: %v (forgotten install?)", err)
  79. }
  80. // Check Git version.
  81. ver, err := git.GetVersion()
  82. if err != nil {
  83. log.Fatal(4, "Fail to get Git version: %v", err)
  84. }
  85. reqVer, err := git.ParseVersion("1.7.1")
  86. if err != nil {
  87. log.Fatal(4, "Fail to parse required Git version: %v", err)
  88. }
  89. if ver.LessThan(reqVer) {
  90. log.Fatal(4, "Gogs requires Git version greater or equal to 1.7.1")
  91. }
  92. // Check if server has basic git setting and set if not.
  93. if stdout, stderr, err := process.Exec("NewRepoContext(get setting)", "git", "config", "--get", "user.name"); err != nil || strings.TrimSpace(stdout) == "" {
  94. // ExitError indicates user.name is not set
  95. if _, ok := err.(*exec.ExitError); ok || strings.TrimSpace(stdout) == "" {
  96. stndrdUserName := "Gogs"
  97. stndrdUserEmail := "gogitservice@gmail.com"
  98. if _, stderr, gerr := process.Exec("NewRepoContext(set name)", "git", "config", "--global", "user.name", stndrdUserName); gerr != nil {
  99. log.Fatal(4, "Fail to set git user.name(%s): %s", gerr, stderr)
  100. }
  101. if _, stderr, gerr := process.Exec("NewRepoContext(set email)", "git", "config", "--global", "user.email", stndrdUserEmail); gerr != nil {
  102. log.Fatal(4, "Fail to set git user.email(%s): %s", gerr, stderr)
  103. }
  104. log.Info("Git user.name and user.email set to %s <%s>", stndrdUserName, stndrdUserEmail)
  105. } else {
  106. log.Fatal(4, "Fail to get git user.name(%s): %s", err, stderr)
  107. }
  108. }
  109. // Set git some configurations.
  110. if _, stderr, err := process.Exec("NewRepoContext(git config --global core.quotepath false)",
  111. "git", "config", "--global", "core.quotepath", "false"); err != nil {
  112. log.Fatal(4, "Fail to execute 'git config --global core.quotepath false': %s", stderr)
  113. }
  114. }
  115. // Repository represents a git repository.
  116. type Repository struct {
  117. Id int64
  118. OwnerId int64 `xorm:"UNIQUE(s)"`
  119. Owner *User `xorm:"-"`
  120. LowerName string `xorm:"UNIQUE(s) INDEX NOT NULL"`
  121. Name string `xorm:"INDEX NOT NULL"`
  122. Description string
  123. Website string
  124. DefaultBranch string
  125. NumWatches int
  126. NumStars int
  127. NumForks int
  128. NumIssues int
  129. NumClosedIssues int
  130. NumOpenIssues int `xorm:"-"`
  131. NumPulls int
  132. NumClosedPulls int
  133. NumOpenPulls int `xorm:"-"`
  134. NumMilestones int `xorm:"NOT NULL DEFAULT 0"`
  135. NumClosedMilestones int `xorm:"NOT NULL DEFAULT 0"`
  136. NumOpenMilestones int `xorm:"-"`
  137. NumTags int `xorm:"-"`
  138. IsPrivate bool
  139. IsBare bool
  140. IsGoget bool
  141. IsMirror bool
  142. *Mirror `xorm:"-"`
  143. IsFork bool `xorm:"NOT NULL DEFAULT false"`
  144. ForkId int64
  145. ForkRepo *Repository `xorm:"-"`
  146. Created time.Time `xorm:"CREATED"`
  147. Updated time.Time `xorm:"UPDATED"`
  148. }
  149. func (repo *Repository) GetOwner() (err error) {
  150. if repo.Owner == nil {
  151. repo.Owner, err = GetUserById(repo.OwnerId)
  152. }
  153. return err
  154. }
  155. func (repo *Repository) GetMirror() (err error) {
  156. repo.Mirror, err = GetMirror(repo.Id)
  157. return err
  158. }
  159. func (repo *Repository) GetForkRepo() (err error) {
  160. if !repo.IsFork {
  161. return nil
  162. }
  163. repo.ForkRepo, err = GetRepositoryById(repo.ForkId)
  164. return err
  165. }
  166. func (repo *Repository) RepoPath() (string, error) {
  167. if err := repo.GetOwner(); err != nil {
  168. return "", err
  169. }
  170. return RepoPath(repo.Owner.Name, repo.Name), nil
  171. }
  172. func (repo *Repository) RepoLink() (string, error) {
  173. if err := repo.GetOwner(); err != nil {
  174. return "", err
  175. }
  176. return setting.AppSubUrl + "/" + repo.Owner.Name + "/" + repo.Name, nil
  177. }
  178. func (repo *Repository) IsOwnedBy(u *User) bool {
  179. return repo.OwnerId == u.Id
  180. }
  181. func (repo *Repository) HasAccess(uname string) bool {
  182. if err := repo.GetOwner(); err != nil {
  183. return false
  184. }
  185. has, _ := HasAccess(uname, path.Join(repo.Owner.Name, repo.Name), READABLE)
  186. return has
  187. }
  188. // DescriptionHtml does special handles to description and return HTML string.
  189. func (repo *Repository) DescriptionHtml() template.HTML {
  190. sanitize := func(s string) string {
  191. // TODO(nuss-justin): Improve sanitization. Strip all tags?
  192. ss := html.EscapeString(s)
  193. return fmt.Sprintf(`<a href="%s" target="_blank">%s</a>`, ss, ss)
  194. }
  195. return template.HTML(DescPattern.ReplaceAllStringFunc(base.XSSString(repo.Description), sanitize))
  196. }
  197. // IsRepositoryExist returns true if the repository with given name under user has already existed.
  198. func IsRepositoryExist(u *User, repoName string) (bool, error) {
  199. repo := Repository{OwnerId: u.Id}
  200. has, err := x.Where("lower_name = ?", strings.ToLower(repoName)).Get(&repo)
  201. if err != nil {
  202. return has, err
  203. } else if !has {
  204. return false, nil
  205. }
  206. return com.IsDir(RepoPath(u.Name, repoName)), nil
  207. }
  208. var (
  209. illegalEquals = []string{"debug", "raw", "install", "api", "avatar", "user", "org", "help", "stars", "issues", "pulls", "commits", "repo", "template", "admin", "new"}
  210. illegalSuffixs = []string{".git"}
  211. )
  212. // IsLegalName returns false if name contains illegal characters.
  213. func IsLegalName(repoName string) bool {
  214. repoName = strings.ToLower(repoName)
  215. for _, char := range illegalEquals {
  216. if repoName == char {
  217. return false
  218. }
  219. }
  220. for _, char := range illegalSuffixs {
  221. if strings.HasSuffix(repoName, char) {
  222. return false
  223. }
  224. }
  225. return true
  226. }
  227. // Mirror represents a mirror information of repository.
  228. type Mirror struct {
  229. Id int64
  230. RepoId int64
  231. RepoName string // <user name>/<repo name>
  232. Interval int // Hour.
  233. Updated time.Time `xorm:"UPDATED"`
  234. NextUpdate time.Time
  235. }
  236. func GetMirror(repoId int64) (*Mirror, error) {
  237. m := &Mirror{RepoId: repoId}
  238. has, err := x.Get(m)
  239. if err != nil {
  240. return nil, err
  241. } else if !has {
  242. return nil, ErrMirrorNotExist
  243. }
  244. return m, nil
  245. }
  246. func UpdateMirror(m *Mirror) error {
  247. _, err := x.Id(m.Id).Update(m)
  248. return err
  249. }
  250. // MirrorRepository creates a mirror repository from source.
  251. func MirrorRepository(repoId int64, userName, repoName, repoPath, url string) error {
  252. _, stderr, err := process.ExecTimeout(10*time.Minute,
  253. fmt.Sprintf("MirrorRepository: %s/%s", userName, repoName),
  254. "git", "clone", "--mirror", url, repoPath)
  255. if err != nil {
  256. return errors.New("git clone --mirror: " + stderr)
  257. }
  258. if _, err = x.InsertOne(&Mirror{
  259. RepoId: repoId,
  260. RepoName: strings.ToLower(userName + "/" + repoName),
  261. Interval: 24,
  262. NextUpdate: time.Now().Add(24 * time.Hour),
  263. }); err != nil {
  264. return err
  265. }
  266. return nil
  267. }
  268. // MirrorUpdate checks and updates mirror repositories.
  269. func MirrorUpdate() {
  270. if err := x.Iterate(new(Mirror), func(idx int, bean interface{}) error {
  271. m := bean.(*Mirror)
  272. if m.NextUpdate.After(time.Now()) {
  273. return nil
  274. }
  275. repoPath := filepath.Join(setting.RepoRootPath, m.RepoName+".git")
  276. if _, stderr, err := process.ExecDir(10*time.Minute,
  277. repoPath, fmt.Sprintf("MirrorUpdate: %s", repoPath),
  278. "git", "remote", "update"); err != nil {
  279. return errors.New("git remote update: " + stderr)
  280. }
  281. m.NextUpdate = time.Now().Add(time.Duration(m.Interval) * time.Hour)
  282. return UpdateMirror(m)
  283. }); err != nil {
  284. log.Error(4, "repo.MirrorUpdate: %v", err)
  285. }
  286. }
  287. // MigrateRepository migrates a existing repository from other project hosting.
  288. func MigrateRepository(u *User, name, desc string, private, mirror bool, url string) (*Repository, error) {
  289. repo, err := CreateRepository(u, name, desc, "", "", private, mirror, false)
  290. if err != nil {
  291. return nil, err
  292. }
  293. // Clone to temprory path and do the init commit.
  294. tmpDir := filepath.Join(os.TempDir(), fmt.Sprintf("%d", time.Now().Nanosecond()))
  295. os.MkdirAll(tmpDir, os.ModePerm)
  296. repoPath := RepoPath(u.Name, name)
  297. if u.IsOrganization() {
  298. t, err := u.GetOwnerTeam()
  299. if err != nil {
  300. return nil, err
  301. }
  302. repo.NumWatches = t.NumMembers
  303. } else {
  304. repo.NumWatches = 1
  305. }
  306. repo.IsBare = false
  307. if mirror {
  308. if err = MirrorRepository(repo.Id, u.Name, repo.Name, repoPath, url); err != nil {
  309. return repo, err
  310. }
  311. repo.IsMirror = true
  312. return repo, UpdateRepository(repo)
  313. } else {
  314. os.RemoveAll(repoPath)
  315. }
  316. // this command could for both migrate and mirror
  317. _, stderr, err := process.ExecTimeout(10*time.Minute,
  318. fmt.Sprintf("MigrateRepository: %s", repoPath),
  319. "git", "clone", "--mirror", "--bare", url, repoPath)
  320. if err != nil {
  321. return repo, errors.New("git clone: " + stderr)
  322. }
  323. return repo, UpdateRepository(repo)
  324. }
  325. // extractGitBareZip extracts git-bare.zip to repository path.
  326. func extractGitBareZip(repoPath string) error {
  327. z, err := zip.Open(path.Join(setting.ConfRootPath, "content/git-bare.zip"))
  328. if err != nil {
  329. return err
  330. }
  331. defer z.Close()
  332. return z.ExtractTo(repoPath)
  333. }
  334. // initRepoCommit temporarily changes with work directory.
  335. func initRepoCommit(tmpPath string, sig *git.Signature) (err error) {
  336. var stderr string
  337. if _, stderr, err = process.ExecDir(-1,
  338. tmpPath, fmt.Sprintf("initRepoCommit(git add): %s", tmpPath),
  339. "git", "add", "--all"); err != nil {
  340. return errors.New("git add: " + stderr)
  341. }
  342. if _, stderr, err = process.ExecDir(-1,
  343. tmpPath, fmt.Sprintf("initRepoCommit(git commit): %s", tmpPath),
  344. "git", "commit", fmt.Sprintf("--author='%s <%s>'", sig.Name, sig.Email),
  345. "-m", "Init commit"); err != nil {
  346. return errors.New("git commit: " + stderr)
  347. }
  348. if _, stderr, err = process.ExecDir(-1,
  349. tmpPath, fmt.Sprintf("initRepoCommit(git push): %s", tmpPath),
  350. "git", "push", "origin", "master"); err != nil {
  351. return errors.New("git push: " + stderr)
  352. }
  353. return nil
  354. }
  355. func createHookUpdate(hookPath, content string) error {
  356. pu, err := os.OpenFile(hookPath, os.O_CREATE|os.O_WRONLY, 0777)
  357. if err != nil {
  358. return err
  359. }
  360. defer pu.Close()
  361. _, err = pu.WriteString(content)
  362. return err
  363. }
  364. // InitRepository initializes README and .gitignore if needed.
  365. func initRepository(f string, u *User, repo *Repository, initReadme bool, repoLang, license string) error {
  366. repoPath := RepoPath(u.Name, repo.Name)
  367. // Create bare new repository.
  368. if err := extractGitBareZip(repoPath); err != nil {
  369. return err
  370. }
  371. // hook/post-update
  372. if err := createHookUpdate(filepath.Join(repoPath, "hooks", "update"),
  373. fmt.Sprintf(TPL_UPDATE_HOOK, setting.ScriptType, "\""+appPath+"\"")); err != nil {
  374. return err
  375. }
  376. // Initialize repository according to user's choice.
  377. fileName := map[string]string{}
  378. if initReadme {
  379. fileName["readme"] = "README.md"
  380. }
  381. if repoLang != "" {
  382. fileName["gitign"] = ".gitignore"
  383. }
  384. if license != "" {
  385. fileName["license"] = "LICENSE"
  386. }
  387. // Clone to temprory path and do the init commit.
  388. tmpDir := filepath.Join(os.TempDir(), com.ToStr(time.Now().Nanosecond()))
  389. os.MkdirAll(tmpDir, os.ModePerm)
  390. _, stderr, err := process.Exec(
  391. fmt.Sprintf("initRepository(git clone): %s", repoPath),
  392. "git", "clone", repoPath, tmpDir)
  393. if err != nil {
  394. return errors.New("initRepository(git clone): " + stderr)
  395. }
  396. // README
  397. if initReadme {
  398. defaultReadme := repo.Name + "\n" + strings.Repeat("=",
  399. utf8.RuneCountInString(repo.Name)) + "\n\n" + repo.Description
  400. if err := ioutil.WriteFile(filepath.Join(tmpDir, fileName["readme"]),
  401. []byte(defaultReadme), 0644); err != nil {
  402. return err
  403. }
  404. }
  405. // .gitignore
  406. filePath := "conf/gitignore/" + repoLang
  407. if com.IsFile(filePath) {
  408. targetPath := path.Join(tmpDir, fileName["gitign"])
  409. if com.IsFile(filePath) {
  410. if err = com.Copy(filePath, targetPath); err != nil {
  411. return err
  412. }
  413. } else {
  414. // Check custom files.
  415. filePath = path.Join(setting.CustomPath, "conf/gitignore", repoLang)
  416. if com.IsFile(filePath) {
  417. if err := com.Copy(filePath, targetPath); err != nil {
  418. return err
  419. }
  420. }
  421. }
  422. } else {
  423. delete(fileName, "gitign")
  424. }
  425. // LICENSE
  426. filePath = "conf/license/" + license
  427. if com.IsFile(filePath) {
  428. targetPath := path.Join(tmpDir, fileName["license"])
  429. if com.IsFile(filePath) {
  430. if err = com.Copy(filePath, targetPath); err != nil {
  431. return err
  432. }
  433. } else {
  434. // Check custom files.
  435. filePath = path.Join(setting.CustomPath, "conf/license", license)
  436. if com.IsFile(filePath) {
  437. if err := com.Copy(filePath, targetPath); err != nil {
  438. return err
  439. }
  440. }
  441. }
  442. } else {
  443. delete(fileName, "license")
  444. }
  445. if len(fileName) == 0 {
  446. repo.IsBare = true
  447. repo.DefaultBranch = "master"
  448. return UpdateRepository(repo)
  449. }
  450. // Apply changes and commit.
  451. return initRepoCommit(tmpDir, u.NewGitSig())
  452. }
  453. // CreateRepository creates a repository for given user or organization.
  454. func CreateRepository(u *User, name, desc, lang, license string, private, mirror, initReadme bool) (*Repository, error) {
  455. if !IsLegalName(name) {
  456. return nil, ErrRepoNameIllegal
  457. }
  458. isExist, err := IsRepositoryExist(u, name)
  459. if err != nil {
  460. return nil, err
  461. } else if isExist {
  462. return nil, ErrRepoAlreadyExist
  463. }
  464. sess := x.NewSession()
  465. defer sess.Close()
  466. if err = sess.Begin(); err != nil {
  467. return nil, err
  468. }
  469. repo := &Repository{
  470. OwnerId: u.Id,
  471. Owner: u,
  472. Name: name,
  473. LowerName: strings.ToLower(name),
  474. Description: desc,
  475. IsPrivate: private,
  476. }
  477. if _, err = sess.Insert(repo); err != nil {
  478. sess.Rollback()
  479. return nil, err
  480. }
  481. var t *Team // Owner team.
  482. mode := WRITABLE
  483. if mirror {
  484. mode = READABLE
  485. }
  486. access := &Access{
  487. UserName: u.LowerName,
  488. RepoName: path.Join(u.LowerName, repo.LowerName),
  489. Mode: mode,
  490. }
  491. // Give access to all members in owner team.
  492. if u.IsOrganization() {
  493. t, err = u.GetOwnerTeam()
  494. if err != nil {
  495. sess.Rollback()
  496. return nil, err
  497. }
  498. if err = t.GetMembers(); err != nil {
  499. sess.Rollback()
  500. return nil, err
  501. }
  502. for _, u := range t.Members {
  503. access.Id = 0
  504. access.UserName = u.LowerName
  505. if _, err = sess.Insert(access); err != nil {
  506. sess.Rollback()
  507. return nil, err
  508. }
  509. }
  510. } else {
  511. if _, err = sess.Insert(access); err != nil {
  512. sess.Rollback()
  513. return nil, err
  514. }
  515. }
  516. if _, err = sess.Exec(
  517. "UPDATE `user` SET num_repos = num_repos + 1 WHERE id = ?", u.Id); err != nil {
  518. sess.Rollback()
  519. return nil, err
  520. }
  521. // Update owner team info and count.
  522. if u.IsOrganization() {
  523. t.RepoIds += "$" + com.ToStr(repo.Id) + "|"
  524. t.NumRepos++
  525. if _, err = sess.Id(t.Id).AllCols().Update(t); err != nil {
  526. sess.Rollback()
  527. return nil, err
  528. }
  529. }
  530. if err = sess.Commit(); err != nil {
  531. return nil, err
  532. }
  533. if u.IsOrganization() {
  534. t, err := u.GetOwnerTeam()
  535. if err != nil {
  536. log.Error(4, "GetOwnerTeam: %v", err)
  537. } else {
  538. if err = t.GetMembers(); err != nil {
  539. log.Error(4, "GetMembers: %v", err)
  540. } else {
  541. for _, u := range t.Members {
  542. if err = WatchRepo(u.Id, repo.Id, true); err != nil {
  543. log.Error(4, "WatchRepo2: %v", err)
  544. }
  545. }
  546. }
  547. }
  548. } else {
  549. if err = WatchRepo(u.Id, repo.Id, true); err != nil {
  550. log.Error(4, "WatchRepo3: %v", err)
  551. }
  552. }
  553. if err = NewRepoAction(u, repo); err != nil {
  554. log.Error(4, "NewRepoAction: %v", err)
  555. }
  556. // No need for init mirror.
  557. if mirror {
  558. return repo, nil
  559. }
  560. repoPath := RepoPath(u.Name, repo.Name)
  561. if err = initRepository(repoPath, u, repo, initReadme, lang, license); err != nil {
  562. if err2 := os.RemoveAll(repoPath); err2 != nil {
  563. log.Error(4, "initRepository: %v", err)
  564. return nil, fmt.Errorf(
  565. "delete repo directory %s/%s failed(2): %v", u.Name, repo.Name, err2)
  566. }
  567. return nil, fmt.Errorf("initRepository: %v", err)
  568. }
  569. _, stderr, err := process.ExecDir(-1,
  570. repoPath, fmt.Sprintf("CreateRepository(git update-server-info): %s", repoPath),
  571. "git", "update-server-info")
  572. if err != nil {
  573. return nil, errors.New("CreateRepository(git update-server-info): " + stderr)
  574. }
  575. return repo, nil
  576. }
  577. // CountRepositories returns number of repositories.
  578. func CountRepositories() int64 {
  579. count, _ := x.Count(new(Repository))
  580. return count
  581. }
  582. // GetRepositoriesWithUsers returns given number of repository objects with offset.
  583. // It also auto-gets corresponding users.
  584. func GetRepositoriesWithUsers(num, offset int) ([]*Repository, error) {
  585. repos := make([]*Repository, 0, num)
  586. if err := x.Limit(num, offset).Asc("id").Find(&repos); err != nil {
  587. return nil, err
  588. }
  589. for _, repo := range repos {
  590. repo.Owner = &User{Id: repo.OwnerId}
  591. has, err := x.Get(repo.Owner)
  592. if err != nil {
  593. return nil, err
  594. } else if !has {
  595. return nil, ErrUserNotExist
  596. }
  597. }
  598. return repos, nil
  599. }
  600. // RepoPath returns repository path by given user and repository name.
  601. func RepoPath(userName, repoName string) string {
  602. return filepath.Join(UserPath(userName), strings.ToLower(repoName)+".git")
  603. }
  604. // TransferOwnership transfers all corresponding setting from old user to new one.
  605. func TransferOwnership(u *User, newOwner string, repo *Repository) error {
  606. newUser, err := GetUserByName(newOwner)
  607. if err != nil {
  608. return fmt.Errorf("fail to get new owner(%s): %v", newOwner, err)
  609. }
  610. // Check if new owner has repository with same name.
  611. has, err := IsRepositoryExist(newUser, repo.Name)
  612. if err != nil {
  613. return err
  614. } else if has {
  615. return ErrRepoAlreadyExist
  616. }
  617. sess := x.NewSession()
  618. defer sess.Close()
  619. if err = sess.Begin(); err != nil {
  620. return err
  621. }
  622. owner := repo.Owner
  623. oldRepoLink := path.Join(owner.LowerName, repo.LowerName)
  624. // Delete all access first if current owner is an organization.
  625. if owner.IsOrganization() {
  626. if _, err = sess.Where("repo_name=?", oldRepoLink).Delete(new(Access)); err != nil {
  627. sess.Rollback()
  628. return fmt.Errorf("fail to delete current accesses: %v", err)
  629. }
  630. } else {
  631. // Delete current owner access.
  632. if _, err = sess.Where("repo_name=?", oldRepoLink).And("user_name=?", owner.LowerName).
  633. Delete(new(Access)); err != nil {
  634. sess.Rollback()
  635. return fmt.Errorf("fail to delete access(owner): %v", err)
  636. }
  637. // In case new owner has access.
  638. if _, err = sess.Where("repo_name=?", oldRepoLink).And("user_name=?", newUser.LowerName).
  639. Delete(new(Access)); err != nil {
  640. sess.Rollback()
  641. return fmt.Errorf("fail to delete access(new user): %v", err)
  642. }
  643. }
  644. // Change accesses to new repository path.
  645. if _, err = sess.Where("repo_name=?", oldRepoLink).
  646. Update(&Access{RepoName: path.Join(newUser.LowerName, repo.LowerName)}); err != nil {
  647. sess.Rollback()
  648. return fmt.Errorf("fail to update access(change reponame): %v", err)
  649. }
  650. // Update repository.
  651. repo.OwnerId = newUser.Id
  652. if _, err := sess.Id(repo.Id).Update(repo); err != nil {
  653. sess.Rollback()
  654. return err
  655. }
  656. // Update user repository number.
  657. if _, err = sess.Exec("UPDATE `user` SET num_repos = num_repos + 1 WHERE id = ?", newUser.Id); err != nil {
  658. sess.Rollback()
  659. return err
  660. }
  661. if _, err = sess.Exec("UPDATE `user` SET num_repos = num_repos - 1 WHERE id = ?", owner.Id); err != nil {
  662. sess.Rollback()
  663. return err
  664. }
  665. mode := WRITABLE
  666. if repo.IsMirror {
  667. mode = READABLE
  668. }
  669. // New owner is organization.
  670. if newUser.IsOrganization() {
  671. access := &Access{
  672. RepoName: path.Join(newUser.LowerName, repo.LowerName),
  673. Mode: mode,
  674. }
  675. // Give access to all members in owner team.
  676. t, err := newUser.GetOwnerTeam()
  677. if err != nil {
  678. sess.Rollback()
  679. return err
  680. }
  681. if err = t.GetMembers(); err != nil {
  682. sess.Rollback()
  683. return err
  684. }
  685. for _, u := range t.Members {
  686. access.Id = 0
  687. access.UserName = u.LowerName
  688. if _, err = sess.Insert(access); err != nil {
  689. sess.Rollback()
  690. return err
  691. }
  692. }
  693. // Update owner team info and count.
  694. t.RepoIds += "$" + com.ToStr(repo.Id) + "|"
  695. t.NumRepos++
  696. if _, err = sess.Id(t.Id).AllCols().Update(t); err != nil {
  697. sess.Rollback()
  698. return err
  699. }
  700. } else {
  701. access := &Access{
  702. RepoName: path.Join(newUser.LowerName, repo.LowerName),
  703. UserName: newUser.LowerName,
  704. Mode: mode,
  705. }
  706. if _, err = sess.Insert(access); err != nil {
  707. sess.Rollback()
  708. return fmt.Errorf("fail to insert access: %v", err)
  709. }
  710. }
  711. // Change repository directory name.
  712. if err = os.Rename(RepoPath(owner.Name, repo.Name), RepoPath(newUser.Name, repo.Name)); err != nil {
  713. sess.Rollback()
  714. return err
  715. }
  716. if err = sess.Commit(); err != nil {
  717. return err
  718. }
  719. if err = WatchRepo(newUser.Id, repo.Id, true); err != nil {
  720. log.Error(4, "WatchRepo", err)
  721. }
  722. if err = TransferRepoAction(u, newUser, repo); err != nil {
  723. return err
  724. }
  725. return nil
  726. }
  727. // ChangeRepositoryName changes all corresponding setting from old repository name to new one.
  728. func ChangeRepositoryName(userName, oldRepoName, newRepoName string) (err error) {
  729. if !IsLegalName(newRepoName) {
  730. return ErrRepoNameIllegal
  731. }
  732. // Update accesses.
  733. accesses := make([]Access, 0, 10)
  734. if err = x.Find(&accesses, &Access{RepoName: strings.ToLower(userName + "/" + oldRepoName)}); err != nil {
  735. return err
  736. }
  737. sess := x.NewSession()
  738. defer sess.Close()
  739. if err = sess.Begin(); err != nil {
  740. return err
  741. }
  742. for i := range accesses {
  743. accesses[i].RepoName = userName + "/" + newRepoName
  744. if err = UpdateAccessWithSession(sess, &accesses[i]); err != nil {
  745. return err
  746. }
  747. }
  748. // Change repository directory name.
  749. if err = os.Rename(RepoPath(userName, oldRepoName), RepoPath(userName, newRepoName)); err != nil {
  750. sess.Rollback()
  751. return err
  752. }
  753. return sess.Commit()
  754. }
  755. func UpdateRepository(repo *Repository) error {
  756. repo.LowerName = strings.ToLower(repo.Name)
  757. if len(repo.Description) > 255 {
  758. repo.Description = repo.Description[:255]
  759. }
  760. if len(repo.Website) > 255 {
  761. repo.Website = repo.Website[:255]
  762. }
  763. _, err := x.Id(repo.Id).AllCols().Update(repo)
  764. return err
  765. }
  766. // DeleteRepository deletes a repository for a user or orgnaztion.
  767. func DeleteRepository(uid, repoId int64, userName string) error {
  768. repo := &Repository{Id: repoId, OwnerId: uid}
  769. has, err := x.Get(repo)
  770. if err != nil {
  771. return err
  772. } else if !has {
  773. return ErrRepoNotExist
  774. }
  775. // In case is a organization.
  776. org, err := GetUserById(uid)
  777. if err != nil {
  778. return err
  779. }
  780. if org.IsOrganization() {
  781. if err = org.GetTeams(); err != nil {
  782. return err
  783. }
  784. }
  785. sess := x.NewSession()
  786. defer sess.Close()
  787. if err = sess.Begin(); err != nil {
  788. return err
  789. }
  790. if _, err = sess.Delete(&Repository{Id: repoId}); err != nil {
  791. sess.Rollback()
  792. return err
  793. }
  794. // Delete all access.
  795. if _, err := sess.Delete(&Access{RepoName: strings.ToLower(path.Join(userName, repo.Name))}); err != nil {
  796. sess.Rollback()
  797. return err
  798. }
  799. if org.IsOrganization() {
  800. idStr := "$" + com.ToStr(repoId) + "|"
  801. for _, t := range org.Teams {
  802. if !strings.Contains(t.RepoIds, idStr) {
  803. continue
  804. }
  805. t.NumRepos--
  806. t.RepoIds = strings.Replace(t.RepoIds, idStr, "", 1)
  807. if _, err = sess.Id(t.Id).AllCols().Update(t); err != nil {
  808. sess.Rollback()
  809. return err
  810. }
  811. }
  812. }
  813. if _, err := sess.Delete(&Action{RepoId: repo.Id}); err != nil {
  814. sess.Rollback()
  815. return err
  816. }
  817. if _, err = sess.Delete(&Watch{RepoId: repoId}); err != nil {
  818. sess.Rollback()
  819. return err
  820. }
  821. if _, err = sess.Delete(&Mirror{RepoId: repoId}); err != nil {
  822. sess.Rollback()
  823. return err
  824. }
  825. if _, err = sess.Delete(&IssueUser{RepoId: repoId}); err != nil {
  826. sess.Rollback()
  827. return err
  828. }
  829. if _, err = sess.Delete(&Milestone{RepoId: repoId}); err != nil {
  830. sess.Rollback()
  831. return err
  832. }
  833. if _, err = sess.Delete(&Release{RepoId: repoId}); err != nil {
  834. sess.Rollback()
  835. return err
  836. }
  837. // Delete comments.
  838. if err = x.Iterate(&Issue{RepoId: repoId}, func(idx int, bean interface{}) error {
  839. issue := bean.(*Issue)
  840. if _, err = sess.Delete(&Comment{IssueId: issue.Id}); err != nil {
  841. sess.Rollback()
  842. return err
  843. }
  844. return nil
  845. }); err != nil {
  846. sess.Rollback()
  847. return err
  848. }
  849. if _, err = sess.Delete(&Issue{RepoId: repoId}); err != nil {
  850. sess.Rollback()
  851. return err
  852. }
  853. if repo.IsFork {
  854. if _, err = sess.Exec("UPDATE `repository` SET num_forks = num_forks - 1 WHERE id = ?", repo.ForkId); err != nil {
  855. sess.Rollback()
  856. return err
  857. }
  858. }
  859. if _, err = sess.Exec("UPDATE `user` SET num_repos = num_repos - 1 WHERE id = ?", uid); err != nil {
  860. sess.Rollback()
  861. return err
  862. }
  863. // Remove repository files.
  864. if err = os.RemoveAll(RepoPath(userName, repo.Name)); err != nil {
  865. desc := fmt.Sprintf("Fail to delete repository files(%s/%s): %v", userName, repo.Name, err)
  866. log.Warn(desc)
  867. if err = CreateRepositoryNotice(desc); err != nil {
  868. log.Error(4, "Fail to add notice: %v", err)
  869. }
  870. }
  871. return sess.Commit()
  872. }
  873. // GetRepositoryByRef returns a Repository specified by a GFM reference.
  874. // See https://help.github.com/articles/writing-on-github#references for more information on the syntax.
  875. func GetRepositoryByRef(ref string) (*Repository, error) {
  876. n := strings.IndexByte(ref, byte('/'))
  877. if n < 2 {
  878. return nil, ErrInvalidReference
  879. }
  880. userName, repoName := ref[:n], ref[n+1:]
  881. user, err := GetUserByName(userName)
  882. if err != nil {
  883. return nil, err
  884. }
  885. return GetRepositoryByName(user.Id, repoName)
  886. }
  887. // GetRepositoryByName returns the repository by given name under user if exists.
  888. func GetRepositoryByName(uid int64, repoName string) (*Repository, error) {
  889. repo := &Repository{
  890. OwnerId: uid,
  891. LowerName: strings.ToLower(repoName),
  892. }
  893. has, err := x.Get(repo)
  894. if err != nil {
  895. return nil, err
  896. } else if !has {
  897. return nil, ErrRepoNotExist
  898. }
  899. return repo, err
  900. }
  901. // GetRepositoryById returns the repository by given id if exists.
  902. func GetRepositoryById(id int64) (*Repository, error) {
  903. repo := &Repository{}
  904. has, err := x.Id(id).Get(repo)
  905. if err != nil {
  906. return nil, err
  907. } else if !has {
  908. return nil, ErrRepoNotExist
  909. }
  910. return repo, nil
  911. }
  912. // GetRepositories returns a list of repositories of given user.
  913. func GetRepositories(uid int64, private bool) ([]*Repository, error) {
  914. repos := make([]*Repository, 0, 10)
  915. sess := x.Desc("updated")
  916. if !private {
  917. sess.Where("is_private=?", false)
  918. }
  919. err := sess.Find(&repos, &Repository{OwnerId: uid})
  920. return repos, err
  921. }
  922. // GetRecentUpdatedRepositories returns the list of repositories that are recently updated.
  923. func GetRecentUpdatedRepositories(num int) (repos []*Repository, err error) {
  924. err = x.Where("is_private=?", false).Limit(num).Desc("updated").Find(&repos)
  925. return repos, err
  926. }
  927. // GetRepositoryCount returns the total number of repositories of user.
  928. func GetRepositoryCount(user *User) (int64, error) {
  929. return x.Count(&Repository{OwnerId: user.Id})
  930. }
  931. // GetCollaboratorNames returns a list of user name of repository's collaborators.
  932. func GetCollaboratorNames(repoName string) ([]string, error) {
  933. accesses := make([]*Access, 0, 10)
  934. if err := x.Find(&accesses, &Access{RepoName: strings.ToLower(repoName)}); err != nil {
  935. return nil, err
  936. }
  937. names := make([]string, len(accesses))
  938. for i := range accesses {
  939. names[i] = accesses[i].UserName
  940. }
  941. return names, nil
  942. }
  943. // GetCollaborativeRepos returns a list of repositories that user is collaborator.
  944. func GetCollaborativeRepos(uname string) ([]*Repository, error) {
  945. uname = strings.ToLower(uname)
  946. accesses := make([]*Access, 0, 10)
  947. if err := x.Find(&accesses, &Access{UserName: uname}); err != nil {
  948. return nil, err
  949. }
  950. repos := make([]*Repository, 0, 10)
  951. for _, access := range accesses {
  952. infos := strings.Split(access.RepoName, "/")
  953. if infos[0] == uname {
  954. continue
  955. }
  956. u, err := GetUserByName(infos[0])
  957. if err != nil {
  958. return nil, err
  959. }
  960. repo, err := GetRepositoryByName(u.Id, infos[1])
  961. if err != nil {
  962. return nil, err
  963. }
  964. repo.Owner = u
  965. repos = append(repos, repo)
  966. }
  967. return repos, nil
  968. }
  969. // GetCollaborators returns a list of users of repository's collaborators.
  970. func GetCollaborators(repoName string) (us []*User, err error) {
  971. accesses := make([]*Access, 0, 10)
  972. if err = x.Find(&accesses, &Access{RepoName: strings.ToLower(repoName)}); err != nil {
  973. return nil, err
  974. }
  975. us = make([]*User, len(accesses))
  976. for i := range accesses {
  977. us[i], err = GetUserByName(accesses[i].UserName)
  978. if err != nil {
  979. return nil, err
  980. }
  981. }
  982. return us, nil
  983. }
  984. type SearchOption struct {
  985. Keyword string
  986. Uid int64
  987. Limit int
  988. Private bool
  989. }
  990. // FilterSQLInject tries to prevent SQL injection.
  991. func FilterSQLInject(key string) string {
  992. key = strings.TrimSpace(key)
  993. key = strings.Split(key, " ")[0]
  994. key = strings.Replace(key, ",", "", -1)
  995. return key
  996. }
  997. // SearchRepositoryByName returns given number of repositories whose name contains keyword.
  998. func SearchRepositoryByName(opt SearchOption) (repos []*Repository, err error) {
  999. // Prevent SQL inject.
  1000. opt.Keyword = FilterSQLInject(opt.Keyword)
  1001. if len(opt.Keyword) == 0 {
  1002. return repos, nil
  1003. }
  1004. opt.Keyword = strings.ToLower(opt.Keyword)
  1005. repos = make([]*Repository, 0, opt.Limit)
  1006. // Append conditions.
  1007. sess := x.Limit(opt.Limit)
  1008. if opt.Uid > 0 {
  1009. sess.Where("owner_id=?", opt.Uid)
  1010. }
  1011. if !opt.Private {
  1012. sess.And("is_private=false")
  1013. }
  1014. sess.And("lower_name like '%" + opt.Keyword + "%'").Find(&repos)
  1015. return repos, err
  1016. }
  1017. // __ __ __ .__
  1018. // / \ / \_____ _/ |_ ____ | |__
  1019. // \ \/\/ /\__ \\ __\/ ___\| | \
  1020. // \ / / __ \| | \ \___| Y \
  1021. // \__/\ / (____ /__| \___ >___| /
  1022. // \/ \/ \/ \/
  1023. // Watch is connection request for receiving repository notifycation.
  1024. type Watch struct {
  1025. Id int64
  1026. UserId int64 `xorm:"UNIQUE(watch)"`
  1027. RepoId int64 `xorm:"UNIQUE(watch)"`
  1028. }
  1029. // IsWatching checks if user has watched given repository.
  1030. func IsWatching(uid, repoId int64) bool {
  1031. has, _ := x.Get(&Watch{0, uid, repoId})
  1032. return has
  1033. }
  1034. func watchRepoWithEngine(e Engine, uid, repoId int64, watch bool) (err error) {
  1035. if watch {
  1036. if IsWatching(uid, repoId) {
  1037. return nil
  1038. }
  1039. if _, err = e.Insert(&Watch{RepoId: repoId, UserId: uid}); err != nil {
  1040. return err
  1041. }
  1042. _, err = e.Exec("UPDATE `repository` SET num_watches = num_watches + 1 WHERE id = ?", repoId)
  1043. } else {
  1044. if !IsWatching(uid, repoId) {
  1045. return nil
  1046. }
  1047. if _, err = e.Delete(&Watch{0, uid, repoId}); err != nil {
  1048. return err
  1049. }
  1050. _, err = e.Exec("UPDATE `repository` SET num_watches = num_watches - 1 WHERE id = ?", repoId)
  1051. }
  1052. return err
  1053. }
  1054. // Watch or unwatch repository.
  1055. func WatchRepo(uid, repoId int64, watch bool) (err error) {
  1056. return watchRepoWithEngine(x, uid, repoId, watch)
  1057. }
  1058. // GetWatchers returns all watchers of given repository.
  1059. func GetWatchers(rid int64) ([]*Watch, error) {
  1060. watches := make([]*Watch, 0, 10)
  1061. err := x.Find(&watches, &Watch{RepoId: rid})
  1062. return watches, err
  1063. }
  1064. // NotifyWatchers creates batch of actions for every watcher.
  1065. func NotifyWatchers(act *Action) error {
  1066. // Add feeds for user self and all watchers.
  1067. watches, err := GetWatchers(act.RepoId)
  1068. if err != nil {
  1069. return errors.New("repo.NotifyWatchers(get watches): " + err.Error())
  1070. }
  1071. // Add feed for actioner.
  1072. act.UserId = act.ActUserId
  1073. if _, err = x.InsertOne(act); err != nil {
  1074. return errors.New("repo.NotifyWatchers(create action): " + err.Error())
  1075. }
  1076. for i := range watches {
  1077. if act.ActUserId == watches[i].UserId {
  1078. continue
  1079. }
  1080. act.Id = 0
  1081. act.UserId = watches[i].UserId
  1082. if _, err = x.InsertOne(act); err != nil {
  1083. return errors.New("repo.NotifyWatchers(create action): " + err.Error())
  1084. }
  1085. }
  1086. return nil
  1087. }
  1088. // _________ __
  1089. // / _____// |______ _______
  1090. // \_____ \\ __\__ \\_ __ \
  1091. // / \| | / __ \| | \/
  1092. // /_______ /|__| (____ /__|
  1093. // \/ \/
  1094. type Star struct {
  1095. Id int64
  1096. Uid int64 `xorm:"UNIQUE(s)"`
  1097. RepoId int64 `xorm:"UNIQUE(s)"`
  1098. }
  1099. // Star or unstar repository.
  1100. func StarRepo(uid, repoId int64, star bool) (err error) {
  1101. if star {
  1102. if IsStaring(uid, repoId) {
  1103. return nil
  1104. }
  1105. if _, err = x.Insert(&Star{Uid: uid, RepoId: repoId}); err != nil {
  1106. return err
  1107. } else if _, err = x.Exec("UPDATE `repository` SET num_stars = num_stars + 1 WHERE id = ?", repoId); err != nil {
  1108. return err
  1109. }
  1110. _, err = x.Exec("UPDATE `user` SET num_stars = num_stars + 1 WHERE id = ?", uid)
  1111. } else {
  1112. if !IsStaring(uid, repoId) {
  1113. return nil
  1114. }
  1115. if _, err = x.Delete(&Star{0, uid, repoId}); err != nil {
  1116. return err
  1117. } else if _, err = x.Exec("UPDATE `repository` SET num_stars = num_stars - 1 WHERE id = ?", repoId); err != nil {
  1118. return err
  1119. }
  1120. _, err = x.Exec("UPDATE `user` SET num_stars = num_stars - 1 WHERE id = ?", uid)
  1121. }
  1122. return err
  1123. }
  1124. // IsStaring checks if user has starred given repository.
  1125. func IsStaring(uid, repoId int64) bool {
  1126. has, _ := x.Get(&Star{0, uid, repoId})
  1127. return has
  1128. }
  1129. // ___________ __
  1130. // \_ _____/__________| | __
  1131. // | __)/ _ \_ __ \ |/ /
  1132. // | \( <_> ) | \/ <
  1133. // \___ / \____/|__| |__|_ \
  1134. // \/ \/
  1135. func ForkRepository(u *User, oldRepo *Repository) (*Repository, error) {
  1136. isExist, err := IsRepositoryExist(u, oldRepo.Name)
  1137. if err != nil {
  1138. return nil, err
  1139. } else if isExist {
  1140. return nil, ErrRepoAlreadyExist
  1141. }
  1142. // In case the old repository is a fork.
  1143. if oldRepo.IsFork {
  1144. oldRepo, err = GetRepositoryById(oldRepo.ForkId)
  1145. if err != nil {
  1146. return nil, err
  1147. }
  1148. }
  1149. sess := x.NewSession()
  1150. defer sess.Close()
  1151. if err = sess.Begin(); err != nil {
  1152. return nil, err
  1153. }
  1154. repo := &Repository{
  1155. OwnerId: u.Id,
  1156. Owner: u,
  1157. Name: oldRepo.Name,
  1158. LowerName: oldRepo.LowerName,
  1159. Description: oldRepo.Description,
  1160. IsPrivate: oldRepo.IsPrivate,
  1161. IsFork: true,
  1162. ForkId: oldRepo.Id,
  1163. }
  1164. if _, err = sess.Insert(repo); err != nil {
  1165. sess.Rollback()
  1166. return nil, err
  1167. }
  1168. var t *Team // Owner team.
  1169. mode := WRITABLE
  1170. access := &Access{
  1171. UserName: u.LowerName,
  1172. RepoName: path.Join(u.LowerName, repo.LowerName),
  1173. Mode: mode,
  1174. }
  1175. // Give access to all members in owner team.
  1176. if u.IsOrganization() {
  1177. t, err = u.GetOwnerTeam()
  1178. if err != nil {
  1179. sess.Rollback()
  1180. return nil, err
  1181. }
  1182. if err = t.GetMembers(); err != nil {
  1183. sess.Rollback()
  1184. return nil, err
  1185. }
  1186. for _, u := range t.Members {
  1187. access.Id = 0
  1188. access.UserName = u.LowerName
  1189. if _, err = sess.Insert(access); err != nil {
  1190. sess.Rollback()
  1191. return nil, err
  1192. }
  1193. }
  1194. } else {
  1195. if _, err = sess.Insert(access); err != nil {
  1196. sess.Rollback()
  1197. return nil, err
  1198. }
  1199. }
  1200. if _, err = sess.Exec(
  1201. "UPDATE `user` SET num_repos = num_repos + 1 WHERE id = ?", u.Id); err != nil {
  1202. sess.Rollback()
  1203. return nil, err
  1204. }
  1205. // Update owner team info and count.
  1206. if u.IsOrganization() {
  1207. t.RepoIds += "$" + com.ToStr(repo.Id) + "|"
  1208. t.NumRepos++
  1209. if _, err = sess.Id(t.Id).AllCols().Update(t); err != nil {
  1210. sess.Rollback()
  1211. return nil, err
  1212. }
  1213. }
  1214. if u.IsOrganization() {
  1215. t, err := u.GetOwnerTeam()
  1216. if err != nil {
  1217. log.Error(4, "GetOwnerTeam: %v", err)
  1218. } else {
  1219. if err = t.GetMembers(); err != nil {
  1220. log.Error(4, "GetMembers: %v", err)
  1221. } else {
  1222. for _, u := range t.Members {
  1223. if err = watchRepoWithEngine(sess, u.Id, repo.Id, true); err != nil {
  1224. log.Error(4, "WatchRepo2: %v", err)
  1225. }
  1226. }
  1227. }
  1228. }
  1229. } else {
  1230. if err = watchRepoWithEngine(sess, u.Id, repo.Id, true); err != nil {
  1231. log.Error(4, "WatchRepo3: %v", err)
  1232. }
  1233. }
  1234. if err = NewRepoAction(u, repo); err != nil {
  1235. log.Error(4, "NewRepoAction: %v", err)
  1236. }
  1237. if _, err = sess.Exec(
  1238. "UPDATE `repository` SET num_forks = num_forks + 1 WHERE id = ?", oldRepo.Id); err != nil {
  1239. sess.Rollback()
  1240. return nil, err
  1241. }
  1242. oldRepoPath, err := oldRepo.RepoPath()
  1243. if err != nil {
  1244. sess.Rollback()
  1245. return nil, fmt.Errorf("fail to get repo path(%s): %v", oldRepo.Name, err)
  1246. }
  1247. if err = sess.Commit(); err != nil {
  1248. return nil, err
  1249. }
  1250. repoPath := RepoPath(u.Name, repo.Name)
  1251. _, stderr, err := process.ExecTimeout(10*time.Minute,
  1252. fmt.Sprintf("ForkRepository(git clone): %s/%s", u.Name, repo.Name),
  1253. "git", "clone", "--bare", oldRepoPath, repoPath)
  1254. if err != nil {
  1255. return nil, errors.New("ForkRepository(git clone): " + stderr)
  1256. }
  1257. _, stderr, err = process.ExecDir(-1,
  1258. repoPath, fmt.Sprintf("ForkRepository(git update-server-info): %s", repoPath),
  1259. "git", "update-server-info")
  1260. if err != nil {
  1261. return nil, errors.New("ForkRepository(git update-server-info): " + stderr)
  1262. }
  1263. return repo, nil
  1264. }