[go: nahoru, domu]

blob: 18ebf35e2a78157b413bbf69c99517c1b36fe91e [file] [log] [blame]
/*
* Copyright (C) 2022 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package androidx.health.connect.client
import android.os.Build
import androidx.activity.result.contract.ActivityResultContract
import androidx.annotation.RestrictTo
import androidx.health.connect.client.HealthConnectClient.Companion.DEFAULT_PROVIDER_PACKAGE_NAME
import androidx.health.connect.client.permission.HealthDataRequestPermissionsInternal
import androidx.health.connect.client.permission.HealthPermission
import androidx.health.connect.client.permission.platform.HealthDataRequestPermissionsUpsideDownCake
@JvmDefaultWithCompatibility
/** Interface for operations related to permissions. */
interface PermissionController {
/**
* Returns a set of all health permissions granted by the user to the calling app.
*
* @return set of granted permissions.
* @throws android.os.RemoteException For any IPC transportation failures.
* @throws java.io.IOException For any disk I/O issues.
* @throws IllegalStateException If service is not available.
* @sample androidx.health.connect.client.samples.GetPermissions
*/
suspend fun getGrantedPermissions(): Set<String>
/**
* Revokes all previously granted [HealthPermission] by the user to the calling app.
*
* @throws android.os.RemoteException For any IPC transportation failures.
* @throws java.io.IOException For any disk I/O issues.
* @throws IllegalStateException If service is not available.
*/
suspend fun revokeAllPermissions()
companion object {
@JvmStatic
@JvmOverloads
@RestrictTo(RestrictTo.Scope.LIBRARY)
fun createRequestPermissionResultContractLegacy(
providerPackageName: String = DEFAULT_PROVIDER_PACKAGE_NAME
): ActivityResultContract<Set<String>, Set<String>> {
return HealthDataRequestPermissionsInternal(providerPackageName = providerPackageName)
}
/**
* Creates an [ActivityResultContract] to request Health permissions.
*
* @param providerPackageName Optional provider package name to request health permissions
* from.
* @sample androidx.health.connect.client.samples.RequestPermission
* @see androidx.activity.ComponentActivity.registerForActivityResult
*/
@JvmStatic
@JvmOverloads
fun createRequestPermissionResultContract(
providerPackageName: String = DEFAULT_PROVIDER_PACKAGE_NAME
): ActivityResultContract<Set<String>, Set<String>> {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.UPSIDE_DOWN_CAKE) {
return HealthDataRequestPermissionsUpsideDownCake()
}
return HealthDataRequestPermissionsInternal(providerPackageName = providerPackageName)
}
}
}