2015-11-26 06:40:25 +05:30
|
|
|
// 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 repo
|
|
|
|
|
|
|
|
import (
|
2015-11-27 10:54:24 +05:30
|
|
|
"io/ioutil"
|
2015-11-27 12:20:38 +05:30
|
|
|
"strings"
|
2015-11-27 12:46:12 +05:30
|
|
|
"time"
|
2015-11-27 10:54:24 +05:30
|
|
|
|
2015-12-16 03:55:45 +05:30
|
|
|
"github.com/gogits/git-module"
|
2015-11-27 10:54:24 +05:30
|
|
|
|
2015-11-26 06:40:25 +05:30
|
|
|
"github.com/gogits/gogs/models"
|
2015-11-27 04:03:45 +05:30
|
|
|
"github.com/gogits/gogs/modules/auth"
|
2015-11-26 06:40:25 +05:30
|
|
|
"github.com/gogits/gogs/modules/base"
|
|
|
|
"github.com/gogits/gogs/modules/middleware"
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
WIKI_START base.TplName = "repo/wiki/start"
|
|
|
|
WIKI_VIEW base.TplName = "repo/wiki/view"
|
|
|
|
WIKI_NEW base.TplName = "repo/wiki/new"
|
2015-11-27 12:46:12 +05:30
|
|
|
WIKI_PAGES base.TplName = "repo/wiki/pages"
|
2015-11-26 06:40:25 +05:30
|
|
|
)
|
|
|
|
|
2015-12-05 08:00:33 +05:30
|
|
|
func MustEnableWiki(ctx *middleware.Context) {
|
|
|
|
if !ctx.Repo.Repository.EnableWiki {
|
|
|
|
ctx.Handle(404, "MustEnableWiki", nil)
|
2015-12-11 15:25:08 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if ctx.Repo.Repository.EnableExternalWiki {
|
|
|
|
ctx.Redirect(ctx.Repo.Repository.ExternalWikiURL)
|
|
|
|
return
|
2015-12-05 08:00:33 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-27 12:20:38 +05:30
|
|
|
type PageMeta struct {
|
2015-11-27 12:46:12 +05:30
|
|
|
Name string
|
|
|
|
URL string
|
|
|
|
Updated time.Time
|
2015-11-27 12:20:38 +05:30
|
|
|
}
|
2015-11-26 06:40:25 +05:30
|
|
|
|
2015-11-27 12:20:38 +05:30
|
|
|
func renderWikiPage(ctx *middleware.Context, isViewPage bool) (*git.Repository, string) {
|
2015-11-27 10:54:24 +05:30
|
|
|
wikiRepo, err := git.OpenRepository(ctx.Repo.Repository.WikiPath())
|
|
|
|
if err != nil {
|
|
|
|
ctx.Handle(500, "OpenRepository", err)
|
2015-11-27 12:20:38 +05:30
|
|
|
return nil, ""
|
2015-11-27 10:54:24 +05:30
|
|
|
}
|
2015-12-10 07:16:05 +05:30
|
|
|
commit, err := wikiRepo.GetBranchCommit("master")
|
2015-11-27 10:54:24 +05:30
|
|
|
if err != nil {
|
2015-12-10 07:16:05 +05:30
|
|
|
ctx.Handle(500, "GetBranchCommit", err)
|
2015-11-27 12:20:38 +05:30
|
|
|
return nil, ""
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get page list.
|
|
|
|
if isViewPage {
|
|
|
|
entries, err := commit.ListEntries()
|
|
|
|
if err != nil {
|
|
|
|
ctx.Handle(500, "ListEntries", err)
|
|
|
|
return nil, ""
|
|
|
|
}
|
2015-11-27 12:46:12 +05:30
|
|
|
pages := make([]PageMeta, 0, len(entries))
|
2015-11-27 12:20:38 +05:30
|
|
|
for i := range entries {
|
2015-11-27 12:46:12 +05:30
|
|
|
if entries[i].Type == git.OBJECT_BLOB {
|
|
|
|
name := strings.TrimSuffix(entries[i].Name(), ".md")
|
|
|
|
pages = append(pages, PageMeta{
|
|
|
|
Name: name,
|
|
|
|
URL: models.ToWikiPageURL(name),
|
|
|
|
})
|
2015-11-27 12:20:38 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
ctx.Data["Pages"] = pages
|
2015-11-27 10:54:24 +05:30
|
|
|
}
|
|
|
|
|
2015-11-27 12:20:38 +05:30
|
|
|
pageURL := ctx.Params(":page")
|
|
|
|
if len(pageURL) == 0 {
|
|
|
|
pageURL = "Home"
|
2015-11-27 10:54:24 +05:30
|
|
|
}
|
2015-11-27 12:20:38 +05:30
|
|
|
ctx.Data["PageURL"] = pageURL
|
|
|
|
|
|
|
|
pageName := models.ToWikiPageName(pageURL)
|
|
|
|
ctx.Data["old_title"] = pageName
|
|
|
|
ctx.Data["Title"] = pageName
|
|
|
|
ctx.Data["title"] = pageName
|
2015-11-27 10:54:24 +05:30
|
|
|
ctx.Data["RequireHighlightJS"] = true
|
|
|
|
|
2015-11-27 12:20:38 +05:30
|
|
|
blob, err := commit.GetBlobByPath(pageName + ".md")
|
2015-11-27 10:54:24 +05:30
|
|
|
if err != nil {
|
|
|
|
if git.IsErrNotExist(err) {
|
2015-11-27 12:20:38 +05:30
|
|
|
ctx.Redirect(ctx.Repo.RepoLink + "/wiki/_pages")
|
2015-11-27 10:54:24 +05:30
|
|
|
} else {
|
|
|
|
ctx.Handle(500, "GetBlobByPath", err)
|
|
|
|
}
|
2015-11-27 12:20:38 +05:30
|
|
|
return nil, ""
|
2015-11-27 10:54:24 +05:30
|
|
|
}
|
|
|
|
r, err := blob.Data()
|
|
|
|
if err != nil {
|
|
|
|
ctx.Handle(500, "Data", err)
|
2015-11-27 12:20:38 +05:30
|
|
|
return nil, ""
|
2015-11-27 10:54:24 +05:30
|
|
|
}
|
|
|
|
data, err := ioutil.ReadAll(r)
|
|
|
|
if err != nil {
|
|
|
|
ctx.Handle(500, "ReadAll", err)
|
2015-11-27 12:20:38 +05:30
|
|
|
return nil, ""
|
|
|
|
}
|
|
|
|
if isViewPage {
|
2015-12-05 08:00:33 +05:30
|
|
|
ctx.Data["content"] = string(base.RenderMarkdown(data, ctx.Repo.RepoLink, ctx.Repo.Repository.ComposeMetas()))
|
2015-11-27 12:20:38 +05:30
|
|
|
} else {
|
|
|
|
ctx.Data["content"] = string(data)
|
|
|
|
}
|
|
|
|
|
|
|
|
return wikiRepo, pageName
|
|
|
|
}
|
|
|
|
|
|
|
|
func Wiki(ctx *middleware.Context) {
|
|
|
|
ctx.Data["PageIsWiki"] = true
|
|
|
|
|
|
|
|
if !ctx.Repo.Repository.HasWiki() {
|
|
|
|
ctx.Data["Title"] = ctx.Tr("repo.wiki")
|
|
|
|
ctx.HTML(200, WIKI_START)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
wikiRepo, pageName := renderWikiPage(ctx, true)
|
|
|
|
if ctx.Written() {
|
2015-11-27 10:54:24 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get last change information.
|
2015-11-27 12:20:38 +05:30
|
|
|
lastCommit, err := wikiRepo.GetCommitByPath(pageName + ".md")
|
2015-11-27 10:54:24 +05:30
|
|
|
if err != nil {
|
|
|
|
ctx.Handle(500, "GetCommitByPath", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Data["Author"] = lastCommit.Author
|
|
|
|
|
2015-11-26 06:40:25 +05:30
|
|
|
ctx.HTML(200, WIKI_VIEW)
|
|
|
|
}
|
|
|
|
|
2015-11-27 12:20:38 +05:30
|
|
|
func WikiPages(ctx *middleware.Context) {
|
2015-11-27 12:46:12 +05:30
|
|
|
ctx.Data["Title"] = ctx.Tr("repo.wiki.pages")
|
|
|
|
ctx.Data["PageIsWiki"] = true
|
|
|
|
|
|
|
|
if !ctx.Repo.Repository.HasWiki() {
|
|
|
|
ctx.Redirect(ctx.Repo.RepoLink + "/wiki")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
wikiRepo, err := git.OpenRepository(ctx.Repo.Repository.WikiPath())
|
|
|
|
if err != nil {
|
|
|
|
ctx.Handle(500, "OpenRepository", err)
|
|
|
|
return
|
|
|
|
}
|
2015-12-10 07:16:05 +05:30
|
|
|
commit, err := wikiRepo.GetBranchCommit("master")
|
2015-11-27 12:46:12 +05:30
|
|
|
if err != nil {
|
2015-12-10 07:16:05 +05:30
|
|
|
ctx.Handle(500, "GetBranchCommit", err)
|
2015-11-27 12:46:12 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
entries, err := commit.ListEntries()
|
|
|
|
if err != nil {
|
|
|
|
ctx.Handle(500, "ListEntries", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
pages := make([]PageMeta, 0, len(entries))
|
|
|
|
for i := range entries {
|
|
|
|
if entries[i].Type == git.OBJECT_BLOB {
|
|
|
|
c, err := wikiRepo.GetCommitByPath(entries[i].Name())
|
|
|
|
if err != nil {
|
|
|
|
ctx.Handle(500, "GetCommit", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
name := strings.TrimSuffix(entries[i].Name(), ".md")
|
|
|
|
pages = append(pages, PageMeta{
|
|
|
|
Name: name,
|
|
|
|
URL: models.ToWikiPageURL(name),
|
|
|
|
Updated: c.Author.When,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ctx.Data["Pages"] = pages
|
2015-11-27 10:54:24 +05:30
|
|
|
|
2015-11-27 12:46:12 +05:30
|
|
|
ctx.HTML(200, WIKI_PAGES)
|
2015-11-27 10:54:24 +05:30
|
|
|
}
|
|
|
|
|
2015-11-26 06:40:25 +05:30
|
|
|
func NewWiki(ctx *middleware.Context) {
|
|
|
|
ctx.Data["Title"] = ctx.Tr("repo.wiki.new_page")
|
|
|
|
ctx.Data["PageIsWiki"] = true
|
|
|
|
ctx.Data["RequireSimpleMDE"] = true
|
|
|
|
|
2015-11-27 04:03:45 +05:30
|
|
|
if !ctx.Repo.Repository.HasWiki() {
|
2015-11-26 06:40:25 +05:30
|
|
|
ctx.Data["title"] = "Home"
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.HTML(200, WIKI_NEW)
|
|
|
|
}
|
|
|
|
|
2015-11-27 04:03:45 +05:30
|
|
|
func NewWikiPost(ctx *middleware.Context, form auth.NewWikiForm) {
|
|
|
|
ctx.Data["Title"] = ctx.Tr("repo.wiki.new_page")
|
|
|
|
ctx.Data["PageIsWiki"] = true
|
|
|
|
ctx.Data["RequireSimpleMDE"] = true
|
|
|
|
|
|
|
|
if ctx.HasError() {
|
|
|
|
ctx.HTML(200, WIKI_NEW)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-11-27 10:54:24 +05:30
|
|
|
if err := ctx.Repo.Repository.AddWikiPage(ctx.User, form.Title, form.Content, form.Message); err != nil {
|
2015-11-27 12:20:38 +05:30
|
|
|
if models.IsErrWikiAlreadyExist(err) {
|
|
|
|
ctx.Data["Err_Title"] = true
|
|
|
|
ctx.RenderWithErr(ctx.Tr("repo.wiki.page_already_exists"), WIKI_NEW, &form)
|
|
|
|
} else {
|
|
|
|
ctx.Handle(500, "AddWikiPage", err)
|
|
|
|
}
|
2015-11-27 04:03:45 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-11-27 10:54:24 +05:30
|
|
|
ctx.Redirect(ctx.Repo.RepoLink + "/wiki/" + models.ToWikiPageURL(form.Title))
|
2015-11-27 04:03:45 +05:30
|
|
|
}
|
|
|
|
|
2015-11-26 06:40:25 +05:30
|
|
|
func EditWiki(ctx *middleware.Context) {
|
2015-11-27 12:20:38 +05:30
|
|
|
ctx.Data["PageIsWiki"] = true
|
|
|
|
ctx.Data["PageIsWikiEdit"] = true
|
|
|
|
ctx.Data["RequireSimpleMDE"] = true
|
|
|
|
|
|
|
|
if !ctx.Repo.Repository.HasWiki() {
|
|
|
|
ctx.Redirect(ctx.Repo.RepoLink + "/wiki")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
renderWikiPage(ctx, false)
|
|
|
|
if ctx.Written() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.HTML(200, WIKI_NEW)
|
|
|
|
}
|
|
|
|
|
|
|
|
func EditWikiPost(ctx *middleware.Context, form auth.NewWikiForm) {
|
|
|
|
ctx.Data["Title"] = ctx.Tr("repo.wiki.new_page")
|
|
|
|
ctx.Data["PageIsWiki"] = true
|
|
|
|
ctx.Data["RequireSimpleMDE"] = true
|
|
|
|
|
|
|
|
if ctx.HasError() {
|
|
|
|
ctx.HTML(200, WIKI_NEW)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := ctx.Repo.Repository.EditWikiPage(ctx.User, form.OldTitle, form.Title, form.Content, form.Message); err != nil {
|
|
|
|
ctx.Handle(500, "EditWikiPage", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.Redirect(ctx.Repo.RepoLink + "/wiki/" + models.ToWikiPageURL(form.Title))
|
2015-11-26 06:40:25 +05:30
|
|
|
}
|