LibreTube/app/src/main/java/com/github/libretube/MainActivity.kt

296 lines
13 KiB
Kotlin
Raw Normal View History

2022-02-01 21:22:06 +05:30
package com.github.libretube
2021-12-09 18:01:40 +05:30
2022-03-15 14:21:31 +05:30
import android.app.Activity
import android.content.Context
2022-02-10 13:52:05 +05:30
import android.content.pm.ActivityInfo
2021-12-16 03:54:40 +05:30
import android.content.res.Configuration
2022-03-14 19:40:14 +05:30
import android.net.Uri
2022-02-10 13:45:09 +05:30
import android.os.Build
2021-12-09 18:31:47 +05:30
import androidx.appcompat.app.AppCompatActivity
2021-12-09 18:01:40 +05:30
import android.os.Bundle
2022-03-15 10:08:33 +05:30
import android.os.Handler
2022-02-02 21:40:37 +05:30
import android.util.Log
2022-02-10 13:45:09 +05:30
import android.view.*
2022-03-15 14:21:31 +05:30
import android.view.inputmethod.InputMethodManager
2022-02-10 16:39:34 +05:30
import android.widget.LinearLayout
2022-03-31 23:04:19 +05:30
import androidx.appcompat.app.AppCompatDelegate
import androidx.appcompat.widget.Toolbar
2021-12-16 03:54:40 +05:30
import androidx.constraintlayout.motion.widget.MotionLayout
2022-02-10 16:39:34 +05:30
import androidx.constraintlayout.widget.ConstraintLayout
2022-03-14 23:58:44 +05:30
import androidx.core.os.bundleOf
import androidx.core.text.HtmlCompat
import androidx.fragment.app.Fragment
2022-02-02 21:40:37 +05:30
import androidx.navigation.NavController
2021-12-09 18:31:47 +05:30
import com.google.android.material.bottomnavigation.BottomNavigationView
2021-12-09 18:25:32 +05:30
import androidx.navigation.findNavController
import androidx.navigation.ui.setupWithNavController
2022-02-08 19:57:13 +05:30
import androidx.preference.PreferenceManager
import com.google.android.material.color.DynamicColors
2022-02-02 23:58:24 +05:30
import java.lang.Exception
2021-12-09 18:01:40 +05:30
class MainActivity : AppCompatActivity() {
2022-03-14 19:40:14 +05:30
val TAG = "MainActivity"
2021-12-28 01:37:07 +05:30
lateinit var bottomNavigationView: BottomNavigationView
lateinit var toolbar: Toolbar
2022-02-02 21:40:37 +05:30
lateinit var navController : NavController
2021-12-09 18:01:40 +05:30
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
2022-02-08 19:57:13 +05:30
val sharedPreferences = PreferenceManager.getDefaultSharedPreferences(this)
RetrofitInstance.url = sharedPreferences.getString("instance", "https://pipedapi.kavin.rocks/")!!
DynamicColors.applyToActivitiesIfAvailable(application)
2021-12-09 18:01:40 +05:30
setContentView(R.layout.activity_main)
2022-03-31 23:04:19 +05:30
when (sharedPreferences.getString("theme_togglee", "A")!!) {
"A" -> AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_FOLLOW_SYSTEM)
"L" -> AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_NO)
"D" -> AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_YES)
}
2022-02-10 13:52:05 +05:30
requestedOrientation = ActivityInfo.SCREEN_ORIENTATION_PORTRAIT
2022-02-02 21:40:37 +05:30
2022-02-08 20:47:49 +05:30
bottomNavigationView = findViewById(R.id.bottomNav)
2022-02-02 21:40:37 +05:30
navController = findNavController(R.id.fragment)
2021-12-09 18:25:32 +05:30
bottomNavigationView.setupWithNavController(navController)
2021-12-28 01:37:07 +05:30
2022-02-08 20:47:49 +05:30
bottomNavigationView.setOnItemSelectedListener {
when(it.itemId){
R.id.home2 -> {
2022-02-10 00:08:41 +05:30
navController.backQueue.clear()
2022-02-08 20:47:49 +05:30
navController.navigate(R.id.home2)
true
}
R.id.subscriptions -> {
2022-02-10 00:08:41 +05:30
//navController.backQueue.clear()
2022-02-08 20:47:49 +05:30
navController.navigate(R.id.subscriptions)
true
}
R.id.library -> {
2022-02-10 00:08:41 +05:30
//navController.backQueue.clear()
2022-02-08 20:47:49 +05:30
navController.navigate(R.id.library)
true
}
}
false
}
toolbar = findViewById(R.id.toolbar)
val hexColor = String.format("#%06X", 0xFFFFFF and 0xcc322d)
val appName = HtmlCompat.fromHtml(
"Libre<span style='color:$hexColor';>Tube</span>",
HtmlCompat.FROM_HTML_MODE_COMPACT
)
2022-02-02 22:18:54 +05:30
toolbar.title= appName
toolbar.setNavigationOnClickListener{
2022-02-02 21:40:37 +05:30
//settings fragment stuff
2022-02-08 14:58:50 +05:30
navController.navigate(R.id.settings)
true
}
toolbar.setOnMenuItemClickListener{
when (it.itemId){
R.id.action_search -> {
navController.navigate(R.id.searchFragment)
true
}
}
false
2021-12-28 01:37:07 +05:30
}
2022-03-15 10:08:33 +05:30
}
override fun onStart() {
super.onStart()
2022-03-14 19:40:14 +05:30
val action: String? = intent?.action
val data: Uri? = intent?.data
Log.d(TAG, "dafaq"+data.toString())
if (data != null) {
Log.d("dafaq",data.host+" ${data.path} ")
2022-03-14 23:58:44 +05:30
if(data.host != null){
if(data.path != null){
//channel
if(data.path!!.contains("/channel/") || data.path!!.contains("/c/") || data.path!!.contains("/user/")){
var channel = data.path
channel = channel!!.replace("/c/","")
channel = channel!!.replace("/user/","")
val bundle = bundleOf("channel_id" to channel)
navController.navigate(R.id.channel,bundle)
}else if(data.path!!.contains("/playlist")){
2022-03-15 10:08:33 +05:30
var playlist = data.query!!
if (playlist.contains("&"))
{
var playlists = playlist.split("&")
for (v in playlists){
if (v.contains("list=")){
playlist = v
break
}
}
}
playlist = playlist.replace("list=","")
2022-03-14 23:58:44 +05:30
val bundle = bundleOf("playlist_id" to playlist)
navController.navigate(R.id.playlistFragment,bundle)
}else if(data.path!!.contains("/shorts/") || data.path!!.contains("/embed/") || data.path!!.contains("/v/")){
var watch = data.path!!.replace("/shorts/","").replace("/v/","").replace("/embed/","")
var bundle = Bundle()
bundle.putString("videoId",watch)
var frag = PlayerFragment()
frag.arguments = bundle
supportFragmentManager.beginTransaction()
.remove(PlayerFragment())
.commit()
supportFragmentManager.beginTransaction()
.replace(R.id.container, frag)
.commitNow()
2022-03-15 10:08:33 +05:30
Handler().postDelayed({
val motionLayout = findViewById<MotionLayout>(R.id.playerMotionLayout)
motionLayout.transitionToEnd()
motionLayout.transitionToStart()
}, 100)
2022-03-14 23:58:44 +05:30
}else if(data.path!!.contains("/watch") && data.query != null){
Log.d("dafaq",data.query!!)
var watch = data.query!!
2022-03-15 10:08:33 +05:30
if (watch.contains("&"))
{
var watches = watch.split("&")
2022-03-14 23:58:44 +05:30
for (v in watches){
if (v.contains("v=")){
2022-03-15 10:08:33 +05:30
watch = v
2022-03-14 23:58:44 +05:30
break
}
}
}
2022-03-15 10:08:33 +05:30
var bundle = Bundle()
bundle.putString("videoId",watch.replace("v=",""))
var frag = PlayerFragment()
frag.arguments = bundle
2022-03-15 10:09:50 +05:30
supportFragmentManager.beginTransaction()
.remove(PlayerFragment())
.commit()
2022-03-15 10:08:33 +05:30
supportFragmentManager.beginTransaction()
.replace(R.id.container, frag)
.commitNow()
Handler().postDelayed({
val motionLayout = findViewById<MotionLayout>(R.id.playerMotionLayout)
motionLayout.transitionToEnd()
motionLayout.transitionToStart()
}, 100)
2022-03-14 19:40:14 +05:30
2022-03-18 20:43:07 +05:30
}else{
var watch = data.path!!.replace("/","")
var bundle = Bundle()
bundle.putString("videoId",watch)
var frag = PlayerFragment()
frag.arguments = bundle
supportFragmentManager.beginTransaction()
.remove(PlayerFragment())
.commit()
supportFragmentManager.beginTransaction()
.replace(R.id.container, frag)
.commitNow()
Handler().postDelayed({
val motionLayout = findViewById<MotionLayout>(R.id.playerMotionLayout)
motionLayout.transitionToEnd()
motionLayout.transitionToStart()
}, 100)
2022-03-14 23:58:44 +05:30
}
}
2022-03-15 10:08:33 +05:30
2022-03-14 23:58:44 +05:30
}
2022-03-15 10:08:33 +05:30
2022-03-14 19:40:14 +05:30
}
2021-12-09 18:01:40 +05:30
}
2021-12-16 03:54:40 +05:30
2022-01-28 23:16:11 +05:30
override fun onBackPressed() {
2022-02-02 23:58:24 +05:30
try{
val mainMotionLayout = findViewById<MotionLayout>(R.id.mainMotionLayout)
if (mainMotionLayout.progress == 0.toFloat()){
mainMotionLayout.transitionToEnd()
2022-02-10 16:39:34 +05:30
findViewById<ConstraintLayout>(R.id.main_container).isClickable=false
val motionLayout = findViewById<MotionLayout>(R.id.playerMotionLayout)
motionLayout.transitionToEnd()
requestedOrientation = ActivityInfo.SCREEN_ORIENTATION_PORTRAIT
with(motionLayout) {
getConstraintSet(R.id.start).constrainHeight(R.id.player, 0)
enableTransition(R.id.yt_transition,true)
}
findViewById<LinearLayout>(R.id.linLayout).visibility=View.VISIBLE
isFullScreen=false
2022-02-02 23:58:24 +05:30
}else{
navController.popBackStack()
if (navController.currentBackStackEntry == null){
2022-02-10 00:08:41 +05:30
super.onBackPressed()
2022-02-10 16:39:34 +05:30
}
}
2022-02-02 23:58:24 +05:30
}catch (e: Exception){
navController.popBackStack()
if (navController.currentBackStackEntry == null){
2022-02-10 00:08:41 +05:30
super.onBackPressed()
2022-02-02 23:58:24 +05:30
}
}
2022-01-28 23:16:11 +05:30
}
2021-12-16 03:54:40 +05:30
override fun onConfigurationChanged(newConfig: Configuration) {
super.onConfigurationChanged(newConfig)
val orientation = newConfig.orientation
if (orientation == Configuration.ORIENTATION_PORTRAIT) {
2021-12-16 03:54:40 +05:30
println("Portrait")
2022-02-13 17:23:04 +05:30
unsetFullscreen()
2021-12-16 03:54:40 +05:30
} else if (orientation == Configuration.ORIENTATION_LANDSCAPE) {
println("Landscape")
2022-02-13 17:23:04 +05:30
setFullscreen()
2022-02-10 13:45:09 +05:30
}
}
private fun setFullscreen() {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.P) {
window.attributes.layoutInDisplayCutoutMode =
WindowManager.LayoutParams.LAYOUT_IN_DISPLAY_CUTOUT_MODE_SHORT_EDGES
}
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.R) {
window.setDecorFitsSystemWindows(false)
window.insetsController?.apply {
hide(WindowInsets.Type.statusBars() or WindowInsets.Type.navigationBars())
systemBarsBehavior = WindowInsetsController.BEHAVIOR_SHOW_TRANSIENT_BARS_BY_SWIPE
2022-01-29 18:41:00 +05:30
}
2022-02-10 13:45:09 +05:30
} else if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {
@Suppress("DEPRECATION")
window.decorView.systemUiVisibility = (View.SYSTEM_UI_FLAG_FULLSCREEN
or View.SYSTEM_UI_FLAG_HIDE_NAVIGATION
or View.SYSTEM_UI_FLAG_IMMERSIVE
or View.SYSTEM_UI_FLAG_LAYOUT_STABLE
or View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
or View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION)
}
}
private fun unsetFullscreen(){
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.P) {
window.attributes.layoutInDisplayCutoutMode =
WindowManager.LayoutParams.LAYOUT_IN_DISPLAY_CUTOUT_MODE_DEFAULT
}
2021-12-16 03:54:40 +05:30
2022-02-10 13:45:09 +05:30
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.R) {
2022-03-05 12:05:15 +05:30
window.setDecorFitsSystemWindows(true)
2022-02-10 13:45:09 +05:30
window.insetsController?.apply {
show(WindowInsets.Type.statusBars() or WindowInsets.Type.navigationBars())
systemBarsBehavior = WindowInsetsController.BEHAVIOR_DEFAULT
}
} else if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {
@Suppress("DEPRECATION")
window.decorView.systemUiVisibility = (View.SYSTEM_UI_FLAG_VISIBLE or View.SYSTEM_UI_FLAG_LAYOUT_STABLE)
2021-12-16 03:54:40 +05:30
}
}
2022-03-15 14:21:31 +05:30
}
fun Fragment.hideKeyboard() {
view?.let { activity?.hideKeyboard(it) }
}
2022-03-15 14:21:31 +05:30
fun Activity.hideKeyboard() {
hideKeyboard(currentFocus ?: View(this))
}
fun Context.hideKeyboard(view: View) {
val inputMethodManager = getSystemService(Activity.INPUT_METHOD_SERVICE) as InputMethodManager
inputMethodManager.hideSoftInputFromWindow(view.windowToken, 0)
}