2014-03-29 22:16:06 +09: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-05 07:16:42 +09:00
|
|
|
package misc
|
2014-03-29 22:16:06 +09:00
|
|
|
|
2014-03-29 23:01:52 +09:00
|
|
|
import (
|
2016-11-11 18:39:44 +09:00
|
|
|
api "code.gitea.io/sdk/gitea"
|
2015-12-05 07:16:42 +09:00
|
|
|
|
2016-11-11 01:24:48 +09:00
|
|
|
"code.gitea.io/gitea/modules/context"
|
2017-09-21 14:20:14 +09:00
|
|
|
"code.gitea.io/gitea/modules/markup/markdown"
|
2017-02-14 10:13:59 +09:00
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2018-02-20 21:50:42 +09:00
|
|
|
"code.gitea.io/gitea/modules/util"
|
2014-03-29 23:01:52 +09:00
|
|
|
)
|
2014-03-29 22:16:06 +09:00
|
|
|
|
2016-11-24 16:04:31 +09:00
|
|
|
// Markdown render markdown document to HTML
|
2016-03-14 07:49:16 +09:00
|
|
|
func Markdown(ctx *context.APIContext, form api.MarkdownOption) {
|
2017-11-13 16:02:25 +09: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 22:35:59 +09:00
|
|
|
// - text/html
|
2017-11-13 16:02:25 +09:00
|
|
|
// responses:
|
|
|
|
// "200":
|
|
|
|
// "$ref": "#/responses/MarkdownRender"
|
|
|
|
// "422":
|
|
|
|
// "$ref": "#/responses/validationError"
|
2016-11-25 15:51:01 +09:00
|
|
|
if ctx.HasAPIError() {
|
2016-03-14 07:49:16 +09:00
|
|
|
ctx.Error(422, "", ctx.GetErrMsg())
|
2014-05-06 02:08:01 +09:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-12-11 06:37:54 +09:00
|
|
|
if len(form.Text) == 0 {
|
|
|
|
ctx.Write([]byte(""))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-05-06 02:08:01 +09:00
|
|
|
switch form.Mode {
|
|
|
|
case "gfm":
|
2017-02-24 23:59:56 +09:00
|
|
|
md := []byte(form.Text)
|
2018-02-20 21:50:42 +09:00
|
|
|
context := util.URLJoin(setting.AppURL, form.Context)
|
2017-02-24 23:59:56 +09:00
|
|
|
if form.Wiki {
|
|
|
|
ctx.Write([]byte(markdown.RenderWiki(md, context, nil)))
|
|
|
|
} else {
|
|
|
|
ctx.Write(markdown.Render(md, context, nil))
|
|
|
|
}
|
2014-05-06 02:08:01 +09:00
|
|
|
default:
|
2017-02-14 10:13:59 +09:00
|
|
|
ctx.Write(markdown.RenderRaw([]byte(form.Text), "", false))
|
2014-05-06 02:08:01 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-24 16:04:31 +09:00
|
|
|
// MarkdownRaw render raw markdown HTML
|
2016-03-14 07:49:16 +09:00
|
|
|
func MarkdownRaw(ctx *context.APIContext) {
|
2017-11-13 16:02:25 +09:00
|
|
|
// swagger:operation POST /markdown/raw miscellaneous renderMarkdownRaw
|
|
|
|
// ---
|
|
|
|
// summary: Render raw markdown as HTML
|
|
|
|
// parameters:
|
2018-06-12 23:59:22 +09:00
|
|
|
// - name: body
|
|
|
|
// in: body
|
|
|
|
// description: Request body to render
|
|
|
|
// required: true
|
|
|
|
// schema:
|
|
|
|
// type: string
|
2017-11-13 16:02:25 +09:00
|
|
|
// consumes:
|
2017-05-02 22:35:59 +09:00
|
|
|
// - text/plain
|
2017-11-13 16:02:25 +09:00
|
|
|
// produces:
|
2017-05-02 22:35:59 +09:00
|
|
|
// - text/html
|
2017-11-13 16:02:25 +09:00
|
|
|
// responses:
|
|
|
|
// "200":
|
|
|
|
// "$ref": "#/responses/MarkdownRender"
|
|
|
|
// "422":
|
|
|
|
// "$ref": "#/responses/validationError"
|
2014-10-19 12:26:55 +09:00
|
|
|
body, err := ctx.Req.Body().Bytes()
|
2014-05-06 02:08:01 +09:00
|
|
|
if err != nil {
|
2016-03-14 07:49:16 +09:00
|
|
|
ctx.Error(422, "", err)
|
2014-05-06 02:08:01 +09:00
|
|
|
return
|
|
|
|
}
|
2017-02-14 10:13:59 +09:00
|
|
|
ctx.Write(markdown.RenderRaw(body, "", false))
|
2014-03-29 22:16:06 +09:00
|
|
|
}
|