2014-03-29 07:16:06 -06:00
|
|
|
// Copyright 2014 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.
|
|
|
|
|
2015-12-04 15:16:42 -07:00
|
|
|
package misc
|
2014-03-29 07:16:06 -06:00
|
|
|
|
2014-03-29 08:01:52 -06:00
|
|
|
import (
|
2019-06-12 13:41:28 -06:00
|
|
|
"net/http"
|
2019-04-11 23:53:34 -06:00
|
|
|
"strings"
|
|
|
|
|
2016-11-10 09:24:48 -07:00
|
|
|
"code.gitea.io/gitea/modules/context"
|
2021-04-19 16:25:08 -06:00
|
|
|
"code.gitea.io/gitea/modules/markup"
|
2017-09-20 23:20:14 -06:00
|
|
|
"code.gitea.io/gitea/modules/markup/markdown"
|
2017-02-13 18:13:59 -07:00
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2019-08-23 10:40:30 -06:00
|
|
|
api "code.gitea.io/gitea/modules/structs"
|
2018-02-20 05:50:42 -07:00
|
|
|
"code.gitea.io/gitea/modules/util"
|
2021-01-26 08:36:53 -07:00
|
|
|
"code.gitea.io/gitea/modules/web"
|
2019-04-11 23:53:34 -06:00
|
|
|
|
|
|
|
"mvdan.cc/xurls/v2"
|
2014-03-29 08:01:52 -06:00
|
|
|
)
|
2014-03-29 07:16:06 -06:00
|
|
|
|
2016-11-24 00:04:31 -07:00
|
|
|
// Markdown render markdown document to HTML
|
2021-01-26 08:36:53 -07:00
|
|
|
func Markdown(ctx *context.APIContext) {
|
2017-11-13 00:02:25 -07:00
|
|
|
// swagger:operation POST /markdown miscellaneous renderMarkdown
|
|
|
|
// ---
|
|
|
|
// summary: Render a markdown document as HTML
|
|
|
|
// parameters:
|
|
|
|
// - name: body
|
|
|
|
// in: body
|
|
|
|
// schema:
|
|
|
|
// "$ref": "#/definitions/MarkdownOption"
|
|
|
|
// consumes:
|
|
|
|
// - application/json
|
|
|
|
// produces:
|
2017-05-02 07:35:59 -06:00
|
|
|
// - text/html
|
2017-11-13 00:02:25 -07:00
|
|
|
// responses:
|
|
|
|
// "200":
|
|
|
|
// "$ref": "#/responses/MarkdownRender"
|
|
|
|
// "422":
|
|
|
|
// "$ref": "#/responses/validationError"
|
2019-12-20 10:07:12 -07:00
|
|
|
|
2021-01-26 08:36:53 -07:00
|
|
|
form := web.GetForm(ctx).(*api.MarkdownOption)
|
|
|
|
|
2016-11-24 23:51:01 -07:00
|
|
|
if ctx.HasAPIError() {
|
2019-12-20 10:07:12 -07:00
|
|
|
ctx.Error(http.StatusUnprocessableEntity, "", ctx.GetErrMsg())
|
2014-05-05 11:08:01 -06:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-12-10 14:37:54 -07:00
|
|
|
if len(form.Text) == 0 {
|
2019-06-12 13:41:28 -06:00
|
|
|
_, _ = ctx.Write([]byte(""))
|
2014-12-10 14:37:54 -07:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-05-05 11:08:01 -06:00
|
|
|
switch form.Mode {
|
2020-05-24 02:14:26 -06:00
|
|
|
case "comment":
|
|
|
|
fallthrough
|
2014-05-05 11:08:01 -06:00
|
|
|
case "gfm":
|
2019-04-11 23:53:34 -06:00
|
|
|
urlPrefix := form.Context
|
2020-05-24 02:14:26 -06:00
|
|
|
meta := map[string]string{}
|
2019-04-11 23:53:34 -06:00
|
|
|
if !strings.HasPrefix(setting.AppSubURL+"/", urlPrefix) {
|
|
|
|
// check if urlPrefix is already set to a URL
|
|
|
|
linkRegex, _ := xurls.StrictMatchingScheme("https?://")
|
|
|
|
m := linkRegex.FindStringIndex(urlPrefix)
|
|
|
|
if m == nil {
|
|
|
|
urlPrefix = util.URLJoin(setting.AppURL, form.Context)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ctx.Repo != nil && ctx.Repo.Repository != nil {
|
2020-05-24 02:14:26 -06:00
|
|
|
// "gfm" = Github Flavored Markdown - set this to render as a document
|
|
|
|
if form.Mode == "gfm" {
|
|
|
|
meta = ctx.Repo.Repository.ComposeDocumentMetas()
|
|
|
|
} else {
|
|
|
|
meta = ctx.Repo.Repository.ComposeMetas()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if form.Mode == "gfm" {
|
|
|
|
meta["mode"] = "document"
|
2019-04-11 23:53:34 -06:00
|
|
|
}
|
2021-04-19 16:25:08 -06:00
|
|
|
|
|
|
|
if err := markdown.Render(&markup.RenderContext{
|
2022-01-19 16:26:57 -07:00
|
|
|
Ctx: ctx,
|
2021-04-19 16:25:08 -06:00
|
|
|
URLPrefix: urlPrefix,
|
|
|
|
Metas: meta,
|
|
|
|
IsWiki: form.Wiki,
|
|
|
|
}, strings.NewReader(form.Text), ctx.Resp); err != nil {
|
|
|
|
ctx.InternalServerError(err)
|
|
|
|
return
|
2017-02-24 07:59:56 -07:00
|
|
|
}
|
2014-05-05 11:08:01 -06:00
|
|
|
default:
|
2021-04-19 16:25:08 -06:00
|
|
|
if err := markdown.RenderRaw(&markup.RenderContext{
|
2022-01-19 16:26:57 -07:00
|
|
|
Ctx: ctx,
|
2021-04-19 16:25:08 -06:00
|
|
|
URLPrefix: form.Context,
|
|
|
|
}, strings.NewReader(form.Text), ctx.Resp); err != nil {
|
2019-12-20 10:07:12 -07:00
|
|
|
ctx.InternalServerError(err)
|
2019-06-12 13:41:28 -06:00
|
|
|
return
|
|
|
|
}
|
2014-05-05 11:08:01 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-24 00:04:31 -07:00
|
|
|
// MarkdownRaw render raw markdown HTML
|
2016-03-13 16:49:16 -06:00
|
|
|
func MarkdownRaw(ctx *context.APIContext) {
|
2017-11-13 00:02:25 -07:00
|
|
|
// swagger:operation POST /markdown/raw miscellaneous renderMarkdownRaw
|
|
|
|
// ---
|
|
|
|
// summary: Render raw markdown as HTML
|
|
|
|
// parameters:
|
2018-06-12 08:59:22 -06:00
|
|
|
// - name: body
|
|
|
|
// in: body
|
|
|
|
// description: Request body to render
|
|
|
|
// required: true
|
|
|
|
// schema:
|
|
|
|
// type: string
|
2017-11-13 00:02:25 -07:00
|
|
|
// consumes:
|
2017-05-02 07:35:59 -06:00
|
|
|
// - text/plain
|
2017-11-13 00:02:25 -07:00
|
|
|
// produces:
|
2017-05-02 07:35:59 -06:00
|
|
|
// - text/html
|
2017-11-13 00:02:25 -07:00
|
|
|
// responses:
|
|
|
|
// "200":
|
|
|
|
// "$ref": "#/responses/MarkdownRender"
|
|
|
|
// "422":
|
|
|
|
// "$ref": "#/responses/validationError"
|
2021-04-19 16:25:08 -06:00
|
|
|
defer ctx.Req.Body.Close()
|
2022-01-19 16:26:57 -07:00
|
|
|
if err := markdown.RenderRaw(&markup.RenderContext{
|
|
|
|
Ctx: ctx,
|
|
|
|
}, ctx.Req.Body, ctx.Resp); err != nil {
|
2019-12-20 10:07:12 -07:00
|
|
|
ctx.InternalServerError(err)
|
2019-06-12 13:41:28 -06:00
|
|
|
return
|
|
|
|
}
|
2014-03-29 07:16:06 -06:00
|
|
|
}
|