LibreTube/app/src/main/java/com/github/libretube/util/PlayingQueue.kt

149 lines
4.3 KiB
Kotlin
Raw Normal View History

2022-09-19 23:37:55 +05:30
package com.github.libretube.util
2022-11-06 16:20:04 +05:30
import android.util.Log
2022-11-20 21:39:07 +05:30
import com.github.libretube.api.PlaylistsHelper
import com.github.libretube.api.RetrofitInstance
2022-10-23 15:03:35 +05:30
import com.github.libretube.api.obj.StreamItem
2022-10-23 18:39:58 +05:30
import com.github.libretube.extensions.move
2022-10-23 17:09:15 +05:30
import com.github.libretube.extensions.toID
import kotlinx.coroutines.CoroutineScope
import kotlinx.coroutines.Dispatchers
import kotlinx.coroutines.launch
2022-10-23 15:03:35 +05:30
2022-09-19 23:37:55 +05:30
object PlayingQueue {
2022-10-23 17:09:15 +05:30
private val queue = mutableListOf<StreamItem>()
private var currentStream: StreamItem? = null
2022-11-06 16:20:04 +05:30
private var onQueueTapListener: (StreamItem) -> Unit = {}
2022-11-17 21:15:07 +05:30
var repeatQueue: Boolean = false
2022-10-23 17:09:15 +05:30
fun add(vararg streamItem: StreamItem) {
streamItem.forEach {
if (currentStream != it) {
if (queue.contains(it)) queue.remove(it)
queue.add(it)
}
}
2022-09-19 23:37:55 +05:30
}
2022-10-23 17:09:15 +05:30
fun addAsNext(streamItem: StreamItem) {
if (currentStream == streamItem) return
if (queue.contains(streamItem)) queue.remove(streamItem)
2022-09-19 23:37:55 +05:30
queue.add(
2022-10-23 17:09:15 +05:30
currentIndex() + 1,
streamItem
2022-09-19 23:37:55 +05:30
)
}
2022-09-19 23:43:25 +05:30
fun getNext(): String? {
2022-11-17 21:15:07 +05:30
try {
return queue[currentIndex() + 1].url?.toID()
2022-09-23 17:42:41 +05:30
} catch (e: Exception) {
2022-11-17 21:15:07 +05:30
Log.e("queue ended", e.toString())
2022-09-20 01:07:30 +05:30
}
2022-11-17 21:15:07 +05:30
if (repeatQueue) return queue.firstOrNull()?.url?.toID()
return null
2022-09-20 01:07:30 +05:30
}
2022-09-20 01:51:30 +05:30
fun getPrev(): String? {
return if (currentIndex() > 0) queue[currentIndex() - 1].url?.toID() else null
2022-09-20 01:07:30 +05:30
}
fun hasPrev(): Boolean {
return currentIndex() > 0
}
fun hasNext(): Boolean {
return currentIndex() + 1 < size()
2022-09-20 01:07:30 +05:30
}
2022-10-23 17:09:15 +05:30
fun updateCurrent(streamItem: StreamItem) {
currentStream = streamItem
if (!contains(streamItem)) queue.add(streamItem)
2022-09-19 23:43:25 +05:30
}
2022-09-20 01:13:13 +05:30
fun isNotEmpty() = queue.isNotEmpty()
2022-09-23 17:42:41 +05:30
2022-10-23 17:09:15 +05:30
fun isEmpty() = queue.isEmpty()
fun size() = queue.size
2022-09-23 17:42:41 +05:30
2022-10-23 18:49:14 +05:30
fun currentIndex(): Int {
return try {
queue.indexOf(
queue.first { it.url?.toID() == currentStream?.url?.toID() }
)
} catch (e: Exception) {
0
}
}
2022-09-23 17:42:41 +05:30
fun contains(streamItem: StreamItem) = queue.any { it.url?.toID() == streamItem.url?.toID() }
2022-10-23 17:09:15 +05:30
fun getStreams() = queue
2022-10-29 02:34:44 +05:30
fun setStreams(streams: List<StreamItem>) {
queue.clear()
queue.addAll(streams)
}
fun remove(index: Int) = queue.removeAt(index)
2022-10-23 18:39:58 +05:30
fun move(from: Int, to: Int) = queue.move(from, to)
private fun fetchMoreFromPlaylist(playlistId: String, nextPage: String?) {
var playlistNextPage: String? = nextPage
CoroutineScope(Dispatchers.IO).launch {
while (playlistNextPage != null) {
RetrofitInstance.authApi.getPlaylistNextPage(
playlistId,
playlistNextPage!!
).apply {
add(
*this.relatedStreams.orEmpty().toTypedArray()
)
playlistNextPage = this.nextpage
}
}
}
}
fun insertPlaylist(playlistId: String, newCurrentStream: StreamItem) {
CoroutineScope(Dispatchers.IO).launch {
try {
2022-12-01 21:41:31 +05:30
val playlistType = PlaylistsHelper.getPrivatePlaylistType(playlistId)
val playlist = PlaylistsHelper.getPlaylist(playlistId)
add(
2022-11-20 21:39:07 +05:30
*playlist.relatedStreams
.orEmpty()
.toTypedArray()
)
updateCurrent(newCurrentStream)
2022-11-20 21:39:07 +05:30
if (playlist.nextpage == null) return@launch
fetchMoreFromPlaylist(playlistId, playlist.nextpage)
} catch (e: Exception) {
e.printStackTrace()
}
}
}
2022-11-06 16:20:04 +05:30
fun onQueueItemSelected(index: Int) {
try {
val streamItem = queue[index]
updateCurrent(streamItem)
onQueueTapListener.invoke(streamItem)
} catch (e: Exception) {
Log.e("Queue on tap", "lifecycle already ended")
}
}
fun setOnQueueTapListener(listener: (StreamItem) -> Unit) {
onQueueTapListener = listener
}
2022-11-17 21:15:07 +05:30
fun resetToDefaults() {
repeatQueue = false
2022-11-06 16:20:04 +05:30
onQueueTapListener = {}
2022-11-19 19:48:05 +05:30
queue.clear()
2022-11-06 16:20:04 +05:30
}
2022-09-19 23:37:55 +05:30
}