roulette/types/flash/flash.go

78 lines
1.8 KiB
Go
Raw Normal View History

/*
2024-01-14 13:39:14 -05:00
Copyright © 2024 Seednode <seednode@seedno.de>
*/
package flash
import (
"fmt"
"net/http"
"strings"
"seedno.de/seednode/roulette/types"
)
2024-01-14 13:39:14 -05:00
type Format struct{}
func (t Format) CSP(w http.ResponseWriter) string {
return ""
}
func (t Format) CSS() string {
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;}`)
css.WriteString(`table{margin-left:auto;margin-right:auto;}`)
return css.String()
}
func (t Format) Title(rootUrl, fileUri, filePath, fileName, prefix, mime string) (string, error) {
return fmt.Sprintf(`<title>%s</title>`, fileName), nil
}
func (t Format) Body(rootUrl, fileUri, filePath, fileName, prefix, mime, nonce string) (string, error) {
var html strings.Builder
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))
return html.String(), nil
}
func (t Format) Extensions() map[string]string {
return map[string]string{
`.swf`: `application/x-shockwave-flash`,
}
}
func (t Format) MediaType(extension string) string {
2023-09-14 18:37:22 -04:00
extensions := t.Extensions()
value, exists := extensions[extension]
if exists {
return value
}
2023-09-14 18:37:22 -04:00
return ""
}
func (t Format) Validate(filePath string) bool {
return true
}
func (t Format) Type() string {
return "embed"
}
func init() {
2023-09-29 15:36:11 -04:00
types.SupportedFormats.Register(Format{})
}