| 
									
										
										
										
											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 ( | 
					
						
							|  |  |  | 	"fmt" | 
					
						
							| 
									
										
										
										
											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-10-02 15:54:42 +02:00
										 |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/log" | 
					
						
							| 
									
										
										
										
											2022-10-08 14:00:39 +02:00
										 |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/text" | 
					
						
							| 
									
										
										
										
											2022-10-02 15:54:42 +02:00
										 |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/util" | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | const ( | 
					
						
							|  |  |  | 	justTime     = "15:04" | 
					
						
							|  |  |  | 	dateYear     = "Jan 02, 2006" | 
					
						
							|  |  |  | 	dateTime     = "Jan 02, 15:04" | 
					
						
							|  |  |  | 	dateYearTime = "Jan 02, 2006, 15:04" | 
					
						
							|  |  |  | 	monthYear    = "Jan, 2006" | 
					
						
							|  |  |  | 	badTimestamp = "bad timestamp" | 
					
						
							| 
									
										
										
										
											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 { | 
					
						
							| 
									
										
										
										
											2022-10-02 15:54:42 +02:00
										 |  |  | 	t, err := util.ParseISO8601(stamp) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		log.Errorf("error parsing timestamp %s: %s", stamp, err) | 
					
						
							|  |  |  | 		return badTimestamp | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	t = t.Local() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	tYear, tMonth, tDay := t.Date() | 
					
						
							|  |  |  | 	now := time.Now() | 
					
						
							|  |  |  | 	currentYear, currentMonth, currentDay := now.Date() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	switch { | 
					
						
							|  |  |  | 	case tYear == currentYear && tMonth == currentMonth && tDay == currentDay: | 
					
						
							|  |  |  | 		return "Today, " + t.Format(justTime) | 
					
						
							|  |  |  | 	case tYear == currentYear: | 
					
						
							|  |  |  | 		return t.Format(dateTime) | 
					
						
							|  |  |  | 	default: | 
					
						
							|  |  |  | 		return t.Format(dateYear) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2021-09-13 14:45:33 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-02 15:54:42 +02:00
										 |  |  | func timestampPrecise(stamp string) string { | 
					
						
							|  |  |  | 	t, err := util.ParseISO8601(stamp) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		log.Errorf("error parsing timestamp %s: %s", stamp, err) | 
					
						
							|  |  |  | 		return badTimestamp | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return t.Local().Format(dateYearTime) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func timestampVague(stamp string) string { | 
					
						
							|  |  |  | 	t, err := util.ParseISO8601(stamp) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		log.Errorf("error parsing timestamp %s: %s", stamp, err) | 
					
						
							|  |  |  | 		return badTimestamp | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return t.Format(monthYear) | 
					
						
							| 
									
										
										
										
											2022-04-15 14:33:01 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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
										 |  |  | // text is a template.HTML to affirm that the input of this function is already escaped | 
					
						
							| 
									
										
										
										
											2022-10-08 14:00:39 +02:00
										 |  |  | func emojify(emojis []model.Emoji, inputText template.HTML) template.HTML { | 
					
						
							|  |  |  | 	out := text.Emojify(emojis, string(inputText)) | 
					
						
							| 
									
										
										
										
											2022-09-02 05:54:32 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* #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-10-02 15:54:42 +02:00
										 |  |  | 		"escape":           escape, | 
					
						
							|  |  |  | 		"noescape":         noescape, | 
					
						
							|  |  |  | 		"noescapeAttr":     noescapeAttr, | 
					
						
							|  |  |  | 		"oddOrEven":        oddOrEven, | 
					
						
							|  |  |  | 		"visibilityIcon":   visibilityIcon, | 
					
						
							|  |  |  | 		"timestamp":        timestamp, | 
					
						
							|  |  |  | 		"timestampVague":   timestampVague, | 
					
						
							|  |  |  | 		"timestampPrecise": timestampPrecise, | 
					
						
							|  |  |  | 		"emojify":          emojify, | 
					
						
							| 
									
										
										
										
											2021-07-13 16:05:03 +02:00
										 |  |  | 	}) | 
					
						
							|  |  |  | } |