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

264 lines
10 KiB
Kotlin
Raw Normal View History

2022-02-05 00:25:05 +05:30
package com.github.libretube
2022-02-06 10:08:50 +05:30
2022-02-13 17:23:04 +05:30
import android.annotation.SuppressLint
import android.app.Activity
2022-02-13 17:23:04 +05:30
import android.content.Context
import android.opengl.Visibility
2022-02-05 00:25:05 +05:30
import android.os.Bundle
import android.util.Log
import android.util.TypedValue
2022-02-05 00:25:05 +05:30
import android.view.LayoutInflater
import android.view.View
import android.view.ViewGroup
import android.widget.ImageView
2022-02-05 19:39:50 +05:30
import android.widget.ScrollView
2022-02-05 00:25:05 +05:30
import android.widget.TextView
import androidx.fragment.app.Fragment
2022-02-05 00:25:05 +05:30
import androidx.lifecycle.lifecycleScope
2022-02-05 21:10:29 +05:30
import androidx.recyclerview.widget.LinearLayoutManager
2022-02-05 15:00:29 +05:30
import androidx.recyclerview.widget.RecyclerView
import androidx.swiperefreshlayout.widget.SwipeRefreshLayout
2022-02-05 15:00:29 +05:30
import com.github.libretube.adapters.ChannelAdapter
2022-02-13 17:23:04 +05:30
import com.github.libretube.obj.Subscribe
import com.google.android.material.button.MaterialButton
2022-02-05 00:25:05 +05:30
import com.squareup.picasso.Picasso
import retrofit2.HttpException
import java.io.IOException
class ChannelFragment : Fragment() {
2022-02-05 21:20:16 +05:30
2022-02-05 00:25:05 +05:30
private var channel_id: String? = null
private val TAG = "ChannelFragment"
2022-02-05 22:40:43 +05:30
var nextPage: String? =null
2022-02-06 18:40:27 +05:30
var channelAdapter: ChannelAdapter? = null
var isLoading = true
2022-02-13 17:23:04 +05:30
var isSubscribed: Boolean =false
private var refreshLayout: SwipeRefreshLayout? = null
2022-02-05 15:00:29 +05:30
2022-02-05 00:25:05 +05:30
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
arguments?.let {
channel_id = it.getString("channel_id")
}
}
override fun onCreateView(
inflater: LayoutInflater, container: ViewGroup?,
savedInstanceState: Bundle?
): View? {
// Inflate the layout for this fragment
return inflater.inflate(R.layout.fragment_channel, container, false)
2022-02-05 22:40:43 +05:30
2022-02-05 00:25:05 +05:30
}
override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
super.onViewCreated(view, savedInstanceState)
2022-02-05 22:40:43 +05:30
2022-02-05 00:25:05 +05:30
channel_id = channel_id!!.replace("/channel/","")
view.findViewById<TextView>(R.id.channel_name).text=channel_id
2022-02-05 21:10:29 +05:30
val recyclerView = view.findViewById<RecyclerView>(R.id.channel_recView)
recyclerView.layoutManager = LinearLayoutManager(context)
refreshLayout = view.findViewById(R.id.channel_refresh)
val refreshChannel = {
refreshLayout?.isRefreshing = true
fetchChannel(view)
val sharedPref = context?.getSharedPreferences("token", Context.MODE_PRIVATE)
2022-02-13 23:05:51 +05:30
val subButton = view.findViewById<MaterialButton>(R.id.channel_subscribe)
if (sharedPref?.getString("token","") != "") {
isSubscribed(subButton)
}
}
refreshChannel()
refreshLayout?.setOnRefreshListener {
refreshChannel()
2022-02-13 23:05:51 +05:30
}
2022-02-08 14:58:50 +05:30
val scrollView = view.findViewById<ScrollView>(R.id.channel_scrollView)
scrollView.viewTreeObserver
.addOnScrollChangedListener {
if (scrollView.getChildAt(0).bottom
== (scrollView.height + scrollView.scrollY)) {
//scroll view is at bottom
if(nextPage!=null && !isLoading){
isLoading=true
refreshLayout?.isRefreshing = true;
2022-02-08 14:58:50 +05:30
fetchNextPage()
}
}
}
2022-02-05 19:39:50 +05:30
2022-02-13 17:23:04 +05:30
}
private fun isSubscribed(button: MaterialButton){
@SuppressLint("ResourceAsColor")
fun run() {
lifecycleScope.launchWhenCreated {
val response = try {
val sharedPref = context?.getSharedPreferences("token", Context.MODE_PRIVATE)
RetrofitInstance.api.isSubscribed(channel_id!!,sharedPref?.getString("token","")!!)
}catch(e: IOException) {
println(e)
Log.e(TAG, "IOException, you might not have internet connection")
return@launchWhenCreated
} catch (e: HttpException) {
Log.e(TAG, "HttpException, unexpected response")
return@launchWhenCreated
}
val colorPrimary = TypedValue()
(context as Activity).theme.resolveAttribute(
android.R.attr.colorPrimary,
colorPrimary,
true)
val ColorText = TypedValue()
(context as Activity).theme.resolveAttribute(
R.attr.colorOnSurface,
ColorText,
true)
2022-02-13 17:23:04 +05:30
runOnUiThread {
if (response.subscribed==true){
isSubscribed=true
button.text=getString(R.string.unsubscribe)
button.setTextColor(ColorText.data)
2022-02-13 17:23:04 +05:30
}
2022-02-13 23:05:51 +05:30
if(response.subscribed!=null){
2022-02-13 17:23:04 +05:30
button.setOnClickListener {
if(isSubscribed){
unsubscribe()
button.text=getString(R.string.subscribe)
button.setTextColor(colorPrimary.data)
2022-02-13 17:23:04 +05:30
}else{
subscribe()
button.text=getString(R.string.unsubscribe)
button.setTextColor(ColorText.data)
2022-02-13 17:23:04 +05:30
}
2022-02-13 23:05:51 +05:30
}}
2022-02-13 17:23:04 +05:30
}
}
}
run()
}
private fun subscribe(){
fun run() {
lifecycleScope.launchWhenCreated {
val response = try {
val sharedPref = context?.getSharedPreferences("token", Context.MODE_PRIVATE)
RetrofitInstance.api.subscribe(sharedPref?.getString("token","")!!, Subscribe(channel_id))
}catch(e: IOException) {
println(e)
Log.e(TAG, "IOException, you might not have internet connection")
return@launchWhenCreated
} catch (e: HttpException) {
Log.e(TAG, "HttpException, unexpected response$e")
return@launchWhenCreated
}
isSubscribed=true
}
}
run()
}
private fun unsubscribe(){
fun run() {
lifecycleScope.launchWhenCreated {
val response = try {
val sharedPref = context?.getSharedPreferences("token", Context.MODE_PRIVATE)
RetrofitInstance.api.unsubscribe(sharedPref?.getString("token","")!!, Subscribe(channel_id))
}catch(e: IOException) {
println(e)
Log.e(TAG, "IOException, you might not have internet connection")
return@launchWhenCreated
} catch (e: HttpException) {
Log.e(TAG, "HttpException, unexpected response")
return@launchWhenCreated
}
isSubscribed=false
}
}
run()
2022-02-05 00:25:05 +05:30
}
private fun fetchChannel(view: View){
fun run() {
lifecycleScope.launchWhenCreated {
val response = try {
RetrofitInstance.api.getChannel(channel_id!!)
}catch(e: IOException) {
refreshLayout?.isRefreshing = false;
2022-02-05 00:25:05 +05:30
println(e)
Log.e(TAG, "IOException, you might not have internet connection")
return@launchWhenCreated
} catch (e: HttpException) {
refreshLayout?.isRefreshing = false;
2022-02-05 00:25:05 +05:30
Log.e(TAG, "HttpException, unexpected response")
return@launchWhenCreated
}
2022-02-06 18:40:27 +05:30
nextPage = response.nextpage
isLoading=false
refreshLayout?.isRefreshing = false;
2022-02-05 00:25:05 +05:30
runOnUiThread {
view.findViewById<ScrollView>(R.id.channel_scrollView).visibility = View.VISIBLE
2022-02-05 00:25:05 +05:30
view.findViewById<TextView>(R.id.channel_name).text=response.name
2022-02-15 02:26:32 +05:30
view.findViewById<TextView>(R.id.channel_subs).text=response.subscriberCount.formatShort() + " subscribers"
2022-02-05 00:25:05 +05:30
view.findViewById<TextView>(R.id.channel_description).text=response.description
val bannerImage = view.findViewById<ImageView>(R.id.channel_banner)
val channelImage = view.findViewById<ImageView>(R.id.channel_image)
Picasso.get().load(response.bannerUrl).into(bannerImage)
Picasso.get().load(response.avatarUrl).into(channelImage)
2022-02-05 19:39:50 +05:30
channelAdapter = ChannelAdapter(response.relatedStreams!!.toMutableList())
2022-02-05 21:10:29 +05:30
view.findViewById<RecyclerView>(R.id.channel_recView).adapter = channelAdapter
2022-02-08 14:58:50 +05:30
2022-02-05 19:39:50 +05:30
}
}
}
run()
}
private fun fetchNextPage(){
fun run() {
2022-02-05 22:40:43 +05:30
2022-02-05 19:39:50 +05:30
lifecycleScope.launchWhenCreated {
val response = try {
2022-02-05 22:40:43 +05:30
RetrofitInstance.api.getChannelNextPage(channel_id!!,nextPage!!)
2022-02-05 19:39:50 +05:30
} catch (e: IOException) {
2022-04-12 23:55:08 +05:30
refreshLayout?.isRefreshing = false
2022-02-05 19:39:50 +05:30
println(e)
Log.e(TAG, "IOException, you might not have internet connection")
return@launchWhenCreated
} catch (e: HttpException) {
2022-04-12 23:55:08 +05:30
refreshLayout?.isRefreshing = false
2022-02-05 19:39:50 +05:30
Log.e(TAG, "HttpException, unexpected response,"+e.response())
return@launchWhenCreated
}
2022-02-05 22:40:43 +05:30
nextPage = response.nextpage
2022-02-06 18:40:27 +05:30
channelAdapter?.updateItems(response.relatedStreams!!)
isLoading=false
2022-04-12 23:55:08 +05:30
refreshLayout?.isRefreshing = false
2022-02-05 00:25:05 +05:30
}
}
run()
}
private fun Fragment?.runOnUiThread(action: () -> Unit) {
this ?: return
if (!isAdded) return // Fragment not attached to an Activity
activity?.runOnUiThread(action)
}
2022-02-05 22:40:43 +05:30
override fun onDestroyView() {
2022-02-06 18:40:27 +05:30
val scrollView = view?.findViewById<ScrollView>(R.id.channel_scrollView)
scrollView?.viewTreeObserver?.removeOnScrollChangedListener {
}
channelAdapter=null
2022-02-05 22:40:43 +05:30
view?.findViewById<RecyclerView>(R.id.channel_recView)?.adapter=null
super.onDestroyView()
}
2022-02-05 00:25:05 +05:30
}