Increase default cache length to appease Lighthouse. For #2167

This commit is contained in:
Gabe Kangas 2022-12-26 21:50:54 -08:00
parent b55b7a54ea
commit 8f5914bfc8
No known key found for this signature in database
GPG Key ID: 4345B2060657F330

View File

@ -182,12 +182,14 @@ func GetCacheDurationSecondsForPath(filePath string) int {
filename := path.Base(filePath) filename := path.Base(filePath)
fileExtension := path.Ext(filePath) fileExtension := path.Ext(filePath)
defaultDaysCached := 30
if filename == "thumbnail.jpg" || filename == "preview.gif" { if filename == "thumbnail.jpg" || filename == "preview.gif" {
// Thumbnails & preview gif re-generate during live // Thumbnails & preview gif re-generate during live
return 20 return 20
} else if fileExtension == ".js" || fileExtension == ".css" { } else if fileExtension == ".js" || fileExtension == ".css" {
// Cache javascript & CSS // Cache javascript & CSS
return 60 * 60 * 24 * 7 return 60 * 60 * 24 * defaultDaysCached
} else if fileExtension == ".ts" || fileExtension == ".woff2" { } else if fileExtension == ".ts" || fileExtension == ".woff2" {
// Cache video segments as long as you want. They can't change. // Cache video segments as long as you want. They can't change.
// This matters most for local hosting of segments for recordings // This matters most for local hosting of segments for recordings
@ -196,11 +198,11 @@ func GetCacheDurationSecondsForPath(filePath string) int {
} else if fileExtension == ".m3u8" { } else if fileExtension == ".m3u8" {
return 0 return 0
} else if fileExtension == ".jpg" || fileExtension == ".png" || fileExtension == ".gif" || fileExtension == ".svg" { } else if fileExtension == ".jpg" || fileExtension == ".png" || fileExtension == ".gif" || fileExtension == ".svg" {
return 60 * 60 * 24 * 7 return 60 * 60 * 24 * defaultDaysCached
} }
// Default cache length in seconds // Default cache length in seconds
return 60 * 60 * 2 return 60 * 60 * 24 * 1 // For unknown types, cache for 1 day
} }
// IsValidURL will return if a URL string is a valid URL or not. // IsValidURL will return if a URL string is a valid URL or not.