123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153 |
- package context
- import (
- "strings"
- "github.com/G-Node/git-module"
- "github.com/G-Node/gogs/internal/conf"
- "github.com/G-Node/gogs/internal/db"
- "github.com/G-Node/libgin/libgin"
- log "gopkg.in/clog.v1"
- )
- // getRepoDOI returns the DOI for the repository based on the following rules:
- // - if the repository belongs to the DOI user and has a tag that matches the
- // DOI prefix, returns the tag.
- // - if the repo is forked by the DOI user, check the DOI fork for the tag as above.
- // - if the repo is forked by the DOI user and the fork doesn't have a tag,
- // returns the (old-style) calculated DOI, based on the hash of the repository
- // path.
- // - An empty string is returned if it is not not forked by the DOI user.
- // If an error occurs at any point, returns an empty string (the error is logged).
- // Tag retrieval is allowed to fail and falls back on the hashed DOI method.
- func getRepoDOI(c *Context) string {
- repo := c.Repo.Repository
- var doiFork *db.Repository
- if repo.Owner.Name == "doi" {
- doiFork = repo
- } else {
- if forks, err := repo.GetForks(); err == nil {
- for _, fork := range forks {
- if fork.MustOwner().Name == "doi" {
- doiFork = fork
- break
- }
- }
- } else {
- log.Error(2, "failed to get forks for repository %q (%d): %v", repo.FullName(), repo.ID, err)
- return ""
- }
- }
- if doiFork == nil {
- // not owned or forked by DOI, so not registered
- return ""
- }
- // check the DOI fork for a tag that matches our DOI prefix
- // if multiple exit, get the latest one
- doiBase := conf.DOI.Base
- doiForkGit, err := git.OpenRepository(doiFork.RepoPath())
- if err != nil {
- log.Error(2, "failed to open git repository at %q (%d): %v", doiFork.RepoPath(), doiFork.ID, err)
- return ""
- }
- if tags, err := doiForkGit.GetTags(); err == nil {
- var latestTime int64
- latestTag := ""
- for _, tagName := range tags {
- if strings.Contains(tagName, doiBase) {
- tag, err := doiForkGit.GetTag(tagName)
- if err != nil {
- // log the error and continue to the next tag
- log.Error(2, "failed to get information for tag %q for repository at %q: %v", tagName, doiForkGit.Path, err)
- continue
- }
- commit, err := tag.Commit()
- if err != nil {
- // log the error and continue to the next tag
- log.Error(2, "failed to get commit for tag %q for repository at %q: %v", tagName, doiForkGit.Path, err)
- continue
- }
- commitTime := commit.Committer.When.Unix()
- if commitTime > latestTime {
- latestTag = tagName
- latestTime = commitTime
- }
- }
- }
- return latestTag
- } else {
- // this shouldn't happen even if there are no tags
- // log the error, but fall back to the old method anyway
- log.Error(2, "failed to get tags for repository at %q: %v", doiForkGit.Path, err)
- }
- // Has DOI fork but isn't tagged: return old style has-based DOI
- repoPath := repo.FullName()
- // get base repo name if it's a DOI fork
- if c.Repo.Repository.IsFork && c.Repo.Owner.Name == "doi" {
- repoPath = c.Repo.Repository.BaseRepo.FullName()
- }
- uuid := libgin.RepoPathToUUID(repoPath)
- return doiBase + uuid[:6]
- }
- // hasDataCite returns 'true' if a repository includes a file called
- // 'datacite.yml' in its root. No checks are made to determine if the file is
- // valid. If any error occurs, for example due to an uninitialised repository
- // or missing repository root, it returns 'false' without error.
- func hasDataCite(c *Context) bool {
- commit, err := c.Repo.GitRepo.GetBranchCommit(c.Repo.Repository.DefaultBranch)
- if err != nil {
- log.Trace("Couldn't get commit: %v", err)
- return false
- }
- _, err = commit.GetBlobByPath("/datacite.yml")
- log.Trace("Found datacite? %t", err == nil)
- return err == nil
- }
- // True if repository is not Private, is not registered, or is registered and
- // has changes (HEAD is not registered)
- func isDOIReady(c *Context) bool {
- if hasDC, ok := c.Data["HasDataCite"]; !ok || !hasDC.(bool) {
- return false
- }
- dbrepo := c.Repo.Repository
- gitrepo := c.Repo.GitRepo
- headIsRegistered := func() bool {
- currentDOI, ok := c.Data["DOI"]
- if !ok {
- return false
- }
- headBranch, err := gitrepo.GetHEADBranch()
- if err != nil {
- log.Error(2, "Failed to get HEAD branch for repo at %q: %v", gitrepo.Path, err)
- return false
- }
- headCommit, err := gitrepo.GetBranchCommitID(headBranch.Name)
- if err != nil {
- log.Error(2, "Failed to get commit ID of branch %q for repo at %q: %v", headBranch.Name, gitrepo.Path, err)
- return false
- }
- // if current valid and registered DOI matches the HEAD commit, can't
- // register again
- doiCommit, err := gitrepo.GetTagCommitID(currentDOI.(string))
- if err != nil {
- log.Error(2, "Failed to get commit ID of tag %q for repo at %q: %v", currentDOI, gitrepo.Path, err)
- return false
- }
- log.Trace("%s ?= %s", headCommit, doiCommit)
- return headCommit == doiCommit
- }()
- return !dbrepo.IsPrivate && !headIsRegistered
- }
|