summaryrefslogtreecommitdiff
path: root/adservices/service-core/java/com/android/adservices/service/consent/AppConsentForRStorageManager.java
blob: 259b57cbde2baa7f5c7f90eda19f92d5c069776e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
/*
 * Copyright (C) 2023 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 com.android.adservices.service.consent;

import android.os.Build;

import androidx.annotation.RequiresApi;

import com.android.adservices.data.common.BooleanFileDatastore;
import com.android.adservices.data.consent.AppConsentDao;
import com.android.adservices.service.extdata.AdServicesExtDataStorageServiceManager;
import com.android.adservices.service.ui.data.UxStatesDao;

import com.google.common.collect.ImmutableList;

import java.io.IOException;

/**
 * AppConsentStorageManager to handle user's consent related Apis in Android R.
 *
 * <p>It shares similarities with AppConsentStorageManager's logic, but adds additional storage
 * functionality specific to AdServicesExtDataStorageServiceManager.
 *
 * <p>Used in PPAPI_AND_ADEXT_SERVICE
 */
@RequiresApi(Build.VERSION_CODES.S)
public class AppConsentForRStorageManager extends AppConsentStorageManager {

    private final AdServicesExtDataStorageServiceManager mAdExtDataManager;
    /**
     * Constructor of AppConsentForRStorageManager
     *
     * @param datastore stores consent
     * @param appConsentDao mostly used by FLEDGE
     * @param uxStatesDao stores ux related data
     */
    public AppConsentForRStorageManager(
            BooleanFileDatastore datastore,
            AppConsentDao appConsentDao,
            UxStatesDao uxStatesDao,
            AdServicesExtDataStorageServiceManager adExtDataManager) {
        super(datastore, appConsentDao, uxStatesDao);
        this.mAdExtDataManager = adExtDataManager;
    }

    /** Clear ConsentForUninstalledApp, not support for Measurement. */
    @Override
    public void clearAllAppConsentData() {
        // PPAPI_AND_ADEXT_SERVICE is only set on R which supports only
        // Measurement.
        throw new IllegalStateException(
                getAdExtExceptionMessage(/* illegalAction= */ "reset consent for apps"));
    }

    /** Clear ConsentForUninstalledApp, not support for Measurement. */
    @Override
    public void clearConsentForUninstalledApp(String packageName) {
        throw new IllegalStateException(
                getAdExtExceptionMessage(/* illegalAction= */ "clear consent for uninstalled app"));
    }

    /** Clear ConsentForUninstalledApp, not support for Measurement. */
    @Override
    public void clearConsentForUninstalledApp(String packageName, int packageUid) {
        throw new IllegalStateException(
                getAdExtExceptionMessage(/* illegalAction= */ "clear consent for uninstalled app"));
    }

    /** Clear KnownAppsWithConsent flag, not support for Measurement. */
    @Override
    public void clearKnownAppsWithConsent() {
        // PPAPI_AND_ADEXT_SERVICE is only set on R which supports only
        // Measurement.
        throw new IllegalStateException(
                getAdExtExceptionMessage(/* illegalAction= */ "reset apps"));
    }

    /** Gets getAppsWithRevokedConsent flag, not support for Measurement. */
    @Override
    public ImmutableList<String> getAppsWithRevokedConsent() {
        // PPAPI_AND_ADEXT_SERVICE is only set on R which supports only
        // Measurement.
        throw new IllegalStateException(
                getAdExtExceptionMessage(/* illegalAction= */ "fetch apps with revoked consent"));
    }

    /** Gets Consent by api flag. */
    @Override
    public AdServicesApiConsent getConsent(AdServicesApiType apiType) {
        if (apiType == AdServicesApiType.MEASUREMENTS) {
            return AdServicesApiConsent.getConsent(mAdExtDataManager.getMsmtConsent());
        }
        return AdServicesApiConsent.REVOKED;
    }

    /** Gets getKnownAppsWithConsent flag, not support for Measurement. */
    @Override
    public ImmutableList<String> getKnownAppsWithConsent() throws IOException {
        // PPAPI_AND_ADEXT_SERVICE is only set on R which supports only
        // Measurement.
        throw new IllegalStateException(
                getAdExtExceptionMessage(/* illegalAction= */ "fetch apps with consent"));
    }

    /** Gets UserManualInteraction flag. */
    @Override
    public int getUserManualInteractionWithConsent() {
        return mAdExtDataManager.getManualInteractionWithConsentStatus();
    }

    /** Gets isAdultAccount flag. */
    @Override
    public boolean isAdultAccount() {
        return mAdExtDataManager.getIsAdultAccount();
    }

