| 
									
										
										
										
											2023-03-12 16:00:57 +01:00
										 |  |  | // GoToSocial | 
					
						
							|  |  |  | // Copyright (C) GoToSocial Authors admin@gotosocial.org | 
					
						
							|  |  |  | // SPDX-License-Identifier: AGPL-3.0-or-later | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // This program is free software: you can redistribute it and/or modify | 
					
						
							|  |  |  | // it under the terms of the GNU Affero General Public License as published by | 
					
						
							|  |  |  | // the Free Software Foundation, either version 3 of the License, or | 
					
						
							|  |  |  | // (at your option) any later version. | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // This program is distributed in the hope that it will be useful, | 
					
						
							|  |  |  | // but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
					
						
							|  |  |  | // GNU Affero General Public License for more details. | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // You should have received a copy of the GNU Affero General Public License | 
					
						
							|  |  |  | // along with this program.  If not, see <http://www.gnu.org/licenses/>. | 
					
						
							| 
									
										
										
										
											2021-07-26 20:25:54 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | package text | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							| 
									
										
										
										
											2022-08-31 11:40:11 -04:00
										 |  |  | 	"bytes" | 
					
						
							| 
									
										
										
										
											2021-08-25 15:34:33 +02:00
										 |  |  | 	"context" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-10-05 13:22:40 +01:00
										 |  |  | 	"codeberg.org/gruf/go-byteutil" | 
					
						
							| 
									
										
										
										
											2021-07-26 20:25:54 +02:00
										 |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/gtsmodel" | 
					
						
							| 
									
										
										
										
											2022-08-07 18:19:16 +02:00
										 |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/log" | 
					
						
							| 
									
										
										
										
											2022-12-16 11:20:22 +00:00
										 |  |  | 	"github.com/yuin/goldmark" | 
					
						
							|  |  |  | 	"github.com/yuin/goldmark/extension" | 
					
						
							|  |  |  | 	"github.com/yuin/goldmark/renderer/html" | 
					
						
							| 
									
										
										
										
											2021-07-26 20:25:54 +02:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-09-29 10:39:56 +02:00
										 |  |  | // FromMarkdown fulfils FormatFunc by parsing | 
					
						
							|  |  |  | // the given markdown input into a FormatResult. | 
					
						
							|  |  |  | func (f *Formatter) FromMarkdown( | 
					
						
							|  |  |  | 	ctx context.Context, | 
					
						
							|  |  |  | 	parseMention gtsmodel.ParseMentionFunc, | 
					
						
							|  |  |  | 	authorID string, | 
					
						
							|  |  |  | 	statusID string, | 
					
						
							|  |  |  | 	input string, | 
					
						
							|  |  |  | ) *FormatResult { | 
					
						
							|  |  |  | 	result := new(FormatResult) | 
					
						
							| 
									
										
										
										
											2022-09-27 14:27:53 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-09-29 10:39:56 +02:00
										 |  |  | 	// Instantiate goldmark parser for | 
					
						
							|  |  |  | 	// markdown, using custom renderer | 
					
						
							|  |  |  | 	// to add hashtag/mention links. | 
					
						
							| 
									
										
										
										
											2022-12-16 11:20:22 +00:00
										 |  |  | 	md := goldmark.New( | 
					
						
							|  |  |  | 		goldmark.WithRendererOptions( | 
					
						
							|  |  |  | 			html.WithXHTML(), | 
					
						
							|  |  |  | 			html.WithHardWraps(), | 
					
						
							| 
									
										
										
										
											2023-09-29 10:39:56 +02:00
										 |  |  | 			// Allows raw HTML. We sanitize | 
					
						
							|  |  |  | 			// at the end so this is OK. | 
					
						
							|  |  |  | 			html.WithUnsafe(), | 
					
						
							| 
									
										
										
										
											2022-12-16 11:20:22 +00:00
										 |  |  | 		), | 
					
						
							|  |  |  | 		goldmark.WithExtensions( | 
					
						
							| 
									
										
										
										
											2023-09-29 10:39:56 +02:00
										 |  |  | 			&customRenderer{ | 
					
						
							|  |  |  | 				ctx, | 
					
						
							|  |  |  | 				f.db, | 
					
						
							|  |  |  | 				parseMention, | 
					
						
							|  |  |  | 				authorID, | 
					
						
							|  |  |  | 				statusID, | 
					
						
							|  |  |  | 				false, // emojiOnly = false. | 
					
						
							|  |  |  | 				result, | 
					
						
							|  |  |  | 			}, | 
					
						
							|  |  |  | 			extension.Linkify, // Turns URLs into links. | 
					
						
							| 
									
										
										
										
											2022-12-16 11:20:22 +00:00
										 |  |  | 			extension.Strikethrough, | 
					
						
							|  |  |  | 		), | 
					
						
							|  |  |  | 	) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-10-05 13:22:40 +01:00
										 |  |  | 	// Convert input string to bytes | 
					
						
							|  |  |  | 	// without performing any allocs. | 
					
						
							|  |  |  | 	bInput := byteutil.S2B(input) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-09-29 10:39:56 +02:00
										 |  |  | 	// Parse input into HTML. | 
					
						
							|  |  |  | 	var htmlBytes bytes.Buffer | 
					
						
							|  |  |  | 	if err := md.Convert( | 
					
						
							| 
									
										
										
										
											2023-10-05 13:22:40 +01:00
										 |  |  | 		bInput, | 
					
						
							| 
									
										
										
										
											2023-09-29 10:39:56 +02:00
										 |  |  | 		&htmlBytes, | 
					
						
							|  |  |  | 	); err != nil { | 
					
						
							|  |  |  | 		log.Errorf(ctx, "error formatting markdown input to HTML: %s", err) | 
					
						
							| 
									
										
										
										
											2022-09-27 14:27:53 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2022-08-07 18:19:16 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-09-29 10:39:56 +02:00
										 |  |  | 	// Clean and shrink HTML. | 
					
						
							| 
									
										
										
										
											2023-10-05 13:22:40 +01:00
										 |  |  | 	result.HTML = byteutil.B2S(htmlBytes.Bytes()) | 
					
						
							| 
									
										
										
										
											2023-08-11 14:40:11 +02:00
										 |  |  | 	result.HTML = SanitizeToHTML(result.HTML) | 
					
						
							|  |  |  | 	result.HTML = MinifyHTML(result.HTML) | 
					
						
							| 
									
										
										
										
											2022-08-07 18:19:16 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-02-03 10:58:58 +00:00
										 |  |  | 	return result | 
					
						
							| 
									
										
										
										
											2021-07-26 20:25:54 +02:00
										 |  |  | } |