mirror of
https://github.com/libre-tube/LibreTube.git
synced 2024-12-14 22:30:30 +05:30
cleanup sponsorblock
This commit is contained in:
parent
0777768bd8
commit
4c1a447932
@ -18,7 +18,6 @@ import android.os.Looper
|
|||||||
import android.os.PowerManager
|
import android.os.PowerManager
|
||||||
import android.support.v4.media.session.MediaSessionCompat
|
import android.support.v4.media.session.MediaSessionCompat
|
||||||
import android.text.Html
|
import android.text.Html
|
||||||
import android.text.TextUtils
|
|
||||||
import android.text.format.DateUtils
|
import android.text.format.DateUtils
|
||||||
import android.util.Log
|
import android.util.Log
|
||||||
import android.view.LayoutInflater
|
import android.view.LayoutInflater
|
||||||
@ -35,6 +34,7 @@ import androidx.fragment.app.Fragment
|
|||||||
import androidx.lifecycle.lifecycleScope
|
import androidx.lifecycle.lifecycleScope
|
||||||
import androidx.recyclerview.widget.GridLayoutManager
|
import androidx.recyclerview.widget.GridLayoutManager
|
||||||
import androidx.recyclerview.widget.LinearLayoutManager
|
import androidx.recyclerview.widget.LinearLayoutManager
|
||||||
|
import com.fasterxml.jackson.databind.ObjectMapper
|
||||||
import com.github.libretube.BACKGROUND_CHANNEL_ID
|
import com.github.libretube.BACKGROUND_CHANNEL_ID
|
||||||
import com.github.libretube.Globals
|
import com.github.libretube.Globals
|
||||||
import com.github.libretube.PLAYER_NOTIFICATION_ID
|
import com.github.libretube.PLAYER_NOTIFICATION_ID
|
||||||
@ -53,7 +53,6 @@ import com.github.libretube.obj.ChapterSegment
|
|||||||
import com.github.libretube.obj.Playlist
|
import com.github.libretube.obj.Playlist
|
||||||
import com.github.libretube.obj.Segment
|
import com.github.libretube.obj.Segment
|
||||||
import com.github.libretube.obj.Segments
|
import com.github.libretube.obj.Segments
|
||||||
import com.github.libretube.obj.SponsorBlockPrefs
|
|
||||||
import com.github.libretube.obj.StreamItem
|
import com.github.libretube.obj.StreamItem
|
||||||
import com.github.libretube.obj.Streams
|
import com.github.libretube.obj.Streams
|
||||||
import com.github.libretube.obj.Subscribe
|
import com.github.libretube.obj.Subscribe
|
||||||
@ -157,7 +156,6 @@ class PlayerFragment : Fragment() {
|
|||||||
private var token = ""
|
private var token = ""
|
||||||
private var relatedStreamsEnabled = true
|
private var relatedStreamsEnabled = true
|
||||||
private var autoplayEnabled = false
|
private var autoplayEnabled = false
|
||||||
private val sponsorBlockPrefs = SponsorBlockPrefs()
|
|
||||||
private var autoRotationEnabled = true
|
private var autoRotationEnabled = true
|
||||||
private var playbackSpeed = "1F"
|
private var playbackSpeed = "1F"
|
||||||
private var pausePlayerOnScreenOffEnabled = false
|
private var pausePlayerOnScreenOffEnabled = false
|
||||||
@ -171,6 +169,8 @@ class PlayerFragment : Fragment() {
|
|||||||
private var bufferingGoal = 50000
|
private var bufferingGoal = 50000
|
||||||
private var seekBarPreview = false
|
private var seekBarPreview = false
|
||||||
private var defaultSubtitle = ""
|
private var defaultSubtitle = ""
|
||||||
|
private var sponsorBlockEnabled = true
|
||||||
|
private var sponsorBlockNotifications = true
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* for autoplay
|
* for autoplay
|
||||||
@ -234,7 +234,6 @@ class PlayerFragment : Fragment() {
|
|||||||
mainActivity.requestedOrientation = ActivityInfo.SCREEN_ORIENTATION_USER_PORTRAIT
|
mainActivity.requestedOrientation = ActivityInfo.SCREEN_ORIENTATION_USER_PORTRAIT
|
||||||
}
|
}
|
||||||
|
|
||||||
setSponsorBlockPrefs()
|
|
||||||
createExoPlayer()
|
createExoPlayer()
|
||||||
initializeTransitionLayout()
|
initializeTransitionLayout()
|
||||||
initializeOnClickActions()
|
initializeOnClickActions()
|
||||||
@ -315,6 +314,16 @@ class PlayerFragment : Fragment() {
|
|||||||
false
|
false
|
||||||
)
|
)
|
||||||
|
|
||||||
|
sponsorBlockEnabled = PreferenceHelper.getBoolean(
|
||||||
|
"sb_enabled_key",
|
||||||
|
true
|
||||||
|
)
|
||||||
|
|
||||||
|
sponsorBlockNotifications = PreferenceHelper.getBoolean(
|
||||||
|
"sb_notifications_key",
|
||||||
|
true
|
||||||
|
)
|
||||||
|
|
||||||
defaultSubtitle = PreferenceHelper.getString(
|
defaultSubtitle = PreferenceHelper.getString(
|
||||||
PreferenceKeys.DEFAULT_SUBTITLE,
|
PreferenceKeys.DEFAULT_SUBTITLE,
|
||||||
""
|
""
|
||||||
@ -325,29 +334,6 @@ class PlayerFragment : Fragment() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun setSponsorBlockPrefs() {
|
|
||||||
sponsorBlockPrefs.sponsorBlockEnabled =
|
|
||||||
PreferenceHelper.getBoolean("sb_enabled_key", true)
|
|
||||||
sponsorBlockPrefs.sponsorNotificationsEnabled =
|
|
||||||
PreferenceHelper.getBoolean("sb_notifications_key", true)
|
|
||||||
sponsorBlockPrefs.introEnabled =
|
|
||||||
PreferenceHelper.getBoolean("intro_category_key", false)
|
|
||||||
sponsorBlockPrefs.selfPromoEnabled =
|
|
||||||
PreferenceHelper.getBoolean("selfpromo_category_key", false)
|
|
||||||
sponsorBlockPrefs.interactionEnabled =
|
|
||||||
PreferenceHelper.getBoolean("interaction_category_key", false)
|
|
||||||
sponsorBlockPrefs.sponsorsEnabled =
|
|
||||||
PreferenceHelper.getBoolean("sponsors_category_key", true)
|
|
||||||
sponsorBlockPrefs.outroEnabled =
|
|
||||||
PreferenceHelper.getBoolean("outro_category_key", false)
|
|
||||||
sponsorBlockPrefs.fillerEnabled =
|
|
||||||
PreferenceHelper.getBoolean("filler_category_key", false)
|
|
||||||
sponsorBlockPrefs.musicOffTopicEnabled =
|
|
||||||
PreferenceHelper.getBoolean("music_offtopic_category_key", false)
|
|
||||||
sponsorBlockPrefs.previewEnabled =
|
|
||||||
PreferenceHelper.getBoolean("preview_category_key", false)
|
|
||||||
}
|
|
||||||
|
|
||||||
private fun initializeTransitionLayout() {
|
private fun initializeTransitionLayout() {
|
||||||
val mainActivity = activity as MainActivity
|
val mainActivity = activity as MainActivity
|
||||||
mainActivity.binding.container.visibility = View.VISIBLE
|
mainActivity.binding.container.visibility = View.VISIBLE
|
||||||
@ -729,7 +715,7 @@ class PlayerFragment : Fragment() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private fun checkForSegments() {
|
private fun checkForSegments() {
|
||||||
if (!exoPlayer.isPlaying || !sponsorBlockPrefs.sponsorBlockEnabled) return
|
if (!exoPlayer.isPlaying || !sponsorBlockEnabled) return
|
||||||
|
|
||||||
exoPlayerView.postDelayed(this::checkForSegments, 100)
|
exoPlayerView.postDelayed(this::checkForSegments, 100)
|
||||||
|
|
||||||
@ -742,7 +728,7 @@ class PlayerFragment : Fragment() {
|
|||||||
val segmentEnd = (segment.segment[1] * 1000.0f).toLong()
|
val segmentEnd = (segment.segment[1] * 1000.0f).toLong()
|
||||||
val currentPosition = exoPlayer.currentPosition
|
val currentPosition = exoPlayer.currentPosition
|
||||||
if (currentPosition in segmentStart until segmentEnd) {
|
if (currentPosition in segmentStart until segmentEnd) {
|
||||||
if (sponsorBlockPrefs.sponsorNotificationsEnabled) {
|
if (sponsorBlockNotifications) {
|
||||||
Toast.makeText(context, R.string.segment_skipped, Toast.LENGTH_SHORT).show()
|
Toast.makeText(context, R.string.segment_skipped, Toast.LENGTH_SHORT).show()
|
||||||
}
|
}
|
||||||
exoPlayer.seekTo(segmentEnd)
|
exoPlayer.seekTo(segmentEnd)
|
||||||
@ -784,7 +770,7 @@ class PlayerFragment : Fragment() {
|
|||||||
exoPlayer.play()
|
exoPlayer.play()
|
||||||
exoPlayerView.useController = true
|
exoPlayerView.useController = true
|
||||||
initializePlayerNotification(requireContext())
|
initializePlayerNotification(requireContext())
|
||||||
fetchSponsorBlockSegments()
|
if (sponsorBlockEnabled) fetchSponsorBlockSegments()
|
||||||
// show comments if related streams disabled
|
// show comments if related streams disabled
|
||||||
if (!relatedStreamsEnabled) toggleComments()
|
if (!relatedStreamsEnabled) toggleComments()
|
||||||
// prepare for autoplay
|
// prepare for autoplay
|
||||||
@ -798,6 +784,24 @@ class PlayerFragment : Fragment() {
|
|||||||
run()
|
run()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 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)
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
private fun refreshLiveStatus() {
|
private fun refreshLiveStatus() {
|
||||||
// switch back to normal speed when on the end of live stream
|
// switch back to normal speed when on the end of live stream
|
||||||
if (exoPlayer.duration - exoPlayer.currentPosition < 7000) {
|
if (exoPlayer.duration - exoPlayer.currentPosition < 7000) {
|
||||||
@ -899,56 +903,6 @@ class PlayerFragment : Fragment() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun fetchSponsorBlockSegments() {
|
|
||||||
fun run() {
|
|
||||||
lifecycleScope.launch(Dispatchers.IO) {
|
|
||||||
if (sponsorBlockPrefs.sponsorBlockEnabled) {
|
|
||||||
val categories: ArrayList<String> = arrayListOf()
|
|
||||||
if (sponsorBlockPrefs.introEnabled) {
|
|
||||||
categories.add("intro")
|
|
||||||
}
|
|
||||||
if (sponsorBlockPrefs.selfPromoEnabled) {
|
|
||||||
categories.add("selfpromo")
|
|
||||||
}
|
|
||||||
if (sponsorBlockPrefs.interactionEnabled) {
|
|
||||||
categories.add("interaction")
|
|
||||||
}
|
|
||||||
if (sponsorBlockPrefs.sponsorsEnabled) {
|
|
||||||
categories.add("sponsor")
|
|
||||||
}
|
|
||||||
if (sponsorBlockPrefs.outroEnabled) {
|
|
||||||
categories.add("outro")
|
|
||||||
}
|
|
||||||
if (sponsorBlockPrefs.fillerEnabled) {
|
|
||||||
categories.add("filler")
|
|
||||||
}
|
|
||||||
if (sponsorBlockPrefs.musicOffTopicEnabled) {
|
|
||||||
categories.add("music_offtopic")
|
|
||||||
}
|
|
||||||
if (sponsorBlockPrefs.previewEnabled) {
|
|
||||||
categories.add("preview")
|
|
||||||
}
|
|
||||||
if (categories.size > 0) {
|
|
||||||
segmentData = try {
|
|
||||||
RetrofitInstance.api.getSegments(
|
|
||||||
videoId!!,
|
|
||||||
"[\"" + TextUtils.join("\",\"", categories) + "\"]"
|
|
||||||
)
|
|
||||||
} catch (e: IOException) {
|
|
||||||
println(e)
|
|
||||||
Log.e(TAG, "IOException, you might not have internet connection")
|
|
||||||
return@launch
|
|
||||||
} catch (e: HttpException) {
|
|
||||||
Log.e(TAG, "HttpException, unexpected response")
|
|
||||||
return@launch
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
run()
|
|
||||||
}
|
|
||||||
|
|
||||||
private fun prepareExoPlayerView() {
|
private fun prepareExoPlayerView() {
|
||||||
exoPlayerView.apply {
|
exoPlayerView.apply {
|
||||||
setShowSubtitleButton(true)
|
setShowSubtitleButton(true)
|
||||||
@ -1014,8 +968,8 @@ class PlayerFragment : Fragment() {
|
|||||||
// Listener for play and pause icon change
|
// Listener for play and pause icon change
|
||||||
exoPlayer.addListener(object : Player.Listener {
|
exoPlayer.addListener(object : Player.Listener {
|
||||||
override fun onIsPlayingChanged(isPlaying: Boolean) {
|
override fun onIsPlayingChanged(isPlaying: Boolean) {
|
||||||
if (isPlaying && sponsorBlockPrefs.sponsorBlockEnabled) {
|
if (isPlaying && sponsorBlockEnabled) {
|
||||||
exoPlayerView.postDelayed(
|
Handler(Looper.getMainLooper()).postDelayed(
|
||||||
this@PlayerFragment::checkForSegments,
|
this@PlayerFragment::checkForSegments,
|
||||||
100
|
100
|
||||||
)
|
)
|
||||||
|
@ -1,14 +0,0 @@
|
|||||||
package com.github.libretube.obj
|
|
||||||
|
|
||||||
class SponsorBlockPrefs(
|
|
||||||
var sponsorBlockEnabled: Boolean = false,
|
|
||||||
var sponsorNotificationsEnabled: Boolean = false,
|
|
||||||
var sponsorsEnabled: Boolean = false,
|
|
||||||
var selfPromoEnabled: Boolean = false,
|
|
||||||
var interactionEnabled: Boolean = false,
|
|
||||||
var introEnabled: Boolean = false,
|
|
||||||
var outroEnabled: Boolean = false,
|
|
||||||
var fillerEnabled: Boolean = false,
|
|
||||||
var musicOffTopicEnabled: Boolean = false,
|
|
||||||
var previewEnabled: Boolean = false
|
|
||||||
)
|
|
@ -68,4 +68,68 @@ object PlayerHelper {
|
|||||||
CaptionStyleCompat.createFromCaptionStyle(captioningManager.userStyle)
|
CaptionStyleCompat.createFromCaptionStyle(captioningManager.userStyle)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* get the categories for sponsorBlock
|
||||||
|
*/
|
||||||
|
fun getSponsorBlockCategories(): ArrayList<String> {
|
||||||
|
val categories: ArrayList<String> = arrayListOf()
|
||||||
|
if (PreferenceHelper.getBoolean(
|
||||||
|
"intro_category_key",
|
||||||
|
false
|
||||||
|
)
|
||||||
|
) {
|
||||||
|
categories.add("intro")
|
||||||
|
}
|
||||||
|
if (PreferenceHelper.getBoolean(
|
||||||
|
"selfpromo_category_key",
|
||||||
|
false
|
||||||
|
)
|
||||||
|
) {
|
||||||
|
categories.add("selfpromo")
|
||||||
|
}
|
||||||
|
if (PreferenceHelper.getBoolean(
|
||||||
|
"interaction_category_key",
|
||||||
|
false
|
||||||
|
)
|
||||||
|
) {
|
||||||
|
categories.add("interaction")
|
||||||
|
}
|
||||||
|
if (PreferenceHelper.getBoolean(
|
||||||
|
"sponsors_category_key",
|
||||||
|
true
|
||||||
|
)
|
||||||
|
) {
|
||||||
|
categories.add("sponsor")
|
||||||
|
}
|
||||||
|
if (PreferenceHelper.getBoolean(
|
||||||
|
"outro_category_key",
|
||||||
|
false
|
||||||
|
)
|
||||||
|
) {
|
||||||
|
categories.add("outro")
|
||||||
|
}
|
||||||
|
if (PreferenceHelper.getBoolean(
|
||||||
|
"filler_category_key",
|
||||||
|
false
|
||||||
|
)
|
||||||
|
) {
|
||||||
|
categories.add("filler")
|
||||||
|
}
|
||||||
|
if (PreferenceHelper.getBoolean(
|
||||||
|
"music_offtopic_category_key",
|
||||||
|
false
|
||||||
|
)
|
||||||
|
) {
|
||||||
|
categories.add("music_offtopic")
|
||||||
|
}
|
||||||
|
if (PreferenceHelper.getBoolean(
|
||||||
|
"preview_category_key",
|
||||||
|
false
|
||||||
|
)
|
||||||
|
) {
|
||||||
|
categories.add("preview")
|
||||||
|
}
|
||||||
|
return categories
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user