mirror of
https://gitea.com/gitea/tea
synced 2024-10-31 21:20:23 +00:00
45 lines
887 B
Go
45 lines
887 B
Go
|
// Copyright 2020 The Gitea 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 print
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"strings"
|
||
|
|
||
|
"code.gitea.io/sdk/gitea"
|
||
|
)
|
||
|
|
||
|
// RepoDetails print an repo formatted to stdout
|
||
|
func RepoDetails(repo *gitea.Repository, topics []string) {
|
||
|
output := repo.FullName
|
||
|
if repo.Mirror {
|
||
|
output += " (mirror)"
|
||
|
}
|
||
|
if repo.Fork {
|
||
|
output += " (fork)"
|
||
|
}
|
||
|
if repo.Archived {
|
||
|
output += " (archived)"
|
||
|
}
|
||
|
if repo.Empty {
|
||
|
output += " (empty)"
|
||
|
}
|
||
|
output += "\n"
|
||
|
if len(topics) != 0 {
|
||
|
output += "Topics: " + strings.Join(topics, ", ") + "\n"
|
||
|
}
|
||
|
output += "\n"
|
||
|
output += repo.Description + "\n\n"
|
||
|
output += fmt.Sprintf(
|
||
|
"Open Issues: %d, Stars: %d, Forks: %d, Size: %s\n\n",
|
||
|
repo.OpenIssues,
|
||
|
repo.Stars,
|
||
|
repo.Forks,
|
||
|
formatSize(int64(repo.Size)),
|
||
|
)
|
||
|
|
||
|
fmt.Print(output)
|
||
|
}
|