Fix HTTP hanging and redirects

This commit is contained in:
TheKodeToad 2024-09-04 20:41:45 +01:00
parent 274c59f979
commit 022d170c0a
No known key found for this signature in database
GPG key ID: 5E39D70B4C93C38E
2 changed files with 10 additions and 9 deletions

View file

@ -46,7 +46,8 @@ gradlePlugin {
tasks.jar { tasks.jar {
manifest { manifest {
attributes("Implementation-Version" to version, attributes(
"Implementation-Version" to version,
"Implementation-Date" to Date(), "Implementation-Date" to Date(),
"Implementation-Name" to project.name "Implementation-Name" to project.name
) )

View file

@ -17,6 +17,8 @@ import kotlin.io.path.notExists
object CachingHttpClient { object CachingHttpClient {
private val CLIENT = HttpClient.newBuilder().followRedirects(HttpClient.Redirect.NORMAL).build()
fun downloadTo(uri: URI, path: Path, allowOverwrite: Boolean) { fun downloadTo(uri: URI, path: Path, allowOverwrite: Boolean) {
if (allowOverwrite || path.notExists()) { if (allowOverwrite || path.notExists()) {
path.createParentDirectories() path.createParentDirectories()
@ -39,15 +41,13 @@ object CachingHttpClient {
} }
fun getUncached(uri: URI): InputStream { fun getUncached(uri: URI): InputStream {
HttpClient.newHttpClient().use { return CLIENT.send(
return it.send(
HttpRequest.newBuilder().uri(uri).header( HttpRequest.newBuilder().uri(uri).header(
"User-Agent", "User-Agent",
"FrogMC Phytotelma/" + CachingHttpClient.javaClass.`package`.implementationVersion "FrogMC Phytotelma/" + CachingHttpClient.javaClass.`package`.implementationVersion
).build(), BodyHandlers.ofInputStream() ).build(), BodyHandlers.ofInputStream()
).body() ).body()
} }
}
private fun getCacheFile(uri: URI): Path { private fun getCacheFile(uri: URI): Path {
val path = PhytotelmaPlugin.globalCacheDir.resolve("httpCache") val path = PhytotelmaPlugin.globalCacheDir.resolve("httpCache")