mangadex_at_home/src/main/kotlin/mdnet/base/ServerHandler.kt

133 lines
4.7 KiB
Kotlin
Raw Normal View History

2020-06-22 17:02:36 +00:00
/*
Mangadex@Home
Copyright (c) 2020, MangaDex Network
This file is part of MangaDex@Home.
MangaDex@Home is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
MangaDex@Home is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this MangaDex@Home. If not, see <http://www.gnu.org/licenses/>.
*/
package mdnet.base
import com.fasterxml.jackson.databind.DeserializationFeature
import com.fasterxml.jackson.module.kotlin.KotlinModule
2020-08-03 14:51:30 +00:00
import java.net.InetAddress
2020-07-02 16:06:32 +00:00
import mdnet.base.ServerHandlerJackson.auto
import mdnet.base.settings.DevSettings
import mdnet.base.settings.RemoteSettings
import mdnet.base.settings.ServerSettings
2020-08-03 14:51:30 +00:00
import org.apache.http.client.config.RequestConfig
import org.apache.http.impl.client.HttpClients
2020-08-22 16:08:09 +00:00
import org.http4k.client.Apache4Client
import org.http4k.core.Body
import org.http4k.core.Method
import org.http4k.core.Request
import org.http4k.format.ConfigurableJackson
import org.http4k.format.asConfigurable
import org.http4k.format.withStandardMappings
import org.slf4j.LoggerFactory
2020-07-02 21:24:12 +00:00
object ServerHandlerJackson : ConfigurableJackson(
KotlinModule()
.asConfigurable()
.withStandardMappings()
.done()
.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false)
)
class ServerHandler(private val serverSettings: ServerSettings, private val devSettings: DevSettings, private val maxCacheSizeInMebibytes: Long) {
2020-08-22 16:08:09 +00:00
private val client = Apache4Client(client = HttpClients.custom()
2020-08-03 14:51:30 +00:00
.setDefaultRequestConfig(
RequestConfig.custom()
.apply {
if (serverSettings.clientHostname != "0.0.0.0") {
setLocalAddress(InetAddress.getByName(serverSettings.clientHostname))
2020-08-03 14:51:30 +00:00
}
}
.build())
.build())
fun logoutFromControl(): Boolean {
2020-07-04 19:39:11 +00:00
LOGGER.info { "Disconnecting from the control server" }
val params = mapOf<String, Any>(
"secret" to serverSettings.clientSecret
)
2020-07-02 16:02:40 +00:00
val request = STRING_ANY_MAP_LENS(params, Request(Method.POST, getServerAddress() + "stop"))
val response = client(request)
return response.status.successful
}
private fun getPingParams(tlsCreatedAt: String? = null): Map<String, Any> =
mapOf<String, Any>(
"secret" to serverSettings.clientSecret,
"port" to let {
if (serverSettings.clientExternalPort != 0) {
serverSettings.clientExternalPort
} else {
serverSettings.clientPort
}
},
"disk_space" to maxCacheSizeInMebibytes * 1024 * 1024,
"network_speed" to serverSettings.maxKilobitsPerSecond * 1000 / 8,
"build_version" to Constants.CLIENT_BUILD
).let {
if (tlsCreatedAt != null) {
it.plus("tls_created_at" to tlsCreatedAt)
} else {
it
}
}
fun loginToControl(): RemoteSettings? {
2020-07-04 19:39:11 +00:00
LOGGER.info { "Connecting to the control server" }
2020-07-02 16:02:40 +00:00
val request = STRING_ANY_MAP_LENS(getPingParams(), Request(Method.POST, getServerAddress() + "ping"))
val response = client(request)
return if (response.status.successful) {
2020-07-02 21:54:24 +00:00
SERVER_SETTINGS_LENS(response)
} else {
null
}
}
fun pingControl(old: RemoteSettings): RemoteSettings? {
2020-07-04 19:39:11 +00:00
LOGGER.info { "Pinging the control server" }
2020-07-02 16:02:40 +00:00
val request = STRING_ANY_MAP_LENS(getPingParams(old.tls!!.createdAt), Request(Method.POST, getServerAddress() + "ping"))
val response = client(request)
return if (response.status.successful) {
SERVER_SETTINGS_LENS(response)
} else {
null
}
}
2020-07-02 16:02:40 +00:00
private fun getServerAddress(): String {
return if (!devSettings.isDev)
2020-07-02 16:02:40 +00:00
SERVER_ADDRESS
else
SERVER_ADDRESS_DEV
}
companion object {
private val LOGGER = LoggerFactory.getLogger(ServerHandler::class.java)
private val STRING_ANY_MAP_LENS = Body.auto<Map<String, Any>>().toLens()
private val SERVER_SETTINGS_LENS = Body.auto<RemoteSettings>().toLens()
2020-11-08 06:34:17 +00:00
private const val SERVER_ADDRESS = "http://fakemdnet/"
2020-07-02 21:26:05 +00:00
private const val SERVER_ADDRESS_DEV = "https://mangadex-test.net/"
}
}