gitea/models/wiki.go

34 lines
922 B
Go
Raw Normal View History

2015-11-26 23:33:45 +01:00
// Copyright 2015 The Gogs Authors. All rights reserved.
// Copyright 2020 The Gitea Authors. All rights reserved.
2015-11-26 23:33:45 +01:00
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
package models
import (
"path/filepath"
"strings"
"github.com/unknwon/com"
2015-11-26 23:33:45 +01:00
)
2015-12-01 02:45:55 +01:00
// WikiCloneLink returns clone URLs of repository wiki.
2017-01-27 19:04:53 +01:00
func (repo *Repository) WikiCloneLink() *CloneLink {
return repo.cloneLink(true)
2015-12-01 02:45:55 +01:00
}
2015-11-26 23:33:45 +01:00
// WikiPath returns wiki data path by given user and repository name.
func WikiPath(userName, repoName string) string {
return filepath.Join(UserPath(userName), strings.ToLower(repoName)+".wiki.git")
}
// WikiPath returns wiki data path for given repository.
2015-11-26 23:33:45 +01:00
func (repo *Repository) WikiPath() string {
return WikiPath(repo.OwnerName, repo.Name)
2015-11-26 23:33:45 +01:00
}
// HasWiki returns true if repository has wiki.
func (repo *Repository) HasWiki() bool {
return com.IsDir(repo.WikiPath())
}