gitea/models/action.go

222 lines
5.9 KiB
Go
Raw Normal View History

2014-03-13 06:16:14 +01: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.
package models
import (
2014-03-16 16:02:59 +01:00
"encoding/json"
2014-05-06 17:50:31 +02:00
"errors"
"fmt"
2014-04-14 04:20:28 +02:00
"strings"
2014-03-13 06:16:14 +01:00
"time"
2014-03-22 11:20:00 +01:00
2014-04-14 04:20:28 +02:00
"github.com/gogits/git"
2014-04-14 03:00:12 +02:00
2014-03-23 11:27:01 +01:00
"github.com/gogits/gogs/modules/base"
2014-03-22 11:20:00 +01:00
"github.com/gogits/gogs/modules/log"
2014-05-26 02:11:25 +02:00
"github.com/gogits/gogs/modules/setting"
2014-03-13 06:16:14 +01:00
)
// Operation types of user action.
const (
OP_CREATE_REPO = iota + 1
OP_DELETE_REPO
OP_STAR_REPO
OP_FOLLOW_REPO
OP_COMMIT_REPO
2014-03-25 19:04:57 +01:00
OP_CREATE_ISSUE
2014-03-13 06:16:14 +01:00
OP_PULL_REQUEST
2014-04-05 00:31:09 +02:00
OP_TRANSFER_REPO
2014-04-14 03:00:12 +02:00
OP_PUSH_TAG
2014-05-06 19:47:47 +02:00
OP_COMMENT_ISSUE
2014-03-13 06:16:14 +01:00
)
2014-03-27 16:37:33 +01:00
// Action represents user operation type and other information to repository.,
// it implemented interface base.Actioner so that can be used in template render.
2014-03-13 06:16:14 +01:00
type Action struct {
2014-05-03 07:37:49 +02:00
Id int64
2014-05-06 19:47:47 +02:00
UserId int64 // Receiver user id.
OpType int
2014-05-03 07:37:49 +02:00
ActUserId int64 // Action user id.
ActUserName string // Action user name.
ActEmail string
RepoId int64
RepoUserName string
RepoName string
RefName string
IsPrivate bool `xorm:"NOT NULL DEFAULT false"`
Content string `xorm:"TEXT"`
Created time.Time `xorm:"created"`
2014-03-15 05:50:51 +01:00
}
func (a Action) GetOpType() int {
return a.OpType
}
func (a Action) GetActUserName() string {
return a.ActUserName
}
2014-03-29 12:50:25 +01:00
func (a Action) GetActEmail() string {
return a.ActEmail
}
2014-05-09 08:42:50 +02:00
func (a Action) GetRepoUserName() string {
return a.RepoUserName
}
2014-03-15 05:50:51 +01:00
func (a Action) GetRepoName() string {
return a.RepoName
2014-03-13 06:16:14 +01:00
}
2014-03-23 11:27:01 +01:00
func (a Action) GetBranch() string {
return a.RefName
2014-03-16 16:30:35 +01:00
}
2014-03-23 11:27:01 +01:00
func (a Action) GetContent() string {
return a.Content
2014-03-23 11:00:09 +01:00
}
2014-03-27 16:37:33 +01:00
// CommitRepoAction adds new action for committing repository.
2014-05-03 07:37:49 +02:00
func CommitRepoAction(userId, repoUserId int64, userName, actEmail string,
2014-05-06 17:50:31 +02:00
repoId int64, repoUserName, repoName string, refFullName string, commit *base.PushCommits) error {
2014-04-14 03:00:12 +02:00
// log.Trace("action.CommitRepoAction(start): %d/%s", userId, repoName)
opType := OP_COMMIT_REPO
// Check it's tag push or branch.
2014-05-06 17:50:31 +02:00
if strings.HasPrefix(refFullName, "refs/tags/") {
2014-04-14 04:20:28 +02:00
opType = OP_PUSH_TAG
commit = &base.PushCommits{}
}
2014-05-06 17:50:31 +02:00
refName := git.RefEndName(refFullName)
2014-03-27 17:48:29 +01:00
bs, err := json.Marshal(commit)
2014-03-16 16:02:59 +01:00
if err != nil {
2014-05-06 17:50:31 +02:00
return errors.New("action.CommitRepoAction(json): " + err.Error())
2014-03-16 16:02:59 +01:00
}
2014-03-20 04:39:00 +01:00
2014-03-27 16:37:33 +01:00
// Change repository bare status and update last updated time.
2014-05-03 07:37:49 +02:00
repo, err := GetRepositoryByName(repoUserId, repoName)
2014-03-22 09:44:57 +01:00
if err != nil {
2014-05-06 17:50:31 +02:00
return errors.New("action.CommitRepoAction(GetRepositoryByName): " + err.Error())
2014-03-22 09:44:57 +01:00
}
repo.IsBare = false
2014-03-22 09:44:57 +01:00
if err = UpdateRepository(repo); err != nil {
2014-05-06 17:50:31 +02:00
return errors.New("action.CommitRepoAction(UpdateRepository): " + err.Error())
2014-03-22 09:44:57 +01:00
}
2014-05-01 15:00:30 +02:00
if err = NotifyWatchers(&Action{ActUserId: userId, ActUserName: userName, ActEmail: actEmail,
2014-05-03 07:37:49 +02:00
OpType: opType, Content: string(bs), RepoId: repoId, RepoUserName: repoUserName,
RepoName: repoName, RefName: refName,
2014-05-02 02:29:51 +02:00
IsPrivate: repo.IsPrivate}); err != nil {
2014-05-06 17:50:31 +02:00
return errors.New("action.CommitRepoAction(NotifyWatchers): " + err.Error())
2014-05-01 14:35:05 +02:00
2014-05-06 17:50:31 +02:00
}
2014-06-20 07:14:54 +02:00
//qlog.Info("action.CommitRepoAction(end): %d/%s", repoUserId, repoName)
2014-05-06 17:50:31 +02:00
// New push event hook.
2014-05-08 14:18:03 +02:00
if err := repo.GetOwner(); err != nil {
return errors.New("action.CommitRepoAction(GetOwner): " + err.Error())
}
2014-05-06 17:50:31 +02:00
ws, err := GetActiveWebhooksByRepoId(repoId)
if err != nil {
return errors.New("action.CommitRepoAction(GetWebhooksByRepoId): " + err.Error())
} else if len(ws) == 0 {
return nil
}
2014-05-26 02:11:25 +02:00
repoLink := fmt.Sprintf("%s%s/%s", setting.AppUrl, repoUserName, repoName)
2014-06-08 10:45:34 +02:00
commits := make([]*PayloadCommit, len(commit.Commits))
2014-05-06 17:50:31 +02:00
for i, cmt := range commit.Commits {
2014-06-08 10:45:34 +02:00
commits[i] = &PayloadCommit{
2014-05-06 17:50:31 +02:00
Id: cmt.Sha1,
Message: cmt.Message,
2014-05-08 14:18:03 +02:00
Url: fmt.Sprintf("%s/commit/%s", repoLink, cmt.Sha1),
2014-06-08 10:45:34 +02:00
Author: &PayloadAuthor{
2014-05-06 17:50:31 +02:00
Name: cmt.AuthorName,
Email: cmt.AuthorEmail,
},
}
}
2014-06-08 10:45:34 +02:00
p := &Payload{
2014-05-06 17:50:31 +02:00
Ref: refFullName,
Commits: commits,
2014-06-08 10:45:34 +02:00
Repo: &PayloadRepo{
2014-05-08 14:18:03 +02:00
Id: repo.Id,
Name: repo.LowerName,
Url: repoLink,
Description: repo.Description,
Website: repo.Website,
Watchers: repo.NumWatches,
2014-06-08 10:45:34 +02:00
Owner: &PayloadAuthor{
2014-05-08 14:18:03 +02:00
Name: repoUserName,
Email: actEmail,
},
Private: repo.IsPrivate,
},
2014-06-08 10:45:34 +02:00
Pusher: &PayloadAuthor{
2014-05-08 14:18:03 +02:00
Name: repo.Owner.LowerName,
Email: repo.Owner.Email,
2014-05-06 17:50:31 +02:00
},
}
for _, w := range ws {
w.GetEvent()
if !w.HasPushEvent() {
continue
}
p.Secret = w.Secret
2014-06-08 10:45:34 +02:00
CreateHookTask(&HookTask{
Type: WEBHOOK,
Url: w.Url,
Payload: p,
ContentType: w.ContentType,
IsSsl: w.IsSsl,
})
2014-05-06 17:50:31 +02:00
}
2014-03-20 04:39:00 +01:00
return nil
2014-03-16 05:18:34 +01:00
}
2014-03-27 17:48:29 +01:00
// NewRepoAction adds new action for creating repository.
func NewRepoAction(u *User, repo *Repository) (err error) {
if err = NotifyWatchers(&Action{ActUserId: u.Id, ActUserName: u.Name, ActEmail: u.Email,
2014-06-25 11:27:17 +02:00
OpType: OP_CREATE_REPO, RepoId: repo.Id, RepoUserName: repo.Owner.Name, RepoName: repo.Name,
IsPrivate: repo.IsPrivate}); err != nil {
log.Error("action.NewRepoAction(notify watchers): %d/%s", u.Id, repo.Name)
2014-03-27 17:48:29 +01:00
return err
}
2014-03-22 11:20:00 +01:00
log.Trace("action.NewRepoAction: %s/%s", u.LowerName, repo.LowerName)
2014-03-13 06:16:14 +01:00
return err
}
2014-04-05 00:31:09 +02:00
// TransferRepoAction adds new action for transfering repository.
func TransferRepoAction(user, newUser *User, repo *Repository) (err error) {
if err = NotifyWatchers(&Action{ActUserId: user.Id, ActUserName: user.Name, ActEmail: user.Email,
2014-05-02 02:29:51 +02:00
OpType: OP_TRANSFER_REPO, RepoId: repo.Id, RepoName: repo.Name, Content: newUser.Name,
IsPrivate: repo.IsPrivate}); err != nil {
2014-04-05 00:31:09 +02:00
log.Error("action.TransferRepoAction(notify watchers): %d/%s", user.Id, repo.Name)
return err
}
log.Trace("action.TransferRepoAction: %s/%s", user.LowerName, repo.LowerName)
return err
}
2014-03-15 10:30:59 +01:00
// GetFeeds returns action list of given user in given context.
func GetFeeds(userid, offset int64, isProfile bool) ([]*Action, error) {
actions := make([]*Action, 0, 20)
2014-06-21 06:51:41 +02:00
sess := x.Limit(20, int(offset)).Desc("id").Where("user_id=?", userid)
2014-03-15 05:50:51 +01:00
if isProfile {
2014-05-01 15:00:30 +02:00
sess.Where("is_private=?", false).And("act_user_id=?", userid)
2014-03-15 05:50:51 +01:00
} else {
sess.And("act_user_id!=?", userid)
}
err := sess.Find(&actions)
2014-03-13 06:16:14 +01:00
return actions, err
}