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