2022-05-29 16:31:04 +05:30
|
|
|
package com.github.libretube
|
|
|
|
|
|
|
|
import android.content.Intent
|
2022-05-29 18:52:35 +05:30
|
|
|
import android.content.pm.PackageManager
|
|
|
|
import android.net.Uri
|
2022-05-29 16:31:04 +05:30
|
|
|
import android.os.Bundle
|
|
|
|
import android.util.Log
|
|
|
|
import androidx.appcompat.app.AppCompatActivity
|
|
|
|
|
|
|
|
class RouterActivity : AppCompatActivity() {
|
2022-05-29 18:52:35 +05:30
|
|
|
val TAG = "RouterActivity"
|
2022-05-29 16:31:04 +05:30
|
|
|
override fun onCreate(savedInstanceState: Bundle?) {
|
|
|
|
super.onCreate(savedInstanceState)
|
2022-06-01 11:15:02 +05:30
|
|
|
if (checkHost(intent)) {
|
|
|
|
// start the main activity using the given URI as data if the host is known
|
|
|
|
handleSendText(intent)
|
|
|
|
} else {
|
|
|
|
// start app as normal if URI not in host list
|
|
|
|
restartMainActivity(this)
|
2022-05-29 16:31:04 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-30 17:54:50 +05:30
|
|
|
private fun checkHost(intent: Intent): Boolean {
|
2022-05-30 18:54:44 +05:30
|
|
|
// check whether the host is known, current solution to replace the broken intent filter
|
2022-05-30 17:54:50 +05:30
|
|
|
val hostsList = resources.getStringArray(R.array.shareHostsList)
|
|
|
|
val intentDataUri: Uri = Uri.parse(intent.getStringExtra(Intent.EXTRA_TEXT))
|
|
|
|
val intentDataHost = intentDataUri.host
|
|
|
|
Log.d(TAG, "$intentDataHost")
|
|
|
|
return hostsList.contains(intentDataHost)
|
|
|
|
}
|
|
|
|
|
2022-05-29 16:31:04 +05:30
|
|
|
private fun handleSendText(intent: Intent) {
|
|
|
|
intent.getStringExtra(Intent.EXTRA_TEXT)?.let {
|
2022-05-29 18:52:35 +05:30
|
|
|
Log.i(TAG, it)
|
|
|
|
val pm: PackageManager = this.packageManager
|
2022-05-30 18:54:44 +05:30
|
|
|
// startIntent(this, MainActivity::class.java doesn't work for the activity aliases needed for the logo switch option
|
2022-05-29 18:52:35 +05:30
|
|
|
val intent = pm.getLaunchIntentForPackage(this.packageName)
|
|
|
|
intent?.flags = Intent.FLAG_ACTIVITY_CLEAR_TASK
|
|
|
|
intent?.data = Uri.parse(it)
|
|
|
|
this.startActivity(intent)
|
2022-05-29 21:41:05 +05:30
|
|
|
this.finishAndRemoveTask()
|
2022-05-29 16:31:04 +05:30
|
|
|
}
|
|
|
|
}
|
2022-05-29 18:52:35 +05:30
|
|
|
}
|