2014-03-29 13:16:06 +00:00
|
|
|
// Copyright 2014 The Gogs Authors. All rights reserved.
|
2022-11-27 18:20:29 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2014-03-29 13:16:06 +00:00
|
|
|
|
2015-12-04 22:16:42 +00:00
|
|
|
package misc
|
2014-03-29 13:16:06 +00:00
|
|
|
|
2014-03-29 14:01:52 +00:00
|
|
|
import (
|
2019-06-12 19:41:28 +00:00
|
|
|
"net/http"
|
2019-04-12 05:53:34 +00:00
|
|
|
|
2016-11-10 16:24:48 +00:00
|
|
|
"code.gitea.io/gitea/modules/context"
|
2021-04-19 22:25:08 +00:00
|
|
|
"code.gitea.io/gitea/modules/markup"
|
2017-09-21 05:20:14 +00:00
|
|
|
"code.gitea.io/gitea/modules/markup/markdown"
|
2019-08-23 16:40:30 +00:00
|
|
|
api "code.gitea.io/gitea/modules/structs"
|
2021-01-26 15:36:53 +00:00
|
|
|
"code.gitea.io/gitea/modules/web"
|
2023-03-24 06:12:23 +00:00
|
|
|
"code.gitea.io/gitea/routers/common"
|
2014-03-29 14:01:52 +00:00
|
|
|
)
|
2014-03-29 13:16:06 +00:00
|
|
|
|
2023-03-24 06:12:23 +00:00
|
|
|
// Markup render markup document to HTML
|
|
|
|
func Markup(ctx *context.APIContext) {
|
|
|
|
// swagger:operation POST /markup miscellaneous renderMarkup
|
|
|
|
// ---
|
|
|
|
// summary: Render a markup document as HTML
|
|
|
|
// parameters:
|
|
|
|
// - name: body
|
|
|
|
// in: body
|
|
|
|
// schema:
|
|
|
|
// "$ref": "#/definitions/MarkupOption"
|
|
|
|
// consumes:
|
|
|
|
// - application/json
|
|
|
|
// produces:
|
|
|
|
// - text/html
|
|
|
|
// responses:
|
|
|
|
// "200":
|
|
|
|
// "$ref": "#/responses/MarkupRender"
|
|
|
|
// "422":
|
|
|
|
// "$ref": "#/responses/validationError"
|
|
|
|
|
|
|
|
form := web.GetForm(ctx).(*api.MarkupOption)
|
|
|
|
|
|
|
|
if ctx.HasAPIError() {
|
|
|
|
ctx.Error(http.StatusUnprocessableEntity, "", ctx.GetErrMsg())
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2023-05-21 01:50:53 +00:00
|
|
|
common.RenderMarkup(ctx.Base, ctx.Repo, form.Mode, form.Text, form.Context, form.FilePath, form.Wiki)
|
2023-03-24 06:12:23 +00:00
|
|
|
}
|
|
|
|
|
2016-11-24 07:04:31 +00:00
|
|
|
// Markdown render markdown document to HTML
|
2021-01-26 15:36:53 +00:00
|
|
|
func Markdown(ctx *context.APIContext) {
|
2017-11-13 07:02:25 +00: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 13:35:59 +00:00
|
|
|
// - text/html
|
2017-11-13 07:02:25 +00:00
|
|
|
// responses:
|
|
|
|
// "200":
|
|
|
|
// "$ref": "#/responses/MarkdownRender"
|
|
|
|
// "422":
|
|
|
|
// "$ref": "#/responses/validationError"
|
2019-12-20 17:07:12 +00:00
|
|
|
|
2021-01-26 15:36:53 +00:00
|
|
|
form := web.GetForm(ctx).(*api.MarkdownOption)
|
|
|
|
|
2016-11-25 06:51:01 +00:00
|
|
|
if ctx.HasAPIError() {
|
2019-12-20 17:07:12 +00:00
|
|
|
ctx.Error(http.StatusUnprocessableEntity, "", ctx.GetErrMsg())
|
2014-05-05 17:08:01 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2023-03-24 06:12:23 +00:00
|
|
|
mode := "markdown"
|
|
|
|
if form.Mode == "comment" || form.Mode == "gfm" {
|
|
|
|
mode = form.Mode
|
2014-12-10 21:37:54 +00:00
|
|
|
}
|
|
|
|
|
2023-05-21 01:50:53 +00:00
|
|
|
common.RenderMarkup(ctx.Base, ctx.Repo, mode, form.Text, form.Context, "", form.Wiki)
|
2014-05-05 17:08:01 +00:00
|
|
|
}
|
|
|
|
|
2016-11-24 07:04:31 +00:00
|
|
|
// MarkdownRaw render raw markdown HTML
|
2016-03-13 22:49:16 +00:00
|
|
|
func MarkdownRaw(ctx *context.APIContext) {
|
2017-11-13 07:02:25 +00:00
|
|
|
// swagger:operation POST /markdown/raw miscellaneous renderMarkdownRaw
|
|
|
|
// ---
|
|
|
|
// summary: Render raw markdown as HTML
|
|
|
|
// parameters:
|
2018-06-12 14:59:22 +00:00
|
|
|
// - name: body
|
|
|
|
// in: body
|
|
|
|
// description: Request body to render
|
|
|
|
// required: true
|
|
|
|
// schema:
|
|
|
|
// type: string
|
2017-11-13 07:02:25 +00:00
|
|
|
// consumes:
|
2017-05-02 13:35:59 +00:00
|
|
|
// - text/plain
|
2017-11-13 07:02:25 +00:00
|
|
|
// produces:
|
2017-05-02 13:35:59 +00:00
|
|
|
// - text/html
|
2017-11-13 07:02:25 +00:00
|
|
|
// responses:
|
|
|
|
// "200":
|
|
|
|
// "$ref": "#/responses/MarkdownRender"
|
|
|
|
// "422":
|
|
|
|
// "$ref": "#/responses/validationError"
|
2021-04-19 22:25:08 +00:00
|
|
|
defer ctx.Req.Body.Close()
|
2022-01-19 23:26:57 +00:00
|
|
|
if err := markdown.RenderRaw(&markup.RenderContext{
|
|
|
|
Ctx: ctx,
|
|
|
|
}, ctx.Req.Body, ctx.Resp); err != nil {
|
2019-12-20 17:07:12 +00:00
|
|
|
ctx.InternalServerError(err)
|
2019-06-12 19:41:28 +00:00
|
|
|
return
|
|
|
|
}
|
2014-03-29 13:16:06 +00:00
|
|
|
}
|