2015-11-26 22:33:45 +00:00
|
|
|
// Copyright 2015 The Gogs Authors. All rights reserved.
|
2020-01-12 09:36:21 +00:00
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
2015-11-26 22:33:45 +00: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"
|
2015-12-20 17:02:54 +00:00
|
|
|
|
2019-08-23 16:40:30 +00:00
|
|
|
"github.com/unknwon/com"
|
2015-11-26 22:33:45 +00:00
|
|
|
)
|
|
|
|
|
2015-12-01 01:45:55 +00:00
|
|
|
// WikiCloneLink returns clone URLs of repository wiki.
|
2017-01-27 18:04:53 +00:00
|
|
|
func (repo *Repository) WikiCloneLink() *CloneLink {
|
2020-01-12 09:36:21 +00:00
|
|
|
return repo.cloneLink(true)
|
2015-12-01 01:45:55 +00:00
|
|
|
}
|
|
|
|
|
2015-11-26 22:33:45 +00: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")
|
|
|
|
}
|
|
|
|
|
2016-11-14 16:58:06 +00:00
|
|
|
// WikiPath returns wiki data path for given repository.
|
2015-11-26 22:33:45 +00:00
|
|
|
func (repo *Repository) WikiPath() string {
|
2020-01-12 09:36:21 +00:00
|
|
|
return WikiPath(repo.OwnerName, repo.Name)
|
2015-11-26 22:33:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// HasWiki returns true if repository has wiki.
|
|
|
|
func (repo *Repository) HasWiki() bool {
|
|
|
|
return com.IsDir(repo.WikiPath())
|
|
|
|
}
|