Files

107 lines
2.8 KiB
Go
Raw Permalink Normal View History

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