2015-11-26 01:10:25 +00:00
|
|
|
// Copyright 2015 The Gogs Authors. All rights reserved.
|
2018-11-28 11:26:14 +00:00
|
|
|
// Copyright 2018 The Gitea Authors. All rights reserved.
|
2022-11-27 18:20:29 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2015-11-26 01:10:25 +00:00
|
|
|
|
|
|
|
package repo
|
|
|
|
|
|
|
|
import (
|
2021-04-19 22:25:08 +00:00
|
|
|
"bytes"
|
2017-02-14 01:13:59 +00:00
|
|
|
"fmt"
|
2021-09-22 05:38:34 +00:00
|
|
|
"io"
|
2021-04-05 15:30:52 +00:00
|
|
|
"net/http"
|
2019-10-09 18:49:37 +00:00
|
|
|
"net/url"
|
2017-02-14 01:13:59 +00:00
|
|
|
"path/filepath"
|
2015-11-27 06:50:38 +00:00
|
|
|
"strings"
|
2015-11-27 05:24:24 +00:00
|
|
|
|
2022-06-12 15:51:54 +00:00
|
|
|
git_model "code.gitea.io/gitea/models/git"
|
2022-08-25 02:31:57 +00:00
|
|
|
repo_model "code.gitea.io/gitea/models/repo"
|
2021-11-09 19:57:58 +00:00
|
|
|
"code.gitea.io/gitea/models/unit"
|
2016-11-10 16:24:48 +00:00
|
|
|
"code.gitea.io/gitea/modules/base"
|
2022-01-07 01:18:52 +00:00
|
|
|
"code.gitea.io/gitea/modules/charset"
|
2019-03-27 09:33:00 +00:00
|
|
|
"code.gitea.io/gitea/modules/git"
|
Simplify how git repositories are opened (#28937)
## Purpose
This is a refactor toward building an abstraction over managing git
repositories.
Afterwards, it does not matter anymore if they are stored on the local
disk or somewhere remote.
## What this PR changes
We used `git.OpenRepository` everywhere previously.
Now, we should split them into two distinct functions:
Firstly, there are temporary repositories which do not change:
```go
git.OpenRepository(ctx, diskPath)
```
Gitea managed repositories having a record in the database in the
`repository` table are moved into the new package `gitrepo`:
```go
gitrepo.OpenRepository(ctx, repo_model.Repo)
```
Why is `repo_model.Repository` the second parameter instead of file
path?
Because then we can easily adapt our repository storage strategy.
The repositories can be stored locally, however, they could just as well
be stored on a remote server.
## Further changes in other PRs
- A Git Command wrapper on package `gitrepo` could be created. i.e.
`NewCommand(ctx, repo_model.Repository, commands...)`. `git.RunOpts{Dir:
repo.RepoPath()}`, the directory should be empty before invoking this
method and it can be filled in the function only. #28940
- Remove the `RepoPath()`/`WikiPath()` functions to reduce the
possibility of mistakes.
---------
Co-authored-by: delvh <dev.lh@web.de>
2024-01-27 20:09:51 +00:00
|
|
|
"code.gitea.io/gitea/modules/gitrepo"
|
2019-04-22 20:40:51 +00:00
|
|
|
"code.gitea.io/gitea/modules/log"
|
2017-04-21 07:01:08 +00:00
|
|
|
"code.gitea.io/gitea/modules/markup"
|
2017-09-21 05:20:14 +00:00
|
|
|
"code.gitea.io/gitea/modules/markup/markdown"
|
2021-06-26 11:28:55 +00:00
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2019-08-15 14:46:21 +00:00
|
|
|
"code.gitea.io/gitea/modules/timeutil"
|
2017-12-13 13:46:56 +00:00
|
|
|
"code.gitea.io/gitea/modules/util"
|
2021-01-26 15:36:53 +00:00
|
|
|
"code.gitea.io/gitea/modules/web"
|
2021-06-08 23:33:54 +00:00
|
|
|
"code.gitea.io/gitea/routers/common"
|
2024-02-27 07:12:22 +00:00
|
|
|
"code.gitea.io/gitea/services/context"
|
2021-04-06 19:44:05 +00:00
|
|
|
"code.gitea.io/gitea/services/forms"
|
2023-09-05 18:37:47 +00:00
|
|
|
notify_service "code.gitea.io/gitea/services/notify"
|
2020-01-07 18:27:36 +00:00
|
|
|
wiki_service "code.gitea.io/gitea/services/wiki"
|
2015-11-26 01:10:25 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2019-07-08 08:20:22 +00:00
|
|
|
tplWikiStart base.TplName = "repo/wiki/start"
|
|
|
|
tplWikiView base.TplName = "repo/wiki/view"
|
|
|
|
tplWikiRevision base.TplName = "repo/wiki/revision"
|
|
|
|
tplWikiNew base.TplName = "repo/wiki/new"
|
|
|
|
tplWikiPages base.TplName = "repo/wiki/pages"
|
2024-05-20 12:23:27 +00:00
|
|
|
tplWikiSearch base.TplName = "repo/wiki/search"
|
2015-11-26 01:10:25 +00:00
|
|
|
)
|
|
|
|
|
2016-11-21 10:03:42 +00:00
|
|
|
// MustEnableWiki check if wiki is enabled, if external then redirect
|
2016-03-11 16:56:52 +00:00
|
|
|
func MustEnableWiki(ctx *context.Context) {
|
2021-11-09 19:57:58 +00:00
|
|
|
if !ctx.Repo.CanRead(unit.TypeWiki) &&
|
|
|
|
!ctx.Repo.CanRead(unit.TypeExternalWiki) {
|
2019-04-22 20:40:51 +00:00
|
|
|
if log.IsTrace() {
|
|
|
|
log.Trace("Permission Denied: User %-v cannot read %-v or %-v of repo %-v\n"+
|
|
|
|
"User in repo has Permissions: %-+v",
|
2022-03-22 07:03:22 +00:00
|
|
|
ctx.Doer,
|
2021-11-09 19:57:58 +00:00
|
|
|
unit.TypeWiki,
|
|
|
|
unit.TypeExternalWiki,
|
2019-04-22 20:40:51 +00:00
|
|
|
ctx.Repo.Repository,
|
|
|
|
ctx.Repo.Permission)
|
|
|
|
}
|
2018-01-10 21:34:17 +00:00
|
|
|
ctx.NotFound("MustEnableWiki", nil)
|
2015-12-11 09:55:08 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-12-10 02:46:31 +00:00
|
|
|
unit, err := ctx.Repo.Repository.GetUnit(ctx, unit.TypeExternalWiki)
|
2017-02-04 15:53:46 +00:00
|
|
|
if err == nil {
|
|
|
|
ctx.Redirect(unit.ExternalWikiConfig().ExternalWikiURL)
|
2015-12-11 09:55:08 +00:00
|
|
|
return
|
2015-12-05 02:30:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-02 20:02:04 +00:00
|
|
|
// PageMeta wiki page meta information
|
2015-11-27 06:50:38 +00:00
|
|
|
type PageMeta struct {
|
2023-04-19 17:50:10 +00:00
|
|
|
Name string
|
|
|
|
SubURL string
|
|
|
|
GitEntryName string
|
|
|
|
UpdatedUnix timeutil.TimeStamp
|
2015-11-27 06:50:38 +00:00
|
|
|
}
|
2015-11-26 01:10:25 +00:00
|
|
|
|
2017-11-28 09:43:51 +00:00
|
|
|
// findEntryForFile finds the tree entry for a target filepath.
|
|
|
|
func findEntryForFile(commit *git.Commit, target string) (*git.TreeEntry, error) {
|
2020-01-28 09:44:08 +00:00
|
|
|
entry, err := commit.GetTreeEntryByPath(target)
|
|
|
|
if err != nil && !git.IsErrNotExist(err) {
|
2017-02-14 01:13:59 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
2020-01-28 09:44:08 +00:00
|
|
|
if entry != nil {
|
|
|
|
return entry, nil
|
2017-02-14 01:13:59 +00:00
|
|
|
}
|
2020-01-28 09:44:08 +00:00
|
|
|
|
2023-04-19 17:50:10 +00:00
|
|
|
// Then the unescaped, the shortest alternative
|
2019-10-09 18:49:37 +00:00
|
|
|
var unescapedTarget string
|
|
|
|
if unescapedTarget, err = url.QueryUnescape(target); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-01-28 09:44:08 +00:00
|
|
|
return commit.GetTreeEntryByPath(unescapedTarget)
|
2017-02-14 01:13:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func findWikiRepoCommit(ctx *context.Context) (*git.Repository, *git.Commit, error) {
|
Simplify how git repositories are opened (#28937)
## Purpose
This is a refactor toward building an abstraction over managing git
repositories.
Afterwards, it does not matter anymore if they are stored on the local
disk or somewhere remote.
## What this PR changes
We used `git.OpenRepository` everywhere previously.
Now, we should split them into two distinct functions:
Firstly, there are temporary repositories which do not change:
```go
git.OpenRepository(ctx, diskPath)
```
Gitea managed repositories having a record in the database in the
`repository` table are moved into the new package `gitrepo`:
```go
gitrepo.OpenRepository(ctx, repo_model.Repo)
```
Why is `repo_model.Repository` the second parameter instead of file
path?
Because then we can easily adapt our repository storage strategy.
The repositories can be stored locally, however, they could just as well
be stored on a remote server.
## Further changes in other PRs
- A Git Command wrapper on package `gitrepo` could be created. i.e.
`NewCommand(ctx, repo_model.Repository, commands...)`. `git.RunOpts{Dir:
repo.RepoPath()}`, the directory should be empty before invoking this
method and it can be filled in the function only. #28940
- Remove the `RepoPath()`/`WikiPath()` functions to reduce the
possibility of mistakes.
---------
Co-authored-by: delvh <dev.lh@web.de>
2024-01-27 20:09:51 +00:00
|
|
|
wikiRepo, err := gitrepo.OpenWikiRepository(ctx, ctx.Repo.Repository)
|
2015-11-27 05:24:24 +00:00
|
|
|
if err != nil {
|
2018-01-10 21:34:17 +00:00
|
|
|
ctx.ServerError("OpenRepository", err)
|
2017-02-14 01:13:59 +00:00
|
|
|
return nil, nil, err
|
2015-11-27 05:24:24 +00:00
|
|
|
}
|
2017-03-20 13:36:19 +00:00
|
|
|
|
[GITEA] Allow changing the repo Wiki branch to main
Previously, the repo wiki was hardcoded to use `master` as its branch,
this change makes it possible to use `main` (or something else, governed
by `[repository].DEFAULT_BRANCH`, a setting that already exists and
defaults to `main`).
The way it is done is that a new column is added to the `repository`
table: `wiki_branch`. The migration will make existing repositories
default to `master`, for compatibility's sake, even if they don't have a
Wiki (because it's easier to do that). Newly created repositories will
default to `[repository].DEFAULT_BRANCH` instead.
The Wiki service was updated to use the branch name stored in the
database, and fall back to the default if it is empty.
Old repositories with Wikis using the older `master` branch will have
the option to do a one-time transition to `main`, available via the
repository settings in the "Danger Zone". This option will only be
available for repositories that have the internal wiki enabled, it is
not empty, and the wiki branch is not `[repository].DEFAULT_BRANCH`.
When migrating a repository with a Wiki, Forgejo will use the same
branch name for the wiki as the source repository did. If that's not the
same as the default, the option to normalize it will be available after
the migration's done.
Additionally, the `/api/v1/{owner}/{repo}` endpoint was updated: it will
now include the wiki branch name in `GET` requests, and allow changing
the wiki branch via `PATCH`.
Signed-off-by: Gergely Nagy <forgejo@gergo.csillger.hu>
(cherry picked from commit d87c526d2a313fa45093ab49b78bb30322b33298)
2024-01-30 11:18:53 +00:00
|
|
|
commit, err := wikiRepo.GetBranchCommit(ctx.Repo.Repository.GetWikiBranchName())
|
2015-11-27 05:24:24 +00:00
|
|
|
if err != nil {
|
2017-02-14 01:13:59 +00:00
|
|
|
return wikiRepo, nil, err
|
|
|
|
}
|
|
|
|
return wikiRepo, commit, nil
|
|
|
|
}
|
|
|
|
|
2017-11-28 09:43:51 +00:00
|
|
|
// wikiContentsByEntry returns the contents of the wiki page referenced by the
|
|
|
|
// given tree entry. Writes to ctx if an error occurs.
|
|
|
|
func wikiContentsByEntry(ctx *context.Context, entry *git.TreeEntry) []byte {
|
2019-04-19 12:17:27 +00:00
|
|
|
reader, err := entry.Blob().DataAsync()
|
2017-11-28 09:43:51 +00:00
|
|
|
if err != nil {
|
2018-01-10 21:34:17 +00:00
|
|
|
ctx.ServerError("Blob.Data", err)
|
2017-11-28 09:43:51 +00:00
|
|
|
return nil
|
|
|
|
}
|
2019-04-19 12:17:27 +00:00
|
|
|
defer reader.Close()
|
2021-09-22 05:38:34 +00:00
|
|
|
content, err := io.ReadAll(reader)
|
2017-11-28 09:43:51 +00:00
|
|
|
if err != nil {
|
2018-01-10 21:34:17 +00:00
|
|
|
ctx.ServerError("ReadAll", err)
|
2017-11-28 09:43:51 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return content
|
|
|
|
}
|
|
|
|
|
|
|
|
// wikiContentsByName returns the contents of a wiki page, along with a boolean
|
|
|
|
// indicating whether the page exists. Writes to ctx if an error occurs.
|
2023-04-19 17:50:10 +00:00
|
|
|
func wikiContentsByName(ctx *context.Context, commit *git.Commit, wikiName wiki_service.WebPath) ([]byte, *git.TreeEntry, string, bool) {
|
|
|
|
gitFilename := wiki_service.WebPathToGitPath(wikiName)
|
|
|
|
entry, err := findEntryForFile(commit, gitFilename)
|
2020-01-28 09:44:08 +00:00
|
|
|
if err != nil && !git.IsErrNotExist(err) {
|
2018-01-10 21:34:17 +00:00
|
|
|
ctx.ServerError("findEntryForFile", err)
|
2019-07-08 08:20:22 +00:00
|
|
|
return nil, nil, "", false
|
2017-11-28 09:43:51 +00:00
|
|
|
} else if entry == nil {
|
2019-07-08 08:20:22 +00:00
|
|
|
return nil, nil, "", true
|
2017-11-28 09:43:51 +00:00
|
|
|
}
|
2023-04-19 17:50:10 +00:00
|
|
|
return wikiContentsByEntry(ctx, entry), entry, gitFilename, false
|
2017-11-28 09:43:51 +00:00
|
|
|
}
|
|
|
|
|
2019-07-08 08:20:22 +00:00
|
|
|
func renderViewPage(ctx *context.Context) (*git.Repository, *git.TreeEntry) {
|
2017-02-14 01:13:59 +00:00
|
|
|
wikiRepo, commit, err := findWikiRepoCommit(ctx)
|
|
|
|
if err != nil {
|
2021-08-30 20:50:35 +00:00
|
|
|
if wikiRepo != nil {
|
|
|
|
wikiRepo.Close()
|
|
|
|
}
|
2018-12-09 22:45:44 +00:00
|
|
|
if !git.IsErrNotExist(err) {
|
|
|
|
ctx.ServerError("GetBranchCommit", err)
|
|
|
|
}
|
2017-02-14 01:13:59 +00:00
|
|
|
return nil, nil
|
2015-11-27 06:50:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Get page list.
|
2019-07-08 08:20:22 +00:00
|
|
|
entries, err := commit.ListEntries()
|
|
|
|
if err != nil {
|
2019-11-13 07:01:19 +00:00
|
|
|
if wikiRepo != nil {
|
|
|
|
wikiRepo.Close()
|
|
|
|
}
|
2019-07-08 08:20:22 +00:00
|
|
|
ctx.ServerError("ListEntries", err)
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
pages := make([]PageMeta, 0, len(entries))
|
|
|
|
for _, entry := range entries {
|
|
|
|
if !entry.IsRegular() {
|
|
|
|
continue
|
2015-11-27 06:50:38 +00:00
|
|
|
}
|
2023-04-19 17:50:10 +00:00
|
|
|
wikiName, err := wiki_service.GitPathToWebPath(entry.Name())
|
2019-07-08 08:20:22 +00:00
|
|
|
if err != nil {
|
2022-08-25 02:31:57 +00:00
|
|
|
if repo_model.IsErrWikiInvalidFileName(err) {
|
2017-11-28 09:43:51 +00:00
|
|
|
continue
|
|
|
|
}
|
2019-11-13 07:01:19 +00:00
|
|
|
if wikiRepo != nil {
|
|
|
|
wikiRepo.Close()
|
|
|
|
}
|
2019-07-08 08:20:22 +00:00
|
|
|
ctx.ServerError("WikiFilenameToName", err)
|
|
|
|
return nil, nil
|
|
|
|
} else if wikiName == "_Sidebar" || wikiName == "_Footer" {
|
|
|
|
continue
|
2015-11-27 06:50:38 +00:00
|
|
|
}
|
2023-04-19 17:50:10 +00:00
|
|
|
_, displayName := wiki_service.WebPathToUserTitle(wikiName)
|
2019-07-08 08:20:22 +00:00
|
|
|
pages = append(pages, PageMeta{
|
2023-04-19 17:50:10 +00:00
|
|
|
Name: displayName,
|
|
|
|
SubURL: wiki_service.WebPathToURLPath(wikiName),
|
|
|
|
GitEntryName: entry.Name(),
|
2019-07-08 08:20:22 +00:00
|
|
|
})
|
2015-11-27 05:24:24 +00:00
|
|
|
}
|
2019-07-08 08:20:22 +00:00
|
|
|
ctx.Data["Pages"] = pages
|
2015-11-27 05:24:24 +00:00
|
|
|
|
2023-04-19 17:50:10 +00:00
|
|
|
// get requested page name
|
2023-08-09 06:57:45 +00:00
|
|
|
pageName := wiki_service.WebPathFromRequest(ctx.PathParamRaw("*"))
|
2017-11-28 09:43:51 +00:00
|
|
|
if len(pageName) == 0 {
|
|
|
|
pageName = "Home"
|
2015-11-27 05:24:24 +00:00
|
|
|
}
|
2023-04-19 17:50:10 +00:00
|
|
|
|
|
|
|
_, displayName := wiki_service.WebPathToUserTitle(pageName)
|
|
|
|
ctx.Data["PageURL"] = wiki_service.WebPathToURLPath(pageName)
|
|
|
|
ctx.Data["old_title"] = displayName
|
|
|
|
ctx.Data["Title"] = displayName
|
|
|
|
ctx.Data["title"] = displayName
|
2015-11-27 05:24:24 +00:00
|
|
|
|
2022-04-26 23:24:20 +00:00
|
|
|
isSideBar := pageName == "_Sidebar"
|
|
|
|
isFooter := pageName == "_Footer"
|
|
|
|
|
2022-01-20 17:46:10 +00:00
|
|
|
// lookup filename in wiki - get filecontent, gitTree entry , real filename
|
2019-07-08 08:20:22 +00:00
|
|
|
data, entry, pageFilename, noEntry := wikiContentsByName(ctx, commit, pageName)
|
|
|
|
if noEntry {
|
2021-11-16 18:18:25 +00:00
|
|
|
ctx.Redirect(ctx.Repo.RepoLink + "/wiki/?action=_pages")
|
2019-07-08 08:20:22 +00:00
|
|
|
}
|
|
|
|
if entry == nil || ctx.Written() {
|
2019-11-13 07:01:19 +00:00
|
|
|
if wikiRepo != nil {
|
|
|
|
wikiRepo.Close()
|
|
|
|
}
|
2017-02-14 01:13:59 +00:00
|
|
|
return nil, nil
|
2015-11-27 05:24:24 +00:00
|
|
|
}
|
2019-07-08 08:20:22 +00:00
|
|
|
|
2022-04-26 23:24:20 +00:00
|
|
|
var sidebarContent []byte
|
|
|
|
if !isSideBar {
|
|
|
|
sidebarContent, _, _, _ = wikiContentsByName(ctx, commit, "_Sidebar")
|
|
|
|
if ctx.Written() {
|
|
|
|
if wikiRepo != nil {
|
|
|
|
wikiRepo.Close()
|
|
|
|
}
|
|
|
|
return nil, nil
|
2019-11-13 07:01:19 +00:00
|
|
|
}
|
2022-04-26 23:24:20 +00:00
|
|
|
} else {
|
|
|
|
sidebarContent = data
|
2017-02-14 01:13:59 +00:00
|
|
|
}
|
2017-11-28 09:43:51 +00:00
|
|
|
|
2022-04-26 23:24:20 +00:00
|
|
|
var footerContent []byte
|
|
|
|
if !isFooter {
|
|
|
|
footerContent, _, _, _ = wikiContentsByName(ctx, commit, "_Footer")
|
|
|
|
if ctx.Written() {
|
|
|
|
if wikiRepo != nil {
|
|
|
|
wikiRepo.Close()
|
|
|
|
}
|
|
|
|
return nil, nil
|
2019-11-13 07:01:19 +00:00
|
|
|
}
|
2022-04-26 23:24:20 +00:00
|
|
|
} else {
|
|
|
|
footerContent = data
|
2019-07-08 08:20:22 +00:00
|
|
|
}
|
2017-11-28 09:43:51 +00:00
|
|
|
|
2022-01-20 17:46:10 +00:00
|
|
|
rctx := &markup.RenderContext{
|
2024-01-15 08:49:24 +00:00
|
|
|
Ctx: ctx,
|
|
|
|
Metas: ctx.Repo.Repository.ComposeDocumentMetas(ctx),
|
|
|
|
Links: markup.Links{
|
|
|
|
Base: ctx.Repo.RepoLink,
|
|
|
|
},
|
|
|
|
IsWiki: true,
|
2021-04-19 22:25:08 +00:00
|
|
|
}
|
2022-08-13 18:32:34 +00:00
|
|
|
buf := &strings.Builder{}
|
2021-04-19 22:25:08 +00:00
|
|
|
|
2022-08-13 18:32:34 +00:00
|
|
|
renderFn := func(data []byte) (escaped *charset.EscapeStatus, output string, err error) {
|
|
|
|
markupRd, markupWr := io.Pipe()
|
|
|
|
defer markupWr.Close()
|
|
|
|
done := make(chan struct{})
|
|
|
|
go func() {
|
|
|
|
// We allow NBSP here this is rendered
|
2024-02-21 21:18:44 +00:00
|
|
|
escaped, _ = charset.EscapeControlReader(markupRd, buf, ctx.Locale, charset.WikiContext, charset.RuneNBSP)
|
2022-08-13 18:32:34 +00:00
|
|
|
output = buf.String()
|
|
|
|
buf.Reset()
|
|
|
|
close(done)
|
|
|
|
}()
|
|
|
|
|
|
|
|
err = markdown.Render(rctx, bytes.NewReader(data), markupWr)
|
|
|
|
_ = markupWr.CloseWithError(err)
|
|
|
|
<-done
|
|
|
|
return escaped, output, err
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.Data["EscapeStatus"], ctx.Data["content"], err = renderFn(data)
|
|
|
|
if err != nil {
|
2021-08-30 20:50:35 +00:00
|
|
|
if wikiRepo != nil {
|
|
|
|
wikiRepo.Close()
|
|
|
|
}
|
2021-04-19 22:25:08 +00:00
|
|
|
ctx.ServerError("Render", err)
|
|
|
|
return nil, nil
|
|
|
|
}
|
2022-01-07 01:18:52 +00:00
|
|
|
|
2023-06-23 19:51:43 +00:00
|
|
|
if rctx.SidebarTocNode != nil {
|
|
|
|
sb := &strings.Builder{}
|
|
|
|
err = markdown.SpecializedMarkdown().Renderer().Render(sb, nil, rctx.SidebarTocNode)
|
|
|
|
if err != nil {
|
|
|
|
log.Error("Failed to render wiki sidebar TOC: %v", err)
|
|
|
|
} else {
|
|
|
|
ctx.Data["sidebarTocContent"] = sb.String()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-26 23:24:20 +00:00
|
|
|
if !isSideBar {
|
|
|
|
buf.Reset()
|
2022-08-13 18:32:34 +00:00
|
|
|
ctx.Data["sidebarEscapeStatus"], ctx.Data["sidebarContent"], err = renderFn(sidebarContent)
|
|
|
|
if err != nil {
|
2022-04-26 23:24:20 +00:00
|
|
|
if wikiRepo != nil {
|
|
|
|
wikiRepo.Close()
|
|
|
|
}
|
|
|
|
ctx.ServerError("Render", err)
|
|
|
|
return nil, nil
|
2021-08-30 20:50:35 +00:00
|
|
|
}
|
2022-04-26 23:24:20 +00:00
|
|
|
ctx.Data["sidebarPresent"] = sidebarContent != nil
|
|
|
|
} else {
|
|
|
|
ctx.Data["sidebarPresent"] = false
|
2021-04-19 22:25:08 +00:00
|
|
|
}
|
|
|
|
|
2022-04-26 23:24:20 +00:00
|
|
|
if !isFooter {
|
|
|
|
buf.Reset()
|
2022-08-13 18:32:34 +00:00
|
|
|
ctx.Data["footerEscapeStatus"], ctx.Data["footerContent"], err = renderFn(footerContent)
|
|
|
|
if err != nil {
|
2022-04-26 23:24:20 +00:00
|
|
|
if wikiRepo != nil {
|
|
|
|
wikiRepo.Close()
|
|
|
|
}
|
|
|
|
ctx.ServerError("Render", err)
|
|
|
|
return nil, nil
|
2021-08-30 20:50:35 +00:00
|
|
|
}
|
2022-04-26 23:24:20 +00:00
|
|
|
ctx.Data["footerPresent"] = footerContent != nil
|
|
|
|
} else {
|
|
|
|
ctx.Data["footerPresent"] = false
|
2021-04-19 22:25:08 +00:00
|
|
|
}
|
2019-07-08 08:20:22 +00:00
|
|
|
|
|
|
|
// get commit count - wiki revisions
|
[GITEA] Allow changing the repo Wiki branch to main
Previously, the repo wiki was hardcoded to use `master` as its branch,
this change makes it possible to use `main` (or something else, governed
by `[repository].DEFAULT_BRANCH`, a setting that already exists and
defaults to `main`).
The way it is done is that a new column is added to the `repository`
table: `wiki_branch`. The migration will make existing repositories
default to `master`, for compatibility's sake, even if they don't have a
Wiki (because it's easier to do that). Newly created repositories will
default to `[repository].DEFAULT_BRANCH` instead.
The Wiki service was updated to use the branch name stored in the
database, and fall back to the default if it is empty.
Old repositories with Wikis using the older `master` branch will have
the option to do a one-time transition to `main`, available via the
repository settings in the "Danger Zone". This option will only be
available for repositories that have the internal wiki enabled, it is
not empty, and the wiki branch is not `[repository].DEFAULT_BRANCH`.
When migrating a repository with a Wiki, Forgejo will use the same
branch name for the wiki as the source repository did. If that's not the
same as the default, the option to normalize it will be available after
the migration's done.
Additionally, the `/api/v1/{owner}/{repo}` endpoint was updated: it will
now include the wiki branch name in `GET` requests, and allow changing
the wiki branch via `PATCH`.
Signed-off-by: Gergely Nagy <forgejo@gergo.csillger.hu>
(cherry picked from commit d87c526d2a313fa45093ab49b78bb30322b33298)
2024-01-30 11:18:53 +00:00
|
|
|
commitsCount, _ := wikiRepo.FileCommitsCount(ctx.Repo.Repository.GetWikiBranchName(), pageFilename)
|
2019-07-08 08:20:22 +00:00
|
|
|
ctx.Data["CommitCount"] = commitsCount
|
|
|
|
|
|
|
|
return wikiRepo, entry
|
|
|
|
}
|
|
|
|
|
|
|
|
func renderRevisionPage(ctx *context.Context) (*git.Repository, *git.TreeEntry) {
|
|
|
|
wikiRepo, commit, err := findWikiRepoCommit(ctx)
|
|
|
|
if err != nil {
|
2019-11-13 07:01:19 +00:00
|
|
|
if wikiRepo != nil {
|
|
|
|
wikiRepo.Close()
|
|
|
|
}
|
2019-07-08 08:20:22 +00:00
|
|
|
if !git.IsErrNotExist(err) {
|
|
|
|
ctx.ServerError("GetBranchCommit", err)
|
2017-02-14 01:13:59 +00:00
|
|
|
}
|
2019-07-08 08:20:22 +00:00
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// get requested pagename
|
2023-08-09 06:57:45 +00:00
|
|
|
pageName := wiki_service.WebPathFromRequest(ctx.PathParamRaw("*"))
|
2019-07-08 08:20:22 +00:00
|
|
|
if len(pageName) == 0 {
|
|
|
|
pageName = "Home"
|
|
|
|
}
|
2023-04-19 17:50:10 +00:00
|
|
|
|
|
|
|
_, displayName := wiki_service.WebPathToUserTitle(pageName)
|
|
|
|
ctx.Data["PageURL"] = wiki_service.WebPathToURLPath(pageName)
|
|
|
|
ctx.Data["old_title"] = displayName
|
|
|
|
ctx.Data["Title"] = displayName
|
|
|
|
ctx.Data["title"] = displayName
|
|
|
|
|
2020-05-16 16:38:40 +00:00
|
|
|
ctx.Data["Username"] = ctx.Repo.Owner.Name
|
|
|
|
ctx.Data["Reponame"] = ctx.Repo.Repository.Name
|
2017-11-28 09:43:51 +00:00
|
|
|
|
2022-01-20 17:46:10 +00:00
|
|
|
// lookup filename in wiki - get filecontent, gitTree entry , real filename
|
2019-07-08 08:20:22 +00:00
|
|
|
data, entry, pageFilename, noEntry := wikiContentsByName(ctx, commit, pageName)
|
|
|
|
if noEntry {
|
2021-11-16 18:18:25 +00:00
|
|
|
ctx.Redirect(ctx.Repo.RepoLink + "/wiki/?action=_pages")
|
2019-07-08 08:20:22 +00:00
|
|
|
}
|
|
|
|
if entry == nil || ctx.Written() {
|
2019-11-13 07:01:19 +00:00
|
|
|
if wikiRepo != nil {
|
|
|
|
wikiRepo.Close()
|
|
|
|
}
|
2019-07-08 08:20:22 +00:00
|
|
|
return nil, nil
|
2015-11-27 06:50:38 +00:00
|
|
|
}
|
|
|
|
|
2019-07-08 08:20:22 +00:00
|
|
|
ctx.Data["content"] = string(data)
|
|
|
|
ctx.Data["sidebarPresent"] = false
|
|
|
|
ctx.Data["sidebarContent"] = ""
|
|
|
|
ctx.Data["footerPresent"] = false
|
|
|
|
ctx.Data["footerContent"] = ""
|
|
|
|
|
|
|
|
// get commit count - wiki revisions
|
[GITEA] Allow changing the repo Wiki branch to main
Previously, the repo wiki was hardcoded to use `master` as its branch,
this change makes it possible to use `main` (or something else, governed
by `[repository].DEFAULT_BRANCH`, a setting that already exists and
defaults to `main`).
The way it is done is that a new column is added to the `repository`
table: `wiki_branch`. The migration will make existing repositories
default to `master`, for compatibility's sake, even if they don't have a
Wiki (because it's easier to do that). Newly created repositories will
default to `[repository].DEFAULT_BRANCH` instead.
The Wiki service was updated to use the branch name stored in the
database, and fall back to the default if it is empty.
Old repositories with Wikis using the older `master` branch will have
the option to do a one-time transition to `main`, available via the
repository settings in the "Danger Zone". This option will only be
available for repositories that have the internal wiki enabled, it is
not empty, and the wiki branch is not `[repository].DEFAULT_BRANCH`.
When migrating a repository with a Wiki, Forgejo will use the same
branch name for the wiki as the source repository did. If that's not the
same as the default, the option to normalize it will be available after
the migration's done.
Additionally, the `/api/v1/{owner}/{repo}` endpoint was updated: it will
now include the wiki branch name in `GET` requests, and allow changing
the wiki branch via `PATCH`.
Signed-off-by: Gergely Nagy <forgejo@gergo.csillger.hu>
(cherry picked from commit d87c526d2a313fa45093ab49b78bb30322b33298)
2024-01-30 11:18:53 +00:00
|
|
|
commitsCount, _ := wikiRepo.FileCommitsCount(ctx.Repo.Repository.GetWikiBranchName(), pageFilename)
|
2019-07-08 08:20:22 +00:00
|
|
|
ctx.Data["CommitCount"] = commitsCount
|
|
|
|
|
|
|
|
// get page
|
2021-07-29 01:42:15 +00:00
|
|
|
page := ctx.FormInt("page")
|
2019-07-08 08:20:22 +00:00
|
|
|
if page <= 1 {
|
|
|
|
page = 1
|
|
|
|
}
|
|
|
|
|
|
|
|
// get Commit Count
|
2023-05-08 07:10:53 +00:00
|
|
|
commitsHistory, err := wikiRepo.CommitsByFileAndRange(
|
|
|
|
git.CommitsByFileAndRangeOptions{
|
[GITEA] Allow changing the repo Wiki branch to main
Previously, the repo wiki was hardcoded to use `master` as its branch,
this change makes it possible to use `main` (or something else, governed
by `[repository].DEFAULT_BRANCH`, a setting that already exists and
defaults to `main`).
The way it is done is that a new column is added to the `repository`
table: `wiki_branch`. The migration will make existing repositories
default to `master`, for compatibility's sake, even if they don't have a
Wiki (because it's easier to do that). Newly created repositories will
default to `[repository].DEFAULT_BRANCH` instead.
The Wiki service was updated to use the branch name stored in the
database, and fall back to the default if it is empty.
Old repositories with Wikis using the older `master` branch will have
the option to do a one-time transition to `main`, available via the
repository settings in the "Danger Zone". This option will only be
available for repositories that have the internal wiki enabled, it is
not empty, and the wiki branch is not `[repository].DEFAULT_BRANCH`.
When migrating a repository with a Wiki, Forgejo will use the same
branch name for the wiki as the source repository did. If that's not the
same as the default, the option to normalize it will be available after
the migration's done.
Additionally, the `/api/v1/{owner}/{repo}` endpoint was updated: it will
now include the wiki branch name in `GET` requests, and allow changing
the wiki branch via `PATCH`.
Signed-off-by: Gergely Nagy <forgejo@gergo.csillger.hu>
(cherry picked from commit d87c526d2a313fa45093ab49b78bb30322b33298)
2024-01-30 11:18:53 +00:00
|
|
|
Revision: ctx.Repo.Repository.GetWikiBranchName(),
|
2023-05-08 07:10:53 +00:00
|
|
|
File: pageFilename,
|
|
|
|
Page: page,
|
|
|
|
})
|
2019-07-08 08:20:22 +00:00
|
|
|
if err != nil {
|
2019-11-13 07:01:19 +00:00
|
|
|
if wikiRepo != nil {
|
|
|
|
wikiRepo.Close()
|
|
|
|
}
|
2022-08-15 01:22:13 +00:00
|
|
|
ctx.ServerError("CommitsByFileAndRange", err)
|
2019-07-08 08:20:22 +00:00
|
|
|
return nil, nil
|
|
|
|
}
|
2023-01-09 03:50:54 +00:00
|
|
|
ctx.Data["Commits"] = git_model.ConvertFromGitCommit(ctx, commitsHistory, ctx.Repo.Repository)
|
2019-07-08 08:20:22 +00:00
|
|
|
|
2021-06-26 11:28:55 +00:00
|
|
|
pager := context.NewPagination(int(commitsCount), setting.Git.CommitsRangeSize, page, 5)
|
2019-07-08 08:20:22 +00:00
|
|
|
pager.SetDefaultParams(ctx)
|
|
|
|
ctx.Data["Page"] = pager
|
|
|
|
|
2017-02-14 01:13:59 +00:00
|
|
|
return wikiRepo, entry
|
2015-11-27 06:50:38 +00:00
|
|
|
}
|
|
|
|
|
2019-07-08 08:20:22 +00:00
|
|
|
func renderEditPage(ctx *context.Context) {
|
2019-11-13 07:01:19 +00:00
|
|
|
wikiRepo, commit, err := findWikiRepoCommit(ctx)
|
2019-07-08 08:20:22 +00:00
|
|
|
if err != nil {
|
2019-11-13 07:01:19 +00:00
|
|
|
if wikiRepo != nil {
|
|
|
|
wikiRepo.Close()
|
|
|
|
}
|
2019-07-08 08:20:22 +00:00
|
|
|
if !git.IsErrNotExist(err) {
|
|
|
|
ctx.ServerError("GetBranchCommit", err)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
2019-11-13 07:01:19 +00:00
|
|
|
defer func() {
|
|
|
|
if wikiRepo != nil {
|
|
|
|
wikiRepo.Close()
|
|
|
|
}
|
|
|
|
}()
|
2019-07-08 08:20:22 +00:00
|
|
|
|
|
|
|
// get requested pagename
|
2023-08-09 06:57:45 +00:00
|
|
|
pageName := wiki_service.WebPathFromRequest(ctx.PathParamRaw("*"))
|
2019-07-08 08:20:22 +00:00
|
|
|
if len(pageName) == 0 {
|
|
|
|
pageName = "Home"
|
|
|
|
}
|
2023-04-19 17:50:10 +00:00
|
|
|
|
|
|
|
_, displayName := wiki_service.WebPathToUserTitle(pageName)
|
|
|
|
ctx.Data["PageURL"] = wiki_service.WebPathToURLPath(pageName)
|
|
|
|
ctx.Data["old_title"] = displayName
|
|
|
|
ctx.Data["Title"] = displayName
|
|
|
|
ctx.Data["title"] = displayName
|
2019-07-08 08:20:22 +00:00
|
|
|
|
2022-01-20 17:46:10 +00:00
|
|
|
// lookup filename in wiki - get filecontent, gitTree entry , real filename
|
2019-07-08 08:20:22 +00:00
|
|
|
data, entry, _, noEntry := wikiContentsByName(ctx, commit, pageName)
|
|
|
|
if noEntry {
|
2021-11-16 18:18:25 +00:00
|
|
|
ctx.Redirect(ctx.Repo.RepoLink + "/wiki/?action=_pages")
|
2019-07-08 08:20:22 +00:00
|
|
|
}
|
|
|
|
if entry == nil || ctx.Written() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.Data["content"] = string(data)
|
|
|
|
ctx.Data["sidebarPresent"] = false
|
|
|
|
ctx.Data["sidebarContent"] = ""
|
|
|
|
ctx.Data["footerPresent"] = false
|
|
|
|
ctx.Data["footerContent"] = ""
|
|
|
|
}
|
|
|
|
|
2021-11-16 18:18:25 +00:00
|
|
|
// WikiPost renders post of wiki page
|
|
|
|
func WikiPost(ctx *context.Context) {
|
|
|
|
switch ctx.FormString("action") {
|
|
|
|
case "_new":
|
|
|
|
if !ctx.Repo.CanWrite(unit.TypeWiki) {
|
|
|
|
ctx.NotFound(ctx.Req.URL.RequestURI(), nil)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
NewWikiPost(ctx)
|
|
|
|
return
|
|
|
|
case "_delete":
|
|
|
|
if !ctx.Repo.CanWrite(unit.TypeWiki) {
|
|
|
|
ctx.NotFound(ctx.Req.URL.RequestURI(), nil)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
DeleteWikiPagePost(ctx)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if !ctx.Repo.CanWrite(unit.TypeWiki) {
|
|
|
|
ctx.NotFound(ctx.Req.URL.RequestURI(), nil)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
EditWikiPost(ctx)
|
|
|
|
}
|
|
|
|
|
2017-02-14 01:13:59 +00:00
|
|
|
// Wiki renders single wiki page
|
2016-03-11 16:56:52 +00:00
|
|
|
func Wiki(ctx *context.Context) {
|
2021-11-09 19:57:58 +00:00
|
|
|
ctx.Data["CanWriteWiki"] = ctx.Repo.CanWrite(unit.TypeWiki) && !ctx.Repo.Repository.IsArchived
|
2015-11-27 06:50:38 +00:00
|
|
|
|
2021-11-16 18:18:25 +00:00
|
|
|
switch ctx.FormString("action") {
|
|
|
|
case "_pages":
|
|
|
|
WikiPages(ctx)
|
|
|
|
return
|
|
|
|
case "_revision":
|
|
|
|
WikiRevision(ctx)
|
|
|
|
return
|
|
|
|
case "_edit":
|
|
|
|
if !ctx.Repo.CanWrite(unit.TypeWiki) {
|
|
|
|
ctx.NotFound(ctx.Req.URL.RequestURI(), nil)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
EditWiki(ctx)
|
|
|
|
return
|
|
|
|
case "_new":
|
|
|
|
if !ctx.Repo.CanWrite(unit.TypeWiki) {
|
|
|
|
ctx.NotFound(ctx.Req.URL.RequestURI(), nil)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
NewWiki(ctx)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-12-03 19:46:11 +00:00
|
|
|
if !ctx.Repo.Repository.HasWiki() {
|
|
|
|
ctx.Data["Title"] = ctx.Tr("repo.wiki")
|
|
|
|
ctx.HTML(http.StatusOK, tplWikiStart)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-07-08 08:20:22 +00:00
|
|
|
wikiRepo, entry := renderViewPage(ctx)
|
2019-11-13 07:01:19 +00:00
|
|
|
defer func() {
|
|
|
|
if wikiRepo != nil {
|
|
|
|
wikiRepo.Close()
|
|
|
|
}
|
|
|
|
}()
|
2021-08-30 20:50:35 +00:00
|
|
|
if ctx.Written() {
|
|
|
|
return
|
|
|
|
}
|
2017-03-20 13:36:19 +00:00
|
|
|
if entry == nil {
|
|
|
|
ctx.Data["Title"] = ctx.Tr("repo.wiki")
|
2021-04-05 15:30:52 +00:00
|
|
|
ctx.HTML(http.StatusOK, tplWikiStart)
|
2017-03-20 13:36:19 +00:00
|
|
|
return
|
|
|
|
}
|
2015-11-27 05:24:24 +00:00
|
|
|
|
2017-11-28 09:43:51 +00:00
|
|
|
wikiPath := entry.Name()
|
|
|
|
if markup.Type(wikiPath) != markdown.MarkupName {
|
|
|
|
ext := strings.ToUpper(filepath.Ext(wikiPath))
|
2017-02-14 01:13:59 +00:00
|
|
|
ctx.Data["FormatWarning"] = fmt.Sprintf("%s rendering is not supported at the moment. Rendered as Markdown.", ext)
|
|
|
|
}
|
2015-11-27 05:24:24 +00:00
|
|
|
// Get last change information.
|
2017-11-28 09:43:51 +00:00
|
|
|
lastCommit, err := wikiRepo.GetCommitByPath(wikiPath)
|
2015-11-27 05:24:24 +00:00
|
|
|
if err != nil {
|
2018-01-10 21:34:17 +00:00
|
|
|
ctx.ServerError("GetCommitByPath", err)
|
2015-11-27 05:24:24 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Data["Author"] = lastCommit.Author
|
|
|
|
|
2021-04-05 15:30:52 +00:00
|
|
|
ctx.HTML(http.StatusOK, tplWikiView)
|
2015-11-26 01:10:25 +00:00
|
|
|
}
|
|
|
|
|
2019-07-08 08:20:22 +00:00
|
|
|
// WikiRevision renders file revision list of wiki page
|
|
|
|
func WikiRevision(ctx *context.Context) {
|
2021-11-09 19:57:58 +00:00
|
|
|
ctx.Data["CanWriteWiki"] = ctx.Repo.CanWrite(unit.TypeWiki) && !ctx.Repo.Repository.IsArchived
|
2019-07-08 08:20:22 +00:00
|
|
|
|
|
|
|
if !ctx.Repo.Repository.HasWiki() {
|
|
|
|
ctx.Data["Title"] = ctx.Tr("repo.wiki")
|
2021-04-05 15:30:52 +00:00
|
|
|
ctx.HTML(http.StatusOK, tplWikiStart)
|
2019-07-08 08:20:22 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
wikiRepo, entry := renderRevisionPage(ctx)
|
2019-11-13 07:01:19 +00:00
|
|
|
defer func() {
|
|
|
|
if wikiRepo != nil {
|
|
|
|
wikiRepo.Close()
|
|
|
|
}
|
|
|
|
}()
|
2021-08-30 20:50:35 +00:00
|
|
|
|
|
|
|
if ctx.Written() {
|
|
|
|
return
|
|
|
|
}
|
2019-07-08 08:20:22 +00:00
|
|
|
if entry == nil {
|
|
|
|
ctx.Data["Title"] = ctx.Tr("repo.wiki")
|
2021-04-05 15:30:52 +00:00
|
|
|
ctx.HTML(http.StatusOK, tplWikiStart)
|
2019-07-08 08:20:22 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get last change information.
|
|
|
|
wikiPath := entry.Name()
|
|
|
|
lastCommit, err := wikiRepo.GetCommitByPath(wikiPath)
|
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("GetCommitByPath", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Data["Author"] = lastCommit.Author
|
|
|
|
|
2021-04-05 15:30:52 +00:00
|
|
|
ctx.HTML(http.StatusOK, tplWikiRevision)
|
2019-07-08 08:20:22 +00:00
|
|
|
}
|
|
|
|
|
2016-11-21 10:03:42 +00:00
|
|
|
// WikiPages render wiki pages list page
|
2016-03-11 16:56:52 +00:00
|
|
|
func WikiPages(ctx *context.Context) {
|
2015-11-27 07:16:12 +00:00
|
|
|
if !ctx.Repo.Repository.HasWiki() {
|
|
|
|
ctx.Redirect(ctx.Repo.RepoLink + "/wiki")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-11-28 11:26:14 +00:00
|
|
|
ctx.Data["Title"] = ctx.Tr("repo.wiki.pages")
|
2021-11-09 19:57:58 +00:00
|
|
|
ctx.Data["CanWriteWiki"] = ctx.Repo.CanWrite(unit.TypeWiki) && !ctx.Repo.Repository.IsArchived
|
2018-11-28 11:26:14 +00:00
|
|
|
|
2017-02-14 01:13:59 +00:00
|
|
|
wikiRepo, commit, err := findWikiRepoCommit(ctx)
|
2015-11-27 07:16:12 +00:00
|
|
|
if err != nil {
|
2019-11-13 07:01:19 +00:00
|
|
|
if wikiRepo != nil {
|
|
|
|
wikiRepo.Close()
|
|
|
|
}
|
2015-11-27 07:16:12 +00:00
|
|
|
return
|
|
|
|
}
|
2021-08-30 20:50:35 +00:00
|
|
|
defer func() {
|
2019-11-13 07:01:19 +00:00
|
|
|
if wikiRepo != nil {
|
|
|
|
wikiRepo.Close()
|
|
|
|
}
|
2021-08-30 20:50:35 +00:00
|
|
|
}()
|
2019-11-13 07:01:19 +00:00
|
|
|
|
2021-08-30 20:50:35 +00:00
|
|
|
entries, err := commit.ListEntries()
|
|
|
|
if err != nil {
|
2018-01-10 21:34:17 +00:00
|
|
|
ctx.ServerError("ListEntries", err)
|
2015-11-27 07:16:12 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
pages := make([]PageMeta, 0, len(entries))
|
2017-11-28 09:43:51 +00:00
|
|
|
for _, entry := range entries {
|
2019-04-19 12:17:27 +00:00
|
|
|
if !entry.IsRegular() {
|
2017-11-28 09:43:51 +00:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
c, err := wikiRepo.GetCommitByPath(entry.Name())
|
|
|
|
if err != nil {
|
2018-01-10 21:34:17 +00:00
|
|
|
ctx.ServerError("GetCommit", err)
|
2017-11-28 09:43:51 +00:00
|
|
|
return
|
|
|
|
}
|
2023-04-19 17:50:10 +00:00
|
|
|
wikiName, err := wiki_service.GitPathToWebPath(entry.Name())
|
2017-11-28 09:43:51 +00:00
|
|
|
if err != nil {
|
2022-08-25 02:31:57 +00:00
|
|
|
if repo_model.IsErrWikiInvalidFileName(err) {
|
2018-02-05 14:56:30 +00:00
|
|
|
continue
|
|
|
|
}
|
2018-01-10 21:34:17 +00:00
|
|
|
ctx.ServerError("WikiFilenameToName", err)
|
2017-11-28 09:43:51 +00:00
|
|
|
return
|
2015-11-27 07:16:12 +00:00
|
|
|
}
|
2023-04-19 17:50:10 +00:00
|
|
|
_, displayName := wiki_service.WebPathToUserTitle(wikiName)
|
2017-11-28 09:43:51 +00:00
|
|
|
pages = append(pages, PageMeta{
|
2023-04-19 17:50:10 +00:00
|
|
|
Name: displayName,
|
|
|
|
SubURL: wiki_service.WebPathToURLPath(wikiName),
|
|
|
|
GitEntryName: entry.Name(),
|
|
|
|
UpdatedUnix: timeutil.TimeStamp(c.Author.When.Unix()),
|
2017-11-28 09:43:51 +00:00
|
|
|
})
|
2015-11-27 07:16:12 +00:00
|
|
|
}
|
|
|
|
ctx.Data["Pages"] = pages
|
2015-11-27 05:24:24 +00:00
|
|
|
|
2021-04-05 15:30:52 +00:00
|
|
|
ctx.HTML(http.StatusOK, tplWikiPages)
|
2015-11-27 05:24:24 +00:00
|
|
|
}
|
|
|
|
|
2017-02-14 01:13:59 +00:00
|
|
|
// WikiRaw outputs raw blob requested by user (image for example)
|
|
|
|
func WikiRaw(ctx *context.Context) {
|
|
|
|
wikiRepo, commit, err := findWikiRepoCommit(ctx)
|
2021-08-30 20:50:35 +00:00
|
|
|
defer func() {
|
2017-02-14 01:13:59 +00:00
|
|
|
if wikiRepo != nil {
|
2021-08-30 20:50:35 +00:00
|
|
|
wikiRepo.Close()
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
if git.IsErrNotExist(err) {
|
|
|
|
ctx.NotFound("findEntryForFile", nil)
|
2017-02-14 01:13:59 +00:00
|
|
|
return
|
|
|
|
}
|
2021-08-30 20:50:35 +00:00
|
|
|
ctx.ServerError("findEntryForfile", err)
|
|
|
|
return
|
2017-02-14 01:13:59 +00:00
|
|
|
}
|
2019-02-06 01:58:55 +00:00
|
|
|
|
2023-08-09 06:57:45 +00:00
|
|
|
providedWebPath := wiki_service.WebPathFromRequest(ctx.PathParamRaw("*"))
|
2023-04-19 17:50:10 +00:00
|
|
|
providedGitPath := wiki_service.WebPathToGitPath(providedWebPath)
|
2017-02-14 01:13:59 +00:00
|
|
|
var entry *git.TreeEntry
|
|
|
|
if commit != nil {
|
2019-02-06 01:58:55 +00:00
|
|
|
// Try to find a file with that name
|
2023-04-19 17:50:10 +00:00
|
|
|
entry, err = findEntryForFile(commit, providedGitPath)
|
2020-01-28 09:44:08 +00:00
|
|
|
if err != nil && !git.IsErrNotExist(err) {
|
2019-02-06 01:58:55 +00:00
|
|
|
ctx.ServerError("findFile", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if entry == nil {
|
|
|
|
// Try to find a wiki page with that name
|
2023-04-19 17:50:10 +00:00
|
|
|
providedGitPath = strings.TrimSuffix(providedGitPath, ".md")
|
|
|
|
entry, err = findEntryForFile(commit, providedGitPath)
|
2020-01-28 09:44:08 +00:00
|
|
|
if err != nil && !git.IsErrNotExist(err) {
|
2019-02-06 01:58:55 +00:00
|
|
|
ctx.ServerError("findFile", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
2017-02-14 01:13:59 +00:00
|
|
|
}
|
2019-02-06 01:58:55 +00:00
|
|
|
|
|
|
|
if entry != nil {
|
2023-07-07 05:31:56 +00:00
|
|
|
if err = common.ServeBlob(ctx.Base, ctx.Repo.TreePath, entry.Blob(), nil); err != nil {
|
2019-02-06 01:58:55 +00:00
|
|
|
ctx.ServerError("ServeBlob", err)
|
|
|
|
}
|
2017-11-28 09:43:51 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-02-06 01:58:55 +00:00
|
|
|
ctx.NotFound("findEntryForFile", nil)
|
2017-02-14 01:13:59 +00:00
|
|
|
}
|
|
|
|
|
2016-11-21 10:03:42 +00:00
|
|
|
// NewWiki render wiki create page
|
2016-03-11 16:56:52 +00:00
|
|
|
func NewWiki(ctx *context.Context) {
|
2015-11-26 01:10:25 +00:00
|
|
|
ctx.Data["Title"] = ctx.Tr("repo.wiki.new_page")
|
|
|
|
|
2015-11-26 22:33:45 +00:00
|
|
|
if !ctx.Repo.Repository.HasWiki() {
|
2015-11-26 01:10:25 +00:00
|
|
|
ctx.Data["title"] = "Home"
|
|
|
|
}
|
2021-12-03 07:28:54 +00:00
|
|
|
if ctx.FormString("title") != "" {
|
|
|
|
ctx.Data["title"] = ctx.FormString("title")
|
|
|
|
}
|
2015-11-26 01:10:25 +00:00
|
|
|
|
2021-04-05 15:30:52 +00:00
|
|
|
ctx.HTML(http.StatusOK, tplWikiNew)
|
2015-11-26 01:10:25 +00:00
|
|
|
}
|
|
|
|
|
2017-11-28 09:43:51 +00:00
|
|
|
// NewWikiPost response for wiki create request
|
2021-01-26 15:36:53 +00:00
|
|
|
func NewWikiPost(ctx *context.Context) {
|
2021-04-06 19:44:05 +00:00
|
|
|
form := web.GetForm(ctx).(*forms.NewWikiForm)
|
2015-11-26 22:33:45 +00:00
|
|
|
ctx.Data["Title"] = ctx.Tr("repo.wiki.new_page")
|
|
|
|
|
|
|
|
if ctx.HasError() {
|
2021-04-05 15:30:52 +00:00
|
|
|
ctx.HTML(http.StatusOK, tplWikiNew)
|
2015-11-26 22:33:45 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-01-21 11:45:32 +00:00
|
|
|
if util.IsEmptyString(form.Title) {
|
|
|
|
ctx.RenderWithErr(ctx.Tr("repo.issues.new.title_empty"), tplWikiNew, form)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2023-04-19 17:50:10 +00:00
|
|
|
wikiName := wiki_service.UserTitleToWebPath("", form.Title)
|
2020-05-22 13:14:02 +00:00
|
|
|
|
|
|
|
if len(form.Message) == 0 {
|
2024-02-14 21:48:45 +00:00
|
|
|
form.Message = ctx.Locale.TrString("repo.editor.add", form.Title)
|
2020-05-22 13:14:02 +00:00
|
|
|
}
|
|
|
|
|
2022-03-22 07:03:22 +00:00
|
|
|
if err := wiki_service.AddWikiPage(ctx, ctx.Doer, ctx.Repo.Repository, wikiName, form.Content, form.Message); err != nil {
|
2022-08-25 02:31:57 +00:00
|
|
|
if repo_model.IsErrWikiReservedName(err) {
|
2017-11-28 09:43:51 +00:00
|
|
|
ctx.Data["Err_Title"] = true
|
|
|
|
ctx.RenderWithErr(ctx.Tr("repo.wiki.reserved_page", wikiName), tplWikiNew, &form)
|
2022-08-25 02:31:57 +00:00
|
|
|
} else if repo_model.IsErrWikiAlreadyExist(err) {
|
2015-11-27 06:50:38 +00:00
|
|
|
ctx.Data["Err_Title"] = true
|
2016-11-21 10:03:42 +00:00
|
|
|
ctx.RenderWithErr(ctx.Tr("repo.wiki.page_already_exists"), tplWikiNew, &form)
|
2015-11-27 06:50:38 +00:00
|
|
|
} else {
|
2018-01-10 21:34:17 +00:00
|
|
|
ctx.ServerError("AddWikiPage", err)
|
2015-11-27 06:50:38 +00:00
|
|
|
}
|
2015-11-26 22:33:45 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2023-09-05 18:37:47 +00:00
|
|
|
notify_service.NewWikiPage(ctx, ctx.Doer, ctx.Repo.Repository, string(wikiName), form.Message)
|
2022-09-04 19:54:23 +00:00
|
|
|
|
2023-04-19 17:50:10 +00:00
|
|
|
ctx.Redirect(ctx.Repo.RepoLink + "/wiki/" + wiki_service.WebPathToURLPath(wikiName))
|
2015-11-26 22:33:45 +00:00
|
|
|
}
|
|
|
|
|
2016-11-21 10:03:42 +00:00
|
|
|
// EditWiki render wiki modify page
|
2016-03-11 16:56:52 +00:00
|
|
|
func EditWiki(ctx *context.Context) {
|
2015-11-27 06:50:38 +00:00
|
|
|
ctx.Data["PageIsWikiEdit"] = true
|
|
|
|
|
|
|
|
if !ctx.Repo.Repository.HasWiki() {
|
|
|
|
ctx.Redirect(ctx.Repo.RepoLink + "/wiki")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-07-08 08:20:22 +00:00
|
|
|
renderEditPage(ctx)
|
2015-11-27 06:50:38 +00:00
|
|
|
if ctx.Written() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-04-05 15:30:52 +00:00
|
|
|
ctx.HTML(http.StatusOK, tplWikiNew)
|
2015-11-27 06:50:38 +00:00
|
|
|
}
|
|
|
|
|
2017-11-28 09:43:51 +00:00
|
|
|
// EditWikiPost response for wiki modify request
|
2021-01-26 15:36:53 +00:00
|
|
|
func EditWikiPost(ctx *context.Context) {
|
2021-04-06 19:44:05 +00:00
|
|
|
form := web.GetForm(ctx).(*forms.NewWikiForm)
|
2015-11-27 06:50:38 +00:00
|
|
|
ctx.Data["Title"] = ctx.Tr("repo.wiki.new_page")
|
|
|
|
|
|
|
|
if ctx.HasError() {
|
2021-04-05 15:30:52 +00:00
|
|
|
ctx.HTML(http.StatusOK, tplWikiNew)
|
2015-11-27 06:50:38 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2023-08-09 06:57:45 +00:00
|
|
|
oldWikiName := wiki_service.WebPathFromRequest(ctx.PathParamRaw("*"))
|
2023-04-19 17:50:10 +00:00
|
|
|
newWikiName := wiki_service.UserTitleToWebPath("", form.Title)
|
2017-01-21 12:50:51 +00:00
|
|
|
|
2020-05-22 13:14:02 +00:00
|
|
|
if len(form.Message) == 0 {
|
2024-02-14 21:48:45 +00:00
|
|
|
form.Message = ctx.Locale.TrString("repo.editor.update", form.Title)
|
2020-05-22 13:14:02 +00:00
|
|
|
}
|
|
|
|
|
2022-03-22 07:03:22 +00:00
|
|
|
if err := wiki_service.EditWikiPage(ctx, ctx.Doer, ctx.Repo.Repository, oldWikiName, newWikiName, form.Content, form.Message); err != nil {
|
2018-01-10 21:34:17 +00:00
|
|
|
ctx.ServerError("EditWikiPage", err)
|
2015-11-27 06:50:38 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2023-09-05 18:37:47 +00:00
|
|
|
notify_service.EditWikiPage(ctx, ctx.Doer, ctx.Repo.Repository, string(newWikiName), form.Message)
|
2022-09-04 19:54:23 +00:00
|
|
|
|
2023-04-19 17:50:10 +00:00
|
|
|
ctx.Redirect(ctx.Repo.RepoLink + "/wiki/" + wiki_service.WebPathToURLPath(newWikiName))
|
2015-11-26 01:10:25 +00:00
|
|
|
}
|
2016-03-03 22:06:50 +00:00
|
|
|
|
2016-11-21 10:03:42 +00:00
|
|
|
// DeleteWikiPagePost delete wiki page
|
2016-03-11 16:56:52 +00:00
|
|
|
func DeleteWikiPagePost(ctx *context.Context) {
|
2023-08-09 06:57:45 +00:00
|
|
|
wikiName := wiki_service.WebPathFromRequest(ctx.PathParamRaw("*"))
|
2017-11-28 09:43:51 +00:00
|
|
|
if len(wikiName) == 0 {
|
|
|
|
wikiName = "Home"
|
2016-03-03 22:06:50 +00:00
|
|
|
}
|
|
|
|
|
2022-03-22 07:03:22 +00:00
|
|
|
if err := wiki_service.DeleteWikiPage(ctx, ctx.Doer, ctx.Repo.Repository, wikiName); err != nil {
|
2018-01-10 21:34:17 +00:00
|
|
|
ctx.ServerError("DeleteWikiPage", err)
|
2016-03-03 22:06:50 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2023-09-05 18:37:47 +00:00
|
|
|
notify_service.DeleteWikiPage(ctx, ctx.Doer, ctx.Repo.Repository, string(wikiName))
|
2022-09-04 19:54:23 +00:00
|
|
|
|
2023-07-26 06:04:01 +00:00
|
|
|
ctx.JSONRedirect(ctx.Repo.RepoLink + "/wiki/")
|
2016-03-03 22:06:50 +00:00
|
|
|
}
|
2024-05-20 12:23:27 +00:00
|
|
|
|
|
|
|
func WikiSearchContent(ctx *context.Context) {
|
|
|
|
keyword := ctx.FormTrim("q")
|
|
|
|
if keyword == "" {
|
|
|
|
ctx.HTML(http.StatusOK, tplWikiSearch)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
res, err := wiki_service.SearchWikiContents(ctx, ctx.Repo.Repository, keyword)
|
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("SearchWikiContents", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.Data["Results"] = res
|
|
|
|
ctx.HTML(http.StatusOK, tplWikiSearch)
|
|
|
|
}
|