2014-03-29 21:16:06 +08: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 10:01:52 -04:00
package v1
2014-03-29 21:16:06 +08:00
2014-03-29 10:01:52 -04:00
import (
2014-05-05 13:08:01 -04:00
"strings"
"github.com/gogits/gogs/modules/auth/apiv1"
2014-03-29 10:01:52 -04:00
"github.com/gogits/gogs/modules/base"
"github.com/gogits/gogs/modules/middleware"
2014-05-25 20:11:25 -04:00
"github.com/gogits/gogs/modules/setting"
2014-03-29 10:01:52 -04:00
)
2014-03-29 21:16:06 +08:00
2014-05-05 13:08:01 -04:00
// Render an arbitrary Markdown document.
func Markdown ( ctx * middleware . Context , form apiv1 . MarkdownForm ) {
if ctx . HasApiError ( ) {
2014-11-14 17:11:30 -05:00
ctx . JSON ( 422 , base . ApiJsonErr { ctx . GetErrMsg ( ) , base . DOC_URL } )
2014-05-05 13:08:01 -04:00
return
}
2014-12-10 16:37:54 -05:00
if len ( form . Text ) == 0 {
ctx . Write ( [ ] byte ( "" ) )
return
}
2014-05-05 13:08:01 -04:00
switch form . Mode {
case "gfm" :
ctx . Write ( base . RenderMarkdown ( [ ] byte ( form . Text ) ,
2014-05-25 20:11:25 -04:00
setting . AppUrl + strings . TrimPrefix ( form . Context , "/" ) ) )
2014-05-05 13:08:01 -04:00
default :
ctx . Write ( base . RenderRawMarkdown ( [ ] byte ( form . Text ) , "" ) )
}
}
// Render a Markdown document in raw mode.
func MarkdownRaw ( ctx * middleware . Context ) {
2014-10-18 23:26:55 -04:00
body , err := ctx . Req . Body ( ) . Bytes ( )
2014-05-05 13:08:01 -04:00
if err != nil {
2014-11-14 17:11:30 -05:00
ctx . JSON ( 422 , base . ApiJsonErr { err . Error ( ) , base . DOC_URL } )
2014-05-05 13:08:01 -04:00
return
}
ctx . Write ( base . RenderRawMarkdown ( body , "" ) )
2014-03-29 21:16:06 +08:00
}