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