bench-forgejo/models/action.go

136 lines
3.9 KiB
Go
Raw Normal View History

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