2023-09-11 15:43:09 +00:00
/ *
Copyright © 2023 Seednode < seednode @ seedno . de >
* /
2023-09-13 04:35:17 +00:00
package video
2023-09-11 15:43:09 +00:00
import (
"fmt"
2023-09-14 22:37:22 +00:00
"path/filepath"
2023-09-12 21:32:19 +00:00
"strings"
2023-09-13 04:35:17 +00:00
"seedno.de/seednode/roulette/types"
2023-09-11 15:43:09 +00:00
)
2023-09-13 04:35:17 +00:00
type Format struct { }
2023-09-13 01:56:39 +00:00
2023-09-13 04:35:17 +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;} ` )
css . WriteString ( ` video { margin:auto;display:block;max-width:97%;max-height:97%; ` )
css . WriteString ( ` object-fit:scale-down;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);} ` )
return css . String ( )
}
2023-09-14 04:24:29 +00:00
func ( t Format ) Title ( rootUrl , fileUri , filePath , fileName , prefix , mime string ) string {
2023-09-13 01:56:39 +00:00
return fmt . Sprintf ( ` <title>%s</title> ` , fileName )
}
2023-09-14 04:24:29 +00:00
func ( t Format ) Body ( rootUrl , fileUri , filePath , fileName , prefix , mime string ) string {
return fmt . Sprintf ( ` <a href="%s"><video controls autoplay loop preload="auto"><source src="%s" type="%s" alt="Roulette selected: %s">Your browser does not support the video tag.</video></a> ` ,
rootUrl ,
2023-09-13 01:56:39 +00:00
fileUri ,
mime ,
fileName )
}
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 {
` .mp4 ` : ` video/mp4 ` ,
` .ogm ` : ` video/ogg ` ,
` .ogv ` : ` video/ogg ` ,
` .webm ` : ` video/webm ` ,
2023-09-11 15:43:09 +00:00
}
}
2023-09-13 01:56:39 +00:00
2023-09-14 22:37:22 +00:00
func ( t Format ) MimeType ( path string ) string {
extensions := t . Extensions ( )
extension := filepath . Ext ( path )
value , exists := extensions [ extension ]
if exists {
return value
2023-09-13 01:56:39 +00:00
}
2023-09-14 22:37:22 +00:00
return ""
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-13 14:26:15 +00:00
func New ( ) Format {
return Format { }
}
2023-09-13 04:35:17 +00:00
2023-09-13 14:26:15 +00:00
func init ( ) {
types . SupportedFormats . Register ( New ( ) )
2023-09-13 04:35:17 +00:00
}