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

330 lines
11 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
2022-08-08 15:31:25 +05:30
import android.widget.Toast
2022-08-02 15:04:42 +05:30
import com.fasterxml.jackson.databind.ObjectMapper
2022-08-10 19:23:34 +05:30
import com.github.libretube.Globals
2022-07-23 19:11:57 +05:30
import com.github.libretube.R
2022-08-14 13:25:28 +05:30
import com.github.libretube.api.RetrofitInstance
2022-09-08 22:12:52 +05:30
import com.github.libretube.constants.BACKGROUND_CHANNEL_ID
2022-09-08 23:49:44 +05:30
import com.github.libretube.constants.IntentData
2022-09-08 22:12:52 +05:30
import com.github.libretube.constants.PLAYER_NOTIFICATION_ID
2022-09-08 21:59:00 +05:30
import com.github.libretube.constants.PreferenceKeys
2022-08-27 18:43:24 +05:30
import com.github.libretube.extensions.toID
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-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-09-08 21:59:00 +05:30
import com.github.libretube.util.PreferenceHelper
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
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
*/
2022-08-10 19:23:34 +05:30
private var nextStreamId: String? = null
2022-08-08 14:13:46 +05:30
/**
* Helper for finding the next video in the playlist
*/
private lateinit var autoPlayHelper: AutoPlayHelper
2022-08-07 22:45:23 +05:30
/**
2022-08-10 19:53:57 +05:30
* Autoplay Preference
*/
private val autoplay = PreferenceHelper.getBoolean(PreferenceKeys.AUTO_PLAY, true)
/**
* Setting the required [Notification] for running as a foreground service
2022-08-07 22:45:23 +05:30
*/
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 {
2022-08-10 19:23:34 +05:30
// clear the playing queue
Globals.playingQueue.clear()
2022-08-07 22:31:03 +05:30
// get the intent arguments
2022-09-08 23:49:44 +05:30
videoId = intent?.getStringExtra(IntentData.videoId)!!
playlistId = intent.getStringExtra(IntentData.playlistId)
val position = intent.getLongExtra(IntentData.position, 0L)
2022-08-07 22:31:03 +05:30
2022-08-08 14:13:46 +05:30
// initialize the playlist autoPlay Helper
2022-08-23 12:41:13 +05:30
autoPlayHelper = AutoPlayHelper(playlistId)
2022-08-08 14:13:46 +05:30
2022-08-07 22:31:03 +05:30
// play the audio in the background
playAudio(videoId, position)
} catch (e: Exception) {
2022-08-27 18:43:24 +05:30
onDestroy()
2022-08-07 22:31:03 +05:30
}
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
) {
2022-08-10 19:23:34 +05:30
// append the video to the playing queue
Globals.playingQueue += videoId
2022-07-21 16:40:27 +05:30
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
2022-08-09 18:37:12 +05:30
// set the playback speed
val playbackSpeed = PreferenceHelper.getString(
PreferenceKeys.BACKGROUND_PLAYBACK_SPEED,
"1"
).toFloat()
player?.setPlaybackSpeed(playbackSpeed)
2022-08-02 15:04:42 +05:30
fetchSponsorBlockSegments()
2022-08-08 14:38:44 +05:30
2022-08-10 19:53:57 +05:30
if (autoplay) setNextStream()
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 -> {
if (autoplay) playNextVideo()
}
Player.STATE_IDLE -> {
2022-08-07 22:45:23 +05:30
onDestroy()
2022-07-27 14:59:16 +05:30
}
2022-08-27 18:43:24 +05:30
Player.STATE_BUFFERING -> {}
Player.STATE_READY -> {}
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()) {
2022-09-08 23:49:44 +05:30
nextStreamId = streams?.relatedStreams!![0].url!!.toID()
2022-08-08 14:13:46 +05:30
}
if (playlistId == null) return
if (!this::autoPlayHelper.isInitialized) autoPlayHelper = AutoPlayHelper(playlistId!!)
// search for the next videoId in the playlist
CoroutineScope(Dispatchers.IO).launch {
2022-08-10 19:23:34 +05:30
nextStreamId = autoPlayHelper.getNextVideoId(videoId, streams!!.relatedStreams!!)
2022-08-08 14:13:46 +05:30
}
}
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-10 19:23:34 +05:30
if (nextStreamId == null || nextStreamId == videoId) return
2022-08-10 19:53:57 +05:30
val nextQueueVideo = autoPlayHelper.getNextPlayingQueueVideoId(videoId)
if (nextQueueVideo != null) nextStreamId = nextQueueVideo
2022-08-08 14:13:46 +05:30
// play new video on background
2022-08-10 19:23:34 +05:30
this.videoId = nextStreamId!!
2022-08-08 14:13:46 +05:30
this.segmentData = null
playAudio(videoId)
2022-06-30 19:32:55 +05:30
}
/**
2022-08-10 19:53:57 +05:30
* Sets the [MediaItem] with the [streams] into 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) {
2022-08-08 15:31:25 +05:30
if (PreferenceHelper.getBoolean(
"sb_notifications_key",
true
)
) {
try {
Toast.makeText(this, R.string.segment_skipped, Toast.LENGTH_SHORT)
.show()
} catch (e: Exception) {
// Do nothing.
}
}
2022-08-02 15:04:42 +05:30
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
2022-08-27 18:43:24 +05:30
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
stopForeground(STOP_FOREGROUND_REMOVE)
} else {
@Suppress("DEPRECATION")
stopForeground(true)
}
2022-08-07 22:45:23 +05:30
// 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? {
2022-08-09 18:37:12 +05:30
return null
}
}