2022-02-08 14:58:50 +05:30
|
|
|
package com.github.libretube
|
|
|
|
|
2022-03-16 19:02:42 +05:30
|
|
|
import android.Manifest
|
2022-03-18 00:46:09 +05:30
|
|
|
import android.content.ContentValues.TAG
|
2022-02-13 11:12:40 +05:30
|
|
|
import android.content.Context
|
2022-03-18 00:46:09 +05:30
|
|
|
import android.content.pm.PackageManager
|
2022-03-16 19:02:42 +05:30
|
|
|
import android.net.Uri
|
2022-03-18 00:46:09 +05:30
|
|
|
import android.os.Build
|
2022-02-08 14:58:50 +05:30
|
|
|
import android.os.Bundle
|
2022-03-18 00:46:09 +05:30
|
|
|
import android.os.Environment
|
2022-02-10 17:09:34 +05:30
|
|
|
import android.text.TextUtils
|
2022-02-08 19:57:13 +05:30
|
|
|
import android.util.Log
|
2022-02-13 11:12:40 +05:30
|
|
|
import android.widget.Toast
|
2022-03-16 19:02:42 +05:30
|
|
|
import androidx.activity.result.ActivityResultLauncher
|
|
|
|
import androidx.activity.result.contract.ActivityResultContracts
|
2022-03-18 00:46:09 +05:30
|
|
|
import androidx.core.app.ActivityCompat
|
2022-02-10 17:02:22 +05:30
|
|
|
import androidx.fragment.app.Fragment
|
|
|
|
import androidx.lifecycle.lifecycleScope
|
2022-02-08 19:57:13 +05:30
|
|
|
import androidx.preference.ListPreference
|
|
|
|
import androidx.preference.Preference
|
2022-02-08 14:58:50 +05:30
|
|
|
import androidx.preference.PreferenceFragmentCompat
|
2022-03-16 19:02:42 +05:30
|
|
|
import com.blankj.utilcode.util.UriUtils
|
|
|
|
import com.github.libretube.obj.Subscribe
|
2022-02-10 17:02:22 +05:30
|
|
|
import retrofit2.HttpException
|
2022-03-16 19:02:42 +05:30
|
|
|
import java.io.ByteArrayOutputStream
|
2022-02-10 17:02:22 +05:30
|
|
|
import java.io.IOException
|
2022-03-16 19:02:42 +05:30
|
|
|
import java.util.zip.ZipFile
|
2022-02-08 14:58:50 +05:30
|
|
|
|
|
|
|
class Settings : PreferenceFragmentCompat() {
|
2022-03-16 19:02:42 +05:30
|
|
|
|
|
|
|
companion object {
|
|
|
|
lateinit var getContent: ActivityResultLauncher<String>
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
override fun onCreate(savedInstanceState: Bundle?) {
|
2022-03-18 00:40:18 +05:30
|
|
|
getContent = registerForActivityResult(ActivityResultContracts.GetContent()) { uri: Uri? ->
|
2022-03-16 19:02:42 +05:30
|
|
|
|
2022-03-18 00:46:09 +05:30
|
|
|
if (uri != null) {
|
2022-03-18 00:40:18 +05:30
|
|
|
var zipfile = ZipFile(UriUtils.uri2File(uri))
|
2022-03-16 19:02:42 +05:30
|
|
|
|
2022-03-18 00:40:18 +05:30
|
|
|
var zipentry =
|
|
|
|
zipfile.getEntry("Takeout/YouTube and YouTube Music/subscriptions/subscriptions.csv")
|
2022-03-16 19:02:42 +05:30
|
|
|
|
2022-03-18 00:40:18 +05:30
|
|
|
var inputStream = zipfile.getInputStream(zipentry)
|
2022-03-16 19:02:42 +05:30
|
|
|
|
2022-03-18 00:40:18 +05:30
|
|
|
val baos = ByteArrayOutputStream()
|
2022-03-16 19:02:42 +05:30
|
|
|
|
2022-03-18 00:40:18 +05:30
|
|
|
inputStream.use { it.copyTo(baos) }
|
2022-03-16 19:02:42 +05:30
|
|
|
|
2022-03-18 00:40:18 +05:30
|
|
|
var subscriptions = baos.toByteArray().decodeToString()
|
2022-03-16 19:02:42 +05:30
|
|
|
|
2022-03-18 00:40:18 +05:30
|
|
|
var subscribedCount = 0
|
2022-03-16 19:02:42 +05:30
|
|
|
|
2022-03-18 00:46:09 +05:30
|
|
|
for (text in subscriptions.lines()) {
|
|
|
|
if (text.take(24) != "Channel Id,Channel Url,C" && !text.take(24).isEmpty()) {
|
2022-03-18 00:40:18 +05:30
|
|
|
subscribe(text.take(24))
|
|
|
|
subscribedCount++
|
2022-03-18 00:46:09 +05:30
|
|
|
Log.d(TAG, "subscribed: " + text + " total: " + subscribedCount)
|
2022-03-18 00:40:18 +05:30
|
|
|
}
|
2022-03-16 19:02:42 +05:30
|
|
|
}
|
2022-03-18 00:40:18 +05:30
|
|
|
|
2022-03-18 00:46:09 +05:30
|
|
|
Toast.makeText(
|
|
|
|
context,
|
|
|
|
"Subscribed to " + subscribedCount + " channels.",
|
|
|
|
Toast.LENGTH_SHORT
|
|
|
|
).show()
|
2022-03-16 19:02:42 +05:30
|
|
|
}
|
2022-03-18 00:40:18 +05:30
|
|
|
|
2022-03-16 19:02:42 +05:30
|
|
|
}
|
|
|
|
super.onCreate(savedInstanceState)
|
|
|
|
}
|
|
|
|
|
2022-02-08 14:58:50 +05:30
|
|
|
override fun onCreatePreferences(savedInstanceState: Bundle?, rootKey: String?) {
|
|
|
|
setPreferencesFromResource(R.xml.settings, rootKey)
|
2022-02-08 19:57:13 +05:30
|
|
|
val instance = findPreference<ListPreference>("instance")
|
2022-02-10 17:02:22 +05:30
|
|
|
fetchInstance()
|
2022-02-26 22:49:42 +05:30
|
|
|
instance?.setOnPreferenceChangeListener { _, newValue ->
|
2022-02-10 17:02:22 +05:30
|
|
|
RetrofitInstance.url = newValue.toString()
|
2022-02-09 23:40:39 +05:30
|
|
|
RetrofitInstance.lazyMgr.reset()
|
2022-02-13 11:12:40 +05:30
|
|
|
val sharedPref = context?.getSharedPreferences("token", Context.MODE_PRIVATE)
|
2022-03-18 00:46:09 +05:30
|
|
|
if (sharedPref?.getString("token", "") != "") {
|
2022-02-13 11:12:40 +05:30
|
|
|
with(sharedPref!!.edit()) {
|
|
|
|
putString("token", "")
|
|
|
|
apply()
|
|
|
|
}
|
|
|
|
Toast.makeText(context, R.string.loggedout, Toast.LENGTH_SHORT).show()
|
|
|
|
}
|
2022-02-08 19:57:13 +05:30
|
|
|
true
|
|
|
|
}
|
|
|
|
|
2022-03-18 00:46:09 +05:30
|
|
|
val login = findPreference<Preference>("login_register")
|
|
|
|
login?.setOnPreferenceClickListener {
|
|
|
|
val newFragment = LoginDialog()
|
|
|
|
newFragment.show(childFragmentManager, "Login")
|
|
|
|
true
|
|
|
|
}
|
2022-02-10 17:09:34 +05:30
|
|
|
|
2022-03-16 19:02:42 +05:30
|
|
|
val importFromYt = findPreference<Preference>("import_from_yt")
|
|
|
|
importFromYt?.setOnPreferenceClickListener {
|
|
|
|
|
|
|
|
//check StorageAccess
|
|
|
|
|
|
|
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.R) {
|
|
|
|
Log.d("myz", "" + Build.VERSION.SDK_INT)
|
|
|
|
if (!Environment.isExternalStorageManager()) {
|
|
|
|
ActivityCompat.requestPermissions(
|
|
|
|
this.requireActivity(), arrayOf(
|
|
|
|
Manifest.permission.READ_EXTERNAL_STORAGE,
|
|
|
|
Manifest.permission.MANAGE_EXTERNAL_STORAGE
|
|
|
|
), 1
|
|
|
|
) //permission request code is just an int
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (ActivityCompat.checkSelfPermission(
|
|
|
|
requireContext(),
|
|
|
|
Manifest.permission.READ_EXTERNAL_STORAGE
|
|
|
|
) != PackageManager.PERMISSION_GRANTED || ActivityCompat.checkSelfPermission(
|
|
|
|
requireContext(),
|
|
|
|
Manifest.permission.WRITE_EXTERNAL_STORAGE
|
|
|
|
) != PackageManager.PERMISSION_GRANTED
|
|
|
|
) {
|
|
|
|
ActivityCompat.requestPermissions(
|
|
|
|
this.requireActivity(),
|
|
|
|
arrayOf(
|
|
|
|
Manifest.permission.READ_EXTERNAL_STORAGE,
|
|
|
|
Manifest.permission.WRITE_EXTERNAL_STORAGE
|
|
|
|
),
|
|
|
|
1
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
getContent.launch("application/zip")
|
|
|
|
|
|
|
|
|
|
|
|
true
|
|
|
|
}
|
|
|
|
|
2022-03-18 00:46:09 +05:30
|
|
|
}
|
2022-02-10 17:02:22 +05:30
|
|
|
|
|
|
|
private fun fetchInstance() {
|
|
|
|
lifecycleScope.launchWhenCreated {
|
|
|
|
val response = try {
|
2022-02-25 12:33:56 +05:30
|
|
|
RetrofitInstance.api.getInstances("https://instances.tokhmi.xyz/")
|
2022-02-10 17:02:22 +05:30
|
|
|
} catch (e: IOException) {
|
|
|
|
println(e)
|
|
|
|
Log.e("settings", "IOException, you might not have internet connection")
|
|
|
|
return@launchWhenCreated
|
|
|
|
} catch (e: HttpException) {
|
2022-03-18 00:46:09 +05:30
|
|
|
Log.e("settings", "HttpException, unexpected response $e")
|
2022-02-10 17:02:22 +05:30
|
|
|
return@launchWhenCreated
|
2022-03-18 00:46:09 +05:30
|
|
|
} catch (e: Exception) {
|
|
|
|
Log.e("settings", e.toString())
|
2022-02-10 17:02:22 +05:30
|
|
|
return@launchWhenCreated
|
|
|
|
}
|
|
|
|
val listEntries: MutableList<String> = ArrayList()
|
|
|
|
val listEntryValues: MutableList<String> = ArrayList()
|
2022-03-18 00:46:09 +05:30
|
|
|
for (item in response) {
|
2022-02-25 12:33:56 +05:30
|
|
|
listEntries.add(item.name!!)
|
|
|
|
listEntryValues.add(item.api_url!!)
|
2022-02-10 17:02:22 +05:30
|
|
|
}
|
|
|
|
val entries = listEntries.toTypedArray<CharSequence>()
|
|
|
|
val entryValues = listEntryValues.toTypedArray<CharSequence>()
|
|
|
|
runOnUiThread {
|
|
|
|
val instance = findPreference<ListPreference>("instance")
|
|
|
|
instance?.entries = entries
|
|
|
|
instance?.entryValues = entryValues
|
2022-03-18 00:46:09 +05:30
|
|
|
instance?.summaryProvider =
|
|
|
|
Preference.SummaryProvider<ListPreference> { preference ->
|
|
|
|
val text = preference.entry
|
|
|
|
if (TextUtils.isEmpty(text)) {
|
|
|
|
"kavin.rocks (Official)"
|
|
|
|
} else {
|
|
|
|
text
|
|
|
|
}
|
2022-02-10 17:09:34 +05:30
|
|
|
}
|
2022-02-10 17:02:22 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-03-18 00:46:09 +05:30
|
|
|
|
2022-02-10 17:02:22 +05:30
|
|
|
private fun Fragment?.runOnUiThread(action: () -> Unit) {
|
|
|
|
this ?: return
|
|
|
|
if (!isAdded) return // Fragment not attached to an Activity
|
|
|
|
activity?.runOnUiThread(action)
|
|
|
|
}
|
2022-03-16 19:02:42 +05:30
|
|
|
|
|
|
|
|
2022-03-18 00:46:09 +05:30
|
|
|
private fun subscribe(channel_id: String) {
|
2022-03-16 19:02:42 +05:30
|
|
|
fun run() {
|
|
|
|
lifecycleScope.launchWhenCreated {
|
|
|
|
val response = try {
|
|
|
|
val sharedPref = context?.getSharedPreferences("token", Context.MODE_PRIVATE)
|
2022-03-18 00:46:09 +05:30
|
|
|
RetrofitInstance.api.subscribe(
|
|
|
|
sharedPref?.getString("token", "")!!,
|
|
|
|
Subscribe(channel_id)
|
|
|
|
)
|
|
|
|
} catch (e: IOException) {
|
2022-03-16 19:02:42 +05:30
|
|
|
Log.e(TAG, "IOException, you might not have internet connection")
|
|
|
|
return@launchWhenCreated
|
|
|
|
} catch (e: HttpException) {
|
|
|
|
Log.e(TAG, "HttpException, unexpected response$e")
|
|
|
|
return@launchWhenCreated
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
run()
|
|
|
|
}
|
2022-02-08 14:58:50 +05:30
|
|
|
}
|
2022-03-16 19:02:42 +05:30
|
|
|
|