blob: 706f456bdf46e2737158fc322b0e261cbbb435ca [file]
/*
* Copyright 2017, 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.managedprovisioning.model;
import android.annotation.Nullable;
import android.content.Context;
import android.webkit.URLUtil;
import com.android.managedprovisioning.common.Utils;
/**
* Captures parameters related to brand customization (e.g. tint color).
*/
public class CustomizationParams {
/** Color used in everywhere else */
public final int logoColor;
/** Support url of the organization where the device is being provisioned. */
public final @Nullable String supportUrl;
/**
* Computes an instance from {@link ProvisioningParams} and required helper classes.
* @param params {@link ProvisioningParams} instance to compute the values from
* @param context {@link Context} instance to resolve color ids
*/
public static CustomizationParams createInstance(
ProvisioningParams params, Context context, Utils utils) {
return createInstance(params.supportUrl, context, utils);
}
private static CustomizationParams createInstance(
@Nullable String supportUrl,
Context context,
Utils utils) {
int logoColor = utils.getAccentColor(context);
supportUrl = URLUtil.isNetworkUrl(supportUrl) ? supportUrl : null;
return new CustomizationParams(logoColor, supportUrl);
}
private CustomizationParams(int logoColor, String supportUrl) {
this.logoColor = logoColor;
this.supportUrl = supportUrl;
}
}