| 
									
										
										
										
											2021-09-01 22:12:31 +02:00
										 |  |  | /* | 
					
						
							|  |  |  |    GoToSocial | 
					
						
							| 
									
										
										
										
											2021-12-20 18:42:19 +01:00
										 |  |  |    Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org | 
					
						
							| 
									
										
										
										
											2021-09-01 22:12:31 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |    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-07 15:46:42 +02:00
										 |  |  | package router | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							| 
									
										
										
										
											2022-09-02 05:54:32 -04:00
										 |  |  | 	"bytes" | 
					
						
							| 
									
										
										
										
											2021-07-07 15:46:42 +02:00
										 |  |  | 	"fmt" | 
					
						
							| 
									
										
										
										
											2022-09-02 05:54:32 -04:00
										 |  |  | 	"html" | 
					
						
							| 
									
										
										
										
											2021-07-13 16:05:03 +02:00
										 |  |  | 	"html/template" | 
					
						
							| 
									
										
										
										
											2021-07-07 15:46:42 +02:00
										 |  |  | 	"os" | 
					
						
							|  |  |  | 	"path/filepath" | 
					
						
							| 
									
										
										
										
											2021-09-13 14:45:33 +02:00
										 |  |  | 	"time" | 
					
						
							| 
									
										
										
										
											2021-07-07 15:46:42 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	"github.com/gin-gonic/gin" | 
					
						
							| 
									
										
										
										
											2021-09-13 14:45:33 +02:00
										 |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/api/model" | 
					
						
							| 
									
										
										
										
											2021-07-07 15:46:42 +02:00
										 |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/config" | 
					
						
							| 
									
										
										
										
											2022-09-02 05:54:32 -04:00
										 |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/regexes" | 
					
						
							| 
									
										
										
										
											2021-07-07 15:46:42 +02:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-02-07 11:04:31 +00:00
										 |  |  | // LoadTemplates loads html templates for use by the given engine | 
					
						
							| 
									
										
										
										
											2022-07-12 08:32:20 +01:00
										 |  |  | func LoadTemplates(engine *gin.Engine) error { | 
					
						
							| 
									
										
										
										
											2022-05-30 13:41:24 +01:00
										 |  |  | 	templateBaseDir := config.GetWebTemplateBaseDir() | 
					
						
							| 
									
										
										
										
											2022-05-02 16:06:03 +02:00
										 |  |  | 	if templateBaseDir == "" { | 
					
						
							| 
									
										
										
										
											2022-05-30 13:41:24 +01:00
										 |  |  | 		return fmt.Errorf("%s cannot be empty and must be a relative or absolute path", config.WebTemplateBaseDirFlag()) | 
					
						
							| 
									
										
										
										
											2022-05-02 16:06:03 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2021-07-07 15:46:42 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-02 16:06:03 +02:00
										 |  |  | 	templateBaseDir, err := filepath.Abs(templateBaseDir) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		return fmt.Errorf("error getting absolute path of %s: %s", templateBaseDir, err) | 
					
						
							| 
									
										
										
										
											2022-04-29 02:00:25 -07:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if _, err := os.Stat(filepath.Join(templateBaseDir, "index.tmpl")); err != nil { | 
					
						
							|  |  |  | 		return fmt.Errorf("%s doesn't seem to contain the templates; index.tmpl is missing: %w", templateBaseDir, err) | 
					
						
							| 
									
										
										
										
											2022-02-07 11:04:31 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-02 16:06:03 +02:00
										 |  |  | 	engine.LoadHTMLGlob(filepath.Join(templateBaseDir, "*")) | 
					
						
							| 
									
										
										
										
											2021-07-07 15:46:42 +02:00
										 |  |  | 	return nil | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2021-07-13 16:05:03 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-13 14:45:33 +02:00
										 |  |  | func oddOrEven(n int) string { | 
					
						
							|  |  |  | 	if n%2 == 0 { | 
					
						
							|  |  |  | 		return "even" | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2021-09-30 11:16:23 +02:00
										 |  |  | 	return "odd" | 
					
						
							| 
									
										
										
										
											2021-09-13 14:45:33 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-02 05:54:32 -04:00
										 |  |  | func escape(str string) template.HTML { | 
					
						
							|  |  |  | 	/* #nosec G203 */ | 
					
						
							|  |  |  | 	return template.HTML(template.HTMLEscapeString(str)) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-13 16:05:03 +02:00
										 |  |  | func noescape(str string) template.HTML { | 
					
						
							| 
									
										
										
										
											2021-11-22 08:46:19 +01:00
										 |  |  | 	/* #nosec G203 */ | 
					
						
							| 
									
										
										
										
											2021-07-13 16:05:03 +02:00
										 |  |  | 	return template.HTML(str) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-07 16:53:12 +02:00
										 |  |  | func noescapeAttr(str string) template.HTMLAttr { | 
					
						
							|  |  |  | 	/* #nosec G203 */ | 
					
						
							|  |  |  | 	return template.HTMLAttr(str) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-13 14:45:33 +02:00
										 |  |  | func timestamp(stamp string) string { | 
					
						
							|  |  |  | 	t, _ := time.Parse(time.RFC3339, stamp) | 
					
						
							|  |  |  | 	return t.Format("January 2, 2006, 15:04:05") | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-15 14:33:01 +02:00
										 |  |  | func timestampShort(stamp string) string { | 
					
						
							|  |  |  | 	t, _ := time.Parse(time.RFC3339, stamp) | 
					
						
							|  |  |  | 	return t.Format("January, 2006") | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-30 11:16:23 +02:00
										 |  |  | type iconWithLabel struct { | 
					
						
							| 
									
										
										
										
											2021-09-13 14:45:33 +02:00
										 |  |  | 	faIcon string | 
					
						
							|  |  |  | 	label  string | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func visibilityIcon(visibility model.Visibility) template.HTML { | 
					
						
							| 
									
										
										
										
											2021-09-30 11:16:23 +02:00
										 |  |  | 	var icon iconWithLabel | 
					
						
							| 
									
										
										
										
											2021-09-13 14:45:33 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-22 08:46:19 +01:00
										 |  |  | 	switch visibility { | 
					
						
							|  |  |  | 	case model.VisibilityPublic: | 
					
						
							| 
									
										
										
										
											2021-09-30 11:16:23 +02:00
										 |  |  | 		icon = iconWithLabel{"globe", "public"} | 
					
						
							| 
									
										
										
										
											2021-11-22 08:46:19 +01:00
										 |  |  | 	case model.VisibilityUnlisted: | 
					
						
							| 
									
										
										
										
											2021-09-30 11:16:23 +02:00
										 |  |  | 		icon = iconWithLabel{"unlock", "unlisted"} | 
					
						
							| 
									
										
										
										
											2021-11-22 08:46:19 +01:00
										 |  |  | 	case model.VisibilityPrivate: | 
					
						
							| 
									
										
										
										
											2021-09-30 11:16:23 +02:00
										 |  |  | 		icon = iconWithLabel{"lock", "private"} | 
					
						
							| 
									
										
										
										
											2021-11-22 08:46:19 +01:00
										 |  |  | 	case model.VisibilityMutualsOnly: | 
					
						
							| 
									
										
										
										
											2021-09-30 11:16:23 +02:00
										 |  |  | 		icon = iconWithLabel{"handshake-o", "mutuals only"} | 
					
						
							| 
									
										
										
										
											2021-11-22 08:46:19 +01:00
										 |  |  | 	case model.VisibilityDirect: | 
					
						
							| 
									
										
										
										
											2021-09-30 11:16:23 +02:00
										 |  |  | 		icon = iconWithLabel{"envelope", "direct"} | 
					
						
							| 
									
										
										
										
											2021-09-13 14:45:33 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-22 08:46:19 +01:00
										 |  |  | 	/* #nosec G203 */ | 
					
						
							|  |  |  | 	return template.HTML(fmt.Sprintf(`<i aria-label="Visibility: %v" class="fa fa-%v"></i>`, icon.label, icon.faIcon)) | 
					
						
							| 
									
										
										
										
											2021-09-13 14:45:33 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-02 05:54:32 -04:00
										 |  |  | // replaces shortcodes in `text` with the emoji in `emojis` | 
					
						
							|  |  |  | // text is a template.HTML to affirm that the input of this function is already escaped | 
					
						
							|  |  |  | func emojify(emojis []model.Emoji, text template.HTML) template.HTML { | 
					
						
							|  |  |  | 	emojisMap := make(map[string]model.Emoji, len(emojis)) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for _, emoji := range emojis { | 
					
						
							|  |  |  | 		shortcode := ":" + emoji.Shortcode + ":" | 
					
						
							|  |  |  | 		emojisMap[shortcode] = emoji | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	out := regexes.ReplaceAllStringFunc( | 
					
						
							|  |  |  | 		regexes.EmojiFinder, | 
					
						
							|  |  |  | 		string(text), | 
					
						
							|  |  |  | 		func(shortcode string, buf *bytes.Buffer) string { | 
					
						
							|  |  |  | 			// Look for emoji according to this shortcode | 
					
						
							|  |  |  | 			emoji, ok := emojisMap[shortcode] | 
					
						
							|  |  |  | 			if !ok { | 
					
						
							|  |  |  | 				return shortcode | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			// Escape raw emoji content | 
					
						
							|  |  |  | 			safeURL := html.EscapeString(emoji.URL) | 
					
						
							|  |  |  | 			safeCode := html.EscapeString(emoji.Shortcode) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			// Write HTML emoji repr to buffer | 
					
						
							|  |  |  | 			buf.WriteString(`<img src="`) | 
					
						
							|  |  |  | 			buf.WriteString(safeURL) | 
					
						
							|  |  |  | 			buf.WriteString(`" title=":`) | 
					
						
							|  |  |  | 			buf.WriteString(safeCode) | 
					
						
							|  |  |  | 			buf.WriteString(`:" alt=":`) | 
					
						
							|  |  |  | 			buf.WriteString(safeCode) | 
					
						
							|  |  |  | 			buf.WriteString(`:" class="emoji"/>`) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			return buf.String() | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 	) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* #nosec G203 */ | 
					
						
							|  |  |  | 	// (this is escaped above) | 
					
						
							|  |  |  | 	return template.HTML(out) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-02-07 11:04:31 +00:00
										 |  |  | func LoadTemplateFunctions(engine *gin.Engine) { | 
					
						
							| 
									
										
										
										
											2021-07-13 16:05:03 +02:00
										 |  |  | 	engine.SetFuncMap(template.FuncMap{ | 
					
						
							| 
									
										
										
										
											2022-09-02 05:54:32 -04:00
										 |  |  | 		"escape":         escape, | 
					
						
							| 
									
										
										
										
											2021-09-13 14:45:33 +02:00
										 |  |  | 		"noescape":       noescape, | 
					
						
							| 
									
										
										
										
											2022-09-07 16:53:12 +02:00
										 |  |  | 		"noescapeAttr":   noescapeAttr, | 
					
						
							| 
									
										
										
										
											2021-09-13 14:45:33 +02:00
										 |  |  | 		"oddOrEven":      oddOrEven, | 
					
						
							|  |  |  | 		"visibilityIcon": visibilityIcon, | 
					
						
							|  |  |  | 		"timestamp":      timestamp, | 
					
						
							| 
									
										
										
										
											2022-04-15 14:33:01 +02:00
										 |  |  | 		"timestampShort": timestampShort, | 
					
						
							| 
									
										
										
										
											2022-09-02 05:54:32 -04:00
										 |  |  | 		"emojify":        emojify, | 
					
						
							| 
									
										
										
										
											2021-07-13 16:05:03 +02:00
										 |  |  | 	}) | 
					
						
							|  |  |  | } |