gitea/models/action.go

146 lines
4.1 KiB
Go
Raw Normal View History

2014-03-13 16:16:14 +11: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-17 02:02:59 +11:00
"encoding/json"
2014-03-13 16:16:14 +11:00
"time"
2014-03-22 21:20:00 +11:00
2014-04-14 11:00:12 +10:00
// "github.com/gogits/git"
2014-03-23 21:27:01 +11:00
"github.com/gogits/gogs/modules/base"
2014-03-22 21:20:00 +11:00
"github.com/gogits/gogs/modules/log"
2014-03-13 16:16:14 +11: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-26 05:04:57 +11:00
OP_CREATE_ISSUE
2014-03-13 16:16:14 +11:00
OP_PULL_REQUEST
2014-04-05 09:31:09 +11:00
OP_TRANSFER_REPO
2014-04-14 11:00:12 +10:00
OP_PUSH_TAG
2014-03-13 16:16:14 +11:00
)
2014-03-28 02:37:33 +11: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 16:16:14 +11:00
type Action struct {
2014-03-15 15:50:51 +11:00
Id int64
2014-03-19 00:58:58 +11:00
UserId int64 // Receiver user id.
OpType int // Operations: CREATE DELETE STAR ...
2014-03-15 15:50:51 +11:00
ActUserId int64 // Action user id.
ActUserName string // Action user name.
2014-03-29 22:50:25 +11:00
ActEmail string
2014-03-15 15:50:51 +11:00
RepoId int64
RepoName string
2014-03-23 20:40:50 +11:00
RefName string
2014-03-23 07:00:46 +11:00
Content string `xorm:"TEXT"`
2014-03-15 15:50:51 +11:00
Created time.Time `xorm:"created"`
}
func (a Action) GetOpType() int {
return a.OpType
}
func (a Action) GetActUserName() string {
return a.ActUserName
}
2014-03-29 22:50:25 +11:00
func (a Action) GetActEmail() string {
return a.ActEmail
}
2014-03-15 15:50:51 +11:00
func (a Action) GetRepoName() string {
return a.RepoName
2014-03-13 16:16:14 +11:00
}
2014-03-23 21:27:01 +11:00
func (a Action) GetBranch() string {
return a.RefName
2014-03-17 02:30:35 +11:00
}
2014-03-23 21:27:01 +11:00
func (a Action) GetContent() string {
return a.Content
2014-03-23 21:00:09 +11:00
}
2014-03-28 02:37:33 +11:00
// CommitRepoAction adds new action for committing repository.
2014-03-29 22:59:02 +11:00
func CommitRepoAction(userId int64, userName, actEmail string,
2014-03-28 03:48:29 +11:00
repoId int64, repoName string, refName string, commit *base.PushCommits) error {
2014-04-14 11:00:12 +10:00
// log.Trace("action.CommitRepoAction(start): %d/%s", userId, repoName)
opType := OP_COMMIT_REPO
// Check it's tag push or branch.
// if git.IsTagExist(RepoPath(userName, repoName), refName) {
// opType = OP_PUSH_TAG
// commit = &base.PushCommits{}
// }
2014-03-28 03:48:29 +11:00
bs, err := json.Marshal(commit)
2014-03-17 02:02:59 +11:00
if err != nil {
log.Error("action.CommitRepoAction(json): %d/%s", userId, repoName)
2014-03-17 02:02:59 +11:00
return err
}
2014-03-20 14:39:00 +11:00
2014-03-29 22:59:02 +11:00
if err = NotifyWatchers(&Action{ActUserId: userId, ActUserName: userName, ActEmail: actEmail,
2014-04-14 11:00:12 +10:00
OpType: opType, Content: string(bs), RepoId: repoId, RepoName: repoName, RefName: refName}); err != nil {
2014-03-26 05:04:57 +11:00
log.Error("action.CommitRepoAction(notify watchers): %d/%s", userId, repoName)
2014-03-20 14:39:00 +11:00
return err
}
2014-03-22 19:44:57 +11:00
2014-03-28 02:37:33 +11:00
// Change repository bare status and update last updated time.
2014-03-22 19:44:57 +11:00
repo, err := GetRepositoryByName(userId, repoName)
if err != nil {
log.Error("action.CommitRepoAction(GetRepositoryByName): %d/%s", userId, repoName)
2014-03-22 19:44:57 +11:00
return err
}
repo.IsBare = false
2014-03-22 19:44:57 +11:00
if err = UpdateRepository(repo); err != nil {
log.Error("action.CommitRepoAction(UpdateRepository): %d/%s", userId, repoName)
2014-03-22 19:44:57 +11:00
return err
}
log.Trace("action.CommitRepoAction(end): %d/%s", userId, repoName)
2014-03-20 14:39:00 +11:00
return nil
2014-03-16 15:18:34 +11:00
}
2014-03-28 03:48:29 +11:00
// NewRepoAction adds new action for creating repository.
func NewRepoAction(user *User, repo *Repository) (err error) {
2014-03-29 22:50:25 +11:00
if err = NotifyWatchers(&Action{ActUserId: user.Id, ActUserName: user.Name, ActEmail: user.Email,
OpType: OP_CREATE_REPO, RepoId: repo.Id, RepoName: repo.Name}); err != nil {
2014-03-28 03:48:29 +11:00
log.Error("action.NewRepoAction(notify watchers): %d/%s", user.Id, repo.Name)
return err
}
2014-03-22 21:20:00 +11:00
log.Trace("action.NewRepoAction: %s/%s", user.LowerName, repo.LowerName)
2014-03-13 16:16:14 +11:00
return err
}
2014-04-05 09:31:09 +11: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,
OpType: OP_TRANSFER_REPO, RepoId: repo.Id, RepoName: repo.Name, Content: newUser.Name}); err != nil {
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 20:30:59 +11:00
// GetFeeds returns action list of given user in given context.
2014-03-15 15:50:51 +11:00
func GetFeeds(userid, offset int64, isProfile bool) ([]Action, error) {
2014-03-13 16:16:14 +11:00
actions := make([]Action, 0, 20)
2014-03-15 15:50:51 +11:00
sess := orm.Limit(20, int(offset)).Desc("id").Where("user_id=?", userid)
if isProfile {
sess.And("act_user_id=?", userid)
} else {
sess.And("act_user_id!=?", userid)
}
err := sess.Find(&actions)
2014-03-13 16:16:14 +11:00
return actions, err
}