|
| 1 | +package server.plugins |
| 2 | + |
| 3 | +import io.ktor.http.CacheControl |
| 4 | +import io.ktor.http.HttpHeaders |
| 5 | +import io.ktor.http.content.CachingOptions |
| 6 | +import io.ktor.server.http.content.CachingOptions |
| 7 | +import io.ktor.server.plugins.cachingheaders.CachingHeadersConfig |
| 8 | +import java.time.ZonedDateTime |
| 9 | +import server.response.FileSource |
| 10 | +import server.response.FileUUID |
| 11 | +import server.response.ResourceId |
| 12 | +import server.response.ResourceType |
| 13 | + |
| 14 | +/** |
| 15 | + * Configures the maximum age in seconds that file requests should be cached for. |
| 16 | + * |
| 17 | + * Default: `24 hours` |
| 18 | + */ |
| 19 | +private const val FILE_MAX_AGE = 24 * 60 * 60 |
| 20 | + |
| 21 | +/** |
| 22 | + * Configures the maximum age in seconds that data requests should be cached for. |
| 23 | + * |
| 24 | + * Default: `10 minutes` |
| 25 | + */ |
| 26 | +private const val DATA_MAX_AGE = 10 * 60 |
| 27 | + |
| 28 | +/** |
| 29 | + * Generates [CachingOptions] for caching file requests. |
| 30 | + * |
| 31 | + * @param maxAge The maximum age in seconds that file requests should be cached for. |
| 32 | + */ |
| 33 | +private fun cachingOptions(maxAge: Int): CachingOptions { |
| 34 | + return CachingOptions( |
| 35 | + cacheControl = CacheControl.MaxAge(maxAge), |
| 36 | + expires = ZonedDateTime.now().plusSeconds(maxAge.toLong()) |
| 37 | + ) |
| 38 | +} |
| 39 | + |
| 40 | +fun CachingHeadersConfig.configure() { |
| 41 | + options { call, outgoingContent -> |
| 42 | + val headers = call.response.headers |
| 43 | + |
| 44 | + val fileUUID = headers[HttpHeaders.FileUUID] |
| 45 | + val fileSource = headers[HttpHeaders.FileSource] |
| 46 | + val resourceType = headers[HttpHeaders.ResourceType] |
| 47 | + val resourceId = headers[HttpHeaders.ResourceId]?.toIntOrNull() |
| 48 | + |
| 49 | + if (fileUUID != null && fileSource != null) { |
| 50 | + return@options cachingOptions(FILE_MAX_AGE) |
| 51 | + } else if (resourceType != null && resourceId != null) { |
| 52 | + return@options cachingOptions(DATA_MAX_AGE) |
| 53 | + } |
| 54 | + |
| 55 | + null |
| 56 | + } |
| 57 | +} |
0 commit comments