|
| 1 | +package server.endpoints.files |
| 2 | + |
| 3 | +import io.ktor.server.plugins.origin |
| 4 | +import io.ktor.server.routing.RoutingContext |
| 5 | +import io.ktor.server.util.getValue |
| 6 | +import java.io.FileNotFoundException |
| 7 | +import java.nio.file.Files |
| 8 | +import java.security.MessageDigest |
| 9 | +import kotlinx.coroutines.Dispatchers |
| 10 | +import kotlinx.coroutines.withContext |
| 11 | +import server.endpoints.EndpointBase |
| 12 | +import server.error.Errors |
| 13 | +import server.response.files.RequestFilesResponseData |
| 14 | +import server.response.respondFailure |
| 15 | +import server.response.respondSuccess |
| 16 | +import storage.HashUtils |
| 17 | +import storage.MessageDigestAlgorithm |
| 18 | +import storage.Storage |
| 19 | + |
| 20 | +object RequestFilesEndpoint : EndpointBase("/files/{uuids}") { |
| 21 | + private const val DEFAULT_HTTP_PORT = 80 |
| 22 | + |
| 23 | + private val digest = MessageDigest.getInstance(MessageDigestAlgorithm.SHA_256) |
| 24 | + |
| 25 | + private suspend fun RoutingContext.getDataFor(uuid: String): RequestFilesResponseData.Data { |
| 26 | + val file = Storage.find(uuid) ?: throw FileNotFoundException("Could not find file with uuid $uuid") |
| 27 | + val downloadAddress = call.request.origin.let { p -> |
| 28 | + val port = p.serverPort.takeIf { it != DEFAULT_HTTP_PORT }?.let { ":$it" } ?: "" |
| 29 | + "${p.scheme}://${p.serverHost}$port/download/$uuid" |
| 30 | + } |
| 31 | + val size = withContext(Dispatchers.IO) { Files.size(file.toPath()) } |
| 32 | + |
| 33 | + return RequestFilesResponseData.Data( |
| 34 | + uuid = uuid, |
| 35 | + hash = HashUtils.getCheckSumFromFile(digest, file), |
| 36 | + filename = file.name, |
| 37 | + download = downloadAddress, |
| 38 | + size = size |
| 39 | + ) |
| 40 | + } |
| 41 | + |
| 42 | + override suspend fun RoutingContext.endpoint() { |
| 43 | + val uuids: String by call.parameters |
| 44 | + val list = uuids.split(",") |
| 45 | + |
| 46 | + // It's impossible that "list" has size 0 |
| 47 | + try { |
| 48 | + respondSuccess( |
| 49 | + data = if (list.size <= 1) { |
| 50 | + RequestFilesResponseData( |
| 51 | + listOf(getDataFor(uuids)) |
| 52 | + ) |
| 53 | + } else { |
| 54 | + RequestFilesResponseData( |
| 55 | + list.map { getDataFor(it) } |
| 56 | + ) |
| 57 | + } |
| 58 | + ) |
| 59 | + } catch (_: FileNotFoundException) { |
| 60 | + respondFailure(Errors.FileNotFound) |
| 61 | + } |
| 62 | + } |
| 63 | +} |
0 commit comments