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
|
|
|
|
2020-11-28 02:42:08 +00:00
|
|
|
"code.gitea.io/gitea/modules/log"
|
|
|
|
"code.gitea.io/gitea/modules/util"
|
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 {
|
2020-11-28 02:42:08 +00:00
|
|
|
isDir, err := util.IsDir(repo.WikiPath())
|
|
|
|
if err != nil {
|
|
|
|
log.Error("Unable to check if %s is a directory: %v", repo.WikiPath(), err)
|
|
|
|
}
|
|
|
|
return isDir
|
2015-11-26 22:33:45 +00:00
|
|
|
}
|