LibreTube/app/src/main/java/com/github/libretube/services/BackgroundMode.kt

292 lines
9.4 KiB
Kotlin
Raw Normal View History

2022-07-21 16:40:27 +05:30
package com.github.libretube.services
2022-07-23 19:11:57 +05:30
import android.app.Notification
import android.app.NotificationChannel
2022-06-30 19:32:55 +05:30
import android.app.NotificationManager
2022-07-21 16:40:27 +05:30
import android.app.Service
import android.content.Intent
2022-07-23 19:11:57 +05:30
import android.os.Build
2022-08-02 15:04:42 +05:30
import android.os.Handler
2022-07-21 16:40:27 +05:30
import android.os.IBinder
2022-08-02 15:04:42 +05:30
import android.os.Looper
import com.fasterxml.jackson.databind.ObjectMapper
2022-07-30 14:51:18 +05:30
import com.github.libretube.BACKGROUND_CHANNEL_ID
import com.github.libretube.PLAYER_NOTIFICATION_ID
2022-07-23 19:11:57 +05:30
import com.github.libretube.R
2022-08-02 15:04:42 +05:30
import com.github.libretube.obj.Segment
import com.github.libretube.obj.Segments
import com.github.libretube.obj.Streams
2022-07-02 21:53:24 +05:30
import com.github.libretube.preferences.PreferenceHelper
2022-07-17 21:48:39 +05:30
import com.github.libretube.preferences.PreferenceKeys
2022-08-08 14:13:46 +05:30
import com.github.libretube.util.AutoPlayHelper
2022-08-07 21:52:40 +05:30
import com.github.libretube.util.NowPlayingNotification
2022-08-02 15:04:42 +05:30
import com.github.libretube.util.PlayerHelper
2022-07-21 16:40:27 +05:30
import com.github.libretube.util.RetrofitInstance
2022-07-29 12:30:13 +05:30
import com.github.libretube.util.toID
2022-05-27 22:49:08 +05:30
import com.google.android.exoplayer2.C
import com.google.android.exoplayer2.ExoPlayer
import com.google.android.exoplayer2.MediaItem
2022-06-30 19:32:55 +05:30
import com.google.android.exoplayer2.Player
2022-05-27 22:49:08 +05:30
import com.google.android.exoplayer2.audio.AudioAttributes
import com.google.android.exoplayer2.ext.mediasession.MediaSessionConnector
2022-08-02 15:04:42 +05:30
import kotlinx.coroutines.CoroutineScope
import kotlinx.coroutines.Dispatchers
import kotlinx.coroutines.launch
import kotlinx.coroutines.runBlocking
/**
2022-07-21 16:40:27 +05:30
* Loads the selected videos audio in background mode with a notification area.
*/
2022-07-21 16:40:27 +05:30
class BackgroundMode : Service() {
2022-08-02 15:04:42 +05:30
/**
* VideoId of the video
*/
private lateinit var videoId: String
2022-08-08 14:13:46 +05:30
/**
*PlaylistId for autoplay
*/
private var playlistId: String? = null
/**
* The response that gets when called the Api.
*/
2022-08-08 14:13:46 +05:30
private var streams: Streams? = null
/**
* The [ExoPlayer] player. Followed tutorial [here](https://developer.android.com/codelabs/exoplayer-intro)
*/
private var player: ExoPlayer? = null
private var playWhenReadyPlayer = true
2022-06-14 22:38:02 +05:30
/**
* The [AudioAttributes] handle the audio focus of the [player]
*/
private lateinit var audioAttributes: AudioAttributes
2022-08-02 15:04:42 +05:30
/**
* SponsorBlock Segment data
*/
private var segmentData: Segments? = null
2022-08-07 21:52:40 +05:30
/**
2022-08-08 14:13:46 +05:30
* [Notification] for the player
2022-08-07 21:52:40 +05:30
*/
private lateinit var nowPlayingNotification: NowPlayingNotification
2022-08-08 14:13:46 +05:30
/**
* The [videoId] of the next stream for autoplay
*/
private lateinit var nextStreamId: String
/**
* Helper for finding the next video in the playlist
*/
private lateinit var autoPlayHelper: AutoPlayHelper
2022-08-07 22:45:23 +05:30
/**
* Setting the required [notification] for running as a foreground service
*/
2022-07-23 19:11:57 +05:30
override fun onCreate() {
super.onCreate()
if (Build.VERSION.SDK_INT >= 26) {
2022-08-01 12:25:38 +05:30
val channelId = BACKGROUND_CHANNEL_ID
2022-07-23 19:11:57 +05:30
val channel = NotificationChannel(
channelId,
2022-08-01 12:25:38 +05:30
"Background Service",
2022-07-23 19:11:57 +05:30
NotificationManager.IMPORTANCE_DEFAULT
)
val notificationManager = getSystemService(NOTIFICATION_SERVICE) as NotificationManager
notificationManager.createNotificationChannel(channel)
val notification: Notification = Notification.Builder(this, channelId)
.setContentTitle(getString(R.string.app_name))
.setContentText(getString(R.string.playingOnBackground)).build()
2022-08-01 12:25:38 +05:30
startForeground(PLAYER_NOTIFICATION_ID, notification)
2022-07-23 19:11:57 +05:30
}
}
/**
* Initializes the [player] with the [MediaItem].
*/
2022-07-21 16:40:27 +05:30
override fun onStartCommand(intent: Intent?, flags: Int, startId: Int): Int {
2022-08-07 22:31:03 +05:30
try {
// get the intent arguments
videoId = intent?.getStringExtra("videoId")!!
2022-08-08 14:13:46 +05:30
playlistId = intent.getStringExtra(playlistId)
2022-08-07 22:31:03 +05:30
val position = intent.getLongExtra("position", 0L)
2022-08-08 14:13:46 +05:30
// initialize the playlist autoPlay Helper
autoPlayHelper = AutoPlayHelper(playlistId!!)
2022-08-07 22:31:03 +05:30
// play the audio in the background
playAudio(videoId, position)
} catch (e: Exception) {
stopForeground(true)
stopSelf()
}
2022-07-21 16:40:27 +05:30
return super.onStartCommand(intent, flags, startId)
}
/**
* Gets the video data and prepares the [player].
*/
2022-07-23 19:11:57 +05:30
private fun playAudio(
2022-07-21 16:40:27 +05:30
videoId: String,
seekToPosition: Long = 0
) {
runBlocking {
val job = launch {
2022-08-08 14:13:46 +05:30
streams = RetrofitInstance.api.getStreams(videoId)
2022-07-21 16:40:27 +05:30
}
// Wait until the job is done, to load correctly later in the player
job.join()
2022-07-23 19:11:57 +05:30
initializePlayer()
2022-08-07 21:52:40 +05:30
setMediaItem()
// create the notification
2022-08-07 22:31:03 +05:30
if (!this@BackgroundMode::nowPlayingNotification.isInitialized) {
nowPlayingNotification = NowPlayingNotification(this@BackgroundMode, player!!)
}
2022-08-08 14:13:46 +05:30
nowPlayingNotification.updatePlayerNotification(streams!!)
2022-07-21 16:40:27 +05:30
player?.apply {
playWhenReady = playWhenReadyPlayer
prepare()
}
2022-07-23 19:11:57 +05:30
// seek to the previous position if available
2022-07-21 16:40:27 +05:30
if (seekToPosition != 0L) player?.seekTo(seekToPosition)
2022-08-02 15:04:42 +05:30
fetchSponsorBlockSegments()
2022-07-21 16:40:27 +05:30
}
}
/**
* create the player
*/
2022-07-23 19:11:57 +05:30
private fun initializePlayer() {
2022-08-08 14:13:46 +05:30
if (player != null) return
2022-06-14 22:38:02 +05:30
audioAttributes = AudioAttributes.Builder()
2022-05-27 22:49:08 +05:30
.setUsage(C.USAGE_MEDIA)
.setContentType(C.CONTENT_TYPE_MUSIC)
.build()
2022-08-08 14:13:46 +05:30
player = ExoPlayer.Builder(this)
.setAudioAttributes(audioAttributes, true)
.build()
2022-06-30 19:32:55 +05:30
/**
* Listens for changed playbackStates (e.g. pause, end)
* Plays the next video when the current one ended
*/
player!!.addListener(object : Player.Listener {
override fun onPlaybackStateChanged(@Player.State state: Int) {
2022-07-27 14:59:16 +05:30
when (state) {
Player.STATE_ENDED -> {
val autoplay = PreferenceHelper.getBoolean(PreferenceKeys.AUTO_PLAY, true)
if (autoplay) playNextVideo()
}
Player.STATE_IDLE -> {
2022-08-07 22:45:23 +05:30
onDestroy()
2022-07-27 14:59:16 +05:30
}
2022-06-30 19:32:55 +05:30
}
}
})
}
2022-08-08 14:13:46 +05:30
/**
* set the videoId of the next stream for autoplay
*/
private fun setNextStream() {
if (streams!!.relatedStreams!!.isNotEmpty()) {
nextStreamId = streams?.relatedStreams!![0].url.toID()
}
if (playlistId == null) return
if (!this::autoPlayHelper.isInitialized) autoPlayHelper = AutoPlayHelper(playlistId!!)
// search for the next videoId in the playlist
CoroutineScope(Dispatchers.IO).launch {
val nextId = autoPlayHelper.getNextPlaylistVideoId(videoId)
if (nextId != null) nextStreamId = nextId
}
}
2022-06-30 19:32:55 +05:30
/**
* Plays the first related video to the current (used when the playback of the current video ended)
*/
2022-07-23 19:11:57 +05:30
private fun playNextVideo() {
2022-08-08 14:13:46 +05:30
if (nextStreamId == videoId || !this::nextStreamId.isInitialized) return
// play new video on background
this.videoId = nextStreamId
this.segmentData = null
playAudio(videoId)
2022-06-30 19:32:55 +05:30
}
/**
2022-08-08 14:13:46 +05:30
* Sets the [MediaItem] with the [streams] into the [player]. Also creates a [MediaSessionConnector]
* with the [mediaSession] and attach it to the [player].
*/
2022-07-23 19:11:57 +05:30
private fun setMediaItem() {
2022-08-08 14:13:46 +05:30
streams?.let {
val mediaItem = MediaItem.Builder().setUri(it.hls!!).build()
player?.setMediaItem(mediaItem)
}
}
2022-08-02 15:04:42 +05:30
/**
* fetch the segments for SponsorBlock
*/
private fun fetchSponsorBlockSegments() {
CoroutineScope(Dispatchers.IO).launch {
kotlin.runCatching {
val categories = PlayerHelper.getSponsorBlockCategories()
if (categories.size > 0) {
segmentData =
RetrofitInstance.api.getSegments(
videoId,
ObjectMapper().writeValueAsString(categories)
)
checkForSegments()
}
}
}
}
/**
* check for SponsorBlock segments
*/
private fun checkForSegments() {
Handler(Looper.getMainLooper()).postDelayed(this::checkForSegments, 100)
if (segmentData == null || segmentData!!.segments.isEmpty()) return
segmentData!!.segments.forEach { segment: Segment ->
val segmentStart = (segment.segment!![0] * 1000f).toLong()
val segmentEnd = (segment.segment[1] * 1000f).toLong()
val currentPosition = player?.currentPosition
if (currentPosition in segmentStart until segmentEnd) {
player?.seekTo(segmentEnd)
}
}
}
2022-08-07 22:45:23 +05:30
/**
* destroy the [BackgroundMode] foreground service
*/
override fun onDestroy() {
// called when the user pressed stop in the notification
// stop the service from being in the foreground and remove the notification
stopForeground(true)
// destroy the service
stopSelf()
if (this::nowPlayingNotification.isInitialized) nowPlayingNotification.destroy()
super.onDestroy()
}
2022-07-21 16:40:27 +05:30
override fun onBind(p0: Intent?): IBinder? {
TODO("Not yet implemented")
}
}