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-05-06 19:50:31 +04:00
"errors"
"fmt"
2014-07-26 08:24:27 +04:00
"path"
2014-07-23 15:48:06 +04:00
"regexp"
2014-04-14 06:20:28 +04:00
"strings"
2014-03-13 09:16:14 +04:00
"time"
2014-07-24 12:15:05 +04:00
"unicode"
2014-03-22 14:20:00 +04:00
2015-11-13 00:01:51 +03:00
"github.com/Unknwon/com"
2015-11-13 18:05:50 +03:00
"github.com/go-xorm/xorm"
2015-08-19 19:12:43 +03:00
2015-12-16 01:25:45 +03:00
"github.com/gogits/git-module"
2015-08-28 18:36:13 +03:00
api "github.com/gogits/go-gogs-client"
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-05-26 04:11:25 +04:00
"github.com/gogits/gogs/modules/setting"
2014-03-13 09:16:14 +04:00
)
2014-07-26 08:24:27 +04:00
type ActionType int
2014-03-13 09:16:14 +04:00
const (
2016-02-22 20:40:00 +03:00
ACTION_CREATE_REPO ActionType = iota + 1 // 1
ACTION_RENAME_REPO // 2
ACTION_STAR_REPO // 3
ACTION_WATCH_REPO // 4
ACTION_COMMIT_REPO // 5
ACTION_CREATE_ISSUE // 6
ACTION_CREATE_PULL_REQUEST // 7
ACTION_TRANSFER_REPO // 8
ACTION_PUSH_TAG // 9
ACTION_COMMENT_ISSUE // 10
ACTION_MERGE_PULL_REQUEST // 11
ACTION_CLOSE_ISSUE // 12
ACTION_REOPEN_ISSUE // 13
2016-03-05 20:58:51 +03:00
ACTION_CLOSE_PULL_REQUEST // 14
ACTION_REOPEN_PULL_REQUEST // 15
2014-03-13 09:16:14 +04:00
)
2014-07-23 15:48:06 +04:00
var (
ErrNotImplemented = errors . New ( "Not implemented yet" )
)
var (
// Same as Github. See https://help.github.com/articles/closing-issues-via-commit-messages
2015-02-07 04:47:21 +03:00
IssueCloseKeywords = [ ] string { "close" , "closes" , "closed" , "fix" , "fixes" , "fixed" , "resolve" , "resolves" , "resolved" }
IssueReopenKeywords = [ ] string { "reopen" , "reopens" , "reopened" }
IssueCloseKeywordsPat , IssueReopenKeywordsPat * regexp . Regexp
IssueReferenceKeywordsPat * regexp . Regexp
2014-07-23 15:48:06 +04:00
)
2015-02-07 04:47:21 +03:00
func assembleKeywordsPattern ( words [ ] string ) string {
return fmt . Sprintf ( ` (?i)(?:%s) \S+ ` , strings . Join ( words , "|" ) )
}
2014-07-23 15:48:06 +04:00
func init ( ) {
2015-02-07 04:47:21 +03:00
IssueCloseKeywordsPat = regexp . MustCompile ( assembleKeywordsPattern ( IssueCloseKeywords ) )
IssueReopenKeywordsPat = regexp . MustCompile ( assembleKeywordsPattern ( IssueReopenKeywords ) )
2015-02-07 04:34:49 +03:00
IssueReferenceKeywordsPat = regexp . MustCompile ( ` (?i)(?:)(^| )\S+ ` )
2014-07-23 15:48:06 +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 {
2015-03-18 04:51:39 +03:00
ID int64 ` xorm:"pk autoincr" `
UserID int64 // Receiver user id.
2014-07-26 08:24:27 +04:00
OpType ActionType
2015-03-18 04:51:39 +03:00
ActUserID int64 // Action user id.
2014-05-03 09:37:49 +04:00
ActUserName string // Action user name.
ActEmail string
2014-11-21 18:58:08 +03:00
ActAvatar string ` xorm:"-" `
2015-03-18 04:51:39 +03:00
RepoID int64
2014-05-03 09:37:49 +04:00
RepoUserName string
RepoName string
RefName string
IsPrivate bool ` xorm:"NOT NULL DEFAULT false" `
Content string ` xorm:"TEXT" `
2016-03-10 03:53:30 +03:00
Created time . Time ` xorm:"-" `
CreatedUnix int64
}
func ( a * Action ) BeforeInsert ( ) {
a . CreatedUnix = time . Now ( ) . UTC ( ) . Unix ( )
2014-03-15 08:50:51 +04:00
}
2015-08-19 19:12:43 +03:00
func ( a * Action ) AfterSet ( colName string , _ xorm . Cell ) {
switch colName {
2016-03-10 03:53:30 +03:00
case "created_unix" :
a . Created = time . Unix ( a . CreatedUnix , 0 ) . Local ( )
2015-08-19 19:12:43 +03:00
}
}
2016-01-11 15:41:43 +03:00
func ( a * Action ) GetOpType ( ) int {
2014-07-26 08:24:27 +04:00
return int ( a . OpType )
2014-03-15 08:50:51 +04:00
}
2016-01-11 15:41:43 +03:00
func ( a * Action ) GetActUserName ( ) string {
2014-03-15 08:50:51 +04:00
return a . ActUserName
}
2016-01-11 15:41:43 +03:00
func ( a * Action ) ShortActUserName ( ) string {
return base . EllipsisString ( a . ActUserName , 20 )
}
func ( a * Action ) GetActEmail ( ) string {
2014-03-29 15:50:25 +04:00
return a . ActEmail
}
2016-01-11 15:41:43 +03:00
func ( a * Action ) GetRepoUserName ( ) string {
2014-05-09 10:42:50 +04:00
return a . RepoUserName
}
2016-01-11 15:41:43 +03:00
func ( a * Action ) ShortRepoUserName ( ) string {
return base . EllipsisString ( a . RepoUserName , 20 )
}
func ( a * Action ) GetRepoName ( ) string {
2014-03-15 08:50:51 +04:00
return a . RepoName
2014-03-13 09:16:14 +04:00
}
2016-01-11 15:41:43 +03:00
func ( a * Action ) ShortRepoName ( ) string {
return base . EllipsisString ( a . RepoName , 33 )
}
func ( a * Action ) GetRepoPath ( ) string {
2016-01-15 13:00:39 +03:00
return path . Join ( a . RepoUserName , a . RepoName )
}
func ( a * Action ) ShortRepoPath ( ) string {
2016-01-11 15:41:43 +03:00
return path . Join ( a . ShortRepoUserName ( ) , a . ShortRepoName ( ) )
2015-03-12 23:01:23 +03:00
}
2016-01-11 15:41:43 +03:00
func ( a * Action ) GetRepoLink ( ) string {
2015-03-12 23:01:23 +03:00
if len ( setting . AppSubUrl ) > 0 {
return path . Join ( setting . AppSubUrl , a . GetRepoPath ( ) )
}
return "/" + a . GetRepoPath ( )
2014-07-26 08:24:27 +04:00
}
2016-01-11 15:41:43 +03:00
func ( a * Action ) GetBranch ( ) string {
2014-03-23 14:27:01 +04:00
return a . RefName
2014-03-16 19:30:35 +04:00
}
2016-01-11 15:41:43 +03:00
func ( a * Action ) GetContent ( ) string {
2014-03-23 14:27:01 +04:00
return a . Content
2014-03-23 14:00:09 +04:00
}
2016-01-11 15:41:43 +03:00
func ( a * Action ) GetCreate ( ) time . Time {
2014-07-26 08:24:27 +04:00
return a . Created
}
2016-01-11 15:41:43 +03:00
func ( a * Action ) GetIssueInfos ( ) [ ] string {
2014-07-26 08:24:27 +04:00
return strings . SplitN ( a . Content , "|" , 2 )
}
2016-01-11 15:41:43 +03:00
func ( a * Action ) GetIssueTitle ( ) string {
2015-11-13 18:05:50 +03:00
index := com . StrTo ( a . GetIssueInfos ( ) [ 0 ] ) . MustInt64 ( )
issue , err := GetIssueByIndex ( a . RepoID , index )
2015-11-13 00:16:51 +03:00
if err != nil {
2015-11-13 18:05:50 +03:00
log . Error ( 4 , "GetIssueByIndex: %v" , err )
2015-11-13 20:11:45 +03:00
return "500 when get issue"
2015-11-13 00:16:51 +03:00
}
2015-11-12 23:09:48 +03:00
return issue . Name
}
2016-01-11 15:41:43 +03:00
func ( a * Action ) GetIssueContent ( ) string {
2015-11-13 20:11:45 +03:00
index := com . StrTo ( a . GetIssueInfos ( ) [ 0 ] ) . MustInt64 ( )
issue , err := GetIssueByIndex ( a . RepoID , index )
if err != nil {
log . Error ( 4 , "GetIssueByIndex: %v" , err )
return "500 when get issue"
}
return issue . Content
}
2015-09-01 16:29:52 +03:00
func newRepoAction ( e Engine , u * User , repo * Repository ) ( err error ) {
if err = notifyWatchers ( e , & Action {
ActUserID : u . Id ,
ActUserName : u . Name ,
ActEmail : u . Email ,
2016-02-22 20:40:00 +03:00
OpType : ACTION_CREATE_REPO ,
2015-09-01 16:29:52 +03:00
RepoID : repo . ID ,
RepoUserName : repo . Owner . Name ,
RepoName : repo . Name ,
IsPrivate : repo . IsPrivate ,
} ) ; err != nil {
2015-11-08 22:31:49 +03:00
return fmt . Errorf ( "notify watchers '%d/%d': %v" , u . Id , repo . ID , err )
2015-09-01 16:29:52 +03:00
}
log . Trace ( "action.newRepoAction: %s/%s" , u . Name , repo . Name )
return err
}
// NewRepoAction adds new action for creating repository.
func NewRepoAction ( u * User , repo * Repository ) ( err error ) {
return newRepoAction ( x , u , repo )
}
2015-09-01 18:43:53 +03:00
func renameRepoAction ( e Engine , actUser * User , oldRepoName string , repo * Repository ) ( err error ) {
if err = notifyWatchers ( e , & Action {
ActUserID : actUser . Id ,
ActUserName : actUser . Name ,
ActEmail : actUser . Email ,
2016-02-22 20:40:00 +03:00
OpType : ACTION_RENAME_REPO ,
2015-09-01 18:43:53 +03:00
RepoID : repo . ID ,
RepoUserName : repo . Owner . Name ,
RepoName : repo . Name ,
IsPrivate : repo . IsPrivate ,
Content : oldRepoName ,
} ) ; err != nil {
return fmt . Errorf ( "notify watchers: %v" , err )
}
log . Trace ( "action.renameRepoAction: %s/%s" , actUser . Name , repo . Name )
return nil
}
// RenameRepoAction adds new action for renaming a repository.
func RenameRepoAction ( actUser * User , oldRepoName string , repo * Repository ) error {
return renameRepoAction ( x , actUser , oldRepoName , repo )
}
2015-09-03 11:34:08 +03:00
func issueIndexTrimRight ( c rune ) bool {
return ! unicode . IsDigit ( c )
}
2015-11-14 01:10:25 +03:00
type PushCommit struct {
Sha1 string
Message string
AuthorEmail string
AuthorName string
}
type PushCommits struct {
Len int
Commits [ ] * PushCommit
CompareUrl string
avatars map [ string ] string
}
func NewPushCommits ( ) * PushCommits {
return & PushCommits {
avatars : make ( map [ string ] string ) ,
}
}
2015-12-10 04:46:05 +03:00
func ( pc * PushCommits ) ToApiPayloadCommits ( repoLink string ) [ ] * api . PayloadCommit {
commits := make ( [ ] * api . PayloadCommit , len ( pc . Commits ) )
for i , cmt := range pc . Commits {
author_username := ""
author , err := GetUserByEmail ( cmt . AuthorEmail )
if err == nil {
author_username = author . Name
}
commits [ i ] = & api . PayloadCommit {
ID : cmt . Sha1 ,
Message : cmt . Message ,
URL : fmt . Sprintf ( "%s/commit/%s" , repoLink , cmt . Sha1 ) ,
Author : & api . PayloadAuthor {
Name : cmt . AuthorName ,
Email : cmt . AuthorEmail ,
UserName : author_username ,
} ,
}
}
return commits
}
2015-11-14 01:10:25 +03:00
// AvatarLink tries to match user in database with e-mail
// in order to show custom avatar, and falls back to general avatar link.
func ( push * PushCommits ) AvatarLink ( email string ) string {
_ , ok := push . avatars [ email ]
if ! ok {
u , err := GetUserByEmail ( email )
if err != nil {
push . avatars [ email ] = base . AvatarLink ( email )
if ! IsErrUserNotExist ( err ) {
log . Error ( 4 , "GetUserByEmail: %v" , err )
}
} else {
push . avatars [ email ] = u . AvatarLink ( )
}
}
return push . avatars [ email ]
}
2015-08-27 08:26:38 +03:00
// updateIssuesCommit checks if issues are manipulated by commit message.
2015-11-14 01:10:25 +03:00
func updateIssuesCommit ( u * User , repo * Repository , repoUserName , repoName string , commits [ ] * PushCommit ) error {
2015-09-26 03:35:56 +03:00
// Commits are appended in the reverse order.
for i := len ( commits ) - 1 ; i >= 0 ; i -- {
c := commits [ i ]
2015-09-03 11:34:08 +03:00
refMarked := make ( map [ int64 ] bool )
2015-02-07 04:47:21 +03:00
for _ , ref := range IssueReferenceKeywordsPat . FindAllString ( c . Message , - 1 ) {
2015-09-03 11:34:08 +03:00
ref = ref [ strings . IndexByte ( ref , byte ( ' ' ) ) + 1 : ]
ref = strings . TrimRightFunc ( ref , issueIndexTrimRight )
2014-07-23 15:48:06 +04:00
if len ( ref ) == 0 {
continue
}
// Add repo name if missing
if ref [ 0 ] == '#' {
ref = fmt . Sprintf ( "%s/%s%s" , repoUserName , repoName , ref )
2015-09-03 11:34:08 +03:00
} else if ! strings . Contains ( ref , "/" ) {
2015-02-07 04:34:49 +03:00
// FIXME: We don't support User#ID syntax yet
2014-07-23 15:48:06 +04:00
// return ErrNotImplemented
continue
}
issue , err := GetIssueByRef ( ref )
if err != nil {
2015-09-26 04:06:31 +03:00
if IsErrIssueNotExist ( err ) {
continue
}
2014-07-23 15:48:06 +04:00
return err
}
2015-09-03 11:34:08 +03:00
if refMarked [ issue . ID ] {
continue
}
refMarked [ issue . ID ] = true
2014-09-20 04:11:34 +04:00
url := fmt . Sprintf ( "%s/%s/%s/commit/%s" , setting . AppSubUrl , repoUserName , repoName , c . Sha1 )
2014-07-24 12:15:05 +04:00
message := fmt . Sprintf ( ` <a href="%s">%s</a> ` , url , c . Message )
2015-09-10 14:53:40 +03:00
if err = CreateRefComment ( u , repo , issue , message , c . Sha1 ) ; err != nil {
2014-07-23 15:48:06 +04:00
return err
}
2015-02-02 18:34:07 +03:00
}
2015-09-03 11:34:08 +03:00
refMarked = make ( map [ int64 ] bool )
2015-09-03 11:44:20 +03:00
// FIXME: can merge this one and next one to a common function.
2015-02-07 04:47:21 +03:00
for _ , ref := range IssueCloseKeywordsPat . FindAllString ( c . Message , - 1 ) {
2015-09-03 11:34:08 +03:00
ref = ref [ strings . IndexByte ( ref , byte ( ' ' ) ) + 1 : ]
ref = strings . TrimRightFunc ( ref , issueIndexTrimRight )
2015-02-02 18:34:07 +03:00
if len ( ref ) == 0 {
continue
}
// Add repo name if missing
if ref [ 0 ] == '#' {
ref = fmt . Sprintf ( "%s/%s%s" , repoUserName , repoName , ref )
2015-09-03 11:44:20 +03:00
} else if ! strings . Contains ( ref , "/" ) {
2015-02-02 18:34:07 +03:00
// We don't support User#ID syntax yet
// return ErrNotImplemented
continue
}
issue , err := GetIssueByRef ( ref )
if err != nil {
2015-09-26 04:06:31 +03:00
if IsErrIssueNotExist ( err ) {
continue
}
2015-02-02 18:34:07 +03:00
return err
}
2014-07-23 15:48:06 +04:00
2015-09-03 11:34:08 +03:00
if refMarked [ issue . ID ] {
continue
}
refMarked [ issue . ID ] = true
if issue . RepoID != repo . ID || issue . IsClosed {
continue
}
2016-02-25 22:17:55 +03:00
if err = issue . ChangeStatus ( u , repo , true ) ; err != nil {
2015-09-03 11:34:08 +03:00
return err
2014-07-23 15:48:06 +04:00
}
}
2015-02-07 04:34:49 +03:00
2015-09-03 11:34:08 +03:00
// It is conflict to have close and reopen at same time, so refsMarkd doesn't need to reinit here.
2015-02-07 04:47:21 +03:00
for _ , ref := range IssueReopenKeywordsPat . FindAllString ( c . Message , - 1 ) {
2015-09-03 11:34:08 +03:00
ref = ref [ strings . IndexByte ( ref , byte ( ' ' ) ) + 1 : ]
ref = strings . TrimRightFunc ( ref , issueIndexTrimRight )
2014-07-23 15:48:06 +04:00
2015-02-07 04:47:21 +03:00
if len ( ref ) == 0 {
continue
}
// Add repo name if missing
if ref [ 0 ] == '#' {
ref = fmt . Sprintf ( "%s/%s%s" , repoUserName , repoName , ref )
2015-09-03 11:44:20 +03:00
} else if ! strings . Contains ( ref , "/" ) {
2015-02-07 04:47:21 +03:00
// We don't support User#ID syntax yet
// return ErrNotImplemented
continue
}
issue , err := GetIssueByRef ( ref )
if err != nil {
2015-09-26 04:06:31 +03:00
if IsErrIssueNotExist ( err ) {
continue
}
2015-02-07 04:47:21 +03:00
return err
}
2015-09-03 11:34:08 +03:00
if refMarked [ issue . ID ] {
continue
}
refMarked [ issue . ID ] = true
if issue . RepoID != repo . ID || ! issue . IsClosed {
continue
}
2016-02-25 22:17:55 +03:00
if err = issue . ChangeStatus ( u , repo , false ) ; err != nil {
2015-09-03 11:34:08 +03:00
return err
2015-02-07 04:47:21 +03:00
}
}
}
2014-07-23 15:48:06 +04:00
return nil
}
2014-03-27 19:37:33 +04:00
// CommitRepoAction adds new action for committing repository.
2015-08-28 18:36:13 +03:00
func CommitRepoAction (
userID , repoUserID int64 ,
userName , actEmail string ,
repoID int64 ,
repoUserName , repoName string ,
refFullName string ,
2015-11-14 01:10:25 +03:00
commit * PushCommits ,
2015-08-28 18:36:13 +03:00
oldCommitID string , newCommitID string ) error {
u , err := GetUserByID ( userID )
if err != nil {
return fmt . Errorf ( "GetUserByID: %v" , err )
}
repo , err := GetRepositoryByName ( repoUserID , repoName )
if err != nil {
return fmt . Errorf ( "GetRepositoryByName: %v" , err )
} else if err = repo . GetOwner ( ) ; err != nil {
return fmt . Errorf ( "GetOwner: %v" , err )
}
2014-04-14 05:00:12 +04:00
2015-11-01 01:59:07 +03:00
// Change repository bare status and update last updated time.
2015-11-06 03:18:59 +03:00
repo . IsBare = false
if err = UpdateRepository ( repo , false ) ; err != nil {
return fmt . Errorf ( "UpdateRepository: %v" , err )
2015-11-01 01:59:07 +03:00
}
2015-08-28 18:36:13 +03:00
isNewBranch := false
2016-02-22 20:40:00 +03:00
opType := ACTION_COMMIT_REPO
2014-04-14 05:00:12 +04:00
// Check it's tag push or branch.
2014-05-06 19:50:31 +04:00
if strings . HasPrefix ( refFullName , "refs/tags/" ) {
2016-02-22 20:40:00 +03:00
opType = ACTION_PUSH_TAG
2015-11-14 01:10:25 +03:00
commit = & PushCommits { }
2015-08-28 18:36:13 +03:00
} else {
// if not the first commit, set the compareUrl
if ! strings . HasPrefix ( oldCommitID , "0000000" ) {
2015-12-10 04:46:05 +03:00
commit . CompareUrl = repo . ComposeCompareURL ( oldCommitID , newCommitID )
2015-08-28 18:36:13 +03:00
} else {
isNewBranch = true
}
2014-04-14 06:20:28 +04:00
2015-08-28 18:36:13 +03:00
if err = updateIssuesCommit ( u , repo , repoUserName , repoName , commit . Commits ) ; err != nil {
2015-09-26 04:06:31 +03:00
log . Error ( 4 , "updateIssuesCommit: %v" , err )
2015-08-28 18:36:13 +03:00
}
2014-10-11 05:40:51 +04:00
}
2014-03-24 17:32:24 +04:00
2015-09-26 03:35:56 +03:00
if len ( commit . Commits ) > setting . FeedMaxCommitNum {
commit . Commits = commit . Commits [ : setting . FeedMaxCommitNum ]
}
2014-03-27 20:48:29 +04:00
bs , err := json . Marshal ( commit )
2014-03-16 19:02:59 +04:00
if err != nil {
2015-08-13 11:07:11 +03:00
return fmt . Errorf ( "Marshal: %v" , err )
2014-03-16 19:02:59 +04:00
}
2014-03-20 07:39:00 +04:00
2014-10-11 05:40:51 +04:00
refName := git . RefEndName ( refFullName )
2015-03-18 04:51:39 +03:00
if err = NotifyWatchers ( & Action {
2015-08-13 11:07:11 +03:00
ActUserID : u . Id ,
2015-03-18 04:51:39 +03:00
ActUserName : userName ,
ActEmail : actEmail ,
OpType : opType ,
Content : string ( bs ) ,
2015-08-13 11:07:11 +03:00
RepoID : repo . ID ,
2015-03-18 04:51:39 +03:00
RepoUserName : repoUserName ,
RepoName : repoName ,
RefName : refName ,
IsPrivate : repo . IsPrivate ,
} ) ; err != nil {
2015-08-28 18:36:13 +03:00
return fmt . Errorf ( "NotifyWatchers: %v" , err )
2014-09-04 15:17:00 +04:00
}
2015-12-05 21:24:13 +03:00
payloadRepo := repo . ComposePayload ( )
2014-05-06 19:50:31 +04:00
2014-09-17 17:11:51 +04:00
pusher_email , pusher_name := "" , ""
pusher , err := GetUserByName ( userName )
if err == nil {
pusher_email = pusher . Email
2015-08-27 08:26:38 +03:00
pusher_name = pusher . DisplayName ( )
2014-09-17 17:11:51 +04:00
}
2015-08-28 18:36:13 +03:00
payloadSender := & api . PayloadUser {
UserName : pusher . Name ,
ID : pusher . Id ,
2016-02-15 23:18:53 +03:00
AvatarUrl : pusher . AvatarLink ( ) ,
2015-08-28 18:36:13 +03:00
}
2014-09-17 17:11:51 +04:00
2015-08-28 18:36:13 +03:00
switch opType {
2016-02-22 20:40:00 +03:00
case ACTION_COMMIT_REPO : // Push
2015-08-28 18:36:13 +03:00
p := & api . PushPayload {
Ref : refFullName ,
Before : oldCommitID ,
After : newCommitID ,
CompareUrl : setting . AppUrl + commit . CompareUrl ,
2015-12-10 04:46:05 +03:00
Commits : commit . ToApiPayloadCommits ( repo . FullRepoLink ( ) ) ,
2015-08-28 18:36:13 +03:00
Repo : payloadRepo ,
Pusher : & api . PayloadAuthor {
Name : pusher_name ,
Email : pusher_email ,
UserName : userName ,
2014-05-06 19:50:31 +04:00
} ,
2015-08-28 18:36:13 +03:00
Sender : payloadSender ,
2014-05-06 19:50:31 +04:00
}
2015-08-28 18:36:13 +03:00
if err = PrepareWebhooks ( repo , HOOK_EVENT_PUSH , p ) ; err != nil {
return fmt . Errorf ( "PrepareWebhooks: %v" , err )
2014-05-06 19:50:31 +04:00
}
2015-08-28 18:36:13 +03:00
if isNewBranch {
return PrepareWebhooks ( repo , HOOK_EVENT_CREATE , & api . CreatePayload {
Ref : refName ,
RefType : "branch" ,
Repo : payloadRepo ,
Sender : payloadSender ,
} )
2015-03-18 11:51:02 +03:00
}
2016-02-22 20:40:00 +03:00
case ACTION_PUSH_TAG : // Create
2015-08-28 18:36:13 +03:00
return PrepareWebhooks ( repo , HOOK_EVENT_CREATE , & api . CreatePayload {
Ref : refName ,
RefType : "tag" ,
Repo : payloadRepo ,
Sender : payloadSender ,
} )
2014-05-06 19:50:31 +04:00
}
2014-09-10 16:53:16 +04:00
2014-03-20 07:39:00 +04:00
return nil
2014-03-16 08:18:34 +04:00
}
2015-02-23 10:15:53 +03:00
func transferRepoAction ( e Engine , actUser , oldOwner , newOwner * User , repo * Repository ) ( err error ) {
2015-09-01 16:29:52 +03:00
if err = notifyWatchers ( e , & Action {
2015-03-18 04:51:39 +03:00
ActUserID : actUser . Id ,
2015-02-23 10:15:53 +03:00
ActUserName : actUser . Name ,
ActEmail : actUser . Email ,
2016-02-22 20:40:00 +03:00
OpType : ACTION_TRANSFER_REPO ,
2015-08-08 17:43:14 +03:00
RepoID : repo . ID ,
2015-02-23 10:15:53 +03:00
RepoUserName : newOwner . Name ,
2014-09-26 06:36:07 +04:00
RepoName : repo . Name ,
IsPrivate : repo . IsPrivate ,
2015-02-23 10:15:53 +03:00
Content : path . Join ( oldOwner . LowerName , repo . LowerName ) ,
2015-09-01 16:29:52 +03:00
} ) ; err != nil {
2015-11-08 22:31:49 +03:00
return fmt . Errorf ( "notify watchers '%d/%d': %v" , actUser . Id , repo . ID , err )
2014-04-05 02:31:09 +04:00
}
2014-09-26 06:42:31 +04:00
// Remove watch for organization.
if repo . Owner . IsOrganization ( ) {
2015-08-08 17:43:14 +03:00
if err = watchRepo ( e , repo . Owner . Id , repo . ID , false ) ; err != nil {
2015-02-13 08:58:46 +03:00
return fmt . Errorf ( "watch repository: %v" , err )
2014-09-26 06:42:31 +04:00
}
}
2015-09-01 16:29:52 +03:00
log . Trace ( "action.transferRepoAction: %s/%s" , actUser . Name , repo . Name )
2015-02-13 08:58:46 +03:00
return nil
}
// TransferRepoAction adds new action for transferring repository.
2015-09-01 16:29:52 +03:00
func TransferRepoAction ( actUser , oldOwner , newOwner * User , repo * Repository ) error {
2015-02-23 10:15:53 +03:00
return transferRepoAction ( x , actUser , oldOwner , newOwner , repo )
2014-04-05 02:31:09 +04:00
}
2015-09-02 23:18:09 +03:00
func mergePullRequestAction ( e Engine , actUser * User , repo * Repository , pull * Issue ) error {
return notifyWatchers ( e , & Action {
ActUserID : actUser . Id ,
ActUserName : actUser . Name ,
ActEmail : actUser . Email ,
2016-02-22 20:40:00 +03:00
OpType : ACTION_MERGE_PULL_REQUEST ,
2015-09-02 23:18:09 +03:00
Content : fmt . Sprintf ( "%d|%s" , pull . Index , pull . Name ) ,
RepoID : repo . ID ,
RepoUserName : repo . Owner . Name ,
RepoName : repo . Name ,
IsPrivate : repo . IsPrivate ,
} )
}
// MergePullRequestAction adds new action for merging pull request.
func MergePullRequestAction ( actUser * User , repo * Repository , pull * Issue ) error {
return mergePullRequestAction ( x , actUser , repo , pull )
}
2014-03-15 13:30:59 +04:00
// GetFeeds returns action list of given user in given context.
2016-02-15 04:07:42 +03:00
// userID is the user who's requesting, ctxUserID is the user/org that is requested.
// userID can be -1, if isProfile is true or in order to skip the permission check.
2016-02-06 10:52:21 +03:00
func GetFeeds ( ctxUserID , userID , offset int64 , isProfile bool ) ( [ ] * Action , error ) {
2014-05-09 03:17:43 +04:00
actions := make ( [ ] * Action , 0 , 20 )
2016-02-15 04:07:42 +03:00
sess := x . Limit ( 20 , int ( offset ) ) . Desc ( "id" ) . Where ( "user_id=?" , ctxUserID )
2014-03-15 08:50:51 +04:00
if isProfile {
2016-02-15 04:07:42 +03:00
sess . And ( "is_private=?" , false ) . And ( "act_user_id=?" , ctxUserID )
2016-02-06 10:52:21 +03:00
} else if ctxUserID != - 1 {
2016-02-15 04:07:42 +03:00
ctxUser := & User { Id : ctxUserID }
if err := ctxUser . GetUserRepositories ( userID ) ; err != nil {
2016-02-06 10:52:21 +03:00
return nil , err
}
var repoIDs [ ] int64
2016-02-15 04:07:42 +03:00
for _ , repo := range ctxUser . Repos {
2016-02-06 10:52:21 +03:00
repoIDs = append ( repoIDs , repo . ID )
}
if len ( repoIDs ) > 0 {
sess . In ( "repo_id" , repoIDs )
}
2014-03-15 08:50:51 +04:00
}
2016-02-06 10:52:21 +03:00
2014-03-15 08:50:51 +04:00
err := sess . Find ( & actions )
2014-03-13 09:16:14 +04:00
return actions , err
}