2015-11-27 01:33:45 +03: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 (
"fmt"
2016-03-04 21:32:17 +03:00
"net/url"
2015-11-27 09:50:38 +03:00
"os"
2015-11-27 01:33:45 +03:00
"path/filepath"
"strings"
2015-12-20 20:02:54 +03:00
2019-03-27 12:33:00 +03:00
"code.gitea.io/gitea/modules/git"
2019-05-11 18:29:17 +03:00
"code.gitea.io/gitea/modules/log"
2016-11-10 19:24:48 +03:00
"code.gitea.io/gitea/modules/sync"
2019-03-27 12:33:00 +03:00
2019-08-23 19:40:30 +03:00
"github.com/unknwon/com"
2015-11-27 01:33:45 +03:00
)
2017-01-22 18:08:54 +03:00
var (
2019-02-06 04:58:55 +03:00
reservedWikiNames = [ ] string { "_pages" , "_new" , "_edit" , "raw" }
2017-01-22 18:08:54 +03:00
wikiWorkingPool = sync . NewExclusivePool ( )
)
2015-11-27 08:24:24 +03:00
2017-11-28 12:43:51 +03:00
// NormalizeWikiName normalizes a wiki name
func NormalizeWikiName ( name string ) string {
return strings . Replace ( name , "-" , " " , - 1 )
}
// WikiNameToSubURL converts a wiki name to its corresponding sub-URL.
func WikiNameToSubURL ( name string ) string {
2015-12-20 20:02:54 +03:00
return url . QueryEscape ( strings . Replace ( name , " " , "-" , - 1 ) )
2015-11-27 01:33:45 +03:00
}
2017-11-28 12:43:51 +03:00
// WikiNameToFilename converts a wiki name to its corresponding filename.
func WikiNameToFilename ( name string ) string {
name = strings . Replace ( name , " " , "-" , - 1 )
return url . QueryEscape ( name ) + ".md"
}
// WikiFilenameToName converts a wiki filename to its corresponding page name.
func WikiFilenameToName ( filename string ) ( string , error ) {
if ! strings . HasSuffix ( filename , ".md" ) {
2018-02-05 17:56:30 +03:00
return "" , ErrWikiInvalidFileName { filename }
2017-11-28 12:43:51 +03:00
}
basename := filename [ : len ( filename ) - 3 ]
unescaped , err := url . QueryUnescape ( basename )
if err != nil {
return "" , err
}
return NormalizeWikiName ( unescaped ) , nil
2015-11-27 08:24:24 +03:00
}
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 {
2018-10-19 19:36:42 +03:00
return repo . cloneLink ( x , 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 {
return filepath . Join ( UserPath ( userName ) , strings . ToLower ( repoName ) + ".wiki.git" )
}
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 {
2018-05-02 09:10:19 +03:00
return WikiPath ( repo . MustOwnerName ( ) , repo . Name )
2015-11-27 01:33:45 +03:00
}
// HasWiki returns true if repository has wiki.
func ( repo * Repository ) HasWiki ( ) bool {
return com . IsDir ( repo . WikiPath ( ) )
}
// InitWiki initializes a wiki for repository,
// it does nothing when repository already has wiki.
func ( repo * Repository ) InitWiki ( ) error {
if repo . HasWiki ( ) {
return nil
}
if err := git . InitRepository ( repo . WikiPath ( ) , true ) ; err != nil {
return fmt . Errorf ( "InitRepository: %v" , err )
2017-02-23 06:40:44 +03:00
} else if err = createDelegateHooks ( repo . WikiPath ( ) ) ; err != nil {
return fmt . Errorf ( "createDelegateHooks: %v" , err )
2015-11-27 01:33:45 +03:00
}
return nil
}
2017-11-28 12:43:51 +03:00
// nameAllowed checks if a wiki name is allowed
func nameAllowed ( name string ) error {
for _ , reservedName := range reservedWikiNames {
if name == reservedName {
return ErrWikiReservedName { name }
2017-01-22 18:08:54 +03:00
}
}
return nil
}
2017-11-28 12:43:51 +03:00
// updateWikiPage adds a new page to the repository wiki.
func ( repo * Repository ) updateWikiPage ( doer * User , oldWikiName , newWikiName , content , message string , isNew bool ) ( err error ) {
if err = nameAllowed ( newWikiName ) ; err != nil {
2017-01-22 18:08:54 +03:00
return err
}
2015-11-27 08:24:24 +03:00
wikiWorkingPool . CheckIn ( com . ToStr ( repo . ID ) )
defer wikiWorkingPool . CheckOut ( com . ToStr ( repo . ID ) )
2015-11-27 01:33:45 +03:00
if err = repo . InitWiki ( ) ; err != nil {
return fmt . Errorf ( "InitWiki: %v" , err )
}
2019-05-11 18:29:17 +03:00
hasMasterBranch := git . IsBranchExist ( repo . WikiPath ( ) , "master" )
basePath , err := CreateTemporaryPath ( "update-wiki" )
if err != nil {
return err
2015-11-27 08:24:24 +03:00
}
2019-06-12 22:41:28 +03:00
defer func ( ) {
if err := RemoveTemporaryPath ( basePath ) ; err != nil {
log . Error ( "Merge: RemoveTemporaryPath: %s" , err )
}
} ( )
2015-11-27 08:24:24 +03:00
2019-05-11 18:29:17 +03:00
cloneOpts := git . CloneRepoOptions {
Bare : true ,
Shared : true ,
}
if hasMasterBranch {
cloneOpts . Branch = "master"
}
2015-11-27 09:50:38 +03:00
2019-05-11 18:29:17 +03:00
if err := git . Clone ( repo . WikiPath ( ) , basePath , cloneOpts ) ; err != nil {
log . Error ( "Failed to clone repository: %s (%v)" , repo . FullName ( ) , err )
return fmt . Errorf ( "Failed to clone repository: %s (%v)" , repo . FullName ( ) , err )
}
gitRepo , err := git . OpenRepository ( basePath )
if err != nil {
log . Error ( "Unable to open temporary repository: %s (%v)" , basePath , err )
return fmt . Errorf ( "Failed to open new temporary repository in: %s %v" , basePath , err )
}
if hasMasterBranch {
if err := gitRepo . ReadTreeToIndex ( "HEAD" ) ; err != nil {
log . Error ( "Unable to read HEAD tree to index in: %s %v" , basePath , err )
return fmt . Errorf ( "Unable to read HEAD tree to index in: %s %v" , basePath , err )
}
}
newWikiPath := WikiNameToFilename ( newWikiName )
2015-11-27 09:50:38 +03:00
if isNew {
2019-05-11 18:29:17 +03:00
filesInIndex , err := gitRepo . LsFiles ( newWikiPath )
if err != nil {
log . Error ( "%v" , err )
return err
}
for _ , file := range filesInIndex {
if file == newWikiPath {
return ErrWikiAlreadyExist { newWikiPath }
}
2015-11-27 09:50:38 +03:00
}
} else {
2019-05-11 18:29:17 +03:00
oldWikiPath := WikiNameToFilename ( oldWikiName )
filesInIndex , err := gitRepo . LsFiles ( oldWikiPath )
if err != nil {
log . Error ( "%v" , err )
return err
}
found := false
for _ , file := range filesInIndex {
if file == oldWikiPath {
found = true
break
}
}
if found {
err := gitRepo . RemoveFilesFromIndex ( oldWikiPath )
if err != nil {
log . Error ( "%v" , err )
return err
}
2016-12-01 02:56:15 +03:00
}
2015-11-27 09:50:38 +03:00
}
2019-05-11 18:29:17 +03:00
// FIXME: The wiki doesn't have lfs support at present - if this changes need to check attributes here
objectHash , err := gitRepo . HashObject ( strings . NewReader ( content ) )
if err != nil {
log . Error ( "%v" , err )
2017-11-28 12:43:51 +03:00
return err
}
2016-12-01 02:56:15 +03:00
2019-05-11 18:29:17 +03:00
if err := gitRepo . AddObjectToIndex ( "100644" , objectHash , newWikiPath ) ; err != nil {
log . Error ( "%v" , err )
return err
2015-11-27 08:24:24 +03:00
}
2019-05-11 18:29:17 +03:00
tree , err := gitRepo . WriteTree ( )
if err != nil {
log . Error ( "%v" , err )
return err
2015-11-27 08:24:24 +03:00
}
2019-05-11 18:29:17 +03:00
commitTreeOpts := git . CommitTreeOpts {
Message : message ,
}
if hasMasterBranch {
commitTreeOpts . Parents = [ ] string { "HEAD" }
}
commitHash , err := gitRepo . CommitTree ( doer . NewGitSig ( ) , tree , commitTreeOpts )
if err != nil {
log . Error ( "%v" , err )
return err
}
if err := git . Push ( basePath , git . PushOptions {
2017-05-30 12:32:01 +03:00
Remote : "origin" ,
2019-05-11 18:29:17 +03:00
Branch : fmt . Sprintf ( "%s:%s%s" , commitHash . String ( ) , git . BranchPrefix , "master" ) ,
2019-07-26 00:50:20 +03:00
Env : FullPushingEnvironment (
doer ,
doer ,
repo ,
repo . Name + ".wiki" ,
0 ,
) ,
2017-05-30 12:32:01 +03:00
} ) ; err != nil {
2019-05-11 18:29:17 +03:00
log . Error ( "%v" , err )
2015-11-27 08:24:24 +03:00
return fmt . Errorf ( "Push: %v" , err )
}
2015-11-27 01:33:45 +03:00
return nil
}
2015-11-27 09:50:38 +03:00
2017-01-21 15:50:51 +03:00
// AddWikiPage adds a new wiki page with a given wikiPath.
2017-11-28 12:43:51 +03:00
func ( repo * Repository ) AddWikiPage ( doer * User , wikiName , content , message string ) error {
return repo . updateWikiPage ( doer , "" , wikiName , content , message , true )
2015-11-27 09:50:38 +03:00
}
2017-01-21 15:50:51 +03:00
// EditWikiPage updates a wiki page identified by its wikiPath,
// optionally also changing wikiPath.
2017-11-28 12:43:51 +03:00
func ( repo * Repository ) EditWikiPage ( doer * User , oldWikiName , newWikiName , content , message string ) error {
return repo . updateWikiPage ( doer , oldWikiName , newWikiName , content , message , false )
2015-11-27 09:50:38 +03:00
}
2016-03-04 01:06:50 +03:00
2017-11-28 12:43:51 +03:00
// DeleteWikiPage deletes a wiki page identified by its path.
func ( repo * Repository ) DeleteWikiPage ( doer * User , wikiName string ) ( err error ) {
2016-03-04 01:06:50 +03:00
wikiWorkingPool . CheckIn ( com . ToStr ( repo . ID ) )
defer wikiWorkingPool . CheckOut ( com . ToStr ( repo . ID ) )
2019-05-11 18:29:17 +03:00
if err = repo . InitWiki ( ) ; err != nil {
return fmt . Errorf ( "InitWiki: %v" , err )
}
basePath , err := CreateTemporaryPath ( "update-wiki" )
if err != nil {
return err
2016-03-04 01:06:50 +03:00
}
2019-06-12 22:41:28 +03:00
defer func ( ) {
if err := RemoveTemporaryPath ( basePath ) ; err != nil {
log . Error ( "Merge: RemoveTemporaryPath: %s" , err )
}
} ( )
2016-03-04 01:06:50 +03:00
2019-05-11 18:29:17 +03:00
if err := git . Clone ( repo . WikiPath ( ) , basePath , git . CloneRepoOptions {
Bare : true ,
Shared : true ,
Branch : "master" ,
} ) ; err != nil {
log . Error ( "Failed to clone repository: %s (%v)" , repo . FullName ( ) , err )
return fmt . Errorf ( "Failed to clone repository: %s (%v)" , repo . FullName ( ) , err )
}
2016-12-01 02:56:15 +03:00
2019-05-11 18:29:17 +03:00
gitRepo , err := git . OpenRepository ( basePath )
if err != nil {
log . Error ( "Unable to open temporary repository: %s (%v)" , basePath , err )
return fmt . Errorf ( "Failed to open new temporary repository in: %s %v" , basePath , err )
2016-12-01 02:56:15 +03:00
}
2016-03-04 01:06:50 +03:00
2019-05-11 18:29:17 +03:00
if err := gitRepo . ReadTreeToIndex ( "HEAD" ) ; err != nil {
log . Error ( "Unable to read HEAD tree to index in: %s %v" , basePath , err )
return fmt . Errorf ( "Unable to read HEAD tree to index in: %s %v" , basePath , err )
}
wikiPath := WikiNameToFilename ( wikiName )
filesInIndex , err := gitRepo . LsFiles ( wikiPath )
found := false
for _ , file := range filesInIndex {
if file == wikiPath {
found = true
break
}
}
if found {
err := gitRepo . RemoveFilesFromIndex ( wikiPath )
if err != nil {
return err
}
} else {
return os . ErrNotExist
}
// FIXME: The wiki doesn't have lfs support at present - if this changes need to check attributes here
tree , err := gitRepo . WriteTree ( )
if err != nil {
return err
}
2017-11-28 12:43:51 +03:00
message := "Delete page '" + wikiName + "'"
2016-03-04 01:06:50 +03:00
2019-05-11 18:29:17 +03:00
commitHash , err := gitRepo . CommitTree ( doer . NewGitSig ( ) , tree , git . CommitTreeOpts {
Message : message ,
Parents : [ ] string { "HEAD" } ,
} )
if err != nil {
return err
}
if err := git . Push ( basePath , git . PushOptions {
2017-05-30 12:32:01 +03:00
Remote : "origin" ,
2019-05-11 18:29:17 +03:00
Branch : fmt . Sprintf ( "%s:%s%s" , commitHash . String ( ) , git . BranchPrefix , "master" ) ,
Env : PushingEnvironment ( doer , repo ) ,
2017-05-30 12:32:01 +03:00
} ) ; err != nil {
2016-03-04 01:06:50 +03:00
return fmt . Errorf ( "Push: %v" , err )
}
return nil
}