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.
|
|
|
|
|
2014-03-29 15:01:52 +01:00
|
|
|
package v1
|
2014-03-29 14:16:06 +01:00
|
|
|
|
2014-03-29 15:01:52 +01:00
|
|
|
import (
|
2014-05-05 19:08:01 +02:00
|
|
|
"strings"
|
|
|
|
|
|
|
|
"github.com/gogits/gogs/modules/auth/apiv1"
|
2014-03-29 15:01:52 +01:00
|
|
|
"github.com/gogits/gogs/modules/base"
|
|
|
|
"github.com/gogits/gogs/modules/middleware"
|
2014-05-26 02:11:25 +02:00
|
|
|
"github.com/gogits/gogs/modules/setting"
|
2014-03-29 15:01:52 +01:00
|
|
|
)
|
2014-03-29 14:16:06 +01:00
|
|
|
|
2014-05-05 19:08:01 +02:00
|
|
|
// Render an arbitrary Markdown document.
|
|
|
|
func Markdown(ctx *middleware.Context, form apiv1.MarkdownForm) {
|
|
|
|
if ctx.HasApiError() {
|
2015-10-09 02:36:07 +02:00
|
|
|
ctx.APIError(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":
|
|
|
|
ctx.Write(base.RenderMarkdown([]byte(form.Text),
|
2014-05-26 02:11:25 +02:00
|
|
|
setting.AppUrl+strings.TrimPrefix(form.Context, "/")))
|
2014-05-05 19:08:01 +02:00
|
|
|
default:
|
|
|
|
ctx.Write(base.RenderRawMarkdown([]byte(form.Text), ""))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Render a Markdown document in raw mode.
|
|
|
|
func MarkdownRaw(ctx *middleware.Context) {
|
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 {
|
2015-10-09 02:36:07 +02:00
|
|
|
ctx.APIError(422, "", err)
|
2014-05-05 19:08:01 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Write(base.RenderRawMarkdown(body, ""))
|
2014-03-29 14:16:06 +01:00
|
|
|
}
|