2015-11-27 07:33:45 +09:00
|
|
|
// Copyright 2015 The Gogs Authors. All rights reserved.
|
|
|
|
// 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-21 02:02:54 +09:00
|
|
|
|
2019-08-24 01:40:30 +09:00
|
|
|
"github.com/unknwon/com"
|
2015-11-27 07:33:45 +09:00
|
|
|
)
|
|
|
|
|
2015-12-01 10:45:55 +09:00
|
|
|
// WikiCloneLink returns clone URLs of repository wiki.
|
2017-01-28 03:04:53 +09:00
|
|
|
func (repo *Repository) WikiCloneLink() *CloneLink {
|
2018-10-20 01:36:42 +09:00
|
|
|
return repo.cloneLink(x, true)
|
2015-12-01 10:45:55 +09:00
|
|
|
}
|
|
|
|
|
2015-11-27 07:33:45 +09: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-15 01:58:06 +09:00
|
|
|
// WikiPath returns wiki data path for given repository.
|
2015-11-27 07:33:45 +09:00
|
|
|
func (repo *Repository) WikiPath() string {
|
2018-05-02 15:10:19 +09:00
|
|
|
return WikiPath(repo.MustOwnerName(), repo.Name)
|
2015-11-27 07:33:45 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
// HasWiki returns true if repository has wiki.
|
|
|
|
func (repo *Repository) HasWiki() bool {
|
|
|
|
return com.IsDir(repo.WikiPath())
|
|
|
|
}
|