2015-11-26 23:33:45 +01:00
|
|
|
// Copyright 2015 The Gogs Authors. All rights reserved.
|
2020-01-12 10:36:21 +01:00
|
|
|
// 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"
|
2015-12-20 18:02:54 +01:00
|
|
|
|
2019-08-23 18:40:30 +02:00
|
|
|
"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 {
|
2020-01-12 10:36:21 +01:00
|
|
|
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")
|
|
|
|
}
|
|
|
|
|
2016-11-14 17:58:06 +01:00
|
|
|
// WikiPath returns wiki data path for given repository.
|
2015-11-26 23:33:45 +01:00
|
|
|
func (repo *Repository) WikiPath() string {
|
2020-01-12 10:36:21 +01:00
|
|
|
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())
|
|
|
|
}
|