123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210 |
- // Copyright 2015 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 git
- import (
- "fmt"
- "strings"
- "github.com/mcuadros/go-version"
- )
- const TAG_PREFIX = "refs/tags/"
- // IsTagExist returns true if given tag exists in the repository.
- func IsTagExist(repoPath, name string) bool {
- return IsReferenceExist(repoPath, TAG_PREFIX+name)
- }
- func (repo *Repository) IsTagExist(name string) bool {
- return IsTagExist(repo.Path, name)
- }
- func (repo *Repository) CreateTag(name, revision string) error {
- _, err := NewCommand("tag", name, revision).RunInDir(repo.Path)
- return err
- }
- func (repo *Repository) getTag(id sha1) (*Tag, error) {
- t, ok := repo.tagCache.Get(id.String())
- if ok {
- log("Hit cache: %s", id)
- return t.(*Tag), nil
- }
- // Get tag type
- tp, err := NewCommand("cat-file", "-t", id.String()).RunInDir(repo.Path)
- if err != nil {
- return nil, err
- }
- tp = strings.TrimSpace(tp)
- // Tag is a commit.
- if ObjectType(tp) == OBJECT_COMMIT {
- tag := &Tag{
- ID: id,
- Object: id,
- Type: string(OBJECT_COMMIT),
- repo: repo,
- }
- repo.tagCache.Set(id.String(), tag)
- return tag, nil
- }
- // Tag with message.
- data, err := NewCommand("cat-file", "-p", id.String()).RunInDirBytes(repo.Path)
- if err != nil {
- return nil, err
- }
- tag, err := parseTagData(data)
- if err != nil {
- return nil, err
- }
- tag.ID = id
- tag.repo = repo
- repo.tagCache.Set(id.String(), tag)
- return tag, nil
- }
- // GetTag returns a Git tag by given name.
- func (repo *Repository) GetTag(name string) (*Tag, error) {
- stdout, err := NewCommand("show-ref", "--tags", name).RunInDir(repo.Path)
- if err != nil {
- return nil, err
- }
- id, err := NewIDFromString(strings.Split(stdout, " ")[0])
- if err != nil {
- return nil, err
- }
- tag, err := repo.getTag(id)
- if err != nil {
- return nil, err
- }
- tag.Name = name
- return tag, nil
- }
- // GetTags returns all tags of the repository.
- func (repo *Repository) GetTags() ([]string, error) {
- cmd := NewCommand("tag", "-l")
- if version.Compare(gitVersion, "2.0.0", ">=") {
- cmd.AddArguments("--sort=-v:refname")
- }
- stdout, err := cmd.RunInDir(repo.Path)
- if err != nil {
- return nil, err
- }
- tags := strings.Split(stdout, "\n")
- tags = tags[:len(tags)-1]
- if version.Compare(gitVersion, "2.0.0", "<") {
- version.Sort(tags)
- // Reverse order
- for i := 0; i < len(tags)/2; i++ {
- j := len(tags) - i - 1
- tags[i], tags[j] = tags[j], tags[i]
- }
- }
- return tags, nil
- }
- type TagsResult struct {
- // Indicates whether results include the latest tag.
- HasLatest bool
- // If results do not include the latest tag, a indicator 'after' to go back.
- PreviousAfter string
- // Indicates whether results include the oldest tag.
- ReachEnd bool
- // List of returned tags.
- Tags []string
- }
- // GetTagsAfter returns list of tags 'after' (exlusive) given tag.
- func (repo *Repository) GetTagsAfter(after string, limit int) (*TagsResult, error) {
- allTags, err := repo.GetTags()
- if err != nil {
- return nil, fmt.Errorf("GetTags: %v", err)
- }
- if limit < 0 {
- limit = 0
- }
- numAllTags := len(allTags)
- if len(after) == 0 && limit == 0 {
- return &TagsResult{
- HasLatest: true,
- ReachEnd: true,
- Tags: allTags,
- }, nil
- } else if len(after) == 0 && limit > 0 {
- endIdx := limit
- if limit >= numAllTags {
- endIdx = numAllTags
- }
- return &TagsResult{
- HasLatest: true,
- ReachEnd: limit >= numAllTags,
- Tags: allTags[:endIdx],
- }, nil
- }
- previousAfter := ""
- hasMatch := false
- tags := make([]string, 0, len(allTags))
- for i := range allTags {
- if hasMatch {
- tags = allTags[i:]
- break
- }
- if allTags[i] == after {
- hasMatch = true
- if limit > 0 && i-limit >= 0 {
- previousAfter = allTags[i-limit]
- }
- continue
- }
- }
- if !hasMatch {
- tags = allTags
- }
- // If all tags after match is equal to the limit, it reaches the oldest tag as well.
- if limit == 0 || len(tags) <= limit {
- return &TagsResult{
- HasLatest: !hasMatch,
- PreviousAfter: previousAfter,
- ReachEnd: true,
- Tags: tags,
- }, nil
- }
- return &TagsResult{
- HasLatest: !hasMatch,
- PreviousAfter: previousAfter,
- Tags: tags[:limit],
- }, nil
- }
- // DeleteTag deletes a tag from the repository
- func (repo *Repository) DeleteTag(name string) error {
- cmd := NewCommand("tag", "-d")
- cmd.AddArguments(name)
- _, err := cmd.RunInDir(repo.Path)
- return err
- }
|