Skip to content

Commit c571999

Browse files
authored
Configured caching headers (#179)
Signed-off-by: Arnau Mora Gras <[email protected]>
1 parent fd38cd0 commit c571999

File tree

4 files changed

+61
-0
lines changed

4 files changed

+61
-0
lines changed

build.gradle.kts

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ repositories {
1515

1616
dependencies {
1717
// Ktor dependencies
18+
implementation(libs.ktor.server.cachingHeaders)
1819
implementation(libs.ktor.server.conditionalHeaders)
1920
implementation(libs.ktor.server.contentNegotiation)
2021
implementation(libs.ktor.server.core)

gradle/libs.versions.toml

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ ktor-client-contentNegotiation = { module = "io.ktor:ktor-client-content-negotia
2121
ktor-client-core = { module = "io.ktor:ktor-client-core", version.ref = "ktor" }
2222
ktor-client-cio = { module = "io.ktor:ktor-client-cio", version.ref = "ktor" }
2323
ktor-serializationJson = { module = "io.ktor:ktor-serialization-kotlinx-json", version.ref = "ktor" }
24+
ktor-server-cachingHeaders = { module = "io.ktor:ktor-server-caching-headers", version.ref = "ktor" }
2425
ktor-server-conditionalHeaders = { module = "io.ktor:ktor-server-conditional-headers", version.ref = "ktor" }
2526
ktor-server-contentNegotiation = { module = "io.ktor:ktor-server-content-negotiation", version.ref = "ktor" }
2627
ktor-server-core = { module = "io.ktor:ktor-server-core", version.ref = "ktor" }
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
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+
}

src/main/kotlin/server/plugins/Plugins.kt

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import database.serialization.Json
44
import io.ktor.serialization.kotlinx.json.json
55
import io.ktor.server.application.Application
66
import io.ktor.server.application.install
7+
import io.ktor.server.plugins.cachingheaders.CachingHeaders
78
import io.ktor.server.plugins.conditionalheaders.ConditionalHeaders
89
import io.ktor.server.plugins.contentnegotiation.ContentNegotiation
910
import io.ktor.server.plugins.statuspages.StatusPages
@@ -17,6 +18,7 @@ import io.ktor.server.plugins.statuspages.StatusPages
1718
* @receiver The application on which this method is called.
1819
*/
1920
fun Application.installPlugins() {
21+
install(CachingHeaders) { configure() }
2022
install(ConditionalHeaders) { configure() }
2123
install(ContentNegotiation) { json(Json) }
2224
install(StatusPages) { configureStatusPages() }

0 commit comments

Comments
 (0)