2021-03-18 19:11:45 +01:00
|
|
|
/*
|
|
|
|
* * Copyright (c) 2021 Shabinder Singh
|
|
|
|
* * This program is free software: you can redistribute it and/or modify
|
|
|
|
* * it under the terms of the GNU General Public License as published by
|
|
|
|
* * the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* * (at your option) any later version.
|
|
|
|
* *
|
|
|
|
* * This program is distributed in the hope that it will be useful,
|
|
|
|
* * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* * GNU General Public License for more details.
|
|
|
|
* *
|
|
|
|
* * You should have received a copy of the GNU General Public License
|
|
|
|
* * along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2021-02-25 14:28:33 +01:00
|
|
|
package com.shabinder.spotiflyer
|
2021-01-26 13:54:28 +01:00
|
|
|
|
2021-02-10 18:25:36 +01:00
|
|
|
import android.annotation.SuppressLint
|
2021-06-22 08:13:30 +02:00
|
|
|
import android.content.ComponentName
|
2021-02-10 18:25:36 +01:00
|
|
|
import android.content.Context
|
|
|
|
import android.content.Intent
|
2021-06-22 08:13:30 +02:00
|
|
|
import android.content.ServiceConnection
|
2021-04-29 18:14:19 +02:00
|
|
|
import android.content.pm.PackageManager
|
|
|
|
import android.media.MediaScannerConnection
|
|
|
|
import android.net.Uri
|
2021-02-10 18:25:36 +01:00
|
|
|
import android.os.Build
|
2021-01-26 13:54:28 +01:00
|
|
|
import android.os.Bundle
|
2021-06-22 08:13:30 +02:00
|
|
|
import android.os.IBinder
|
2021-02-10 18:25:36 +01:00
|
|
|
import android.os.PowerManager
|
2021-02-22 18:38:33 +01:00
|
|
|
import android.util.Log
|
2021-02-10 18:25:36 +01:00
|
|
|
import androidx.activity.ComponentActivity
|
2021-02-11 21:51:11 +01:00
|
|
|
import androidx.activity.compose.setContent
|
2021-02-26 11:29:10 +01:00
|
|
|
import androidx.compose.animation.*
|
2021-02-25 16:23:10 +01:00
|
|
|
import androidx.compose.foundation.background
|
|
|
|
import androidx.compose.foundation.layout.*
|
|
|
|
import androidx.compose.material.*
|
2021-02-25 14:28:33 +01:00
|
|
|
import androidx.compose.runtime.*
|
2021-02-25 16:23:10 +01:00
|
|
|
import androidx.compose.ui.Modifier
|
2021-02-24 18:02:01 +01:00
|
|
|
import androidx.compose.ui.platform.LocalView
|
2021-04-29 18:14:19 +02:00
|
|
|
import androidx.core.content.ContextCompat
|
2021-02-24 18:02:01 +01:00
|
|
|
import androidx.core.view.WindowCompat
|
2021-02-22 18:38:33 +01:00
|
|
|
import androidx.lifecycle.lifecycleScope
|
2021-02-07 17:19:48 +01:00
|
|
|
import com.arkivanov.decompose.ComponentContext
|
2021-02-25 14:28:33 +01:00
|
|
|
import com.arkivanov.decompose.extensions.compose.jetbrains.rememberRootComponent
|
2021-02-07 17:19:48 +01:00
|
|
|
import com.arkivanov.mvikotlin.logging.store.LoggingStoreFactory
|
|
|
|
import com.arkivanov.mvikotlin.main.store.DefaultStoreFactory
|
2021-04-19 20:24:48 +02:00
|
|
|
import com.codekidlabs.storagechooser.R
|
|
|
|
import com.codekidlabs.storagechooser.StorageChooser
|
2021-04-14 19:37:02 +02:00
|
|
|
import com.google.accompanist.insets.ProvideWindowInsets
|
|
|
|
import com.google.accompanist.insets.navigationBarsPadding
|
|
|
|
import com.google.accompanist.insets.statusBarsHeight
|
|
|
|
import com.google.accompanist.insets.statusBarsPadding
|
2021-02-25 16:23:10 +01:00
|
|
|
import com.shabinder.common.di.*
|
2021-06-23 13:13:26 +02:00
|
|
|
import com.shabinder.common.di.preference.PreferenceManager
|
2021-04-29 18:14:19 +02:00
|
|
|
import com.shabinder.common.models.Actions
|
2021-02-21 15:21:43 +01:00
|
|
|
import com.shabinder.common.models.DownloadStatus
|
2021-04-29 18:14:19 +02:00
|
|
|
import com.shabinder.common.models.PlatformActions
|
|
|
|
import com.shabinder.common.models.PlatformActions.Companion.SharedPreferencesKey
|
2021-02-22 18:38:33 +01:00
|
|
|
import com.shabinder.common.models.TrackDetails
|
2021-05-13 23:21:33 +02:00
|
|
|
import com.shabinder.common.models.methods
|
2021-02-07 17:19:48 +01:00
|
|
|
import com.shabinder.common.root.SpotiFlyerRoot
|
2021-05-13 23:21:33 +02:00
|
|
|
import com.shabinder.common.root.SpotiFlyerRoot.Analytics
|
2021-02-10 18:25:36 +01:00
|
|
|
import com.shabinder.common.root.callbacks.SpotiFlyerRootCallBacks
|
2021-02-25 16:23:10 +01:00
|
|
|
import com.shabinder.common.uikit.*
|
2021-06-22 08:13:30 +02:00
|
|
|
import com.shabinder.spotiflyer.service.ForegroundService
|
2021-05-16 20:10:02 +02:00
|
|
|
import com.shabinder.spotiflyer.ui.AnalyticsDialog
|
2021-04-29 18:14:19 +02:00
|
|
|
import com.shabinder.spotiflyer.ui.NetworkDialog
|
|
|
|
import com.shabinder.spotiflyer.ui.PermissionDialog
|
2021-05-13 23:21:33 +02:00
|
|
|
import com.shabinder.spotiflyer.utils.*
|
2021-02-10 18:25:36 +01:00
|
|
|
import kotlinx.coroutines.*
|
2021-02-22 22:42:58 +01:00
|
|
|
import kotlinx.coroutines.flow.*
|
2021-02-07 17:19:48 +01:00
|
|
|
import org.koin.android.ext.android.inject
|
2021-05-13 23:21:33 +02:00
|
|
|
import org.matomo.sdk.extra.TrackHelper
|
2021-04-19 20:24:48 +02:00
|
|
|
import java.io.File
|
2021-01-26 13:54:28 +01:00
|
|
|
|
2021-02-26 10:41:25 +01:00
|
|
|
@ExperimentalAnimationApi
|
2021-05-12 00:30:52 +02:00
|
|
|
class MainActivity : ComponentActivity() {
|
2021-02-10 18:25:36 +01:00
|
|
|
|
|
|
|
private val fetcher: FetchPlatformQueryResult by inject()
|
|
|
|
private val dir: Dir by inject()
|
2021-06-23 13:13:26 +02:00
|
|
|
private val preferenceManager: PreferenceManager by inject()
|
2021-02-10 18:25:36 +01:00
|
|
|
private lateinit var root: SpotiFlyerRoot
|
2021-05-31 17:02:10 +02:00
|
|
|
private val callBacks: SpotiFlyerRootCallBacks get() = root.callBacks
|
2021-02-22 22:42:58 +01:00
|
|
|
private val trackStatusFlow = MutableSharedFlow<HashMap<String, DownloadStatus>>(1)
|
2021-02-25 16:23:10 +01:00
|
|
|
private var permissionGranted = mutableStateOf(true)
|
2021-04-29 18:14:19 +02:00
|
|
|
private val internetAvailability by lazy { ConnectionLiveData(applicationContext) }
|
2021-05-13 23:21:33 +02:00
|
|
|
private val tracker get() = (application as App).tracker
|
2021-06-21 21:00:28 +02:00
|
|
|
private val visibleChild get(): SpotiFlyerRoot.Child = root.routerState.value.activeChild.instance
|
2021-02-07 17:19:48 +01:00
|
|
|
|
2021-06-22 08:13:30 +02:00
|
|
|
// Variable for storing instance of our service class
|
|
|
|
var foregroundService: ForegroundService? = null
|
|
|
|
|
|
|
|
// Boolean to check if our activity is bound to service or not
|
|
|
|
var isServiceBound: Boolean? = null
|
|
|
|
|
2021-01-26 13:54:28 +01:00
|
|
|
override fun onCreate(savedInstanceState: Bundle?) {
|
|
|
|
super.onCreate(savedInstanceState)
|
2021-02-24 18:02:01 +01:00
|
|
|
// This app draws behind the system bars, so we want to handle fitting system windows
|
|
|
|
WindowCompat.setDecorFitsSystemWindows(window, false)
|
|
|
|
|
2021-01-26 13:54:28 +01:00
|
|
|
setContent {
|
2021-02-07 17:19:48 +01:00
|
|
|
SpotiFlyerTheme {
|
2021-02-12 00:17:46 +01:00
|
|
|
Surface(contentColor = colorOffWhite) {
|
2021-04-14 19:37:02 +02:00
|
|
|
ProvideWindowInsets {
|
|
|
|
permissionGranted = remember { mutableStateOf(true) }
|
|
|
|
val view = LocalView.current
|
2021-02-24 18:02:01 +01:00
|
|
|
|
2021-04-14 19:37:02 +02:00
|
|
|
Box {
|
|
|
|
root = SpotiFlyerRootContent(
|
|
|
|
rememberRootComponent(::spotiFlyerRoot),
|
|
|
|
Modifier.statusBarsPadding().navigationBarsPadding()
|
|
|
|
)
|
|
|
|
Spacer(
|
|
|
|
Modifier
|
|
|
|
.statusBarsHeight()
|
|
|
|
.fillMaxWidth()
|
|
|
|
.background(MaterialTheme.colors.background.copy(alpha = 0.65f))
|
|
|
|
)
|
2021-02-24 18:02:01 +01:00
|
|
|
}
|
2021-02-25 16:23:10 +01:00
|
|
|
|
2021-04-29 18:14:19 +02:00
|
|
|
NetworkDialog(isInternetAvailableState())
|
2021-05-16 20:10:02 +02:00
|
|
|
|
2021-04-29 18:14:19 +02:00
|
|
|
PermissionDialog(
|
|
|
|
permissionGranted.value,
|
|
|
|
{ requestStoragePermission() },
|
2021-05-13 23:21:33 +02:00
|
|
|
{ disableDozeMode(disableDozeCode) },
|
2021-04-29 18:14:19 +02:00
|
|
|
)
|
2021-05-16 20:10:02 +02:00
|
|
|
|
|
|
|
var askForAnalyticsPermission by remember { mutableStateOf(false) }
|
|
|
|
AnalyticsDialog(
|
|
|
|
askForAnalyticsPermission,
|
2021-05-29 12:26:26 +02:00
|
|
|
enableAnalytics = {
|
2021-06-23 13:13:26 +02:00
|
|
|
preferenceManager.toggleAnalytics(true)
|
|
|
|
preferenceManager.firstLaunchDone()
|
2021-05-29 12:26:26 +02:00
|
|
|
},
|
2021-05-16 20:10:02 +02:00
|
|
|
dismissDialog = {
|
|
|
|
askForAnalyticsPermission = false
|
2021-06-23 13:13:26 +02:00
|
|
|
preferenceManager.firstLaunchDone()
|
2021-05-16 20:10:02 +02:00
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
LaunchedEffect(view) {
|
|
|
|
permissionGranted.value = checkPermissions()
|
2021-06-23 13:13:26 +02:00
|
|
|
if(preferenceManager.isFirstLaunch) {
|
2021-05-16 20:10:02 +02:00
|
|
|
delay(2500)
|
|
|
|
// Ask For Analytics Permission on first Dialog
|
|
|
|
askForAnalyticsPermission = true
|
|
|
|
}
|
|
|
|
}
|
2021-04-14 19:37:02 +02:00
|
|
|
}
|
2021-02-12 00:17:46 +01:00
|
|
|
}
|
2021-02-07 17:19:48 +01:00
|
|
|
}
|
2021-01-26 13:54:28 +01:00
|
|
|
}
|
2021-02-10 18:25:36 +01:00
|
|
|
initialise()
|
2021-01-26 13:54:28 +01:00
|
|
|
}
|
2021-02-07 17:19:48 +01:00
|
|
|
|
2021-02-10 18:25:36 +01:00
|
|
|
private fun initialise() {
|
2021-06-21 21:00:28 +02:00
|
|
|
val isGithubRelease = checkAppSignature(this)
|
2021-05-29 12:26:26 +02:00
|
|
|
/*
|
|
|
|
* Only Send an `Update Notification` on Github Release Builds
|
|
|
|
* and Track Downloads for all other releases like F-Droid,
|
|
|
|
* for `Github Downloads` we will track Downloads using : https://tooomm.github.io/github-release-stats/?username=Shabinder&repository=SpotiFlyer
|
|
|
|
* */
|
|
|
|
if(isGithubRelease) { checkIfLatestVersion() }
|
2021-06-23 13:13:26 +02:00
|
|
|
if(preferenceManager.isAnalyticsEnabled && !isGithubRelease) {
|
2021-05-29 12:26:26 +02:00
|
|
|
// Download/App Install Event for F-Droid builds
|
2021-05-13 23:21:33 +02:00
|
|
|
TrackHelper.track().download().with(tracker)
|
|
|
|
}
|
2021-05-29 12:26:26 +02:00
|
|
|
handleIntentFromExternalActivity()
|
2021-06-22 08:13:30 +02:00
|
|
|
|
|
|
|
initForegroundService()
|
|
|
|
}
|
|
|
|
|
|
|
|
/*START: Foreground Service Handlers*/
|
|
|
|
private fun initForegroundService() {
|
|
|
|
// Start and then Bind to the Service
|
|
|
|
ContextCompat.startForegroundService(
|
|
|
|
this@MainActivity,
|
|
|
|
Intent(this, ForegroundService::class.java)
|
|
|
|
)
|
|
|
|
bindService()
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Interface for getting the instance of binder from our service class
|
|
|
|
* So client can get instance of our service class and can directly communicate with it.
|
|
|
|
*/
|
|
|
|
private val serviceConnection = object : ServiceConnection {
|
|
|
|
val tag = "Service Connection"
|
|
|
|
|
|
|
|
override fun onServiceConnected(className: ComponentName, iBinder: IBinder) {
|
|
|
|
Log.d(tag, "connected to service.")
|
|
|
|
// We've bound to MyService, cast the IBinder and get MyBinder instance
|
|
|
|
val binder = iBinder as ForegroundService.DownloadServiceBinder
|
|
|
|
foregroundService = binder.service
|
|
|
|
isServiceBound = true
|
|
|
|
lifecycleScope.launch {
|
|
|
|
foregroundService?.trackStatusFlowMap?.statusFlow?.let {
|
|
|
|
trackStatusFlow.emitAll(it.conflate())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
override fun onServiceDisconnected(arg0: ComponentName) {
|
|
|
|
Log.d(tag, "disconnected from service.")
|
|
|
|
isServiceBound = false
|
|
|
|
}
|
2021-04-29 18:14:19 +02:00
|
|
|
}
|
|
|
|
|
2021-06-22 08:13:30 +02:00
|
|
|
/*Used to bind to our service class*/
|
|
|
|
private fun bindService() {
|
|
|
|
Intent(this, ForegroundService::class.java).also { intent ->
|
|
|
|
bindService(intent, serviceConnection, Context.BIND_AUTO_CREATE)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*Used to unbind from our service class*/
|
|
|
|
private fun unbindService() {
|
|
|
|
Intent(this, ForegroundService::class.java).also {
|
|
|
|
unbindService(serviceConnection)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/*END: Foreground Service Handlers*/
|
|
|
|
|
|
|
|
|
2021-04-29 18:14:19 +02:00
|
|
|
@Composable
|
|
|
|
private fun isInternetAvailableState(): State<Boolean?> {
|
|
|
|
return internetAvailability.observeAsState()
|
2021-04-19 20:24:48 +02:00
|
|
|
}
|
|
|
|
|
2021-04-29 18:14:19 +02:00
|
|
|
private fun showPopUpMessage(string: String, long: Boolean = false) {
|
|
|
|
android.widget.Toast.makeText(
|
|
|
|
applicationContext,
|
|
|
|
string,
|
|
|
|
if(long) android.widget.Toast.LENGTH_LONG else android.widget.Toast.LENGTH_SHORT
|
|
|
|
).show()
|
|
|
|
}
|
|
|
|
|
2021-02-26 10:41:25 +01:00
|
|
|
override fun onRequestPermissionsResult(requestCode: Int, permissions: Array<out String>, grantResults: IntArray) {
|
|
|
|
super.onRequestPermissionsResult(requestCode, permissions, grantResults)
|
|
|
|
permissionGranted.value = checkPermissions()
|
|
|
|
}
|
|
|
|
|
2021-02-07 17:19:48 +01:00
|
|
|
private fun spotiFlyerRoot(componentContext: ComponentContext): SpotiFlyerRoot =
|
|
|
|
SpotiFlyerRoot(
|
|
|
|
componentContext,
|
|
|
|
dependencies = object : SpotiFlyerRoot.Dependencies{
|
|
|
|
override val storeFactory = LoggingStoreFactory(DefaultStoreFactory)
|
2021-03-08 17:41:08 +01:00
|
|
|
override val database = this@MainActivity.dir.db
|
2021-06-23 13:13:26 +02:00
|
|
|
override val fetchQuery = this@MainActivity.fetcher
|
|
|
|
override val dir: Dir = this@MainActivity.dir
|
|
|
|
override val preferenceManager = this@MainActivity.preferenceManager
|
|
|
|
override val downloadProgressFlow: MutableSharedFlow<HashMap<String, DownloadStatus>> = trackStatusFlow
|
2021-04-29 18:14:19 +02:00
|
|
|
override val actions = object: Actions {
|
|
|
|
|
|
|
|
override val platformActions = object : PlatformActions {
|
|
|
|
override val imageCacheDir: String = applicationContext.cacheDir.absolutePath + File.separator
|
|
|
|
override val sharedPreferences = applicationContext.getSharedPreferences(SharedPreferencesKey,
|
|
|
|
MODE_PRIVATE
|
|
|
|
)
|
|
|
|
|
|
|
|
override fun addToLibrary(path: String) {
|
2021-05-01 20:00:59 +02:00
|
|
|
MediaScannerConnection.scanFile (
|
2021-04-29 18:14:19 +02:00
|
|
|
applicationContext,
|
|
|
|
listOf(path).toTypedArray(), null, null
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2021-06-22 08:13:30 +02:00
|
|
|
override fun sendTracksToService(array: List<TrackDetails>) {
|
|
|
|
if (foregroundService == null) initForegroundService()
|
|
|
|
foregroundService?.downloadAllTracks(array)
|
2021-04-29 18:14:19 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
override fun showPopUpMessage(string: String, long: Boolean) = this@MainActivity.showPopUpMessage(string,long)
|
|
|
|
|
|
|
|
override fun setDownloadDirectoryAction() = setUpOnPrefClickListener()
|
|
|
|
|
2021-06-21 21:00:28 +02:00
|
|
|
override fun queryActiveTracks() = this@MainActivity.queryActiveTracks()
|
2021-04-29 18:14:19 +02:00
|
|
|
|
2021-05-08 17:12:09 +02:00
|
|
|
override fun giveDonation() {
|
2021-05-12 00:30:52 +02:00
|
|
|
openPlatform("",platformLink = "https://razorpay.com/payment-button/pl_GnKuuDBdBu0ank/view/?utm_source=payment_button&utm_medium=button&utm_campaign=payment_button")
|
2021-05-08 17:12:09 +02:00
|
|
|
}
|
2021-04-29 18:14:19 +02:00
|
|
|
|
|
|
|
override fun shareApp() {
|
|
|
|
val sendIntent: Intent = Intent().apply {
|
|
|
|
action = Intent.ACTION_SEND
|
|
|
|
putExtra(Intent.EXTRA_TEXT, "Hey, checkout this excellent Music Downloader http://github.com/Shabinder/SpotiFlyer")
|
|
|
|
type = "text/plain"
|
|
|
|
}
|
|
|
|
|
|
|
|
val shareIntent = Intent.createChooser(sendIntent, null)
|
|
|
|
startActivity(shareIntent)
|
|
|
|
}
|
|
|
|
|
|
|
|
override fun openPlatform(packageID: String, platformLink: String) {
|
|
|
|
val manager: PackageManager = applicationContext.packageManager
|
|
|
|
try {
|
|
|
|
val intent = manager.getLaunchIntentForPackage(packageID)
|
|
|
|
?: throw PackageManager.NameNotFoundException()
|
|
|
|
intent.addCategory(Intent.CATEGORY_LAUNCHER)
|
|
|
|
startActivity(intent)
|
|
|
|
} catch (e: PackageManager.NameNotFoundException) {
|
|
|
|
val uri: Uri =
|
|
|
|
Uri.parse(platformLink)
|
|
|
|
val intent = Intent(Intent.ACTION_VIEW, uri)
|
|
|
|
startActivity(intent)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-04 12:44:03 +02:00
|
|
|
override fun writeMp3Tags(trackDetails: TrackDetails) {/*IMPLEMENTED*/}
|
|
|
|
|
2021-04-29 18:14:19 +02:00
|
|
|
override val isInternetAvailable get() = internetAvailability.value ?: true
|
|
|
|
}
|
2021-05-14 00:12:27 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Analytics Will Only Be Sent if User Granted us the Permission
|
|
|
|
* */
|
|
|
|
override val analytics = object: Analytics {
|
|
|
|
override fun appLaunchEvent() {
|
2021-06-23 13:13:26 +02:00
|
|
|
if(preferenceManager.isAnalyticsEnabled){
|
2021-05-14 00:12:27 +02:00
|
|
|
TrackHelper.track()
|
|
|
|
.event("events","App_Launch")
|
|
|
|
.name("App Launch").with(tracker)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
override fun homeScreenVisit() {
|
2021-06-23 13:13:26 +02:00
|
|
|
if(preferenceManager.isAnalyticsEnabled){
|
2021-05-14 00:12:27 +02:00
|
|
|
// HomeScreen Visit Event
|
|
|
|
TrackHelper.track().screen("/main_activity/home_screen")
|
|
|
|
.title("HomeScreen").with(tracker)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
override fun listScreenVisit() {
|
2021-06-23 13:13:26 +02:00
|
|
|
if(preferenceManager.isAnalyticsEnabled){
|
2021-05-14 00:12:27 +02:00
|
|
|
// ListScreen Visit Event
|
|
|
|
TrackHelper.track().screen("/main_activity/list_screen")
|
|
|
|
.title("ListScreen").with(tracker)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
override fun donationDialogVisit() {
|
2021-06-23 13:13:26 +02:00
|
|
|
if (preferenceManager.isAnalyticsEnabled) {
|
2021-05-14 00:12:27 +02:00
|
|
|
// Donation Dialog Open Event
|
|
|
|
TrackHelper.track().screen("/main_activity/donation_dialog")
|
|
|
|
.title("DonationDialog").with(tracker)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-02-07 17:19:48 +01:00
|
|
|
}
|
|
|
|
)
|
2021-02-10 18:25:36 +01:00
|
|
|
|
2021-06-21 21:00:28 +02:00
|
|
|
private fun queryActiveTracks() {
|
2021-06-22 08:13:30 +02:00
|
|
|
lifecycleScope.launch {
|
|
|
|
foregroundService?.trackStatusFlowMap?.let { tracksStatus ->
|
|
|
|
trackStatusFlow.emit(tracksStatus)
|
|
|
|
}
|
2021-06-21 21:00:28 +02:00
|
|
|
}
|
2021-06-22 08:13:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
override fun onResume() {
|
|
|
|
super.onResume()
|
|
|
|
queryActiveTracks()
|
2021-06-21 21:00:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Suppress("DEPRECATION")
|
|
|
|
private fun setUpOnPrefClickListener() {
|
|
|
|
// Initialize Builder
|
|
|
|
val chooser = StorageChooser.Builder()
|
|
|
|
.withActivity(this)
|
|
|
|
.withFragmentManager(fragmentManager)
|
|
|
|
.withMemoryBar(true)
|
|
|
|
.setTheme(StorageChooser.Theme(applicationContext).apply {
|
|
|
|
scheme = applicationContext.resources.getIntArray(R.array.default_dark)
|
|
|
|
})
|
|
|
|
.setDialogTitle("Set Download Directory")
|
|
|
|
.allowCustomPath(true)
|
|
|
|
.setType(StorageChooser.DIRECTORY_CHOOSER)
|
|
|
|
.build()
|
|
|
|
|
|
|
|
// get path that the user has chosen
|
|
|
|
chooser.setOnSelectListener { path ->
|
|
|
|
Log.d("Setting Base Path", path)
|
|
|
|
val f = File(path)
|
|
|
|
if (f.canWrite()) {
|
|
|
|
// hell yeah :)
|
2021-06-23 13:13:26 +02:00
|
|
|
preferenceManager.setDownloadDirectory(path)
|
2021-06-21 21:00:28 +02:00
|
|
|
showPopUpMessage(
|
|
|
|
"Download Directory Set to:\n${dir.defaultDir()} "
|
|
|
|
)
|
|
|
|
}else{
|
|
|
|
showPopUpMessage(
|
|
|
|
"NO WRITE ACCESS on \n$path ,\nReverting Back to Previous"
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Show dialog whenever you want by
|
|
|
|
chooser.show()
|
|
|
|
}
|
2021-02-10 18:25:36 +01:00
|
|
|
|
|
|
|
@SuppressLint("ObsoleteSdkInt")
|
|
|
|
override fun onActivityResult(requestCode: Int, resultCode: Int, data: Intent?) {
|
|
|
|
super.onActivityResult(requestCode, resultCode, data)
|
|
|
|
if (requestCode == disableDozeCode) {
|
|
|
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
|
|
|
|
val pm =
|
|
|
|
getSystemService(Context.POWER_SERVICE) as PowerManager
|
|
|
|
val isIgnoringBatteryOptimizations =
|
|
|
|
pm.isIgnoringBatteryOptimizations(packageName)
|
|
|
|
if (isIgnoringBatteryOptimizations) {
|
|
|
|
// Ignoring battery optimization
|
2021-02-25 16:23:10 +01:00
|
|
|
permissionGranted.value = true
|
2021-02-10 18:25:36 +01:00
|
|
|
} else {
|
|
|
|
disableDozeMode(disableDozeCode)//Again Ask For Permission!!
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
override fun onNewIntent(intent: Intent?) {
|
|
|
|
super.onNewIntent(intent)
|
|
|
|
handleIntentFromExternalActivity(intent)
|
|
|
|
}
|
|
|
|
|
|
|
|
private fun handleIntentFromExternalActivity(intent: Intent? = getIntent()) {
|
|
|
|
if (intent?.action == Intent.ACTION_SEND) {
|
|
|
|
if ("text/plain" == intent.type) {
|
|
|
|
intent.getStringExtra(Intent.EXTRA_TEXT)?.let {
|
|
|
|
val filterLinkRegex = """http.+\w""".toRegex()
|
|
|
|
val string = it.replace("\n".toRegex(), " ")
|
|
|
|
val link = filterLinkRegex.find(string)?.value.toString()
|
2021-02-26 11:29:10 +01:00
|
|
|
Log.i("Intent",link)
|
|
|
|
lifecycleScope.launch {
|
|
|
|
while(!this@MainActivity::root.isInitialized){
|
|
|
|
delay(100)
|
|
|
|
}
|
2021-05-01 20:00:59 +02:00
|
|
|
if(methods.value.isInternetAvailable)callBacks.searchLink(link)
|
2021-02-26 11:29:10 +01:00
|
|
|
}
|
2021-02-10 18:25:36 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-05-13 23:21:33 +02:00
|
|
|
|
2021-06-22 08:13:30 +02:00
|
|
|
override fun onDestroy() {
|
|
|
|
super.onDestroy()
|
|
|
|
unbindService()
|
|
|
|
}
|
|
|
|
|
2021-05-13 23:21:33 +02:00
|
|
|
companion object {
|
|
|
|
const val disableDozeCode = 1223
|
|
|
|
}
|
2021-02-07 17:19:48 +01:00
|
|
|
}
|