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 14KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527
  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. "io/ioutil"
  9. "os"
  10. "os/exec"
  11. "path/filepath"
  12. "regexp"
  13. "strings"
  14. "time"
  15. "unicode/utf8"
  16. "github.com/Unknwon/cae/zip"
  17. "github.com/Unknwon/com"
  18. "github.com/gogits/git"
  19. "github.com/gogits/gogs/modules/base"
  20. "github.com/gogits/gogs/modules/log"
  21. )
  22. var (
  23. ErrRepoAlreadyExist = errors.New("Repository already exist")
  24. ErrRepoNotExist = errors.New("Repository does not exist")
  25. ErrRepoFileNotExist = errors.New("Target Repo file does not exist")
  26. ErrRepoNameIllegal = errors.New("Repository name contains illegal characters")
  27. ErrRepoFileNotLoaded = fmt.Errorf("repo file not loaded")
  28. )
  29. var (
  30. LanguageIgns, Licenses []string
  31. )
  32. func LoadRepoConfig() {
  33. LanguageIgns = strings.Split(base.Cfg.MustValue("repository", "LANG_IGNS"), "|")
  34. Licenses = strings.Split(base.Cfg.MustValue("repository", "LICENSES"), "|")
  35. }
  36. func NewRepoContext() {
  37. zip.Verbose = false
  38. // Check if server has basic git setting.
  39. stdout, _, err := com.ExecCmd("git", "config", "--get", "user.name")
  40. if err != nil {
  41. fmt.Printf("repo.init(fail to get git user.name): %v", err)
  42. os.Exit(2)
  43. } else if len(stdout) == 0 {
  44. if _, _, err = com.ExecCmd("git", "config", "--global", "user.email", "gogitservice@gmail.com"); err != nil {
  45. fmt.Printf("repo.init(fail to set git user.email): %v", err)
  46. os.Exit(2)
  47. } else if _, _, err = com.ExecCmd("git", "config", "--global", "user.name", "Gogs"); err != nil {
  48. fmt.Printf("repo.init(fail to set git user.name): %v", err)
  49. os.Exit(2)
  50. }
  51. }
  52. // Initialize illegal patterns.
  53. for i := range illegalPatterns[1:] {
  54. pattern := ""
  55. for j := range illegalPatterns[i+1] {
  56. pattern += "[" + string(illegalPatterns[i+1][j]-32) + string(illegalPatterns[i+1][j]) + "]"
  57. }
  58. illegalPatterns[i+1] = pattern
  59. }
  60. }
  61. // Repository represents a git repository.
  62. type Repository struct {
  63. Id int64
  64. OwnerId int64 `xorm:"unique(s)"`
  65. ForkId int64
  66. LowerName string `xorm:"unique(s) index not null"`
  67. Name string `xorm:"index not null"`
  68. Description string
  69. Website string
  70. NumWatches int
  71. NumStars int
  72. NumForks int
  73. NumIssues int
  74. NumClosedIssues int
  75. IsPrivate bool
  76. IsBare bool
  77. Created time.Time `xorm:"created"`
  78. Updated time.Time `xorm:"updated"`
  79. }
  80. // IsRepositoryExist returns true if the repository with given name under user has already existed.
  81. func IsRepositoryExist(user *User, repoName string) (bool, error) {
  82. repo := Repository{OwnerId: user.Id}
  83. has, err := orm.Where("lower_name = ?", strings.ToLower(repoName)).Get(&repo)
  84. if err != nil {
  85. return has, err
  86. } else if !has {
  87. return false, nil
  88. }
  89. return com.IsDir(RepoPath(user.Name, repoName)), nil
  90. }
  91. var (
  92. // Define as all lower case!!
  93. illegalPatterns = []string{"[.][Gg][Ii][Tt]", "raw", "user", "help", "stars", "issues", "pulls", "commits", "repo", "template", "admin"}
  94. )
  95. // IsLegalName returns false if name contains illegal characters.
  96. func IsLegalName(repoName string) bool {
  97. for _, pattern := range illegalPatterns {
  98. has, _ := regexp.MatchString(pattern, repoName)
  99. if has {
  100. return false
  101. }
  102. }
  103. return true
  104. }
  105. // CreateRepository creates a repository for given user or orgnaziation.
  106. func CreateRepository(user *User, repoName, desc, repoLang, license string, private bool, initReadme bool) (*Repository, error) {
  107. if !IsLegalName(repoName) {
  108. return nil, ErrRepoNameIllegal
  109. }
  110. isExist, err := IsRepositoryExist(user, repoName)
  111. if err != nil {
  112. return nil, err
  113. } else if isExist {
  114. return nil, ErrRepoAlreadyExist
  115. }
  116. repo := &Repository{
  117. OwnerId: user.Id,
  118. Name: repoName,
  119. LowerName: strings.ToLower(repoName),
  120. Description: desc,
  121. IsPrivate: private,
  122. IsBare: repoLang == "" && license == "" && !initReadme,
  123. }
  124. repoPath := RepoPath(user.Name, repoName)
  125. if err = initRepository(repoPath, user, repo, initReadme, repoLang, license); err != nil {
  126. return nil, err
  127. }
  128. session := orm.NewSession()
  129. defer session.Close()
  130. session.Begin()
  131. if _, err = session.Insert(repo); err != nil {
  132. if err2 := os.RemoveAll(repoPath); err2 != nil {
  133. log.Error("repo.CreateRepository(repo): %v", err)
  134. return nil, errors.New(fmt.Sprintf(
  135. "delete repo directory %s/%s failed(1): %v", user.Name, repoName, err2))
  136. }
  137. session.Rollback()
  138. return nil, err
  139. }
  140. access := Access{
  141. UserName: user.Name,
  142. RepoName: repo.Name,
  143. Mode: AU_WRITABLE,
  144. }
  145. if _, err = session.Insert(&access); err != nil {
  146. session.Rollback()
  147. if err2 := os.RemoveAll(repoPath); err2 != nil {
  148. log.Error("repo.CreateRepository(access): %v", err)
  149. return nil, errors.New(fmt.Sprintf(
  150. "delete repo directory %s/%s failed(2): %v", user.Name, repoName, err2))
  151. }
  152. return nil, err
  153. }
  154. rawSql := "UPDATE `user` SET num_repos = num_repos + 1 WHERE id = ?"
  155. if _, err = session.Exec(rawSql, user.Id); err != nil {
  156. session.Rollback()
  157. if err2 := os.RemoveAll(repoPath); err2 != nil {
  158. log.Error("repo.CreateRepository(repo count): %v", err)
  159. return nil, errors.New(fmt.Sprintf(
  160. "delete repo directory %s/%s failed(3): %v", user.Name, repoName, err2))
  161. }
  162. return nil, err
  163. }
  164. if err = session.Commit(); err != nil {
  165. session.Rollback()
  166. if err2 := os.RemoveAll(repoPath); err2 != nil {
  167. log.Error("repo.CreateRepository(commit): %v", err)
  168. return nil, errors.New(fmt.Sprintf(
  169. "delete repo directory %s/%s failed(3): %v", user.Name, repoName, err2))
  170. }
  171. return nil, err
  172. }
  173. c := exec.Command("git", "update-server-info")
  174. c.Dir = repoPath
  175. err = c.Run()
  176. if err != nil {
  177. log.Error("repo.CreateRepository(exec update-server-info): %v", err)
  178. }
  179. return repo, NewRepoAction(user, repo)
  180. }
  181. // extractGitBareZip extracts git-bare.zip to repository path.
  182. func extractGitBareZip(repoPath string) error {
  183. z, err := zip.Open("conf/content/git-bare.zip")
  184. if err != nil {
  185. fmt.Println("shi?")
  186. return err
  187. }
  188. defer z.Close()
  189. return z.ExtractTo(repoPath)
  190. }
  191. // initRepoCommit temporarily changes with work directory.
  192. func initRepoCommit(tmpPath string, sig *git.Signature) (err error) {
  193. var stderr string
  194. if _, stderr, err = com.ExecCmdDir(tmpPath, "git", "add", "--all"); err != nil {
  195. return err
  196. }
  197. if len(stderr) > 0 {
  198. log.Trace("stderr(1): %s", stderr)
  199. }
  200. if _, stderr, err = com.ExecCmdDir(tmpPath, "git", "commit", fmt.Sprintf("--author='%s <%s>'", sig.Name, sig.Email),
  201. "-m", "Init commit"); err != nil {
  202. return err
  203. }
  204. if len(stderr) > 0 {
  205. log.Trace("stderr(2): %s", stderr)
  206. }
  207. if _, stderr, err = com.ExecCmdDir(tmpPath, "git", "push", "origin", "master"); err != nil {
  208. return err
  209. }
  210. if len(stderr) > 0 {
  211. log.Trace("stderr(3): %s", stderr)
  212. }
  213. return nil
  214. }
  215. func createHookUpdate(hookPath, content string) error {
  216. pu, err := os.OpenFile(hookPath, os.O_CREATE|os.O_WRONLY, 0777)
  217. if err != nil {
  218. return err
  219. }
  220. defer pu.Close()
  221. _, err = pu.WriteString(content)
  222. return err
  223. }
  224. // InitRepository initializes README and .gitignore if needed.
  225. func initRepository(f string, user *User, repo *Repository, initReadme bool, repoLang, license string) error {
  226. repoPath := RepoPath(user.Name, repo.Name)
  227. // Create bare new repository.
  228. if err := extractGitBareZip(repoPath); err != nil {
  229. return err
  230. }
  231. // hook/post-update
  232. if err := createHookUpdate(filepath.Join(repoPath, "hooks", "update"),
  233. fmt.Sprintf("#!/usr/bin/env bash\n%s update $1 $2 $3\n",
  234. strings.Replace(appPath, "\\", "/", -1))); err != nil {
  235. return err
  236. }
  237. // Initialize repository according to user's choice.
  238. fileName := map[string]string{}
  239. if initReadme {
  240. fileName["readme"] = "README.md"
  241. }
  242. if repoLang != "" {
  243. fileName["gitign"] = ".gitignore"
  244. }
  245. if license != "" {
  246. fileName["license"] = "LICENSE"
  247. }
  248. // Clone to temprory path and do the init commit.
  249. tmpDir := filepath.Join(os.TempDir(), fmt.Sprintf("%d", time.Now().Nanosecond()))
  250. os.MkdirAll(tmpDir, os.ModePerm)
  251. if _, _, err := com.ExecCmd("git", "clone", repoPath, tmpDir); err != nil {
  252. return err
  253. }
  254. // README
  255. if initReadme {
  256. defaultReadme := repo.Name + "\n" + strings.Repeat("=",
  257. utf8.RuneCountInString(repo.Name)) + "\n\n" + repo.Description
  258. if err := ioutil.WriteFile(filepath.Join(tmpDir, fileName["readme"]),
  259. []byte(defaultReadme), 0644); err != nil {
  260. return err
  261. }
  262. }
  263. // .gitignore
  264. if repoLang != "" {
  265. filePath := "conf/gitignore/" + repoLang
  266. if com.IsFile(filePath) {
  267. if _, err := com.Copy(filePath,
  268. filepath.Join(tmpDir, fileName["gitign"])); err != nil {
  269. return err
  270. }
  271. }
  272. }
  273. // LICENSE
  274. if license != "" {
  275. filePath := "conf/license/" + license
  276. if com.IsFile(filePath) {
  277. if _, err := com.Copy(filePath,
  278. filepath.Join(tmpDir, fileName["license"])); err != nil {
  279. return err
  280. }
  281. }
  282. }
  283. if len(fileName) == 0 {
  284. return nil
  285. }
  286. // Apply changes and commit.
  287. return initRepoCommit(tmpDir, user.NewGitSig())
  288. }
  289. // UserRepo reporesents a repository with user name.
  290. type UserRepo struct {
  291. *Repository
  292. UserName string
  293. }
  294. // GetRepos returns given number of repository objects with offset.
  295. func GetRepos(num, offset int) ([]UserRepo, error) {
  296. repos := make([]Repository, 0, num)
  297. if err := orm.Limit(num, offset).Asc("id").Find(&repos); err != nil {
  298. return nil, err
  299. }
  300. urepos := make([]UserRepo, len(repos))
  301. for i := range repos {
  302. urepos[i].Repository = &repos[i]
  303. u := new(User)
  304. has, err := orm.Id(urepos[i].Repository.OwnerId).Get(u)
  305. if err != nil {
  306. return nil, err
  307. } else if !has {
  308. return nil, ErrUserNotExist
  309. }
  310. urepos[i].UserName = u.Name
  311. }
  312. return urepos, nil
  313. }
  314. func RepoPath(userName, repoName string) string {
  315. return filepath.Join(UserPath(userName), repoName+".git")
  316. }
  317. func UpdateRepository(repo *Repository) error {
  318. if len(repo.Description) > 255 {
  319. repo.Description = repo.Description[:255]
  320. }
  321. if len(repo.Website) > 255 {
  322. repo.Website = repo.Website[:255]
  323. }
  324. _, err := orm.Id(repo.Id).AllCols().Update(repo)
  325. return err
  326. }
  327. // DeleteRepository deletes a repository for a user or orgnaztion.
  328. func DeleteRepository(userId, repoId int64, userName string) (err error) {
  329. repo := &Repository{Id: repoId, OwnerId: userId}
  330. has, err := orm.Get(repo)
  331. if err != nil {
  332. return err
  333. } else if !has {
  334. return ErrRepoNotExist
  335. }
  336. session := orm.NewSession()
  337. if err = session.Begin(); err != nil {
  338. return err
  339. }
  340. if _, err = session.Delete(&Repository{Id: repoId}); err != nil {
  341. session.Rollback()
  342. return err
  343. }
  344. if _, err := session.Delete(&Access{UserName: userName, RepoName: repo.Name}); err != nil {
  345. session.Rollback()
  346. return err
  347. }
  348. rawSql := "UPDATE `user` SET num_repos = num_repos - 1 WHERE id = ?"
  349. if _, err = session.Exec(rawSql, userId); err != nil {
  350. session.Rollback()
  351. return err
  352. }
  353. if _, err = session.Delete(&Watch{RepoId: repoId}); err != nil {
  354. session.Rollback()
  355. return err
  356. }
  357. if err = session.Commit(); err != nil {
  358. session.Rollback()
  359. return err
  360. }
  361. if err = os.RemoveAll(RepoPath(userName, repo.Name)); err != nil {
  362. // TODO: log and delete manully
  363. log.Error("delete repo %s/%s failed: %v", userName, repo.Name, err)
  364. return err
  365. }
  366. return nil
  367. }
  368. // GetRepositoryByName returns the repository by given name under user if exists.
  369. func GetRepositoryByName(userId int64, repoName string) (*Repository, error) {
  370. repo := &Repository{
  371. OwnerId: userId,
  372. LowerName: strings.ToLower(repoName),
  373. }
  374. has, err := orm.Get(repo)
  375. if err != nil {
  376. return nil, err
  377. } else if !has {
  378. return nil, ErrRepoNotExist
  379. }
  380. return repo, err
  381. }
  382. // GetRepositoryById returns the repository by given id if exists.
  383. func GetRepositoryById(id int64) (repo *Repository, err error) {
  384. has, err := orm.Id(id).Get(repo)
  385. if err != nil {
  386. return nil, err
  387. } else if !has {
  388. return nil, ErrRepoNotExist
  389. }
  390. return repo, err
  391. }
  392. // GetRepositories returns the list of repositories of given user.
  393. func GetRepositories(user *User) ([]Repository, error) {
  394. repos := make([]Repository, 0, 10)
  395. err := orm.Desc("updated").Find(&repos, &Repository{OwnerId: user.Id})
  396. return repos, err
  397. }
  398. func GetRepositoryCount(user *User) (int64, error) {
  399. return orm.Count(&Repository{OwnerId: user.Id})
  400. }
  401. // Watch is connection request for receiving repository notifycation.
  402. type Watch struct {
  403. Id int64
  404. RepoId int64 `xorm:"UNIQUE(watch)"`
  405. UserId int64 `xorm:"UNIQUE(watch)"`
  406. }
  407. // Watch or unwatch repository.
  408. func WatchRepo(userId, repoId int64, watch bool) (err error) {
  409. if watch {
  410. if _, err = orm.Insert(&Watch{RepoId: repoId, UserId: userId}); err != nil {
  411. return err
  412. }
  413. rawSql := "UPDATE `repository` SET num_watches = num_watches + 1 WHERE id = ?"
  414. _, err = orm.Exec(rawSql, repoId)
  415. } else {
  416. if _, err = orm.Delete(&Watch{0, repoId, userId}); err != nil {
  417. return err
  418. }
  419. rawSql := "UPDATE `repository` SET num_watches = num_watches - 1 WHERE id = ?"
  420. _, err = orm.Exec(rawSql, repoId)
  421. }
  422. return err
  423. }
  424. // GetWatches returns all watches of given repository.
  425. func GetWatches(repoId int64) ([]Watch, error) {
  426. watches := make([]Watch, 0, 10)
  427. err := orm.Find(&watches, &Watch{RepoId: repoId})
  428. return watches, err
  429. }
  430. // NotifyWatchers creates batch of actions for every watcher.
  431. func NotifyWatchers(act *Action) error {
  432. // Add feeds for user self and all watchers.
  433. watches, err := GetWatches(act.RepoId)
  434. if err != nil {
  435. return errors.New("repo.NotifyWatchers(get watches): " + err.Error())
  436. }
  437. // Add feed for actioner.
  438. act.UserId = act.ActUserId
  439. if _, err = orm.InsertOne(act); err != nil {
  440. return errors.New("repo.NotifyWatchers(create action): " + err.Error())
  441. }
  442. for i := range watches {
  443. if act.ActUserId == watches[i].UserId {
  444. continue
  445. }
  446. act.UserId = watches[i].UserId
  447. if _, err = orm.InsertOne(act); err != nil {
  448. return errors.New("repo.NotifyWatchers(create action): " + err.Error())
  449. }
  450. }
  451. return nil
  452. }
  453. // IsWatching checks if user has watched given repository.
  454. func IsWatching(userId, repoId int64) bool {
  455. has, _ := orm.Get(&Watch{0, repoId, userId})
  456. return has
  457. }
  458. func ForkRepository(reposName string, userId int64) {
  459. }