package com.github.libretube.util import android.util.Log import com.github.libretube.api.PlaylistsHelper import com.github.libretube.api.RetrofitInstance import com.github.libretube.api.obj.StreamItem import com.github.libretube.extensions.move import com.github.libretube.extensions.toID import kotlinx.coroutines.CoroutineScope import kotlinx.coroutines.Dispatchers import kotlinx.coroutines.launch object PlayingQueue { private val queue = mutableListOf() private var currentStream: StreamItem? = null private var onQueueTapListener: (StreamItem) -> Unit = {} var repeatQueue: Boolean = false fun add(vararg streamItem: StreamItem) { streamItem.forEach { if (currentStream != it) { if (queue.contains(it)) queue.remove(it) queue.add(it) } } } fun addAsNext(streamItem: StreamItem) { if (currentStream == streamItem) return if (queue.contains(streamItem)) queue.remove(streamItem) queue.add( currentIndex() + 1, streamItem ) } fun getNext(): String? { try { return queue[currentIndex() + 1].url?.toID() } catch (e: Exception) { Log.e("queue ended", e.toString()) } if (repeatQueue) return queue.firstOrNull()?.url?.toID() return null } fun getPrev(): String? { return if (currentIndex() > 0) queue[currentIndex() - 1].url?.toID() else null } fun hasPrev(): Boolean { return currentIndex() > 0 } fun hasNext(): Boolean { return currentIndex() + 1 < size() } fun updateCurrent(streamItem: StreamItem) { currentStream = streamItem if (!contains(streamItem)) queue.add(streamItem) } fun isNotEmpty() = queue.isNotEmpty() fun isEmpty() = queue.isEmpty() fun size() = queue.size fun currentIndex(): Int { return try { queue.indexOf( queue.first { it.url?.toID() == currentStream?.url?.toID() } ) } catch (e: Exception) { 0 } } fun contains(streamItem: StreamItem) = queue.any { it.url?.toID() == streamItem.url?.toID() } fun getStreams() = queue fun setStreams(streams: List) { queue.clear() queue.addAll(streams) } fun remove(index: Int) = queue.removeAt(index) 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 { val playlistType = PlaylistsHelper.getPrivatePlaylistType(playlistId) val playlist = PlaylistsHelper.getPlaylist(playlistId) add( *playlist.relatedStreams .orEmpty() .toTypedArray() ) updateCurrent(newCurrentStream) if (playlist.nextpage == null) return@launch fetchMoreFromPlaylist(playlistId, playlist.nextpage) } catch (e: Exception) { e.printStackTrace() } } } 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 } fun resetToDefaults() { repeatQueue = false onQueueTapListener = {} queue.clear() } }