|
|
|
@ -15,77 +15,66 @@ import org.session.libsignal.utilities.logging.Log
|
|
|
|
|
|
|
|
|
|
object FileServerAPIV2 {
|
|
|
|
|
|
|
|
|
|
const val DEFAULT_SERVER = "http://88.99.175.227"
|
|
|
|
|
private const val DEFAULT_SERVER_PUBLIC_KEY = "7cb31905b55cd5580c686911debf672577b3fb0bff81df4ce2d5c4cb3a7aaa69"
|
|
|
|
|
const val DEFAULT_SERVER = "http://88.99.175.227"
|
|
|
|
|
|
|
|
|
|
sealed class Error : Exception() {
|
|
|
|
|
object PARSING_FAILED : Error()
|
|
|
|
|
object INVALID_URL : Error()
|
|
|
|
|
|
|
|
|
|
fun errorDescription() = when (this) {
|
|
|
|
|
PARSING_FAILED -> "Invalid response."
|
|
|
|
|
INVALID_URL -> "Invalid URL."
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
sealed class Error(message: String) : Exception(message) {
|
|
|
|
|
object ParsingFailed : Error("Invalid response.")
|
|
|
|
|
object InvalidURL : Error("Invalid URL.")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
data class Request(
|
|
|
|
|
val verb: HTTP.Verb,
|
|
|
|
|
val endpoint: String,
|
|
|
|
|
val queryParameters: Map<String, String> = mapOf(),
|
|
|
|
|
val parameters: Any? = null,
|
|
|
|
|
val headers: Map<String, String> = mapOf(),
|
|
|
|
|
// Always `true` under normal circumstances. You might want to disable
|
|
|
|
|
// this when running over Lokinet.
|
|
|
|
|
val useOnionRouting: Boolean = true
|
|
|
|
|
val verb: HTTP.Verb,
|
|
|
|
|
val endpoint: String,
|
|
|
|
|
val queryParameters: Map<String, String> = mapOf(),
|
|
|
|
|
val parameters: Any? = null,
|
|
|
|
|
val headers: Map<String, String> = mapOf(),
|
|
|
|
|
/**
|
|
|
|
|
* Always `true` under normal circumstances. You might want to disable
|
|
|
|
|
* this when running over Lokinet.
|
|
|
|
|
*/
|
|
|
|
|
val useOnionRouting: Boolean = true
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
private fun createBody(parameters: Any?): RequestBody? {
|
|
|
|
|
if (parameters == null) return null
|
|
|
|
|
|
|
|
|
|
val parametersAsJSON = JsonUtil.toJson(parameters)
|
|
|
|
|
return RequestBody.create(MediaType.get("application/json"), parametersAsJSON)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private fun send(request: Request): Promise<Map<*, *>, Exception> {
|
|
|
|
|
val parsed = HttpUrl.parse(DEFAULT_SERVER) ?: return Promise.ofFail(OpenGroupAPIV2.Error.InvalidURL)
|
|
|
|
|
val url = HttpUrl.parse(DEFAULT_SERVER) ?: return Promise.ofFail(OpenGroupAPIV2.Error.InvalidURL)
|
|
|
|
|
val urlBuilder = HttpUrl.Builder()
|
|
|
|
|
.scheme(parsed.scheme())
|
|
|
|
|
.host(parsed.host())
|
|
|
|
|
.port(parsed.port())
|
|
|
|
|
.addPathSegments(request.endpoint)
|
|
|
|
|
|
|
|
|
|
.scheme(url.scheme())
|
|
|
|
|
.host(url.host())
|
|
|
|
|
.port(url.port())
|
|
|
|
|
.addPathSegments(request.endpoint)
|
|
|
|
|
if (request.verb == HTTP.Verb.GET) {
|
|
|
|
|
for ((key, value) in request.queryParameters) {
|
|
|
|
|
urlBuilder.addQueryParameter(key, value)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
val requestBuilder = okhttp3.Request.Builder()
|
|
|
|
|
.url(urlBuilder.build())
|
|
|
|
|
.headers(Headers.of(request.headers))
|
|
|
|
|
.url(urlBuilder.build())
|
|
|
|
|
.headers(Headers.of(request.headers))
|
|
|
|
|
when (request.verb) {
|
|
|
|
|
HTTP.Verb.GET -> requestBuilder.get()
|
|
|
|
|
HTTP.Verb.PUT -> requestBuilder.put(createBody(request.parameters)!!)
|
|
|
|
|
HTTP.Verb.POST -> requestBuilder.post(createBody(request.parameters)!!)
|
|
|
|
|
HTTP.Verb.DELETE -> requestBuilder.delete(createBody(request.parameters))
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (request.useOnionRouting) {
|
|
|
|
|
return OnionRequestAPI.sendOnionRequest(requestBuilder.build(), DEFAULT_SERVER, DEFAULT_SERVER_PUBLIC_KEY)
|
|
|
|
|
.fail { e ->
|
|
|
|
|
Log.e("Loki", "FileServerV2 failed with error",e)
|
|
|
|
|
}
|
|
|
|
|
return OnionRequestAPI.sendOnionRequest(requestBuilder.build(), DEFAULT_SERVER, DEFAULT_SERVER_PUBLIC_KEY).fail { e ->
|
|
|
|
|
Log.e("Loki", "File server request failed.", e)
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
return Promise.ofFail(IllegalStateException("It's currently not allowed to send non onion routed requests."))
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// region Sending
|
|
|
|
|
fun upload(file: ByteArray): Promise<Long, Exception> {
|
|
|
|
|
val base64EncodedFile = Base64.encodeBytes(file)
|
|
|
|
|
val parameters = mapOf("file" to base64EncodedFile)
|
|
|
|
|
val parameters = mapOf( "file" to base64EncodedFile )
|
|
|
|
|
val request = Request(verb = HTTP.Verb.POST, endpoint = "files", parameters = parameters)
|
|
|
|
|
return send(request).map { json ->
|
|
|
|
|
json["result"] as? Long ?: throw OpenGroupAPIV2.Error.ParsingFailed
|
|
|
|
@ -95,9 +84,8 @@ object FileServerAPIV2 {
|
|
|
|
|
fun download(file: Long): Promise<ByteArray, Exception> {
|
|
|
|
|
val request = Request(verb = HTTP.Verb.GET, endpoint = "files/$file")
|
|
|
|
|
return send(request).map { json ->
|
|
|
|
|
val base64EncodedFile = json["result"] as? String ?: throw Error.PARSING_FAILED
|
|
|
|
|
Base64.decode(base64EncodedFile) ?: throw Error.PARSING_FAILED
|
|
|
|
|
val base64EncodedFile = json["result"] as? String ?: throw Error.ParsingFailed
|
|
|
|
|
Base64.decode(base64EncodedFile) ?: throw Error.ParsingFailed
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|