2015-11-27 01:33:45 +03:00
// Copyright 2015 The Gogs Authors. All rights reserved.
2020-01-12 12:36:21 +03:00
// Copyright 2020 The Gitea Authors. All rights reserved.
2022-11-27 21:20:29 +03:00
// SPDX-License-Identifier: MIT
2015-11-27 01:33:45 +03:00
2021-12-10 04:27:50 +03:00
package repo
2015-11-27 01:33:45 +03:00
import (
2022-08-25 05:31:57 +03:00
"fmt"
2015-11-27 01:33:45 +03:00
"path/filepath"
"strings"
2015-12-20 20:02:54 +03:00
2021-11-24 12:49:20 +03:00
user_model "code.gitea.io/gitea/models/user"
2020-11-28 05:42:08 +03:00
"code.gitea.io/gitea/modules/log"
"code.gitea.io/gitea/modules/util"
2015-11-27 01:33:45 +03:00
)
2022-08-25 05:31:57 +03:00
// ErrWikiAlreadyExist represents a "WikiAlreadyExist" kind of error.
type ErrWikiAlreadyExist struct {
Title string
}
// IsErrWikiAlreadyExist checks if an error is an ErrWikiAlreadyExist.
func IsErrWikiAlreadyExist ( err error ) bool {
_ , ok := err . ( ErrWikiAlreadyExist )
return ok
}
func ( err ErrWikiAlreadyExist ) Error ( ) string {
return fmt . Sprintf ( "wiki page already exists [title: %s]" , err . Title )
}
2022-10-18 08:50:37 +03:00
func ( err ErrWikiAlreadyExist ) Unwrap ( ) error {
return util . ErrAlreadyExist
}
2022-08-25 05:31:57 +03:00
// ErrWikiReservedName represents a reserved name error.
type ErrWikiReservedName struct {
Title string
}
// IsErrWikiReservedName checks if an error is an ErrWikiReservedName.
func IsErrWikiReservedName ( err error ) bool {
_ , ok := err . ( ErrWikiReservedName )
return ok
}
func ( err ErrWikiReservedName ) Error ( ) string {
return fmt . Sprintf ( "wiki title is reserved: %s" , err . Title )
}
2022-10-18 08:50:37 +03:00
func ( err ErrWikiReservedName ) Unwrap ( ) error {
return util . ErrInvalidArgument
}
2022-08-25 05:31:57 +03:00
// ErrWikiInvalidFileName represents an invalid wiki file name.
type ErrWikiInvalidFileName struct {
FileName string
}
// IsErrWikiInvalidFileName checks if an error is an ErrWikiInvalidFileName.
func IsErrWikiInvalidFileName ( err error ) bool {
_ , ok := err . ( ErrWikiInvalidFileName )
return ok
}
func ( err ErrWikiInvalidFileName ) Error ( ) string {
return fmt . Sprintf ( "Invalid wiki filename: %s" , err . FileName )
}
2022-10-18 08:50:37 +03:00
func ( err ErrWikiInvalidFileName ) Unwrap ( ) error {
return util . ErrInvalidArgument
}
2015-12-01 04:45:55 +03:00
// WikiCloneLink returns clone URLs of repository wiki.
2017-01-27 21:04:53 +03:00
func ( repo * Repository ) WikiCloneLink ( ) * CloneLink {
2020-01-12 12:36:21 +03:00
return repo . cloneLink ( true )
2015-12-01 04:45:55 +03:00
}
2015-11-27 01:33:45 +03:00
// WikiPath returns wiki data path by given user and repository name.
func WikiPath ( userName , repoName string ) string {
2021-11-24 12:49:20 +03:00
return filepath . Join ( user_model . UserPath ( userName ) , strings . ToLower ( repoName ) + ".wiki.git" )
2015-11-27 01:33:45 +03:00
}
2016-11-14 19:58:06 +03:00
// WikiPath returns wiki data path for given repository.
2015-11-27 01:33:45 +03:00
func ( repo * Repository ) WikiPath ( ) string {
2020-01-12 12:36:21 +03:00
return WikiPath ( repo . OwnerName , repo . Name )
2015-11-27 01:33:45 +03:00
}
// HasWiki returns true if repository has wiki.
func ( repo * Repository ) HasWiki ( ) bool {
2020-11-28 05:42:08 +03: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-27 01:33:45 +03:00
}