2023-09-12 18:06:45 +00:00
|
|
|
/*
|
2024-01-14 18:39:14 +00:00
|
|
|
Copyright © 2024 Seednode <seednode@seedno.de>
|
2023-09-12 18:06:45 +00:00
|
|
|
*/
|
|
|
|
|
2023-09-13 04:35:17 +00:00
|
|
|
package flash
|
2023-09-12 18:06:45 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2024-01-30 19:07:59 +00:00
|
|
|
"net/http"
|
2023-09-12 18:06:45 +00:00
|
|
|
"strings"
|
2023-09-13 04:35:17 +00:00
|
|
|
|
|
|
|
"seedno.de/seednode/roulette/types"
|
2023-09-12 18:06:45 +00:00
|
|
|
)
|
|
|
|
|
2024-01-14 18:39:14 +00:00
|
|
|
type Format struct{}
|
2023-09-13 01:56:39 +00:00
|
|
|
|
2024-01-30 19:07:59 +00:00
|
|
|
func (t Format) CSP(w http.ResponseWriter) string {
|
2024-01-30 21:22:15 +00:00
|
|
|
return ""
|
2024-01-30 19:07:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (t Format) CSS() string {
|
2023-09-13 01:56:39 +00:00
|
|
|
var css strings.Builder
|
|
|
|
|
|
|
|
css.WriteString(`html,body{margin:0;padding:0;height:100%;}`)
|
|
|
|
css.WriteString(`a{color:inherit;display:block;height:100%;width:100%;text-decoration:none;}`)
|
2024-01-30 23:28:13 +00:00
|
|
|
css.WriteString(`table{margin-left:auto;margin-right:auto;}`)
|
2023-09-13 01:56:39 +00:00
|
|
|
|
|
|
|
return css.String()
|
|
|
|
}
|
|
|
|
|
2023-09-15 19:28:21 +00:00
|
|
|
func (t Format) Title(rootUrl, fileUri, filePath, fileName, prefix, mime string) (string, error) {
|
|
|
|
return fmt.Sprintf(`<title>%s</title>`, fileName), nil
|
2023-09-13 01:56:39 +00:00
|
|
|
}
|
|
|
|
|
2024-01-30 19:07:59 +00:00
|
|
|
func (t Format) Body(rootUrl, fileUri, filePath, fileName, prefix, mime, nonce string) (string, error) {
|
2023-09-13 01:56:39 +00:00
|
|
|
var html strings.Builder
|
|
|
|
|
2024-01-30 21:22:15 +00:00
|
|
|
html.WriteString(fmt.Sprintf(`<script nonce=%q src="https://unpkg.com/@ruffle-rs/ruffle"></script><script nonce=%q>window.RufflePlayer.config = {autoplay:"on"};</script><embed nonce=%qsrc="%s"></embed>`,
|
|
|
|
nonce,
|
|
|
|
nonce,
|
|
|
|
nonce,
|
|
|
|
fileUri),
|
|
|
|
)
|
|
|
|
html.WriteString(`<br /><button id="next">Next</button>`)
|
|
|
|
html.WriteString(fmt.Sprintf(`<script nonce=%q>window.addEventListener("load", function () { document.getElementById("next").addEventListener("click", function () { window.location.href = '%s'; }) }); </script>`, nonce, rootUrl))
|
2023-09-13 01:56:39 +00:00
|
|
|
|
2023-09-15 19:28:21 +00:00
|
|
|
return html.String(), nil
|
2023-09-13 01:56:39 +00:00
|
|
|
}
|
|
|
|
|
2023-09-13 04:35:17 +00:00
|
|
|
func (t Format) Extensions() map[string]string {
|
2023-09-13 01:56:39 +00:00
|
|
|
return map[string]string{
|
|
|
|
`.swf`: `application/x-shockwave-flash`,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-10-09 14:47:17 +00:00
|
|
|
func (t Format) MediaType(extension string) string {
|
2023-09-14 22:37:22 +00:00
|
|
|
extensions := t.Extensions()
|
|
|
|
|
|
|
|
value, exists := extensions[extension]
|
|
|
|
if exists {
|
|
|
|
return value
|
2023-09-12 18:06:45 +00:00
|
|
|
}
|
2023-09-14 22:37:22 +00:00
|
|
|
|
|
|
|
return ""
|
2023-09-12 18:06:45 +00:00
|
|
|
}
|
2023-09-13 01:56:39 +00:00
|
|
|
|
2023-09-13 04:35:17 +00:00
|
|
|
func (t Format) Validate(filePath string) bool {
|
2023-09-13 01:56:39 +00:00
|
|
|
return true
|
|
|
|
}
|
2023-09-13 04:35:17 +00:00
|
|
|
|
2023-09-15 20:13:45 +00:00
|
|
|
func (t Format) Type() string {
|
|
|
|
return "embed"
|
|
|
|
}
|
|
|
|
|
2023-09-13 14:26:15 +00:00
|
|
|
func init() {
|
2023-09-29 19:36:11 +00:00
|
|
|
types.SupportedFormats.Register(Format{})
|
2023-09-13 04:35:17 +00:00
|
|
|
}
|