    /** Gets isConsentRevokedForApp flag, not support for Measurement. */
    @Override
    public boolean isConsentRevokedForApp(String packageName) {
        // PPAPI_AND_ADEXT_SERVICE is only set on R which supports only
        // Measurement.
        throw new IllegalStateException(
                getAdExtExceptionMessage(
                        /* illegalAction= */ "check if consent has been revoked for" + " app"));
    }

    /** Gets isU18 account flag. */
    @Override
    public boolean isU18Account() {
        return mAdExtDataManager.getIsU18Account();
    }

    /** Records GA notification displayed. */
    @Override
    public void recordGaUxNotificationDisplayed(boolean wasGaUxDisplayed) {
        // PPAPI_AND_ADEXT_SERVICE is only set on R which should never show
        // GA UX.
        throw new IllegalStateException(
                getAdExtExceptionMessage(
                        /* illegalAction= */ "store if GA notification was displayed"));
    }

    /** Records notification displayed. */
    @Override
    public void recordNotificationDisplayed(boolean wasNotificationDisplayed) {
        // PPAPI_AND_ADEXT_SERVICE is only set on R which should never show
        // Beta UX.
        throw new IllegalStateException(
                getAdExtExceptionMessage(/* illegalAction= */ "store if beta notif was displayed"));
    }

    /** Records user manual interaction bit. */
    @Override
    public void recordUserManualInteractionWithConsent(int interaction) {
        mAdExtDataManager.setManualInteractionWithConsentStatus(interaction);
    }

    /** Sets consent by api type. */
    @Override
    public void setAdultAccount(boolean isAdultAccount) {
        mAdExtDataManager.setIsAdultAccount(isAdultAccount);
    }

    /** Sets consent by api type. */
    @Override
    public void setConsent(AdServicesApiType apiType, boolean isGiven) throws IOException {
        if (apiType == AdServicesApiType.ALL_API) {
            super.setConsent(apiType, isGiven);
            return;
        }
        // PPAPI_AND_ADEXT_SERVICE is only set on R which supports only
        // Measurement. There should never be a call to set consent for other PPAPIs.
        if (apiType != AdServicesApiType.MEASUREMENTS) {
            throw new IllegalStateException(
                    getAdExtExceptionMessage(
                            /* illegalAction= */ "set consent for a non-msmt API"));
        }
        mAdExtDataManager.setMsmtConsent(isGiven);
    }

    /**
     * setConsentForApp.
     *
     * <p>PPAPI_AND_ADEXT_SERVICE is only set on R which only supports Measurement
     */
    @Override
    public void setConsentForApp(String packageName, boolean isConsentRevoked) {
        throw new IllegalStateException(
                getAdExtExceptionMessage(/* illegalAction= */ "revoke consent for app"));
    }

    /**
     * SetConsentForAppIfNew.
     *
     * <p>PPAPI_AND_ADEXT_SERVICE is only set on R which only supports Measurement
     */
    @Override
    public boolean setConsentForAppIfNew(String packageName, boolean isConsentRevoked) {
        throw new IllegalStateException(
                getAdExtExceptionMessage(
                        /* illegalAction= */ "check if consent has been revoked for" + " app"));
    }

    @Override
    public void recordDefaultConsent(AdServicesApiType apiType, boolean defaultConsent)
            throws IOException {
        if (apiType == AdServicesApiType.MEASUREMENTS) {
            super.recordDefaultConsent(apiType, defaultConsent);
        } else {
            throw new IllegalStateException(
                    getAdExtExceptionMessage(
                            /* illegalAction= */ "record default consent for "
                                    + apiType.toString()));
        }
    }

    /** Stores isU18Account bit in AdExtData. */
    @Override
    public void setU18Account(boolean isU18Account) {
        mAdExtDataManager.setIsU18Account(isU18Account);
    }

    /** Stores U18 notification bit in AdExtData. */
    @Override
    public void setU18NotificationDisplayed(boolean wasU18NotificationDisplayed) {
        mAdExtDataManager.setNotificationDisplayed(wasU18NotificationDisplayed);
    }

    /** GA UX is never shown on R, so this info is not stored. */
    @Override
    public boolean wasGaUxNotificationDisplayed() {
        return false;
    }

    /** Beta UX is never shown on R, so this info is not stored. */
    @Override
    public boolean wasNotificationDisplayed() {
        return false;
    }

    /** Android R only U18 notification is allowed to be displayed. */
    @Override
    public boolean wasU18NotificationDisplayed() {
        return mAdExtDataManager.getNotificationDisplayed();
    }

    private static String getAdExtExceptionMessage(String illegalAction) {
        return String.format(
                "Attempting to %s using PPAPI_AND_ADEXT_SERVICE consent source of truth!",
                illegalAction);
    }
}