repo.go 32 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226
  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 := "[email protected]"
  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. curRepoLink := path.Join(u.LowerName, repo.LowerName)
  590. // Delete all access first if current owner is an organization.
  591. if u.IsOrganization() {
  592. if _, err = sess.Where("repo_name=?", curRepoLink).Delete(new(Access)); err != nil {
  593. sess.Rollback()
  594. return fmt.Errorf("fail to delete current accesses: %v", err)
  595. }
  596. } else {
  597. if _, err = sess.Where("repo_name=?", curRepoLink).And("user_name=?", u.LowerName).
  598. Update(&Access{UserName: newUser.LowerName}); err != nil {
  599. sess.Rollback()
  600. return err
  601. }
  602. }
  603. if _, err = sess.Where("repo_name=?", curRepoLink).
  604. Update(&Access{RepoName: path.Join(newUser.LowerName, repo.LowerName)}); err != nil {
  605. sess.Rollback()
  606. return err
  607. }
  608. // Update repository.
  609. repo.OwnerId = newUser.Id
  610. if _, err := sess.Id(repo.Id).Update(repo); err != nil {
  611. sess.Rollback()
  612. return err
  613. }
  614. // Update user repository number.
  615. if _, err = sess.Exec("UPDATE `user` SET num_repos = num_repos + 1 WHERE id = ?", newUser.Id); err != nil {
  616. sess.Rollback()
  617. return err
  618. }
  619. if _, err = sess.Exec("UPDATE `user` SET num_repos = num_repos - 1 WHERE id = ?", u.Id); err != nil {
  620. sess.Rollback()
  621. return err
  622. }
  623. mode := WRITABLE
  624. if repo.IsMirror {
  625. mode = READABLE
  626. }
  627. // New owner is organization.
  628. if newUser.IsOrganization() {
  629. access := &Access{
  630. RepoName: path.Join(newUser.LowerName, repo.LowerName),
  631. Mode: mode,
  632. }
  633. // Give access to all members in owner team.
  634. t, err := newUser.GetOwnerTeam()
  635. if err != nil {
  636. sess.Rollback()
  637. return err
  638. }
  639. if err = t.GetMembers(); err != nil {
  640. sess.Rollback()
  641. return err
  642. }
  643. for _, u := range t.Members {
  644. access.Id = 0
  645. access.UserName = u.LowerName
  646. if _, err = sess.Insert(access); err != nil {
  647. sess.Rollback()
  648. return err
  649. }
  650. }
  651. // Update owner team info and count.
  652. t.RepoIds += "$" + com.ToStr(repo.Id) + "|"
  653. t.NumRepos++
  654. if _, err = sess.Id(t.Id).AllCols().Update(t); err != nil {
  655. sess.Rollback()
  656. return err
  657. }
  658. } else {
  659. access := &Access{
  660. RepoName: path.Join(newUser.LowerName, repo.LowerName),
  661. UserName: newUser.LowerName,
  662. Mode: mode,
  663. }
  664. if _, err = sess.Insert(access); err != nil {
  665. sess.Rollback()
  666. return err
  667. }
  668. }
  669. // Change repository directory name.
  670. if err = os.Rename(RepoPath(u.Name, repo.Name), RepoPath(newUser.Name, repo.Name)); err != nil {
  671. sess.Rollback()
  672. return err
  673. }
  674. if err = sess.Commit(); err != nil {
  675. return err
  676. }
  677. // Add watch of new owner to repository.
  678. if !newUser.IsOrganization() {
  679. if err = WatchRepo(newUser.Id, repo.Id, true); err != nil {
  680. log.Error(4, "WatchRepo", err)
  681. }
  682. }
  683. if err = WatchRepo(u.Id, repo.Id, false); err != nil {
  684. log.Error(4, "WatchRepo2", err)
  685. }
  686. if err = TransferRepoAction(u, newUser, repo); err != nil {
  687. return err
  688. }
  689. return nil
  690. }
  691. // ChangeRepositoryName changes all corresponding setting from old repository name to new one.
  692. func ChangeRepositoryName(userName, oldRepoName, newRepoName string) (err error) {
  693. if !IsLegalName(newRepoName) {
  694. return ErrRepoNameIllegal
  695. }
  696. // Update accesses.
  697. accesses := make([]Access, 0, 10)
  698. if err = x.Find(&accesses, &Access{RepoName: strings.ToLower(userName + "/" + oldRepoName)}); err != nil {
  699. return err
  700. }
  701. sess := x.NewSession()
  702. defer sess.Close()
  703. if err = sess.Begin(); err != nil {
  704. return err
  705. }
  706. for i := range accesses {
  707. accesses[i].RepoName = userName + "/" + newRepoName
  708. if err = UpdateAccessWithSession(sess, &accesses[i]); err != nil {
  709. return err
  710. }
  711. }
  712. // Change repository directory name.
  713. if err = os.Rename(RepoPath(userName, oldRepoName), RepoPath(userName, newRepoName)); err != nil {
  714. sess.Rollback()
  715. return err
  716. }
  717. return sess.Commit()
  718. }
  719. func UpdateRepository(repo *Repository) error {
  720. repo.LowerName = strings.ToLower(repo.Name)
  721. if len(repo.Description) > 255 {
  722. repo.Description = repo.Description[:255]
  723. }
  724. if len(repo.Website) > 255 {
  725. repo.Website = repo.Website[:255]
  726. }
  727. _, err := x.Id(repo.Id).AllCols().Update(repo)
  728. return err
  729. }
  730. // DeleteRepository deletes a repository for a user or orgnaztion.
  731. func DeleteRepository(uid, repoId int64, userName string) error {
  732. repo := &Repository{Id: repoId, OwnerId: uid}
  733. has, err := x.Get(repo)
  734. if err != nil {
  735. return err
  736. } else if !has {
  737. return ErrRepoNotExist
  738. }
  739. // In case is a organization.
  740. org, err := GetUserById(uid)
  741. if err != nil {
  742. return err
  743. }
  744. if org.IsOrganization() {
  745. if err = org.GetTeams(); err != nil {
  746. return err
  747. }
  748. }
  749. sess := x.NewSession()
  750. defer sess.Close()
  751. if err = sess.Begin(); err != nil {
  752. return err
  753. }
  754. if _, err = sess.Delete(&Repository{Id: repoId}); err != nil {
  755. sess.Rollback()
  756. return err
  757. }
  758. // Delete all access.
  759. if _, err := sess.Delete(&Access{RepoName: strings.ToLower(path.Join(userName, repo.Name))}); err != nil {
  760. sess.Rollback()
  761. return err
  762. }
  763. if org.IsOrganization() {
  764. idStr := "$" + com.ToStr(repoId) + "|"
  765. for _, t := range org.Teams {
  766. if !strings.Contains(t.RepoIds, idStr) {
  767. continue
  768. }
  769. t.NumRepos--
  770. t.RepoIds = strings.Replace(t.RepoIds, idStr, "", 1)
  771. if _, err = sess.Id(t.Id).AllCols().Update(t); err != nil {
  772. sess.Rollback()
  773. return err
  774. }
  775. }
  776. }
  777. if _, err := sess.Delete(&Action{RepoId: repo.Id}); err != nil {
  778. sess.Rollback()
  779. return err
  780. }
  781. if _, err = sess.Delete(&Watch{RepoId: repoId}); err != nil {
  782. sess.Rollback()
  783. return err
  784. }
  785. if _, err = sess.Delete(&Mirror{RepoId: repoId}); err != nil {
  786. sess.Rollback()
  787. return err
  788. }
  789. if _, err = sess.Delete(&IssueUser{RepoId: repoId}); err != nil {
  790. sess.Rollback()
  791. return err
  792. }
  793. if _, err = sess.Delete(&Milestone{RepoId: repoId}); err != nil {
  794. sess.Rollback()
  795. return err
  796. }
  797. if _, err = sess.Delete(&Release{RepoId: repoId}); err != nil {
  798. sess.Rollback()
  799. return err
  800. }
  801. // Delete comments.
  802. if err = x.Iterate(&Issue{RepoId: repoId}, func(idx int, bean interface{}) error {
  803. issue := bean.(*Issue)
  804. if _, err = sess.Delete(&Comment{IssueId: issue.Id}); err != nil {
  805. sess.Rollback()
  806. return err
  807. }
  808. return nil
  809. }); err != nil {
  810. sess.Rollback()
  811. return err
  812. }
  813. if _, err = sess.Delete(&Issue{RepoId: repoId}); err != nil {
  814. sess.Rollback()
  815. return err
  816. }
  817. if _, err = sess.Exec("UPDATE `user` SET num_repos = num_repos - 1 WHERE id = ?", uid); err != nil {
  818. sess.Rollback()
  819. return err
  820. }
  821. if err = os.RemoveAll(RepoPath(userName, repo.Name)); err != nil {
  822. sess.Rollback()
  823. return err
  824. }
  825. return sess.Commit()
  826. }
  827. // GetRepositoryByRef returns a Repository specified by a GFM reference.
  828. // See https://help.github.com/articles/writing-on-github#references for more information on the syntax.
  829. func GetRepositoryByRef(ref string) (*Repository, error) {
  830. n := strings.IndexByte(ref, byte('/'))
  831. if n < 2 {
  832. return nil, ErrInvalidReference
  833. }
  834. userName, repoName := ref[:n], ref[n+1:]
  835. user, err := GetUserByName(userName)
  836. if err != nil {
  837. return nil, err
  838. }
  839. return GetRepositoryByName(user.Id, repoName)
  840. }
  841. // GetRepositoryByName returns the repository by given name under user if exists.
  842. func GetRepositoryByName(uid int64, repoName string) (*Repository, error) {
  843. repo := &Repository{
  844. OwnerId: uid,
  845. LowerName: strings.ToLower(repoName),
  846. }
  847. has, err := x.Get(repo)
  848. if err != nil {
  849. return nil, err
  850. } else if !has {
  851. return nil, ErrRepoNotExist
  852. }
  853. return repo, err
  854. }
  855. // GetRepositoryById returns the repository by given id if exists.
  856. func GetRepositoryById(id int64) (*Repository, error) {
  857. repo := &Repository{}
  858. has, err := x.Id(id).Get(repo)
  859. if err != nil {
  860. return nil, err
  861. } else if !has {
  862. return nil, ErrRepoNotExist
  863. }
  864. return repo, nil
  865. }
  866. // GetRepositories returns a list of repositories of given user.
  867. func GetRepositories(uid int64, private bool) ([]*Repository, error) {
  868. repos := make([]*Repository, 0, 10)
  869. sess := x.Desc("updated")
  870. if !private {
  871. sess.Where("is_private=?", false)
  872. }
  873. err := sess.Find(&repos, &Repository{OwnerId: uid})
  874. return repos, err
  875. }
  876. // GetRecentUpdatedRepositories returns the list of repositories that are recently updated.
  877. func GetRecentUpdatedRepositories(num int) (repos []*Repository, err error) {
  878. err = x.Where("is_private=?", false).Limit(num).Desc("updated").Find(&repos)
  879. return repos, err
  880. }
  881. // GetRepositoryCount returns the total number of repositories of user.
  882. func GetRepositoryCount(user *User) (int64, error) {
  883. return x.Count(&Repository{OwnerId: user.Id})
  884. }
  885. // GetCollaboratorNames returns a list of user name of repository's collaborators.
  886. func GetCollaboratorNames(repoName string) ([]string, error) {
  887. accesses := make([]*Access, 0, 10)
  888. if err := x.Find(&accesses, &Access{RepoName: strings.ToLower(repoName)}); err != nil {
  889. return nil, err
  890. }
  891. names := make([]string, len(accesses))
  892. for i := range accesses {
  893. names[i] = accesses[i].UserName
  894. }
  895. return names, nil
  896. }
  897. // GetCollaborativeRepos returns a list of repositories that user is collaborator.
  898. func GetCollaborativeRepos(uname string) ([]*Repository, error) {
  899. uname = strings.ToLower(uname)
  900. accesses := make([]*Access, 0, 10)
  901. if err := x.Find(&accesses, &Access{UserName: uname}); err != nil {
  902. return nil, err
  903. }
  904. repos := make([]*Repository, 0, 10)
  905. for _, access := range accesses {
  906. infos := strings.Split(access.RepoName, "/")
  907. if infos[0] == uname {
  908. continue
  909. }
  910. u, err := GetUserByName(infos[0])
  911. if err != nil {
  912. return nil, err
  913. }
  914. repo, err := GetRepositoryByName(u.Id, infos[1])
  915. if err != nil {
  916. return nil, err
  917. }
  918. repo.Owner = u
  919. repos = append(repos, repo)
  920. }
  921. return repos, nil
  922. }
  923. // GetCollaborators returns a list of users of repository's collaborators.
  924. func GetCollaborators(repoName string) (us []*User, err error) {
  925. accesses := make([]*Access, 0, 10)
  926. if err = x.Find(&accesses, &Access{RepoName: strings.ToLower(repoName)}); err != nil {
  927. return nil, err
  928. }
  929. us = make([]*User, len(accesses))
  930. for i := range accesses {
  931. us[i], err = GetUserByName(accesses[i].UserName)
  932. if err != nil {
  933. return nil, err
  934. }
  935. }
  936. return us, nil
  937. }
  938. type SearchOption struct {
  939. Keyword string
  940. Uid int64
  941. Limit int
  942. }
  943. // SearchRepositoryByName returns given number of repositories whose name contains keyword.
  944. func SearchRepositoryByName(opt SearchOption) (repos []*Repository, err error) {
  945. // Prevent SQL inject.
  946. opt.Keyword = strings.TrimSpace(opt.Keyword)
  947. if len(opt.Keyword) == 0 {
  948. return repos, nil
  949. }
  950. opt.Keyword = strings.Split(opt.Keyword, " ")[0]
  951. if len(opt.Keyword) == 0 {
  952. return repos, nil
  953. }
  954. opt.Keyword = strings.ToLower(opt.Keyword)
  955. repos = make([]*Repository, 0, opt.Limit)
  956. // Append conditions.
  957. sess := x.Limit(opt.Limit)
  958. if opt.Uid > 0 {
  959. sess.Where("owner_id=?", opt.Uid)
  960. }
  961. sess.And("lower_name like '%" + opt.Keyword + "%'").Find(&repos)
  962. return repos, err
  963. }
  964. // __ __ __ .__
  965. // / \ / \_____ _/ |_ ____ | |__
  966. // \ \/\/ /\__ \\ __\/ ___\| | \
  967. // \ / / __ \| | \ \___| Y \
  968. // \__/\ / (____ /__| \___ >___| /
  969. // \/ \/ \/ \/
  970. // Watch is connection request for receiving repository notifycation.
  971. type Watch struct {
  972. Id int64
  973. UserId int64 `xorm:"UNIQUE(watch)"`
  974. RepoId int64 `xorm:"UNIQUE(watch)"`
  975. }
  976. // Watch or unwatch repository.
  977. func WatchRepo(uid, repoId int64, watch bool) (err error) {
  978. if watch {
  979. if IsWatching(uid, repoId) {
  980. return nil
  981. }
  982. if _, err = x.Insert(&Watch{RepoId: repoId, UserId: uid}); err != nil {
  983. return err
  984. }
  985. _, err = x.Exec("UPDATE `repository` SET num_watches = num_watches + 1 WHERE id = ?", repoId)
  986. } else {
  987. if !IsWatching(uid, repoId) {
  988. return nil
  989. }
  990. if _, err = x.Delete(&Watch{0, uid, repoId}); err != nil {
  991. return err
  992. }
  993. _, err = x.Exec("UPDATE `repository` SET num_watches = num_watches - 1 WHERE id = ?", repoId)
  994. }
  995. return err
  996. }
  997. // IsWatching checks if user has watched given repository.
  998. func IsWatching(uid, rid int64) bool {
  999. has, _ := x.Get(&Watch{0, uid, rid})
  1000. return has
  1001. }
  1002. // GetWatchers returns all watchers of given repository.
  1003. func GetWatchers(rid int64) ([]*Watch, error) {
  1004. watches := make([]*Watch, 0, 10)
  1005. err := x.Find(&watches, &Watch{RepoId: rid})
  1006. return watches, err
  1007. }
  1008. // NotifyWatchers creates batch of actions for every watcher.
  1009. func NotifyWatchers(act *Action) error {
  1010. // Add feeds for user self and all watchers.
  1011. watches, err := GetWatchers(act.RepoId)
  1012. if err != nil {
  1013. return errors.New("repo.NotifyWatchers(get watches): " + err.Error())
  1014. }
  1015. // Add feed for actioner.
  1016. act.UserId = act.ActUserId
  1017. if _, err = x.InsertOne(act); err != nil {
  1018. return errors.New("repo.NotifyWatchers(create action): " + err.Error())
  1019. }
  1020. for i := range watches {
  1021. if act.ActUserId == watches[i].UserId {
  1022. continue
  1023. }
  1024. act.Id = 0
  1025. act.UserId = watches[i].UserId
  1026. if _, err = x.InsertOne(act); err != nil {
  1027. return errors.New("repo.NotifyWatchers(create action): " + err.Error())
  1028. }
  1029. }
  1030. return nil
  1031. }
  1032. // _________ __
  1033. // / _____// |______ _______
  1034. // \_____ \\ __\__ \\_ __ \
  1035. // / \| | / __ \| | \/
  1036. // /_______ /|__| (____ /__|
  1037. // \/ \/
  1038. type Star struct {
  1039. Id int64
  1040. Uid int64 `xorm:"UNIQUE(s)"`
  1041. RepoId int64 `xorm:"UNIQUE(s)"`
  1042. }
  1043. // Star or unstar repository.
  1044. func StarRepo(uid, repoId int64, star bool) (err error) {
  1045. if star {
  1046. if IsStaring(uid, repoId) {
  1047. return nil
  1048. }
  1049. if _, err = x.Insert(&Star{Uid: uid, RepoId: repoId}); err != nil {
  1050. return err
  1051. } else if _, err = x.Exec("UPDATE `repository` SET num_stars = num_stars + 1 WHERE id = ?", repoId); err != nil {
  1052. return err
  1053. }
  1054. _, err = x.Exec("UPDATE `user` SET num_stars = num_stars + 1 WHERE id = ?", uid)
  1055. } else {
  1056. if !IsStaring(uid, repoId) {
  1057. return nil
  1058. }
  1059. if _, err = x.Delete(&Star{0, uid, repoId}); err != nil {
  1060. return err
  1061. } else if _, err = x.Exec("UPDATE `repository` SET num_stars = num_stars - 1 WHERE id = ?", repoId); err != nil {
  1062. return err
  1063. }
  1064. _, err = x.Exec("UPDATE `user` SET num_stars = num_stars - 1 WHERE id = ?", uid)
  1065. }
  1066. return err
  1067. }
  1068. // IsStaring checks if user has starred given repository.
  1069. func IsStaring(uid, repoId int64) bool {
  1070. has, _ := x.Get(&Star{0, uid, repoId})
  1071. return has
  1072. }
  1073. func ForkRepository(repoName string, uid int64) {
  1074. }