2020-10-30 22:59:02 +01:00
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
2022-11-27 19:20:29 +01:00
|
|
|
// SPDX-License-Identifier: MIT
|
2020-10-30 22:59:02 +01:00
|
|
|
|
|
|
|
package repository
|
|
|
|
|
|
|
|
import (
|
|
|
|
"code.gitea.io/gitea/modules/git"
|
|
|
|
)
|
|
|
|
|
|
|
|
// PushUpdateOptions defines the push update options
|
|
|
|
type PushUpdateOptions struct {
|
|
|
|
PusherID int64
|
|
|
|
PusherName string
|
|
|
|
RepoUserName string
|
|
|
|
RepoName string
|
2023-05-26 03:04:48 +02:00
|
|
|
RefFullName git.RefName // branch, tag or other name to push
|
2020-10-30 22:59:02 +01:00
|
|
|
OldCommitID string
|
|
|
|
NewCommitID string
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsNewRef return true if it's a first-time push to a branch, tag or etc.
|
2021-11-24 10:08:13 +01:00
|
|
|
func (opts *PushUpdateOptions) IsNewRef() bool {
|
2020-10-30 22:59:02 +01:00
|
|
|
return opts.OldCommitID == git.EmptySHA
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsDelRef return true if it's a deletion to a branch or tag
|
2021-11-24 10:08:13 +01:00
|
|
|
func (opts *PushUpdateOptions) IsDelRef() bool {
|
2020-10-30 22:59:02 +01:00
|
|
|
return opts.NewCommitID == git.EmptySHA
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsUpdateRef return true if it's an update operation
|
2021-11-24 10:08:13 +01:00
|
|
|
func (opts *PushUpdateOptions) IsUpdateRef() bool {
|
2020-10-30 22:59:02 +01:00
|
|
|
return !opts.IsNewRef() && !opts.IsDelRef()
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsNewTag return true if it's a creation to a tag
|
2021-11-24 10:08:13 +01:00
|
|
|
func (opts *PushUpdateOptions) IsNewTag() bool {
|
2023-05-26 03:04:48 +02:00
|
|
|
return opts.RefFullName.IsTag() && opts.IsNewRef()
|
2020-10-30 22:59:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// IsDelTag return true if it's a deletion to a tag
|
2021-11-24 10:08:13 +01:00
|
|
|
func (opts *PushUpdateOptions) IsDelTag() bool {
|
2023-05-26 03:04:48 +02:00
|
|
|
return opts.RefFullName.IsTag() && opts.IsDelRef()
|
2020-10-30 22:59:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// IsNewBranch return true if it's the first-time push to a branch
|
2021-11-24 10:08:13 +01:00
|
|
|
func (opts *PushUpdateOptions) IsNewBranch() bool {
|
2023-05-26 03:04:48 +02:00
|
|
|
return opts.RefFullName.IsBranch() && opts.IsNewRef()
|
2020-10-30 22:59:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// IsUpdateBranch return true if it's not the first push to a branch
|
2021-11-24 10:08:13 +01:00
|
|
|
func (opts *PushUpdateOptions) IsUpdateBranch() bool {
|
2023-05-26 03:04:48 +02:00
|
|
|
return opts.RefFullName.IsBranch() && opts.IsUpdateRef()
|
2020-10-30 22:59:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// IsDelBranch return true if it's a deletion to a branch
|
2021-11-24 10:08:13 +01:00
|
|
|
func (opts *PushUpdateOptions) IsDelBranch() bool {
|
2023-05-26 03:04:48 +02:00
|
|
|
return opts.RefFullName.IsBranch() && opts.IsDelRef()
|
2020-10-30 22:59:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// RefName returns simple name for ref
|
2021-11-24 10:08:13 +01:00
|
|
|
func (opts *PushUpdateOptions) RefName() string {
|
2023-05-26 03:04:48 +02:00
|
|
|
return opts.RefFullName.ShortName()
|
2020-10-30 22:59:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// RepoFullName returns repo full name
|
2021-11-24 10:08:13 +01:00
|
|
|
func (opts *PushUpdateOptions) RepoFullName() string {
|
2020-10-30 22:59:02 +01:00
|
|
|
return opts.RepoUserName + "/" + opts.RepoName
|
|
|
|
}
|