2014-02-14 23:16:54 +00:00
|
|
|
// Copyright 2014 The Gogs Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2014-02-14 14:20:57 +00:00
|
|
|
package models
|
|
|
|
|
|
|
|
import (
|
2014-03-10 00:06:29 +00:00
|
|
|
"errors"
|
2014-03-11 00:48:58 +00:00
|
|
|
"fmt"
|
2014-03-11 04:18:44 +00:00
|
|
|
"io/ioutil"
|
2014-02-14 14:20:57 +00:00
|
|
|
"os"
|
2014-03-23 11:53:50 +00:00
|
|
|
"os/exec"
|
2014-03-30 02:18:36 +00:00
|
|
|
"path"
|
2014-02-14 14:20:57 +00:00
|
|
|
"path/filepath"
|
|
|
|
"strings"
|
|
|
|
"time"
|
2014-03-11 04:53:53 +00:00
|
|
|
"unicode/utf8"
|
2014-02-14 14:20:57 +00:00
|
|
|
|
2014-03-17 15:56:50 +00:00
|
|
|
"github.com/Unknwon/cae/zip"
|
2014-03-11 05:32:36 +00:00
|
|
|
"github.com/Unknwon/com"
|
2014-03-17 15:56:50 +00:00
|
|
|
|
|
|
|
"github.com/gogits/git"
|
2014-03-07 22:22:15 +00:00
|
|
|
|
2014-03-11 05:32:36 +00:00
|
|
|
"github.com/gogits/gogs/modules/base"
|
2014-03-07 22:22:15 +00:00
|
|
|
"github.com/gogits/gogs/modules/log"
|
2014-02-14 14:20:57 +00:00
|
|
|
)
|
|
|
|
|
2014-03-11 05:32:36 +00:00
|
|
|
var (
|
2014-03-20 20:04:56 +00:00
|
|
|
ErrRepoAlreadyExist = errors.New("Repository already exist")
|
|
|
|
ErrRepoNotExist = errors.New("Repository does not exist")
|
|
|
|
ErrRepoFileNotExist = errors.New("Target Repo file does not exist")
|
|
|
|
ErrRepoNameIllegal = errors.New("Repository name contains illegal characters")
|
2014-04-13 02:30:00 +00:00
|
|
|
ErrRepoFileNotLoaded = errors.New("repo file not loaded")
|
|
|
|
ErrMirrorNotExist = errors.New("Mirror does not exist")
|
2014-03-11 05:32:36 +00:00
|
|
|
)
|
|
|
|
|
2014-03-10 00:06:29 +00:00
|
|
|
var (
|
2014-03-20 20:04:56 +00:00
|
|
|
LanguageIgns, Licenses []string
|
2014-03-10 00:06:29 +00:00
|
|
|
)
|
|
|
|
|
2014-03-21 05:48:10 +00:00
|
|
|
func LoadRepoConfig() {
|
2014-03-11 05:32:36 +00:00
|
|
|
LanguageIgns = strings.Split(base.Cfg.MustValue("repository", "LANG_IGNS"), "|")
|
|
|
|
Licenses = strings.Split(base.Cfg.MustValue("repository", "LICENSES"), "|")
|
2014-03-21 05:48:10 +00:00
|
|
|
}
|
2014-03-17 15:56:50 +00:00
|
|
|
|
2014-03-21 05:48:10 +00:00
|
|
|
func NewRepoContext() {
|
2014-03-17 15:56:50 +00:00
|
|
|
zip.Verbose = false
|
2014-03-17 19:58:32 +00:00
|
|
|
|
|
|
|
// Check if server has basic git setting.
|
2014-04-23 02:34:49 +00:00
|
|
|
stdout, stderr, err := com.ExecCmd("git", "config", "--get", "user.name")
|
|
|
|
if strings.Contains(stderr, "fatal:") {
|
|
|
|
fmt.Printf("repo.NewRepoContext(fail to get git user.name): %s", stderr)
|
2014-03-17 19:58:32 +00:00
|
|
|
os.Exit(2)
|
2014-04-23 02:34:49 +00:00
|
|
|
} else if err != nil || len(strings.TrimSpace(stdout)) == 0 {
|
|
|
|
if _, stderr, err = com.ExecCmd("git", "config", "--global", "user.email", "gogitservice@gmail.com"); err != nil {
|
|
|
|
fmt.Printf("repo.NewRepoContext(fail to set git user.email): %s", stderr)
|
2014-03-17 19:58:32 +00:00
|
|
|
os.Exit(2)
|
2014-04-23 02:34:49 +00:00
|
|
|
} else if _, stderr, err = com.ExecCmd("git", "config", "--global", "user.name", "Gogs"); err != nil {
|
|
|
|
fmt.Printf("repo.NewRepoContext(fail to set git user.name): %s", stderr)
|
2014-03-17 19:58:32 +00:00
|
|
|
os.Exit(2)
|
|
|
|
}
|
|
|
|
}
|
2014-03-11 05:32:36 +00:00
|
|
|
}
|
|
|
|
|
2014-03-20 20:04:56 +00:00
|
|
|
// Repository represents a git repository.
|
|
|
|
type Repository struct {
|
2014-03-27 16:48:29 +00:00
|
|
|
Id int64
|
|
|
|
OwnerId int64 `xorm:"unique(s)"`
|
2014-04-14 08:11:33 +00:00
|
|
|
Owner *User `xorm:"-"`
|
2014-03-27 16:48:29 +00:00
|
|
|
ForkId int64
|
|
|
|
LowerName string `xorm:"unique(s) index not null"`
|
|
|
|
Name string `xorm:"index not null"`
|
|
|
|
Description string
|
|
|
|
Website string
|
|
|
|
NumWatches int
|
|
|
|
NumStars int
|
|
|
|
NumForks int
|
|
|
|
NumIssues int
|
|
|
|
NumClosedIssues int
|
2014-03-27 20:31:32 +00:00
|
|
|
NumOpenIssues int `xorm:"-"`
|
2014-04-14 01:00:12 +00:00
|
|
|
NumTags int `xorm:"-"`
|
2014-03-27 16:48:29 +00:00
|
|
|
IsPrivate bool
|
2014-04-13 00:35:35 +00:00
|
|
|
IsMirror bool
|
2014-03-27 16:48:29 +00:00
|
|
|
IsBare bool
|
2014-04-10 01:42:25 +00:00
|
|
|
IsGoget bool
|
2014-04-11 02:03:31 +00:00
|
|
|
DefaultBranch string
|
2014-03-27 16:48:29 +00:00
|
|
|
Created time.Time `xorm:"created"`
|
|
|
|
Updated time.Time `xorm:"updated"`
|
2014-03-20 20:04:56 +00:00
|
|
|
}
|
|
|
|
|
2014-05-08 12:18:03 +00:00
|
|
|
func (repo *Repository) GetOwner() (err error) {
|
|
|
|
repo.Owner, err = GetUserById(repo.OwnerId)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2014-03-17 18:03:58 +00:00
|
|
|
// IsRepositoryExist returns true if the repository with given name under user has already existed.
|
2014-03-10 00:06:29 +00:00
|
|
|
func IsRepositoryExist(user *User, repoName string) (bool, error) {
|
|
|
|
repo := Repository{OwnerId: user.Id}
|
|
|
|
has, err := orm.Where("lower_name = ?", strings.ToLower(repoName)).Get(&repo)
|
2014-02-19 09:50:53 +00:00
|
|
|
if err != nil {
|
|
|
|
return has, err
|
2014-03-27 19:24:11 +00:00
|
|
|
} else if !has {
|
|
|
|
return false, nil
|
2014-02-19 09:50:53 +00:00
|
|
|
}
|
2014-03-27 19:24:11 +00:00
|
|
|
|
|
|
|
return com.IsDir(RepoPath(user.Name, repoName)), nil
|
2014-02-14 14:20:57 +00:00
|
|
|
}
|
|
|
|
|
2014-03-20 15:41:24 +00:00
|
|
|
var (
|
2014-03-29 21:50:51 +00:00
|
|
|
illegalEquals = []string{"raw", "install", "api", "avatar", "user", "help", "stars", "issues", "pulls", "commits", "repo", "template", "admin"}
|
|
|
|
illegalSuffixs = []string{".git"}
|
2014-03-20 15:41:24 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// IsLegalName returns false if name contains illegal characters.
|
|
|
|
func IsLegalName(repoName string) bool {
|
2014-03-29 21:50:51 +00:00
|
|
|
repoName = strings.ToLower(repoName)
|
|
|
|
for _, char := range illegalEquals {
|
|
|
|
if repoName == char {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for _, char := range illegalSuffixs {
|
|
|
|
if strings.HasSuffix(repoName, char) {
|
2014-03-20 15:41:24 +00:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2014-04-13 00:35:35 +00:00
|
|
|
// Mirror represents a mirror information of repository.
|
|
|
|
type Mirror struct {
|
|
|
|
Id int64
|
|
|
|
RepoId int64
|
|
|
|
RepoName string // <user name>/<repo name>
|
|
|
|
Interval int // Hour.
|
|
|
|
Updated time.Time `xorm:"UPDATED"`
|
|
|
|
NextUpdate time.Time
|
|
|
|
}
|
|
|
|
|
2014-04-13 02:30:00 +00:00
|
|
|
func GetMirror(repoId int64) (*Mirror, error) {
|
|
|
|
m := &Mirror{RepoId: repoId}
|
|
|
|
has, err := orm.Get(m)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
} else if !has {
|
|
|
|
return nil, ErrMirrorNotExist
|
|
|
|
}
|
|
|
|
return m, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func UpdateMirror(m *Mirror) error {
|
|
|
|
_, err := orm.Id(m.Id).Update(m)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2014-04-13 01:30:09 +00:00
|
|
|
// MirrorUpdate checks and updates mirror repositories.
|
|
|
|
func MirrorUpdate() {
|
|
|
|
if err := orm.Iterate(new(Mirror), func(idx int, bean interface{}) error {
|
|
|
|
m := bean.(*Mirror)
|
|
|
|
if m.NextUpdate.After(time.Now()) {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
repoPath := filepath.Join(base.RepoRootPath, m.RepoName+".git")
|
|
|
|
_, stderr, err := com.ExecCmdDir(repoPath, "git", "remote", "update")
|
|
|
|
if err != nil {
|
2014-04-27 07:05:13 +00:00
|
|
|
return errors.New("git remote update: " + stderr)
|
2014-04-13 01:30:09 +00:00
|
|
|
} else if err = git.UnpackRefs(repoPath); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
m.NextUpdate = time.Now().Add(time.Duration(m.Interval) * time.Hour)
|
2014-04-13 02:30:00 +00:00
|
|
|
return UpdateMirror(m)
|
2014-04-13 01:30:09 +00:00
|
|
|
}); err != nil {
|
|
|
|
log.Error("repo.MirrorUpdate: %v", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-13 00:35:35 +00:00
|
|
|
// MirrorRepository creates a mirror repository from source.
|
|
|
|
func MirrorRepository(repoId int64, userName, repoName, repoPath, url string) error {
|
|
|
|
_, stderr, err := com.ExecCmd("git", "clone", "--mirror", url, repoPath)
|
|
|
|
if err != nil {
|
2014-04-27 07:05:13 +00:00
|
|
|
return errors.New("git clone --mirror: " + stderr)
|
2014-04-13 00:35:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if _, err = orm.InsertOne(&Mirror{
|
|
|
|
RepoId: repoId,
|
|
|
|
RepoName: strings.ToLower(userName + "/" + repoName),
|
|
|
|
Interval: 24,
|
|
|
|
NextUpdate: time.Now().Add(24 * time.Hour),
|
|
|
|
}); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return git.UnpackRefs(repoPath)
|
|
|
|
}
|
|
|
|
|
|
|
|
// MigrateRepository migrates a existing repository from other project hosting.
|
|
|
|
func MigrateRepository(user *User, name, desc string, private, mirror bool, url string) (*Repository, error) {
|
|
|
|
repo, err := CreateRepository(user, name, desc, "", "", private, mirror, false)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Clone to temprory path and do the init commit.
|
|
|
|
tmpDir := filepath.Join(os.TempDir(), fmt.Sprintf("%d", time.Now().Nanosecond()))
|
|
|
|
os.MkdirAll(tmpDir, os.ModePerm)
|
|
|
|
|
|
|
|
repoPath := RepoPath(user.Name, name)
|
|
|
|
|
|
|
|
repo.IsBare = false
|
|
|
|
if mirror {
|
|
|
|
if err = MirrorRepository(repo.Id, user.Name, repo.Name, repoPath, url); err != nil {
|
|
|
|
return repo, err
|
|
|
|
}
|
|
|
|
repo.IsMirror = true
|
|
|
|
return repo, UpdateRepository(repo)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Clone from local repository.
|
|
|
|
_, stderr, err := com.ExecCmd("git", "clone", repoPath, tmpDir)
|
|
|
|
if err != nil {
|
|
|
|
return repo, errors.New("git clone: " + stderr)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Pull data from source.
|
|
|
|
_, stderr, err = com.ExecCmdDir(tmpDir, "git", "pull", url)
|
|
|
|
if err != nil {
|
|
|
|
return repo, errors.New("git pull: " + stderr)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Push data to local repository.
|
|
|
|
if _, stderr, err = com.ExecCmdDir(tmpDir, "git", "push", "origin", "master"); err != nil {
|
|
|
|
return repo, errors.New("git push: " + stderr)
|
|
|
|
}
|
|
|
|
|
|
|
|
return repo, UpdateRepository(repo)
|
|
|
|
}
|
|
|
|
|
2014-03-07 22:08:21 +00:00
|
|
|
// CreateRepository creates a repository for given user or orgnaziation.
|
2014-04-13 00:35:35 +00:00
|
|
|
func CreateRepository(user *User, name, desc, lang, license string, private, mirror, initReadme bool) (*Repository, error) {
|
|
|
|
if !IsLegalName(name) {
|
2014-03-20 15:41:24 +00:00
|
|
|
return nil, ErrRepoNameIllegal
|
|
|
|
}
|
|
|
|
|
2014-04-13 00:35:35 +00:00
|
|
|
isExist, err := IsRepositoryExist(user, name)
|
2014-02-14 14:20:57 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
2014-03-10 00:06:29 +00:00
|
|
|
} else if isExist {
|
|
|
|
return nil, ErrRepoAlreadyExist
|
|
|
|
}
|
|
|
|
|
|
|
|
repo := &Repository{
|
2014-05-01 16:03:10 +00:00
|
|
|
OwnerId: user.Id,
|
|
|
|
Name: name,
|
|
|
|
LowerName: strings.ToLower(name),
|
|
|
|
Description: desc,
|
|
|
|
IsPrivate: private,
|
|
|
|
IsBare: lang == "" && license == "" && !initReadme,
|
2014-03-10 00:06:29 +00:00
|
|
|
}
|
2014-05-01 16:03:10 +00:00
|
|
|
if !repo.IsBare {
|
|
|
|
repo.DefaultBranch = "master"
|
|
|
|
}
|
|
|
|
|
2014-04-13 00:35:35 +00:00
|
|
|
repoPath := RepoPath(user.Name, repo.Name)
|
2014-04-07 18:24:58 +00:00
|
|
|
|
2014-04-04 22:31:09 +00:00
|
|
|
sess := orm.NewSession()
|
|
|
|
defer sess.Close()
|
|
|
|
sess.Begin()
|
2014-03-10 00:06:29 +00:00
|
|
|
|
2014-04-04 22:31:09 +00:00
|
|
|
if _, err = sess.Insert(repo); err != nil {
|
2014-03-17 18:03:58 +00:00
|
|
|
if err2 := os.RemoveAll(repoPath); err2 != nil {
|
|
|
|
log.Error("repo.CreateRepository(repo): %v", err)
|
2014-03-11 00:48:58 +00:00
|
|
|
return nil, errors.New(fmt.Sprintf(
|
2014-04-13 00:35:35 +00:00
|
|
|
"delete repo directory %s/%s failed(1): %v", user.Name, repo.Name, err2))
|
2014-02-20 06:53:56 +00:00
|
|
|
}
|
2014-04-04 22:31:09 +00:00
|
|
|
sess.Rollback()
|
2014-02-14 14:20:57 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
2014-03-10 00:06:29 +00:00
|
|
|
|
2014-04-13 00:35:35 +00:00
|
|
|
mode := AU_WRITABLE
|
|
|
|
if mirror {
|
|
|
|
mode = AU_READABLE
|
|
|
|
}
|
2014-03-10 00:06:29 +00:00
|
|
|
access := Access{
|
2014-03-30 20:01:50 +00:00
|
|
|
UserName: user.LowerName,
|
2014-03-30 02:18:36 +00:00
|
|
|
RepoName: strings.ToLower(path.Join(user.Name, repo.Name)),
|
2014-04-13 00:35:35 +00:00
|
|
|
Mode: mode,
|
2014-02-25 07:11:54 +00:00
|
|
|
}
|
2014-04-04 22:31:09 +00:00
|
|
|
if _, err = sess.Insert(&access); err != nil {
|
|
|
|
sess.Rollback()
|
2014-03-17 18:03:58 +00:00
|
|
|
if err2 := os.RemoveAll(repoPath); err2 != nil {
|
|
|
|
log.Error("repo.CreateRepository(access): %v", err)
|
2014-03-11 00:48:58 +00:00
|
|
|
return nil, errors.New(fmt.Sprintf(
|
2014-04-13 00:35:35 +00:00
|
|
|
"delete repo directory %s/%s failed(2): %v", user.Name, repo.Name, err2))
|
2014-02-25 07:11:54 +00:00
|
|
|
}
|
|
|
|
return nil, err
|
|
|
|
}
|
2014-03-10 00:06:29 +00:00
|
|
|
|
2014-03-19 07:46:16 +00:00
|
|
|
rawSql := "UPDATE `user` SET num_repos = num_repos + 1 WHERE id = ?"
|
2014-04-04 22:31:09 +00:00
|
|
|
if _, err = sess.Exec(rawSql, user.Id); err != nil {
|
|
|
|
sess.Rollback()
|
2014-03-17 18:03:58 +00:00
|
|
|
if err2 := os.RemoveAll(repoPath); err2 != nil {
|
|
|
|
log.Error("repo.CreateRepository(repo count): %v", err)
|
2014-03-11 00:48:58 +00:00
|
|
|
return nil, errors.New(fmt.Sprintf(
|
2014-04-13 00:35:35 +00:00
|
|
|
"delete repo directory %s/%s failed(3): %v", user.Name, repo.Name, err2))
|
2014-02-20 06:53:56 +00:00
|
|
|
}
|
2014-02-14 14:20:57 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
2014-03-10 00:06:29 +00:00
|
|
|
|
2014-04-04 22:31:09 +00:00
|
|
|
if err = sess.Commit(); err != nil {
|
|
|
|
sess.Rollback()
|
2014-03-17 18:03:58 +00:00
|
|
|
if err2 := os.RemoveAll(repoPath); err2 != nil {
|
|
|
|
log.Error("repo.CreateRepository(commit): %v", err)
|
2014-03-11 00:48:58 +00:00
|
|
|
return nil, errors.New(fmt.Sprintf(
|
2014-04-13 00:35:35 +00:00
|
|
|
"delete repo directory %s/%s failed(3): %v", user.Name, repo.Name, err2))
|
2014-02-20 06:53:56 +00:00
|
|
|
}
|
2014-02-14 14:20:57 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
2014-03-13 05:14:43 +00:00
|
|
|
|
2014-03-29 14:01:52 +00:00
|
|
|
if err = WatchRepo(user.Id, repo.Id, true); err != nil {
|
|
|
|
log.Error("repo.CreateRepository(WatchRepo): %v", err)
|
2014-05-01 13:00:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if err = NewRepoAction(user, repo); err != nil {
|
|
|
|
log.Error("repo.CreateRepository(NewRepoAction): %v", err)
|
2014-03-29 14:01:52 +00:00
|
|
|
}
|
|
|
|
|
2014-04-13 00:35:35 +00:00
|
|
|
// No need for init for mirror.
|
|
|
|
if mirror {
|
|
|
|
return repo, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
if err = initRepository(repoPath, user, repo, initReadme, lang, license); err != nil {
|
2014-04-07 18:24:58 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2014-04-11 23:44:13 +00:00
|
|
|
c := exec.Command("git", "update-server-info")
|
|
|
|
c.Dir = repoPath
|
|
|
|
if err = c.Run(); err != nil {
|
|
|
|
log.Error("repo.CreateRepository(exec update-server-info): %v", err)
|
|
|
|
}
|
|
|
|
|
2014-03-29 14:01:52 +00:00
|
|
|
return repo, nil
|
2014-03-17 15:56:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// extractGitBareZip extracts git-bare.zip to repository path.
|
|
|
|
func extractGitBareZip(repoPath string) error {
|
|
|
|
z, err := zip.Open("conf/content/git-bare.zip")
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer z.Close()
|
|
|
|
|
|
|
|
return z.ExtractTo(repoPath)
|
|
|
|
}
|
|
|
|
|
|
|
|
// initRepoCommit temporarily changes with work directory.
|
2014-03-26 03:53:01 +00:00
|
|
|
func initRepoCommit(tmpPath string, sig *git.Signature) (err error) {
|
2014-03-17 19:58:32 +00:00
|
|
|
var stderr string
|
2014-03-26 03:53:01 +00:00
|
|
|
if _, stderr, err = com.ExecCmdDir(tmpPath, "git", "add", "--all"); err != nil {
|
2014-04-14 08:11:33 +00:00
|
|
|
return errors.New("git add: " + stderr)
|
2014-03-27 19:24:11 +00:00
|
|
|
}
|
2014-03-26 03:53:01 +00:00
|
|
|
if _, stderr, err = com.ExecCmdDir(tmpPath, "git", "commit", fmt.Sprintf("--author='%s <%s>'", sig.Name, sig.Email),
|
2014-03-17 15:56:50 +00:00
|
|
|
"-m", "Init commit"); err != nil {
|
2014-04-14 08:11:33 +00:00
|
|
|
return errors.New("git commit: " + stderr)
|
2014-03-27 19:24:11 +00:00
|
|
|
}
|
|
|
|
|
2014-03-26 03:53:01 +00:00
|
|
|
if _, stderr, err = com.ExecCmdDir(tmpPath, "git", "push", "origin", "master"); err != nil {
|
2014-04-14 08:11:33 +00:00
|
|
|
return errors.New("git push: " + stderr)
|
2014-03-27 19:24:11 +00:00
|
|
|
}
|
2014-03-17 15:56:50 +00:00
|
|
|
return nil
|
2014-02-14 14:20:57 +00:00
|
|
|
}
|
|
|
|
|
2014-03-26 13:40:02 +00:00
|
|
|
func createHookUpdate(hookPath, content string) error {
|
|
|
|
pu, err := os.OpenFile(hookPath, os.O_CREATE|os.O_WRONLY, 0777)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer pu.Close()
|
2014-03-27 19:24:11 +00:00
|
|
|
|
|
|
|
_, err = pu.WriteString(content)
|
|
|
|
return err
|
2014-03-26 13:40:02 +00:00
|
|
|
}
|
|
|
|
|
2014-04-08 16:41:33 +00:00
|
|
|
// SetRepoEnvs sets environment variables for command update.
|
2014-05-03 05:37:49 +00:00
|
|
|
func SetRepoEnvs(userId int64, userName, repoName, repoUserName string) {
|
2014-04-08 16:41:33 +00:00
|
|
|
os.Setenv("userId", base.ToStr(userId))
|
|
|
|
os.Setenv("userName", userName)
|
|
|
|
os.Setenv("repoName", repoName)
|
2014-05-03 05:37:49 +00:00
|
|
|
os.Setenv("repoUserName", repoUserName)
|
2014-04-08 16:41:33 +00:00
|
|
|
}
|
|
|
|
|
2014-03-11 00:48:58 +00:00
|
|
|
// InitRepository initializes README and .gitignore if needed.
|
2014-03-11 05:32:36 +00:00
|
|
|
func initRepository(f string, user *User, repo *Repository, initReadme bool, repoLang, license string) error {
|
2014-03-17 15:56:50 +00:00
|
|
|
repoPath := RepoPath(user.Name, repo.Name)
|
2014-03-11 10:10:19 +00:00
|
|
|
|
2014-03-17 15:56:50 +00:00
|
|
|
// Create bare new repository.
|
|
|
|
if err := extractGitBareZip(repoPath); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2014-04-27 01:06:59 +00:00
|
|
|
rp := strings.NewReplacer("\\", "/", " ", "\\ ")
|
2014-03-17 21:00:35 +00:00
|
|
|
// hook/post-update
|
2014-03-26 13:40:02 +00:00
|
|
|
if err := createHookUpdate(filepath.Join(repoPath, "hooks", "update"),
|
2014-04-19 10:00:08 +00:00
|
|
|
fmt.Sprintf("#!/usr/bin/env %s\n%s update $1 $2 $3\n", base.ScriptType,
|
2014-04-27 01:06:59 +00:00
|
|
|
rp.Replace(appPath))); err != nil {
|
2014-03-17 21:00:35 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2014-03-17 15:56:50 +00:00
|
|
|
// Initialize repository according to user's choice.
|
|
|
|
fileName := map[string]string{}
|
2014-03-11 10:10:19 +00:00
|
|
|
if initReadme {
|
|
|
|
fileName["readme"] = "README.md"
|
|
|
|
}
|
|
|
|
if repoLang != "" {
|
|
|
|
fileName["gitign"] = ".gitignore"
|
2014-03-11 04:53:53 +00:00
|
|
|
}
|
2014-03-11 10:10:19 +00:00
|
|
|
if license != "" {
|
|
|
|
fileName["license"] = "LICENSE"
|
|
|
|
}
|
|
|
|
|
2014-03-17 15:56:50 +00:00
|
|
|
// Clone to temprory path and do the init commit.
|
|
|
|
tmpDir := filepath.Join(os.TempDir(), fmt.Sprintf("%d", time.Now().Nanosecond()))
|
|
|
|
os.MkdirAll(tmpDir, os.ModePerm)
|
2014-03-11 04:18:44 +00:00
|
|
|
|
2014-04-13 00:35:35 +00:00
|
|
|
_, stderr, err := com.ExecCmd("git", "clone", repoPath, tmpDir)
|
|
|
|
if err != nil {
|
2014-04-14 08:11:33 +00:00
|
|
|
return errors.New("git clone: " + stderr)
|
2014-04-13 00:35:35 +00:00
|
|
|
}
|
2014-03-11 04:18:44 +00:00
|
|
|
|
|
|
|
// README
|
2014-03-11 10:10:19 +00:00
|
|
|
if initReadme {
|
|
|
|
defaultReadme := repo.Name + "\n" + strings.Repeat("=",
|
|
|
|
utf8.RuneCountInString(repo.Name)) + "\n\n" + repo.Description
|
2014-03-17 15:56:50 +00:00
|
|
|
if err := ioutil.WriteFile(filepath.Join(tmpDir, fileName["readme"]),
|
2014-03-11 10:10:19 +00:00
|
|
|
[]byte(defaultReadme), 0644); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2014-03-11 04:18:44 +00:00
|
|
|
}
|
2014-03-11 00:48:58 +00:00
|
|
|
|
2014-03-17 15:56:50 +00:00
|
|
|
// .gitignore
|
2014-03-11 10:10:19 +00:00
|
|
|
if repoLang != "" {
|
|
|
|
filePath := "conf/gitignore/" + repoLang
|
|
|
|
if com.IsFile(filePath) {
|
2014-04-19 10:15:47 +00:00
|
|
|
if err := com.Copy(filePath,
|
2014-03-17 15:56:50 +00:00
|
|
|
filepath.Join(tmpDir, fileName["gitign"])); err != nil {
|
2014-03-11 10:10:19 +00:00
|
|
|
return err
|
|
|
|
}
|
2014-03-11 05:32:36 +00:00
|
|
|
}
|
|
|
|
}
|
2014-03-11 04:53:53 +00:00
|
|
|
|
2014-03-17 15:56:50 +00:00
|
|
|
// LICENSE
|
2014-03-11 10:10:19 +00:00
|
|
|
if license != "" {
|
|
|
|
filePath := "conf/license/" + license
|
|
|
|
if com.IsFile(filePath) {
|
2014-04-19 10:15:47 +00:00
|
|
|
if err := com.Copy(filePath,
|
2014-03-17 15:56:50 +00:00
|
|
|
filepath.Join(tmpDir, fileName["license"])); err != nil {
|
2014-03-11 10:10:19 +00:00
|
|
|
return err
|
|
|
|
}
|
2014-03-11 05:32:36 +00:00
|
|
|
}
|
|
|
|
}
|
2014-03-11 04:18:44 +00:00
|
|
|
|
2014-03-17 21:00:35 +00:00
|
|
|
if len(fileName) == 0 {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2014-05-03 05:37:49 +00:00
|
|
|
SetRepoEnvs(user.Id, user.Name, repo.Name, user.Name)
|
2014-04-07 18:24:58 +00:00
|
|
|
|
2014-03-17 15:56:50 +00:00
|
|
|
// Apply changes and commit.
|
2014-03-27 19:24:11 +00:00
|
|
|
return initRepoCommit(tmpDir, user.NewGitSig())
|
2014-03-11 00:48:58 +00:00
|
|
|
}
|
|
|
|
|
2014-05-07 20:51:14 +00:00
|
|
|
// GetRepositoriesWithUsers returns given number of repository objects with offset.
|
|
|
|
// It also auto-gets corresponding users.
|
|
|
|
func GetRepositoriesWithUsers(num, offset int) ([]*Repository, error) {
|
|
|
|
repos := make([]*Repository, 0, num)
|
2014-03-21 05:09:22 +00:00
|
|
|
if err := orm.Limit(num, offset).Asc("id").Find(&repos); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2014-05-07 20:51:14 +00:00
|
|
|
for _, repo := range repos {
|
|
|
|
repo.Owner = &User{Id: repo.OwnerId}
|
|
|
|
has, err := orm.Get(repo.Owner)
|
2014-03-21 05:09:22 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
} else if !has {
|
|
|
|
return nil, ErrUserNotExist
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-07 20:51:14 +00:00
|
|
|
return repos, nil
|
2014-03-20 20:04:56 +00:00
|
|
|
}
|
|
|
|
|
2014-04-13 00:35:35 +00:00
|
|
|
// RepoPath returns repository path by given user and repository name.
|
2014-03-20 20:04:56 +00:00
|
|
|
func RepoPath(userName, repoName string) string {
|
2014-03-30 02:13:02 +00:00
|
|
|
return filepath.Join(UserPath(userName), strings.ToLower(repoName)+".git")
|
2014-03-20 20:04:56 +00:00
|
|
|
}
|
|
|
|
|
2014-04-04 22:31:09 +00:00
|
|
|
// TransferOwnership transfers all corresponding setting from old user to new one.
|
|
|
|
func TransferOwnership(user *User, newOwner string, repo *Repository) (err error) {
|
|
|
|
newUser, err := GetUserByName(newOwner)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Update accesses.
|
|
|
|
accesses := make([]Access, 0, 10)
|
|
|
|
if err = orm.Find(&accesses, &Access{RepoName: user.LowerName + "/" + repo.LowerName}); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2014-04-04 22:55:17 +00:00
|
|
|
|
|
|
|
sess := orm.NewSession()
|
|
|
|
defer sess.Close()
|
|
|
|
if err = sess.Begin(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2014-04-04 22:31:09 +00:00
|
|
|
for i := range accesses {
|
|
|
|
accesses[i].RepoName = newUser.LowerName + "/" + repo.LowerName
|
|
|
|
if accesses[i].UserName == user.LowerName {
|
|
|
|
accesses[i].UserName = newUser.LowerName
|
|
|
|
}
|
2014-04-04 22:55:17 +00:00
|
|
|
if err = UpdateAccessWithSession(sess, &accesses[i]); err != nil {
|
2014-04-04 22:31:09 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Update repository.
|
|
|
|
repo.OwnerId = newUser.Id
|
2014-04-04 22:55:17 +00:00
|
|
|
if _, err := sess.Id(repo.Id).Update(repo); err != nil {
|
|
|
|
sess.Rollback()
|
2014-04-04 22:31:09 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Update user repository number.
|
|
|
|
rawSql := "UPDATE `user` SET num_repos = num_repos + 1 WHERE id = ?"
|
2014-04-04 22:55:17 +00:00
|
|
|
if _, err = sess.Exec(rawSql, newUser.Id); err != nil {
|
|
|
|
sess.Rollback()
|
2014-04-04 22:31:09 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
rawSql = "UPDATE `user` SET num_repos = num_repos - 1 WHERE id = ?"
|
2014-04-04 22:55:17 +00:00
|
|
|
if _, err = sess.Exec(rawSql, user.Id); err != nil {
|
|
|
|
sess.Rollback()
|
2014-04-04 22:31:09 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add watch of new owner to repository.
|
|
|
|
if !IsWatching(newUser.Id, repo.Id) {
|
|
|
|
if err = WatchRepo(newUser.Id, repo.Id, true); err != nil {
|
2014-04-04 22:55:17 +00:00
|
|
|
sess.Rollback()
|
2014-04-04 22:31:09 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if err = TransferRepoAction(user, newUser, repo); err != nil {
|
2014-04-04 22:55:17 +00:00
|
|
|
sess.Rollback()
|
2014-04-04 22:31:09 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Change repository directory name.
|
2014-04-04 22:55:17 +00:00
|
|
|
if err = os.Rename(RepoPath(user.Name, repo.Name), RepoPath(newUser.Name, repo.Name)); err != nil {
|
|
|
|
sess.Rollback()
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return sess.Commit()
|
2014-04-04 22:31:09 +00:00
|
|
|
}
|
|
|
|
|
2014-04-03 19:50:55 +00:00
|
|
|
// ChangeRepositoryName changes all corresponding setting from old repository name to new one.
|
|
|
|
func ChangeRepositoryName(userName, oldRepoName, newRepoName string) (err error) {
|
|
|
|
// Update accesses.
|
2014-04-03 20:33:27 +00:00
|
|
|
accesses := make([]Access, 0, 10)
|
|
|
|
if err = orm.Find(&accesses, &Access{RepoName: strings.ToLower(userName + "/" + oldRepoName)}); err != nil {
|
2014-04-03 19:50:55 +00:00
|
|
|
return err
|
|
|
|
}
|
2014-04-04 22:55:17 +00:00
|
|
|
|
|
|
|
sess := orm.NewSession()
|
|
|
|
defer sess.Close()
|
|
|
|
if err = sess.Begin(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2014-04-03 19:50:55 +00:00
|
|
|
for i := range accesses {
|
|
|
|
accesses[i].RepoName = userName + "/" + newRepoName
|
2014-04-04 22:55:17 +00:00
|
|
|
if err = UpdateAccessWithSession(sess, &accesses[i]); err != nil {
|
2014-04-03 19:50:55 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Change repository directory name.
|
2014-04-04 22:55:17 +00:00
|
|
|
if err = os.Rename(RepoPath(userName, oldRepoName), RepoPath(userName, newRepoName)); err != nil {
|
|
|
|
sess.Rollback()
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return sess.Commit()
|
2014-04-03 19:50:55 +00:00
|
|
|
}
|
|
|
|
|
2014-03-22 08:44:57 +00:00
|
|
|
func UpdateRepository(repo *Repository) error {
|
2014-04-03 19:50:55 +00:00
|
|
|
repo.LowerName = strings.ToLower(repo.Name)
|
|
|
|
|
2014-03-22 20:00:46 +00:00
|
|
|
if len(repo.Description) > 255 {
|
|
|
|
repo.Description = repo.Description[:255]
|
|
|
|
}
|
|
|
|
if len(repo.Website) > 255 {
|
|
|
|
repo.Website = repo.Website[:255]
|
|
|
|
}
|
2014-03-24 13:01:25 +00:00
|
|
|
_, err := orm.Id(repo.Id).AllCols().Update(repo)
|
2014-03-22 08:44:57 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2014-03-20 20:04:56 +00:00
|
|
|
// DeleteRepository deletes a repository for a user or orgnaztion.
|
|
|
|
func DeleteRepository(userId, repoId int64, userName string) (err error) {
|
|
|
|
repo := &Repository{Id: repoId, OwnerId: userId}
|
|
|
|
has, err := orm.Get(repo)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
} else if !has {
|
|
|
|
return ErrRepoNotExist
|
|
|
|
}
|
|
|
|
|
2014-04-04 22:31:09 +00:00
|
|
|
sess := orm.NewSession()
|
|
|
|
defer sess.Close()
|
|
|
|
if err = sess.Begin(); err != nil {
|
2014-03-20 20:04:56 +00:00
|
|
|
return err
|
|
|
|
}
|
2014-04-04 22:31:09 +00:00
|
|
|
if _, err = sess.Delete(&Repository{Id: repoId}); err != nil {
|
|
|
|
sess.Rollback()
|
2014-03-20 20:04:56 +00:00
|
|
|
return err
|
|
|
|
}
|
2014-04-04 22:31:09 +00:00
|
|
|
if _, err := sess.Delete(&Access{RepoName: strings.ToLower(path.Join(userName, repo.Name))}); err != nil {
|
|
|
|
sess.Rollback()
|
2014-03-20 20:04:56 +00:00
|
|
|
return err
|
|
|
|
}
|
2014-04-13 00:35:35 +00:00
|
|
|
if _, err := sess.Delete(&Action{RepoId: repo.Id}); err != nil {
|
2014-04-04 22:31:09 +00:00
|
|
|
sess.Rollback()
|
2014-03-20 20:04:56 +00:00
|
|
|
return err
|
|
|
|
}
|
2014-04-04 22:31:09 +00:00
|
|
|
if _, err = sess.Delete(&Watch{RepoId: repoId}); err != nil {
|
|
|
|
sess.Rollback()
|
2014-03-20 20:04:56 +00:00
|
|
|
return err
|
|
|
|
}
|
2014-04-13 02:30:00 +00:00
|
|
|
if _, err = sess.Delete(&Mirror{RepoId: repoId}); err != nil {
|
|
|
|
sess.Rollback()
|
|
|
|
return err
|
|
|
|
}
|
2014-04-13 00:35:35 +00:00
|
|
|
|
|
|
|
rawSql := "UPDATE `user` SET num_repos = num_repos - 1 WHERE id = ?"
|
|
|
|
if _, err = sess.Exec(rawSql, userId); err != nil {
|
|
|
|
sess.Rollback()
|
|
|
|
return err
|
|
|
|
}
|
2014-04-04 22:31:09 +00:00
|
|
|
if err = sess.Commit(); err != nil {
|
|
|
|
sess.Rollback()
|
2014-03-20 20:04:56 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
if err = os.RemoveAll(RepoPath(userName, repo.Name)); err != nil {
|
|
|
|
// TODO: log and delete manully
|
|
|
|
log.Error("delete repo %s/%s failed: %v", userName, repo.Name, err)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2014-03-17 18:03:58 +00:00
|
|
|
// GetRepositoryByName returns the repository by given name under user if exists.
|
2014-03-22 08:44:57 +00:00
|
|
|
func GetRepositoryByName(userId int64, repoName string) (*Repository, error) {
|
2014-03-13 02:27:11 +00:00
|
|
|
repo := &Repository{
|
2014-03-22 08:44:57 +00:00
|
|
|
OwnerId: userId,
|
2014-03-13 02:27:11 +00:00
|
|
|
LowerName: strings.ToLower(repoName),
|
|
|
|
}
|
|
|
|
has, err := orm.Get(repo)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
} else if !has {
|
|
|
|
return nil, ErrRepoNotExist
|
|
|
|
}
|
|
|
|
return repo, err
|
|
|
|
}
|
|
|
|
|
2014-03-17 18:03:58 +00:00
|
|
|
// GetRepositoryById returns the repository by given id if exists.
|
2014-03-27 23:42:10 +00:00
|
|
|
func GetRepositoryById(id int64) (*Repository, error) {
|
|
|
|
repo := &Repository{}
|
2014-03-13 02:27:11 +00:00
|
|
|
has, err := orm.Id(id).Get(repo)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
} else if !has {
|
|
|
|
return nil, ErrRepoNotExist
|
|
|
|
}
|
2014-05-06 01:36:08 +00:00
|
|
|
return repo, nil
|
2014-03-13 02:27:11 +00:00
|
|
|
}
|
|
|
|
|
2014-02-19 18:04:31 +00:00
|
|
|
// GetRepositories returns the list of repositories of given user.
|
2014-05-07 16:09:30 +00:00
|
|
|
func GetRepositories(user *User, private bool) ([]*Repository, error) {
|
|
|
|
repos := make([]*Repository, 0, 10)
|
2014-04-13 22:12:07 +00:00
|
|
|
sess := orm.Desc("updated")
|
|
|
|
if !private {
|
|
|
|
sess.Where("is_private=?", false)
|
|
|
|
}
|
|
|
|
|
|
|
|
err := sess.Find(&repos, &Repository{OwnerId: user.Id})
|
2014-02-14 14:20:57 +00:00
|
|
|
return repos, err
|
|
|
|
}
|
|
|
|
|
2014-04-14 08:11:33 +00:00
|
|
|
// GetRecentUpdatedRepositories returns the list of repositories that are recently updated.
|
|
|
|
func GetRecentUpdatedRepositories() (repos []*Repository, err error) {
|
|
|
|
err = orm.Where("is_private=?", false).Limit(5).Desc("updated").Find(&repos)
|
|
|
|
return repos, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetRepositoryCount returns the total number of repositories of user.
|
2014-03-11 06:17:05 +00:00
|
|
|
func GetRepositoryCount(user *User) (int64, error) {
|
|
|
|
return orm.Count(&Repository{OwnerId: user.Id})
|
|
|
|
}
|
|
|
|
|
2014-05-08 16:24:11 +00:00
|
|
|
// GetCollaboratorNames returns a list of user name of repository's collaborators.
|
|
|
|
func GetCollaboratorNames(repoName string) ([]string, error) {
|
2014-05-01 15:32:12 +00:00
|
|
|
accesses := make([]*Access, 0, 10)
|
|
|
|
if err := orm.Find(&accesses, &Access{RepoName: strings.ToLower(repoName)}); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
names := make([]string, len(accesses))
|
|
|
|
for i := range accesses {
|
|
|
|
names[i] = accesses[i].UserName
|
|
|
|
}
|
|
|
|
return names, nil
|
|
|
|
}
|
|
|
|
|
2014-05-08 16:24:11 +00:00
|
|
|
// GetCollaborators returns a list of users of repository's collaborators.
|
|
|
|
func GetCollaborators(repoName string) (us []*User, err error) {
|
|
|
|
accesses := make([]*Access, 0, 10)
|
|
|
|
if err = orm.Find(&accesses, &Access{RepoName: strings.ToLower(repoName)}); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
us = make([]*User, len(accesses))
|
|
|
|
for i := range accesses {
|
|
|
|
us[i], err = GetUserByName(accesses[i].UserName)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return us, nil
|
|
|
|
}
|
|
|
|
|
2014-03-20 20:04:56 +00:00
|
|
|
// Watch is connection request for receiving repository notifycation.
|
|
|
|
type Watch struct {
|
|
|
|
Id int64
|
2014-05-07 21:38:03 +00:00
|
|
|
UserId int64 `xorm:"UNIQUE(watch)"`
|
|
|
|
RepoId int64 `xorm:"UNIQUE(watch)"`
|
2014-03-20 20:04:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Watch or unwatch repository.
|
2014-05-07 20:51:14 +00:00
|
|
|
func WatchRepo(uid, rid int64, watch bool) (err error) {
|
2014-03-20 20:04:56 +00:00
|
|
|
if watch {
|
2014-05-07 21:23:02 +00:00
|
|
|
if _, err = orm.Insert(&Watch{RepoId: rid, UserId: uid}); err != nil {
|
2014-03-20 20:14:50 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
rawSql := "UPDATE `repository` SET num_watches = num_watches + 1 WHERE id = ?"
|
2014-05-07 20:51:14 +00:00
|
|
|
_, err = orm.Exec(rawSql, rid)
|
2014-03-20 20:04:56 +00:00
|
|
|
} else {
|
2014-05-07 21:37:09 +00:00
|
|
|
if _, err = orm.Delete(&Watch{0, uid, rid}); err != nil {
|
2014-03-20 20:14:50 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
rawSql := "UPDATE `repository` SET num_watches = num_watches - 1 WHERE id = ?"
|
2014-05-07 20:51:14 +00:00
|
|
|
_, err = orm.Exec(rawSql, rid)
|
2014-03-20 20:04:56 +00:00
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2014-05-07 20:51:14 +00:00
|
|
|
// GetWatchers returns all watchers of given repository.
|
|
|
|
func GetWatchers(rid int64) ([]*Watch, error) {
|
|
|
|
watches := make([]*Watch, 0, 10)
|
|
|
|
err := orm.Find(&watches, &Watch{RepoId: rid})
|
2014-03-20 20:04:56 +00:00
|
|
|
return watches, err
|
|
|
|
}
|
|
|
|
|
2014-03-25 18:04:57 +00:00
|
|
|
// NotifyWatchers creates batch of actions for every watcher.
|
2014-03-27 15:37:33 +00:00
|
|
|
func NotifyWatchers(act *Action) error {
|
2014-03-25 18:04:57 +00:00
|
|
|
// Add feeds for user self and all watchers.
|
2014-05-07 20:51:14 +00:00
|
|
|
watches, err := GetWatchers(act.RepoId)
|
2014-03-20 05:31:24 +00:00
|
|
|
if err != nil {
|
2014-03-25 18:04:57 +00:00
|
|
|
return errors.New("repo.NotifyWatchers(get watches): " + err.Error())
|
2014-03-20 05:31:24 +00:00
|
|
|
}
|
2014-03-27 16:48:29 +00:00
|
|
|
|
|
|
|
// Add feed for actioner.
|
|
|
|
act.UserId = act.ActUserId
|
|
|
|
if _, err = orm.InsertOne(act); err != nil {
|
|
|
|
return errors.New("repo.NotifyWatchers(create action): " + err.Error())
|
|
|
|
}
|
2014-03-20 05:31:24 +00:00
|
|
|
|
2014-03-25 18:04:57 +00:00
|
|
|
for i := range watches {
|
2014-05-07 21:23:02 +00:00
|
|
|
if act.ActUserId == watches[i].UserId {
|
2014-03-27 16:48:29 +00:00
|
|
|
continue
|
2014-03-20 05:31:24 +00:00
|
|
|
}
|
|
|
|
|
2014-04-02 14:38:30 +00:00
|
|
|
act.Id = 0
|
2014-05-07 21:23:02 +00:00
|
|
|
act.UserId = watches[i].UserId
|
2014-03-27 15:37:33 +00:00
|
|
|
if _, err = orm.InsertOne(act); err != nil {
|
2014-03-25 18:04:57 +00:00
|
|
|
return errors.New("repo.NotifyWatchers(create action): " + err.Error())
|
|
|
|
}
|
2014-03-20 05:31:24 +00:00
|
|
|
}
|
2014-03-25 18:04:57 +00:00
|
|
|
return nil
|
2014-03-20 05:31:24 +00:00
|
|
|
}
|
|
|
|
|
2014-03-20 20:04:56 +00:00
|
|
|
// IsWatching checks if user has watched given repository.
|
2014-05-07 20:51:14 +00:00
|
|
|
func IsWatching(uid, rid int64) bool {
|
2014-05-07 22:57:00 +00:00
|
|
|
has, _ := orm.Get(&Watch{0, uid, rid})
|
2014-03-20 20:04:56 +00:00
|
|
|
return has
|
2014-03-17 18:03:58 +00:00
|
|
|
}
|
|
|
|
|
2014-05-07 20:51:14 +00:00
|
|
|
func ForkRepository(repoName string, uid int64) {
|
2014-03-18 03:22:19 +00:00
|
|
|
|
2014-03-17 18:03:58 +00:00
|
|
|
}
|