repo.go 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518
  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. IsPrivate bool
  74. IsBare bool
  75. Created time.Time `xorm:"created"`
  76. Updated time.Time `xorm:"updated"`
  77. }
  78. // IsRepositoryExist returns true if the repository with given name under user has already existed.
  79. func IsRepositoryExist(user *User, repoName string) (bool, error) {
  80. repo := Repository{OwnerId: user.Id}
  81. has, err := orm.Where("lower_name = ?", strings.ToLower(repoName)).Get(&repo)
  82. if err != nil {
  83. return has, err
  84. }
  85. s, err := os.Stat(RepoPath(user.Name, repoName))
  86. if err != nil {
  87. return false, nil // Error simply means does not exist, but we don't want to show up.
  88. }
  89. return s.IsDir(), nil
  90. }
  91. var (
  92. // Define as all lower case!!
  93. illegalPatterns = []string{"[.][Gg][Ii][Tt]", "raw", "user", "help", "stars", "issues", "pulls", "commits", "admin", "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. log.Trace("stderr(1): %s", stderr)
  198. if _, stderr, err = com.ExecCmdDir(tmpPath, "git", "commit", fmt.Sprintf("--author='%s <%s>'", sig.Name, sig.Email),
  199. "-m", "Init commit"); err != nil {
  200. return err
  201. }
  202. log.Trace("stderr(2): %s", stderr)
  203. if _, stderr, err = com.ExecCmdDir(tmpPath, "git", "push", "origin", "master"); err != nil {
  204. return err
  205. }
  206. log.Trace("stderr(3): %s", stderr)
  207. return nil
  208. }
  209. // InitRepository initializes README and .gitignore if needed.
  210. func initRepository(f string, user *User, repo *Repository, initReadme bool, repoLang, license string) error {
  211. repoPath := RepoPath(user.Name, repo.Name)
  212. // Create bare new repository.
  213. if err := extractGitBareZip(repoPath); err != nil {
  214. return err
  215. }
  216. // hook/post-update
  217. pu, err := os.OpenFile(filepath.Join(repoPath, "hooks", "update"), os.O_CREATE|os.O_WRONLY, 0777)
  218. if err != nil {
  219. return err
  220. }
  221. defer pu.Close()
  222. // TODO: Windows .bat
  223. if _, err = pu.WriteString(fmt.Sprintf("#!/usr/bin/env bash\n%s update $1 $2 $3\n", appPath)); err != nil {
  224. return err
  225. }
  226. // Initialize repository according to user's choice.
  227. fileName := map[string]string{}
  228. if initReadme {
  229. fileName["readme"] = "README.md"
  230. }
  231. if repoLang != "" {
  232. fileName["gitign"] = ".gitignore"
  233. }
  234. if license != "" {
  235. fileName["license"] = "LICENSE"
  236. }
  237. // Clone to temprory path and do the init commit.
  238. tmpDir := filepath.Join(os.TempDir(), fmt.Sprintf("%d", time.Now().Nanosecond()))
  239. os.MkdirAll(tmpDir, os.ModePerm)
  240. if _, _, err := com.ExecCmd("git", "clone", repoPath, tmpDir); err != nil {
  241. return err
  242. }
  243. // README
  244. if initReadme {
  245. defaultReadme := repo.Name + "\n" + strings.Repeat("=",
  246. utf8.RuneCountInString(repo.Name)) + "\n\n" + repo.Description
  247. if err := ioutil.WriteFile(filepath.Join(tmpDir, fileName["readme"]),
  248. []byte(defaultReadme), 0644); err != nil {
  249. return err
  250. }
  251. }
  252. // .gitignore
  253. if repoLang != "" {
  254. filePath := "conf/gitignore/" + repoLang
  255. if com.IsFile(filePath) {
  256. if _, err := com.Copy(filePath,
  257. filepath.Join(tmpDir, fileName["gitign"])); err != nil {
  258. return err
  259. }
  260. }
  261. }
  262. // LICENSE
  263. if license != "" {
  264. filePath := "conf/license/" + license
  265. if com.IsFile(filePath) {
  266. if _, err := com.Copy(filePath,
  267. filepath.Join(tmpDir, fileName["license"])); err != nil {
  268. return err
  269. }
  270. }
  271. }
  272. if len(fileName) == 0 {
  273. return nil
  274. }
  275. // Apply changes and commit.
  276. if err := initRepoCommit(tmpDir, user.NewGitSig()); err != nil {
  277. return err
  278. }
  279. return nil
  280. }
  281. // UserRepo reporesents a repository with user name.
  282. type UserRepo struct {
  283. *Repository
  284. UserName string
  285. }
  286. // GetRepos returns given number of repository objects with offset.
  287. func GetRepos(num, offset int) ([]UserRepo, error) {
  288. repos := make([]Repository, 0, num)
  289. if err := orm.Limit(num, offset).Asc("id").Find(&repos); err != nil {
  290. return nil, err
  291. }
  292. urepos := make([]UserRepo, len(repos))
  293. for i := range repos {
  294. urepos[i].Repository = &repos[i]
  295. u := new(User)
  296. has, err := orm.Id(urepos[i].Repository.OwnerId).Get(u)
  297. if err != nil {
  298. return nil, err
  299. } else if !has {
  300. return nil, ErrUserNotExist
  301. }
  302. urepos[i].UserName = u.Name
  303. }
  304. return urepos, nil
  305. }
  306. func RepoPath(userName, repoName string) string {
  307. return filepath.Join(UserPath(userName), repoName+".git")
  308. }
  309. func UpdateRepository(repo *Repository) error {
  310. if len(repo.Description) > 255 {
  311. repo.Description = repo.Description[:255]
  312. }
  313. if len(repo.Website) > 255 {
  314. repo.Website = repo.Website[:255]
  315. }
  316. _, err := orm.Id(repo.Id).AllCols().Update(repo)
  317. return err
  318. }
  319. // DeleteRepository deletes a repository for a user or orgnaztion.
  320. func DeleteRepository(userId, repoId int64, userName string) (err error) {
  321. repo := &Repository{Id: repoId, OwnerId: userId}
  322. has, err := orm.Get(repo)
  323. if err != nil {
  324. return err
  325. } else if !has {
  326. return ErrRepoNotExist
  327. }
  328. session := orm.NewSession()
  329. if err = session.Begin(); err != nil {
  330. return err
  331. }
  332. if _, err = session.Delete(&Repository{Id: repoId}); err != nil {
  333. session.Rollback()
  334. return err
  335. }
  336. if _, err := session.Delete(&Access{UserName: userName, RepoName: repo.Name}); err != nil {
  337. session.Rollback()
  338. return err
  339. }
  340. rawSql := "UPDATE `user` SET num_repos = num_repos - 1 WHERE id = ?"
  341. if _, err = session.Exec(rawSql, userId); err != nil {
  342. session.Rollback()
  343. return err
  344. }
  345. if _, err = session.Delete(&Watch{RepoId: repoId}); err != nil {
  346. session.Rollback()
  347. return err
  348. }
  349. if err = session.Commit(); err != nil {
  350. session.Rollback()
  351. return err
  352. }
  353. if err = os.RemoveAll(RepoPath(userName, repo.Name)); err != nil {
  354. // TODO: log and delete manully
  355. log.Error("delete repo %s/%s failed: %v", userName, repo.Name, err)
  356. return err
  357. }
  358. return nil
  359. }
  360. // GetRepositoryByName returns the repository by given name under user if exists.
  361. func GetRepositoryByName(userId int64, repoName string) (*Repository, error) {
  362. repo := &Repository{
  363. OwnerId: userId,
  364. LowerName: strings.ToLower(repoName),
  365. }
  366. has, err := orm.Get(repo)
  367. if err != nil {
  368. return nil, err
  369. } else if !has {
  370. return nil, ErrRepoNotExist
  371. }
  372. return repo, err
  373. }
  374. // GetRepositoryById returns the repository by given id if exists.
  375. func GetRepositoryById(id int64) (repo *Repository, err error) {
  376. has, err := orm.Id(id).Get(repo)
  377. if err != nil {
  378. return nil, err
  379. } else if !has {
  380. return nil, ErrRepoNotExist
  381. }
  382. return repo, err
  383. }
  384. // GetRepositories returns the list of repositories of given user.
  385. func GetRepositories(user *User) ([]Repository, error) {
  386. repos := make([]Repository, 0, 10)
  387. err := orm.Desc("updated").Find(&repos, &Repository{OwnerId: user.Id})
  388. return repos, err
  389. }
  390. func GetRepositoryCount(user *User) (int64, error) {
  391. return orm.Count(&Repository{OwnerId: user.Id})
  392. }
  393. // Watch is connection request for receiving repository notifycation.
  394. type Watch struct {
  395. Id int64
  396. RepoId int64 `xorm:"UNIQUE(watch)"`
  397. UserId int64 `xorm:"UNIQUE(watch)"`
  398. }
  399. // Watch or unwatch repository.
  400. func WatchRepo(userId, repoId int64, watch bool) (err error) {
  401. if watch {
  402. if _, err = orm.Insert(&Watch{RepoId: repoId, UserId: userId}); err != nil {
  403. return err
  404. }
  405. rawSql := "UPDATE `repository` SET num_watches = num_watches + 1 WHERE id = ?"
  406. _, err = orm.Exec(rawSql, repoId)
  407. } else {
  408. if _, err = orm.Delete(&Watch{0, repoId, userId}); err != nil {
  409. return err
  410. }
  411. rawSql := "UPDATE `repository` SET num_watches = num_watches - 1 WHERE id = ?"
  412. _, err = orm.Exec(rawSql, repoId)
  413. }
  414. return err
  415. }
  416. // GetWatches returns all watches of given repository.
  417. func GetWatches(repoId int64) ([]Watch, error) {
  418. watches := make([]Watch, 0, 10)
  419. err := orm.Find(&watches, &Watch{RepoId: repoId})
  420. return watches, err
  421. }
  422. // NotifyWatchers creates batch of actions for every watcher.
  423. func NotifyWatchers(userId, repoId int64, opType int, userName, repoName, refName, content string) error {
  424. // Add feeds for user self and all watchers.
  425. watches, err := GetWatches(repoId)
  426. if err != nil {
  427. return errors.New("repo.NotifyWatchers(get watches): " + err.Error())
  428. }
  429. watches = append(watches, Watch{UserId: userId})
  430. for i := range watches {
  431. if userId == watches[i].UserId && i > 0 {
  432. continue // Do not add twice in case author watches his/her repository.
  433. }
  434. _, err = orm.InsertOne(&Action{
  435. UserId: watches[i].UserId,
  436. ActUserId: userId,
  437. ActUserName: userName,
  438. OpType: opType,
  439. Content: content,
  440. RepoId: repoId,
  441. RepoName: repoName,
  442. RefName: refName,
  443. })
  444. if err != nil {
  445. return errors.New("repo.NotifyWatchers(create action): " + err.Error())
  446. }
  447. }
  448. return nil
  449. }
  450. // IsWatching checks if user has watched given repository.
  451. func IsWatching(userId, repoId int64) bool {
  452. has, _ := orm.Get(&Watch{0, repoId, userId})
  453. return has
  454. }
  455. func ForkRepository(reposName string, userId int64) {
  456. }