repo.go 14 KB

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