mirror of
https://github.com/owncloud/android-library.git
synced 2025-06-07 16:06:08 +00:00
Create remote operation to register clients dynamically.
This commit is contained in:
parent
3b138e7c01
commit
f35f41688a
@ -0,0 +1,82 @@
|
||||
/* ownCloud Android Library is available under MIT license
|
||||
*
|
||||
* @author Abel García de Prada
|
||||
*
|
||||
* Copyright (C) 2021 ownCloud GmbH.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of this software and associated documentation files (the "Software"), to deal
|
||||
* in the Software without restriction, including without limitation the rights
|
||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
* copies of the Software, and to permit persons to whom the Software is
|
||||
* furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
|
||||
* BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
|
||||
* ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
||||
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
* THE SOFTWARE.
|
||||
*
|
||||
*/
|
||||
|
||||
package com.owncloud.android.lib.resources.oauth
|
||||
|
||||
import com.owncloud.android.lib.common.OwnCloudClient
|
||||
import com.owncloud.android.lib.common.http.HttpConstants
|
||||
import com.owncloud.android.lib.common.http.methods.nonwebdav.PostMethod
|
||||
import com.owncloud.android.lib.common.operations.RemoteOperation
|
||||
import com.owncloud.android.lib.common.operations.RemoteOperationResult
|
||||
import com.owncloud.android.lib.resources.oauth.params.ClientRegistrationParams
|
||||
import com.owncloud.android.lib.resources.oauth.responses.ClientRegistrationResponse
|
||||
import com.squareup.moshi.JsonAdapter
|
||||
import com.squareup.moshi.Moshi
|
||||
import timber.log.Timber
|
||||
import java.net.URL
|
||||
|
||||
class RegisterClientRemoteOperation(
|
||||
private val clientRegistrationParams: ClientRegistrationParams
|
||||
) : RemoteOperation<ClientRegistrationResponse>() {
|
||||
|
||||
override fun run(client: OwnCloudClient): RemoteOperationResult<ClientRegistrationResponse> {
|
||||
try {
|
||||
val requestBody = clientRegistrationParams.toRequestBody()
|
||||
|
||||
val postMethod = PostMethod(URL(clientRegistrationParams.registrationEndpoint), requestBody)
|
||||
|
||||
val status = client.executeHttpMethod(postMethod)
|
||||
|
||||
val responseBody = postMethod.getResponseBodyAsString()
|
||||
|
||||
if (status == HttpConstants.HTTP_CREATED && responseBody != null) {
|
||||
Timber.d("Successful response $responseBody")
|
||||
|
||||
// Parse the response
|
||||
val moshi: Moshi = Moshi.Builder().build()
|
||||
val jsonAdapter: JsonAdapter<ClientRegistrationResponse> =
|
||||
moshi.adapter(ClientRegistrationResponse::class.java)
|
||||
val clientRegistrationResponse: ClientRegistrationResponse? = jsonAdapter.fromJson(responseBody)
|
||||
Timber.d("Client registered and parsed to $clientRegistrationResponse")
|
||||
|
||||
return RemoteOperationResult<ClientRegistrationResponse>(RemoteOperationResult.ResultCode.OK).apply {
|
||||
data = clientRegistrationResponse
|
||||
}
|
||||
|
||||
} else {
|
||||
Timber.e("Failed response while registering a new client. Status code: $status; response message: $responseBody")
|
||||
return RemoteOperationResult<ClientRegistrationResponse>(postMethod)
|
||||
}
|
||||
|
||||
} catch (e: Exception) {
|
||||
Timber.e(e, "Exception while registering a new client.")
|
||||
return RemoteOperationResult<ClientRegistrationResponse>(e)
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
}
|
@ -0,0 +1,61 @@
|
||||
/* ownCloud Android Library is available under MIT license
|
||||
*
|
||||
* @author Abel García de Prada
|
||||
*
|
||||
* Copyright (C) 2021 ownCloud GmbH.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of this software and associated documentation files (the "Software"), to deal
|
||||
* in the Software without restriction, including without limitation the rights
|
||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
* copies of the Software, and to permit persons to whom the Software is
|
||||
* furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
|
||||
* BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
|
||||
* ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
||||
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
* THE SOFTWARE.
|
||||
*
|
||||
*/
|
||||
package com.owncloud.android.lib.resources.oauth.params
|
||||
|
||||
import com.owncloud.android.lib.common.http.HttpConstants.CONTENT_TYPE_JSON
|
||||
import okhttp3.MediaType.Companion.toMediaType
|
||||
import okhttp3.RequestBody
|
||||
import okhttp3.RequestBody.Companion.toRequestBody
|
||||
import org.json.JSONArray
|
||||
import org.json.JSONObject
|
||||
|
||||
data class ClientRegistrationParams(
|
||||
val registrationEndpoint: String,
|
||||
val clientName: String,
|
||||
val redirectUris: List<String>,
|
||||
val tokenEndpointAuthMethod: String,
|
||||
val applicationType: String
|
||||
) {
|
||||
fun toRequestBody(): RequestBody {
|
||||
val jsonObject = JSONObject().apply {
|
||||
put(PARAM_APPLICATION_TYPE, applicationType)
|
||||
put(PARAM_CLIENT_NAME, clientName)
|
||||
put(PARAM_REDIRECT_URIS, JSONArray(redirectUris))
|
||||
put(PARAM_TOKEN_ENDPOINT_AUTH_METHOD, tokenEndpointAuthMethod)
|
||||
}
|
||||
|
||||
val mediaType = CONTENT_TYPE_JSON.toMediaType()
|
||||
return jsonObject.toString().toRequestBody(mediaType)
|
||||
}
|
||||
|
||||
companion object {
|
||||
private const val PARAM_APPLICATION_TYPE = "application_type"
|
||||
private const val PARAM_CLIENT_NAME = "client_name"
|
||||
private const val PARAM_TOKEN_ENDPOINT_AUTH_METHOD = "token_endpoint_auth_method"
|
||||
private const val PARAM_REDIRECT_URIS = "redirect_uris"
|
||||
}
|
||||
}
|
@ -0,0 +1,42 @@
|
||||
/* ownCloud Android Library is available under MIT license
|
||||
*
|
||||
* @author Abel García de Prada
|
||||
*
|
||||
* Copyright (C) 2021 ownCloud GmbH.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of this software and associated documentation files (the "Software"), to deal
|
||||
* in the Software without restriction, including without limitation the rights
|
||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
* copies of the Software, and to permit persons to whom the Software is
|
||||
* furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
|
||||
* BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
|
||||
* ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
||||
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
* THE SOFTWARE.
|
||||
*
|
||||
*/
|
||||
package com.owncloud.android.lib.resources.oauth.responses
|
||||
|
||||
import com.squareup.moshi.Json
|
||||
import com.squareup.moshi.JsonClass
|
||||
|
||||
@JsonClass(generateAdapter = true)
|
||||
data class ClientRegistrationResponse(
|
||||
@Json(name = "client_id")
|
||||
val clientId: String,
|
||||
@Json(name = "client_secret")
|
||||
val clientSecret: String?,
|
||||
@Json(name = "client_id_issued_at")
|
||||
val clientIdIssuedAt: Int?,
|
||||
@Json(name = "client_secret_expires_at")
|
||||
val clientSecretExpiration: Int,
|
||||
)
|
@ -1,6 +1,6 @@
|
||||
/* ownCloud Android Library is available under MIT license
|
||||
*
|
||||
* Copyright (C) 2020 ownCloud GmbH.
|
||||
* Copyright (C) 2021 ownCloud GmbH.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of this software and associated documentation files (the "Software"), to deal
|
||||
@ -25,7 +25,9 @@ package com.owncloud.android.lib.resources.oauth.services
|
||||
|
||||
import com.owncloud.android.lib.common.OwnCloudClient
|
||||
import com.owncloud.android.lib.common.operations.RemoteOperationResult
|
||||
import com.owncloud.android.lib.resources.oauth.params.ClientRegistrationParams
|
||||
import com.owncloud.android.lib.resources.oauth.params.TokenRequestParams
|
||||
import com.owncloud.android.lib.resources.oauth.responses.ClientRegistrationResponse
|
||||
import com.owncloud.android.lib.resources.oauth.responses.OIDCDiscoveryResponse
|
||||
import com.owncloud.android.lib.resources.oauth.responses.TokenResponse
|
||||
|
||||
@ -38,4 +40,8 @@ interface OIDCService {
|
||||
tokenRequest: TokenRequestParams
|
||||
): RemoteOperationResult<TokenResponse>
|
||||
|
||||
fun registerClientWithRegistrationEndpoint(
|
||||
ownCloudClient: OwnCloudClient,
|
||||
clientRegistrationParams: ClientRegistrationParams
|
||||
): RemoteOperationResult<ClientRegistrationResponse>
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* ownCloud Android Library is available under MIT license
|
||||
*
|
||||
* Copyright (C) 2020 ownCloud GmbH.
|
||||
* Copyright (C) 2021 ownCloud GmbH.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of this software and associated documentation files (the "Software"), to deal
|
||||
@ -26,8 +26,11 @@ package com.owncloud.android.lib.resources.oauth.services.implementation
|
||||
import com.owncloud.android.lib.common.OwnCloudClient
|
||||
import com.owncloud.android.lib.common.operations.RemoteOperationResult
|
||||
import com.owncloud.android.lib.resources.oauth.GetOIDCDiscoveryRemoteOperation
|
||||
import com.owncloud.android.lib.resources.oauth.RegisterClientRemoteOperation
|
||||
import com.owncloud.android.lib.resources.oauth.TokenRequestRemoteOperation
|
||||
import com.owncloud.android.lib.resources.oauth.params.ClientRegistrationParams
|
||||
import com.owncloud.android.lib.resources.oauth.params.TokenRequestParams
|
||||
import com.owncloud.android.lib.resources.oauth.responses.ClientRegistrationResponse
|
||||
import com.owncloud.android.lib.resources.oauth.responses.OIDCDiscoveryResponse
|
||||
import com.owncloud.android.lib.resources.oauth.responses.TokenResponse
|
||||
import com.owncloud.android.lib.resources.oauth.services.OIDCService
|
||||
@ -45,4 +48,10 @@ class OCOIDCService : OIDCService {
|
||||
): RemoteOperationResult<TokenResponse> =
|
||||
TokenRequestRemoteOperation(tokenRequest).execute(ownCloudClient)
|
||||
|
||||
override fun registerClientWithRegistrationEndpoint(
|
||||
ownCloudClient: OwnCloudClient,
|
||||
clientRegistrationParams: ClientRegistrationParams
|
||||
): RemoteOperationResult<ClientRegistrationResponse> =
|
||||
RegisterClientRemoteOperation(clientRegistrationParams).execute(ownCloudClient)
|
||||
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user