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.
2015-12-05 01:16:42 +03:00
package misc
2014-03-29 17:16:06 +04:00
2014-03-29 18:01:52 +04:00
import (
2019-06-12 22:41:28 +03:00
"net/http"
2019-04-12 08:53:34 +03:00
"strings"
2016-11-10 19:24:48 +03:00
"code.gitea.io/gitea/modules/context"
2017-09-21 08:20:14 +03:00
"code.gitea.io/gitea/modules/markup/markdown"
2017-02-14 04:13:59 +03:00
"code.gitea.io/gitea/modules/setting"
2019-08-23 19:40:30 +03:00
api "code.gitea.io/gitea/modules/structs"
2018-02-20 15:50:42 +03:00
"code.gitea.io/gitea/modules/util"
2019-04-12 08:53:34 +03:00
"mvdan.cc/xurls/v2"
2014-03-29 18:01:52 +04:00
)
2014-03-29 17:16:06 +04:00
2016-11-24 10:04:31 +03:00
// Markdown render markdown document to HTML
2016-03-14 01:49:16 +03:00
func Markdown ( ctx * context . APIContext , form api . MarkdownOption ) {
2017-11-13 10:02:25 +03:00
// swagger:operation POST /markdown miscellaneous renderMarkdown
// ---
// summary: Render a markdown document as HTML
// parameters:
// - name: body
// in: body
// schema:
// "$ref": "#/definitions/MarkdownOption"
// consumes:
// - application/json
// produces:
2017-05-02 16:35:59 +03:00
// - text/html
2017-11-13 10:02:25 +03:00
// responses:
// "200":
// "$ref": "#/responses/MarkdownRender"
// "422":
// "$ref": "#/responses/validationError"
2019-12-20 20:07:12 +03:00
2016-11-25 09:51:01 +03:00
if ctx . HasAPIError ( ) {
2019-12-20 20:07:12 +03:00
ctx . Error ( http . StatusUnprocessableEntity , "" , ctx . GetErrMsg ( ) )
2014-05-05 21:08:01 +04:00
return
}
2014-12-11 00:37:54 +03:00
if len ( form . Text ) == 0 {
2019-06-12 22:41:28 +03:00
_ , _ = ctx . Write ( [ ] byte ( "" ) )
2014-12-11 00:37:54 +03:00
return
}
2014-05-05 21:08:01 +04:00
switch form . Mode {
case "gfm" :
2017-02-24 17:59:56 +03:00
md := [ ] byte ( form . Text )
2019-04-12 08:53:34 +03:00
urlPrefix := form . Context
var meta map [ string ] string
if ! strings . HasPrefix ( setting . AppSubURL + "/" , urlPrefix ) {
// check if urlPrefix is already set to a URL
linkRegex , _ := xurls . StrictMatchingScheme ( "https?://" )
m := linkRegex . FindStringIndex ( urlPrefix )
if m == nil {
urlPrefix = util . URLJoin ( setting . AppURL , form . Context )
}
}
if ctx . Repo != nil && ctx . Repo . Repository != nil {
meta = ctx . Repo . Repository . ComposeMetas ( )
}
2017-02-24 17:59:56 +03:00
if form . Wiki {
2019-06-12 22:41:28 +03:00
_ , err := ctx . Write ( [ ] byte ( markdown . RenderWiki ( md , urlPrefix , meta ) ) )
if err != nil {
2019-12-20 20:07:12 +03:00
ctx . InternalServerError ( err )
2019-06-12 22:41:28 +03:00
return
}
2017-02-24 17:59:56 +03:00
} else {
2019-06-12 22:41:28 +03:00
_ , err := ctx . Write ( markdown . Render ( md , urlPrefix , meta ) )
if err != nil {
2019-12-20 20:07:12 +03:00
ctx . InternalServerError ( err )
2019-06-12 22:41:28 +03:00
return
}
2017-02-24 17:59:56 +03:00
}
2014-05-05 21:08:01 +04:00
default :
2019-06-12 22:41:28 +03:00
_ , err := ctx . Write ( markdown . RenderRaw ( [ ] byte ( form . Text ) , "" , false ) )
if err != nil {
2019-12-20 20:07:12 +03:00
ctx . InternalServerError ( err )
2019-06-12 22:41:28 +03:00
return
}
2014-05-05 21:08:01 +04:00
}
}
2016-11-24 10:04:31 +03:00
// MarkdownRaw render raw markdown HTML
2016-03-14 01:49:16 +03:00
func MarkdownRaw ( ctx * context . APIContext ) {
2017-11-13 10:02:25 +03:00
// swagger:operation POST /markdown/raw miscellaneous renderMarkdownRaw
// ---
// summary: Render raw markdown as HTML
// parameters:
2018-06-12 17:59:22 +03:00
// - name: body
// in: body
// description: Request body to render
// required: true
// schema:
// type: string
2017-11-13 10:02:25 +03:00
// consumes:
2017-05-02 16:35:59 +03:00
// - text/plain
2017-11-13 10:02:25 +03:00
// produces:
2017-05-02 16:35:59 +03:00
// - text/html
2017-11-13 10:02:25 +03:00
// responses:
// "200":
// "$ref": "#/responses/MarkdownRender"
// "422":
// "$ref": "#/responses/validationError"
2019-12-20 20:07:12 +03:00
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 {
2019-12-20 20:07:12 +03:00
ctx . Error ( http . StatusUnprocessableEntity , "" , err )
2014-05-05 21:08:01 +04:00
return
}
2019-06-12 22:41:28 +03:00
_ , err = ctx . Write ( markdown . RenderRaw ( body , "" , false ) )
if err != nil {
2019-12-20 20:07:12 +03:00
ctx . InternalServerError ( err )
2019-06-12 22:41:28 +03:00
return
}
2014-03-29 17:16:06 +04:00
}