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