1
0
Fork 0
fenix/app/src/main/java/org/mozilla/fenix/home/intent/FennecBookmarkShortcutsInte...

65 lines
2.3 KiB
Kotlin

/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
package org.mozilla.fenix.home.intent
import android.content.Intent
import android.content.Intent.ACTION_VIEW
import androidx.annotation.VisibleForTesting
import mozilla.components.browser.session.Session
import mozilla.components.browser.session.SessionManager
import mozilla.components.browser.state.state.SessionState
import mozilla.components.concept.engine.EngineSession
import mozilla.components.feature.intent.ext.putSessionId
import mozilla.components.feature.intent.processing.IntentProcessor
import mozilla.components.feature.session.SessionUseCases
import mozilla.components.support.utils.toSafeIntent
/**
* Legacy processor for pinned websites shortcuts created by Fennec.
* https://developer.android.com/guide/topics/ui/shortcuts/creating-shortcuts#pinned
*/
class FennecBookmarkShortcutsIntentProcessor(
private val sessionManager: SessionManager,
private val loadUrlUseCase: SessionUseCases.DefaultLoadUrlUseCase
) : IntentProcessor {
/**
* Returns true if this Intent is of a Fennec pinned shortcut.
*/
private fun matches(intent: Intent): Boolean {
return intent.toSafeIntent().action == ACTION_FENNEC_HOMESCREEN_SHORTCUT
}
/**
* If this is an Intent for a Fennec pinned website shortcut
* prepare it for opening website's URL in a new tab.
*/
override fun process(intent: Intent): Boolean {
val safeIntent = intent.toSafeIntent()
val url = safeIntent.dataString
return if (!url.isNullOrEmpty() && matches(intent)) {
val session = Session(url, private = false, source = SessionState.Source.HOME_SCREEN)
sessionManager.add(session, selected = true)
loadUrlUseCase(url, session, EngineSession.LoadUrlFlags.external())
intent.action = ACTION_VIEW
intent.putSessionId(session.id)
true
} else {
false
}
}
@VisibleForTesting
companion object {
/**
* Fennec set action for the pinned website shortcut Intent.
*/
const val ACTION_FENNEC_HOMESCREEN_SHORTCUT = "org.mozilla.gecko.BOOKMARK"
}
}