2015-11-26 15:33:45 -07:00
|
|
|
// Copyright 2015 The Gogs Authors. All rights reserved.
|
2020-01-12 02:36:21 -07:00
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
2015-11-26 15:33:45 -07:00
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2021-12-09 18:27:50 -07:00
|
|
|
package repo
|
2015-11-26 15:33:45 -07:00
|
|
|
|
|
|
|
import (
|
|
|
|
"path/filepath"
|
|
|
|
"strings"
|
2015-12-20 10:02:54 -07:00
|
|
|
|
2021-11-24 02:49:20 -07:00
|
|
|
user_model "code.gitea.io/gitea/models/user"
|
2020-11-27 19:42:08 -07:00
|
|
|
"code.gitea.io/gitea/modules/log"
|
|
|
|
"code.gitea.io/gitea/modules/util"
|
2015-11-26 15:33:45 -07:00
|
|
|
)
|
|
|
|
|
2015-11-30 18:45:55 -07:00
|
|
|
// WikiCloneLink returns clone URLs of repository wiki.
|
2017-01-27 11:04:53 -07:00
|
|
|
func (repo *Repository) WikiCloneLink() *CloneLink {
|
2020-01-12 02:36:21 -07:00
|
|
|
return repo.cloneLink(true)
|
2015-11-30 18:45:55 -07:00
|
|
|
}
|
|
|
|
|
2015-11-26 15:33:45 -07:00
|
|
|
// WikiPath returns wiki data path by given user and repository name.
|
|
|
|
func WikiPath(userName, repoName string) string {
|
2021-11-24 02:49:20 -07:00
|
|
|
return filepath.Join(user_model.UserPath(userName), strings.ToLower(repoName)+".wiki.git")
|
2015-11-26 15:33:45 -07:00
|
|
|
}
|
|
|
|
|
2016-11-14 09:58:06 -07:00
|
|
|
// WikiPath returns wiki data path for given repository.
|
2015-11-26 15:33:45 -07:00
|
|
|
func (repo *Repository) WikiPath() string {
|
2020-01-12 02:36:21 -07:00
|
|
|
return WikiPath(repo.OwnerName, repo.Name)
|
2015-11-26 15:33:45 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// HasWiki returns true if repository has wiki.
|
|
|
|
func (repo *Repository) HasWiki() bool {
|
2020-11-27 19:42:08 -07: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 15:33:45 -07:00
|
|
|
}
|