-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #502 from salemove/bugfix/fix_acceptance_tests
- Loading branch information
Showing
2 changed files
with
127 additions
and
149 deletions.
There are no files selected for viewing
149 changes: 0 additions & 149 deletions
149
app/src/main/java/com/glia/exampleapp/GliaWidgetsConfigManager.java
This file was deleted.
Oops, something went wrong.
127 changes: 127 additions & 0 deletions
127
app/src/main/java/com/glia/exampleapp/GliaWidgetsConfigManager.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,127 @@ | ||
package com.glia.exampleapp | ||
|
||
import android.content.Context | ||
import android.content.SharedPreferences | ||
import android.net.Uri | ||
import androidx.preference.PreferenceManager | ||
import com.glia.androidsdk.SiteApiKey | ||
import com.glia.androidsdk.screensharing.ScreenSharing | ||
import com.glia.widgets.GliaWidgetsConfig | ||
|
||
/** | ||
* Helper class to obtain Glia Config params from deep-link or preferences. | ||
* | ||
* for setup with a secret link must be | ||
* glia://widgets/secret?site_id={site_id}&api_key_secret={api_key_secret}&api_key_id={api_key_id}&queue_id={queue_id}&visitor_context_asset_id={visitor_context_asset_id} | ||
* where all query params are mandatory except visitor_context_asset_id | ||
*/ | ||
object GliaWidgetsConfigManager { | ||
private const val SECRET_KEY = "secret" | ||
private const val SITE_ID_KEY = "site_id" | ||
private const val API_KEY_SECRET_KEY = "api_key_secret" | ||
private const val API_KEY_ID_KEY = "api_key_id" | ||
private const val QUEUE_ID_KEY = "queue_id" | ||
const val VISITOR_CONTEXT_ASSET_ID_KEY = "visitor_context_asset_id" | ||
private const val REGION_BETA = "beta" | ||
private const val REGION_ACCEPTANCE = "acceptance" | ||
@JvmStatic | ||
fun obtainConfigFromDeepLink(data: Uri, applicationContext: Context): GliaWidgetsConfig { | ||
saveQueueIdToPrefs(data, applicationContext) | ||
saveVisitorContextAssetIdIfPresent(data, applicationContext) | ||
saveSiteIdToPrefs(data, applicationContext) | ||
|
||
// We're not checking availability for every query param separately because this is for acceptance tests and we assume that link would be correct | ||
if (SECRET_KEY == data.lastPathSegment) { | ||
saveSiteApiKeyAuthToPrefs(data, applicationContext) | ||
} else { | ||
throw RuntimeException("deep link must start with \"glia://widgets/secret\"") | ||
} | ||
|
||
// By this point all settings from deep link where saved to the shared prefs overriding the | ||
// defaults combining both together | ||
return createDefaultConfig( | ||
context = applicationContext, | ||
region = REGION_ACCEPTANCE | ||
) | ||
} | ||
|
||
private fun saveVisitorContextAssetIdIfPresent(data: Uri, applicationContext: Context) { | ||
val visitorContextAssetId = data.getQueryParameter(VISITOR_CONTEXT_ASSET_ID_KEY) ?: return | ||
val sharedPreferences = PreferenceManager.getDefaultSharedPreferences(applicationContext) | ||
sharedPreferences.edit().putString( | ||
applicationContext.getString(R.string.pref_context_asset_id), | ||
visitorContextAssetId | ||
).apply() | ||
} | ||
|
||
private fun saveQueueIdToPrefs(data: Uri, applicationContext: Context) { | ||
val queueId = data.getQueryParameter(QUEUE_ID_KEY) ?: return | ||
val sharedPreferences = PreferenceManager.getDefaultSharedPreferences(applicationContext) | ||
sharedPreferences.edit() | ||
.putString(applicationContext.getString(R.string.pref_queue_id), queueId) | ||
.apply() | ||
} | ||
|
||
private fun saveSiteIdToPrefs(data: Uri, applicationContext: Context) { | ||
val siteId = data.getQueryParameter(SITE_ID_KEY) ?: return | ||
val sharedPreferences = PreferenceManager.getDefaultSharedPreferences(applicationContext) | ||
sharedPreferences.edit() | ||
.putString(applicationContext.getString(R.string.pref_site_id), siteId) | ||
.apply() | ||
} | ||
|
||
private fun saveSiteApiKeyAuthToPrefs(data: Uri, applicationContext: Context) { | ||
val apiKeyId = data.getQueryParameter(API_KEY_ID_KEY) | ||
val apiKeySecret = data.getQueryParameter(API_KEY_SECRET_KEY) | ||
if (apiKeyId == null || apiKeySecret == null) return | ||
val sharedPreferences = PreferenceManager.getDefaultSharedPreferences(applicationContext) | ||
sharedPreferences.edit() | ||
.putString(applicationContext.getString(R.string.pref_api_key_id), apiKeyId) | ||
.putString(applicationContext.getString(R.string.pref_api_key_secret), apiKeySecret) | ||
.apply() | ||
} | ||
|
||
@JvmStatic | ||
@JvmOverloads | ||
fun createDefaultConfig( | ||
context: Context, | ||
preferences: SharedPreferences = PreferenceManager.getDefaultSharedPreferences(context), | ||
uiJsonRemoteConfig: String? = null, | ||
region: String = REGION_BETA | ||
): GliaWidgetsConfig { | ||
val apiKeyId = preferences.getString( | ||
context.getString(R.string.pref_api_key_id), | ||
context.getString(R.string.glia_api_key_id) | ||
) | ||
val apiKeySecret = preferences.getString( | ||
context.getString(R.string.pref_api_key_secret), | ||
context.getString(R.string.glia_api_key_secret) | ||
) | ||
val siteId = preferences.getString( | ||
context.getString(R.string.pref_site_id), | ||
context.getString(R.string.site_id) | ||
) | ||
val companyName = preferences.getString(context.getString(R.string.pref_company_name), "") | ||
val useOverlay = preferences.getBoolean(context.getString(R.string.pref_use_overlay), true) | ||
val bounded = context.getString(R.string.screen_sharing_mode_app_bounded) | ||
val unbounded = context.getString(R.string.screen_sharing_mode_unbounded) | ||
val screenSharingMode = if (preferences.getString( | ||
context.getString(R.string.pref_screen_sharing_mode), unbounded | ||
) == bounded | ||
) { | ||
ScreenSharing.Mode.APP_BOUNDED | ||
} else { | ||
ScreenSharing.Mode.UNBOUNDED | ||
} | ||
return GliaWidgetsConfig.Builder() | ||
.setSiteApiKey(SiteApiKey(apiKeyId!!, apiKeySecret!!)) | ||
.setSiteId(siteId) | ||
.setRegion(region) | ||
.setCompanyName(companyName) | ||
.setUseOverlay(useOverlay) | ||
.setScreenSharingMode(screenSharingMode) | ||
.setContext(context) | ||
.setUiJsonRemoteConfig(uiJsonRemoteConfig) | ||
.build() | ||
} | ||
} |