/*
 * 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.documentsui;

import android.content.Intent;
import android.graphics.drawable.Drawable;
import android.os.Build;
import android.util.Log;

import androidx.annotation.RequiresApi;

import com.android.documentsui.base.UserId;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

@RequiresApi(Build.VERSION_CODES.S)
public class TestUserManagerState implements UserManagerState {

    private static final String TAG = "TestUserManagerState";
    public List<UserId> userIds = new ArrayList<>();
    public Map<UserId, String> userIdToLabelMap = new HashMap<>();
    public Map<UserId, Boolean> canFrowardToProfileIdMap = new HashMap<>();
    public Map<UserId, Drawable> userIdToBadgeMap = new HashMap<>();
    public String profileLabel = "Test";
    public Drawable profileBadge = null;
    public Intent intent = new Intent();

    @Override
    public List<UserId> getUserIds() {
        return userIds;
    }

    @Override
    public Map<UserId, String> getUserIdToLabelMap() {
        return userIdToLabelMap;
    }

    @Override
    public Map<UserId, Drawable> getUserIdToBadgeMap() {
        return userIdToBadgeMap;
    }

    @Override
    public Map<UserId, Boolean> getCanForwardToProfileIdMap(Intent intent) {
        return canFrowardToProfileIdMap;
    }

    @Override
    public void onProfileActionStatusChange(String action, UserId userId) {
        if (Intent.ACTION_PROFILE_UNAVAILABLE.equals(action)) {
            userIds.remove(userId);
            return;
        } else if (Intent.ACTION_PROFILE_AVAILABLE.equals(action)) {
            if (!userIds.contains(userId)) {
                userIds.add(userId);
            }
            if (!userIdToLabelMap.containsKey(userId)) {
                userIdToLabelMap.put(userId, profileLabel);
            }
            if (!userIdToBadgeMap.containsKey(userId)) {
                userIdToBadgeMap.put(userId, profileBadge);
            }
            if (!canFrowardToProfileIdMap.containsKey(userId)) {
                canFrowardToProfileIdMap.put(userId, true);
            }
        } else {
            Log.e(TAG, "Unexpected action received: " + action);
        }
    }

    @Override
    public void setCurrentStateIntent(Intent intent) {
    }

    @Override
    public boolean areHiddenInQuietModeProfilesPresent() {
        return false;
    }
}
