2014-03-29 18:46:06 +05:30
|
|
|
// 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 03:46:42 +05:30
|
|
|
package misc
|
2014-03-29 18:46:06 +05:30
|
|
|
|
2014-03-29 19:31:52 +05:30
|
|
|
import (
|
2016-11-11 15:09:44 +05:30
|
|
|
api "code.gitea.io/sdk/gitea"
|
2015-12-05 03:46:42 +05:30
|
|
|
|
2016-11-10 21:54:48 +05:30
|
|
|
"code.gitea.io/gitea/modules/context"
|
2017-09-16 22:47:57 +05:30
|
|
|
"code.gitea.io/gitea/modules/markup"
|
2017-09-21 10:50:14 +05:30
|
|
|
"code.gitea.io/gitea/modules/markup/markdown"
|
2017-02-14 06:43:59 +05:30
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2014-03-29 19:31:52 +05:30
|
|
|
)
|
2014-03-29 18:46:06 +05:30
|
|
|
|
2016-11-24 12:34:31 +05:30
|
|
|
// Markdown render markdown document to HTML
|
2016-03-14 04:19:16 +05:30
|
|
|
func Markdown(ctx *context.APIContext, form api.MarkdownOption) {
|
2017-08-21 16:43:47 +05:30
|
|
|
// swagger:route POST /markdown miscellaneous renderMarkdown
|
2017-05-02 19:05:59 +05:30
|
|
|
//
|
|
|
|
// Consumes:
|
|
|
|
// - application/json
|
|
|
|
//
|
|
|
|
// Produces:
|
|
|
|
// - text/html
|
|
|
|
//
|
|
|
|
// Responses:
|
|
|
|
// 200: MarkdownRender
|
|
|
|
// 422: validationError
|
|
|
|
|
2016-11-25 12:21:01 +05:30
|
|
|
if ctx.HasAPIError() {
|
2016-03-14 04:19:16 +05:30
|
|
|
ctx.Error(422, "", ctx.GetErrMsg())
|
2014-05-05 22:38:01 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-12-11 03:07:54 +05:30
|
|
|
if len(form.Text) == 0 {
|
|
|
|
ctx.Write([]byte(""))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-05-05 22:38:01 +05:30
|
|
|
switch form.Mode {
|
|
|
|
case "gfm":
|
2017-02-24 20:29:56 +05:30
|
|
|
md := []byte(form.Text)
|
2017-09-16 22:47:57 +05:30
|
|
|
context := markup.URLJoin(setting.AppURL, form.Context)
|
2017-02-24 20:29:56 +05:30
|
|
|
if form.Wiki {
|
|
|
|
ctx.Write([]byte(markdown.RenderWiki(md, context, nil)))
|
|
|
|
} else {
|
|
|
|
ctx.Write(markdown.Render(md, context, nil))
|
|
|
|
}
|
2014-05-05 22:38:01 +05:30
|
|
|
default:
|
2017-02-14 06:43:59 +05:30
|
|
|
ctx.Write(markdown.RenderRaw([]byte(form.Text), "", false))
|
2014-05-05 22:38:01 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-24 12:34:31 +05:30
|
|
|
// MarkdownRaw render raw markdown HTML
|
2016-03-14 04:19:16 +05:30
|
|
|
func MarkdownRaw(ctx *context.APIContext) {
|
2017-08-21 16:43:47 +05:30
|
|
|
// swagger:route POST /markdown/raw miscellaneous renderMarkdownRaw
|
2017-05-02 19:05:59 +05:30
|
|
|
//
|
|
|
|
// Consumes:
|
|
|
|
// - text/plain
|
|
|
|
//
|
|
|
|
// Produces:
|
|
|
|
// - text/html
|
|
|
|
//
|
|
|
|
// Responses:
|
|
|
|
// 200: MarkdownRender
|
|
|
|
// 422: validationError
|
2014-10-19 08:56:55 +05:30
|
|
|
body, err := ctx.Req.Body().Bytes()
|
2014-05-05 22:38:01 +05:30
|
|
|
if err != nil {
|
2016-03-14 04:19:16 +05:30
|
|
|
ctx.Error(422, "", err)
|
2014-05-05 22:38:01 +05:30
|
|
|
return
|
|
|
|
}
|
2017-02-14 06:43:59 +05:30
|
|
|
ctx.Write(markdown.RenderRaw(body, "", false))
|
2014-03-29 18:46:06 +05:30
|
|
|
}
|