2015-11-26 17:33:45 -05:00
// Copyright 2015 The Gogs Authors. All rights reserved.
2020-01-12 17:36:21 +08:00
// Copyright 2020 The Gitea Authors. All rights reserved.
2015-11-26 17:33:45 -05: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
2020-11-28 02:42:08 +00:00
"code.gitea.io/gitea/modules/log"
"code.gitea.io/gitea/modules/util"
2015-11-26 17:33:45 -05:00
)
2015-11-30 20:45:55 -05:00
// WikiCloneLink returns clone URLs of repository wiki.
2017-01-27 13:04:53 -05:00
func ( repo * Repository ) WikiCloneLink ( ) * CloneLink {
2020-01-12 17:36:21 +08:00
return repo . cloneLink ( true )
2015-11-30 20:45:55 -05:00
}
2015-11-26 17:33:45 -05: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 17:33:45 -05:00
func ( repo * Repository ) WikiPath ( ) string {
2020-01-12 17:36:21 +08:00
return WikiPath ( repo . OwnerName , repo . Name )
2015-11-26 17:33:45 -05: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 17:33:45 -05:00
}