|
|
|
@ -1,29 +1,59 @@
|
|
|
|
|
package usr.empty.player
|
|
|
|
|
|
|
|
|
|
import android.content.Intent
|
|
|
|
|
import android.media.MediaMetadataRetriever
|
|
|
|
|
import android.net.Uri
|
|
|
|
|
import android.os.Bundle
|
|
|
|
|
import android.os.Environment
|
|
|
|
|
import android.provider.Settings
|
|
|
|
|
import android.util.Log
|
|
|
|
|
import androidx.activity.ComponentActivity
|
|
|
|
|
import androidx.activity.compose.rememberLauncherForActivityResult
|
|
|
|
|
import androidx.activity.compose.setContent
|
|
|
|
|
import androidx.activity.enableEdgeToEdge
|
|
|
|
|
import androidx.activity.result.contract.ActivityResultContracts
|
|
|
|
|
import androidx.compose.foundation.clickable
|
|
|
|
|
import androidx.compose.foundation.layout.Column
|
|
|
|
|
import androidx.compose.foundation.layout.fillMaxSize
|
|
|
|
|
import androidx.compose.foundation.layout.padding
|
|
|
|
|
import androidx.compose.foundation.lazy.LazyColumn
|
|
|
|
|
import androidx.compose.foundation.lazy.items
|
|
|
|
|
import androidx.compose.material3.Button
|
|
|
|
|
import androidx.compose.material3.ButtonDefaults
|
|
|
|
|
import androidx.compose.material3.MaterialTheme
|
|
|
|
|
import androidx.compose.material3.Scaffold
|
|
|
|
|
import androidx.compose.material3.Text
|
|
|
|
|
import androidx.compose.runtime.Composable
|
|
|
|
|
import androidx.compose.runtime.mutableStateListOf
|
|
|
|
|
import androidx.compose.runtime.remember
|
|
|
|
|
import androidx.compose.ui.Alignment
|
|
|
|
|
import androidx.compose.ui.Modifier
|
|
|
|
|
import androidx.compose.ui.graphics.RectangleShape
|
|
|
|
|
import androidx.compose.ui.tooling.preview.Preview
|
|
|
|
|
import androidx.compose.ui.unit.dp
|
|
|
|
|
import androidx.compose.ui.unit.sp
|
|
|
|
|
import usr.empty.player.ui.theme.PlayerTheme
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
inline fun <T> nullifyException(block: () -> T) = try {
|
|
|
|
|
block()
|
|
|
|
|
} catch (_: Exception) {
|
|
|
|
|
null
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
class MainActivity : ComponentActivity() {
|
|
|
|
|
override fun onCreate(savedInstanceState: Bundle?) {
|
|
|
|
|
super.onCreate(savedInstanceState)
|
|
|
|
|
|
|
|
|
|
if (!Environment.isExternalStorageManager()) {
|
|
|
|
|
val intent = Intent(Settings.ACTION_MANAGE_APP_ALL_FILES_ACCESS_PERMISSION)
|
|
|
|
|
val uri = Uri.fromParts("package", packageName, null)
|
|
|
|
|
intent.setData(uri)
|
|
|
|
|
startActivity(intent)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
startService(Intent(this, PlayerService::class.java))
|
|
|
|
|
|
|
|
|
|
enableEdgeToEdge()
|
|
|
|
|
setContent {
|
|
|
|
|
PlayerTheme {
|
|
|
|
@ -35,22 +65,74 @@ class MainActivity : ComponentActivity() {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fun uriToPath(uri: Uri): String {
|
|
|
|
|
val result = uri.pathSegments!![1].replace(Regex("^primary"), "emulated/0").replace(":", "/")
|
|
|
|
|
return "/storage/" + result.replace("primary:", "/storage/emulated/0/")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Composable
|
|
|
|
|
fun MainLayout(modifier: Modifier = Modifier) {
|
|
|
|
|
val notas = remember { mutableStateListOf<NotaDescriptor>() }
|
|
|
|
|
|
|
|
|
|
val pickAudioLauncher = rememberLauncherForActivityResult(
|
|
|
|
|
ActivityResultContracts.GetContent()
|
|
|
|
|
) { audioUri ->
|
|
|
|
|
audioUri?.run {
|
|
|
|
|
path?.let {
|
|
|
|
|
Log.d("meow", it)
|
|
|
|
|
uriToPath(this).let {
|
|
|
|
|
MediaMetadataRetriever().apply {
|
|
|
|
|
setDataSource(it)
|
|
|
|
|
notas.add(NotaDescriptor(name = nullifyException {
|
|
|
|
|
extractMetadata(MediaMetadataRetriever.METADATA_KEY_TITLE)
|
|
|
|
|
} ?: it.split('/').last().split('.').first(), artist = nullifyException {
|
|
|
|
|
extractMetadata(MediaMetadataRetriever.METADATA_KEY_ARTIST)
|
|
|
|
|
} ?: "Unknown Artist", sourceType = NotaDescriptor.Source.LOCAL, source = it))
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
Column (modifier.fillMaxSize()) {
|
|
|
|
|
Button(modifier = Modifier.align(Alignment.CenterHorizontally), onClick = {
|
|
|
|
|
|
|
|
|
|
Column(modifier.fillMaxSize()) {
|
|
|
|
|
Button(shape = RectangleShape, colors = ButtonDefaults.buttonColors(
|
|
|
|
|
containerColor = MaterialTheme.colorScheme.secondaryContainer, contentColor = MaterialTheme.colorScheme.secondary
|
|
|
|
|
), modifier = Modifier.align(Alignment.CenterHorizontally), onClick = {
|
|
|
|
|
pickAudioLauncher.launch("audio/*")
|
|
|
|
|
}) {
|
|
|
|
|
Text("add track")
|
|
|
|
|
}
|
|
|
|
|
NotaList(notas)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Composable
|
|
|
|
|
fun NotaList(notas: List<NotaDescriptor>, modifier: Modifier = Modifier) {
|
|
|
|
|
LazyColumn(
|
|
|
|
|
modifier = modifier,
|
|
|
|
|
) {
|
|
|
|
|
items(notas) { nota ->
|
|
|
|
|
Column(modifier = Modifier
|
|
|
|
|
.fillParentMaxWidth()
|
|
|
|
|
.clickable { }
|
|
|
|
|
.padding(4.dp)
|
|
|
|
|
.padding(start = 16.dp)) {
|
|
|
|
|
Text(
|
|
|
|
|
nota.name, fontSize = 16.sp
|
|
|
|
|
)
|
|
|
|
|
Text(
|
|
|
|
|
nota.artist, fontSize = 12.sp
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
Log.d("nya", nota.toString())
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Preview
|
|
|
|
|
@Composable
|
|
|
|
|
fun Preview() {
|
|
|
|
|
NotaList(
|
|
|
|
|
listOf(
|
|
|
|
|
NotaDescriptor(name = "hello", artist = "there", sourceType = NotaDescriptor.Source.LOCAL, source = ""),
|
|
|
|
|
NotaDescriptor(name = "preview", artist = "me", sourceType = NotaDescriptor.Source.LOCAL, source = ""),
|
|
|
|
|
)
|
|
|
|
|
)
|
|
|
|
|
}
|