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.

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