Compare commits
14 Commits
Author | SHA1 | Date | |
---|---|---|---|
0f8c3a7126 | |||
d6aeadc489 | |||
826bb79431 | |||
2484406cc7 | |||
0705d6dd80 | |||
dd54d214ff | |||
48738f100a | |||
b6e1a979ca | |||
96d8ae19c6 | |||
8856984dc3 | |||
2ffb7daede | |||
f0b5ba10e8 | |||
4d2644674e | |||
6a8d3baccb |
2
.editorconfig
Normal file
2
.editorconfig
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
[*.{kt,kts}]
|
||||||
|
ktlint_code_style = intellij_idea
|
@ -11,8 +11,8 @@ android {
|
|||||||
applicationId "org.libre.agosto.p2play"
|
applicationId "org.libre.agosto.p2play"
|
||||||
minSdkVersion 26
|
minSdkVersion 26
|
||||||
targetSdkVersion 32
|
targetSdkVersion 32
|
||||||
versionCode 9
|
versionCode 10
|
||||||
versionName "0.6.0"
|
versionName "0.7.0"
|
||||||
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
||||||
vectorDrawables.useSupportLibrary = true
|
vectorDrawables.useSupportLibrary = true
|
||||||
}
|
}
|
||||||
@ -26,27 +26,29 @@ android {
|
|||||||
sourceCompatibility JavaVersion.VERSION_1_8
|
sourceCompatibility JavaVersion.VERSION_1_8
|
||||||
targetCompatibility JavaVersion.VERSION_1_8
|
targetCompatibility JavaVersion.VERSION_1_8
|
||||||
}
|
}
|
||||||
lintOptions {
|
|
||||||
checkReleaseBuilds false
|
|
||||||
abortOnError false
|
|
||||||
}
|
|
||||||
namespace 'org.libre.agosto.p2play'
|
namespace 'org.libre.agosto.p2play'
|
||||||
|
lint {
|
||||||
|
abortOnError false
|
||||||
|
checkReleaseBuilds false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
||||||
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
||||||
implementation 'com.squareup.picasso:picasso:2.71828'
|
implementation 'com.squareup.picasso:picasso:2.71828'
|
||||||
implementation 'androidx.appcompat:appcompat:1.0.2'
|
implementation 'androidx.appcompat:appcompat:1.6.1'
|
||||||
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
|
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
|
||||||
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
|
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
|
||||||
implementation 'com.android.support:appcompat-v7:23.2.0'
|
implementation 'com.android.support:appcompat-v7:28.0.0'
|
||||||
implementation 'com.google.android.material:material:1.6.0'
|
implementation 'com.google.android.material:material:1.6.0'
|
||||||
testImplementation 'junit:junit:4.12'
|
implementation 'androidx.preference:preference:1.2.1'
|
||||||
|
testImplementation 'junit:junit:4.13.2'
|
||||||
androidTestImplementation 'androidx.test:runner:1.5.2'
|
androidTestImplementation 'androidx.test:runner:1.5.2'
|
||||||
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.0'
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
|
||||||
implementation 'androidx.media3:media3-exoplayer:1.1.1'
|
implementation 'androidx.media3:media3-exoplayer:1.1.1'
|
||||||
implementation 'androidx.media3:media3-exoplayer-dash:1.1.1'
|
implementation 'androidx.media3:media3-exoplayer-dash:1.1.1'
|
||||||
implementation 'androidx.media3:media3-ui:1.1.1'
|
implementation 'androidx.media3:media3-ui:1.1.1'
|
||||||
implementation 'androidx.media3:media3-exoplayer-hls:1.1.1'
|
implementation 'androidx.media3:media3-exoplayer-hls:1.1.1'
|
||||||
|
implementation "androidx.media3:media3-session:1.1.1"
|
||||||
}
|
}
|
||||||
|
@ -3,6 +3,8 @@
|
|||||||
|
|
||||||
<uses-permission android:name="android.permission.INTERNET" />
|
<uses-permission android:name="android.permission.INTERNET" />
|
||||||
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
||||||
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
|
||||||
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE_MEDIA_PLAYBACK" />
|
||||||
|
|
||||||
<application
|
<application
|
||||||
android:allowBackup="true"
|
android:allowBackup="true"
|
||||||
@ -11,13 +13,23 @@
|
|||||||
android:roundIcon="@mipmap/ic_launcher_round"
|
android:roundIcon="@mipmap/ic_launcher_round"
|
||||||
android:supportsRtl="true"
|
android:supportsRtl="true"
|
||||||
android:theme="@style/Theme.P2play">
|
android:theme="@style/Theme.P2play">
|
||||||
<activity android:name=".ChannelActivity"
|
<activity
|
||||||
android:theme="@style/Theme.P2play.NoActionBar"
|
android:name=".SettingsActivity2"
|
||||||
android:exported="false" />
|
android:exported="false"
|
||||||
|
android:label="@string/title_activity_settings"
|
||||||
|
android:theme="@style/Theme.P2play">
|
||||||
|
<meta-data
|
||||||
|
android:name="android.support.PARENT_ACTIVITY"
|
||||||
|
android:value=".MainActivity" />
|
||||||
|
</activity>
|
||||||
|
<activity
|
||||||
|
android:name=".ChannelActivity"
|
||||||
|
android:exported="false"
|
||||||
|
android:theme="@style/Theme.P2play.NoActionBar" />
|
||||||
<activity
|
<activity
|
||||||
android:name=".SplashActivity"
|
android:name=".SplashActivity"
|
||||||
android:theme="@style/Theme.P2play.NoActionBar"
|
android:exported="true"
|
||||||
android:exported="true">
|
android:theme="@style/Theme.P2play.NoActionBar">
|
||||||
<intent-filter>
|
<intent-filter>
|
||||||
<action android:name="android.intent.action.MAIN" />
|
<action android:name="android.intent.action.MAIN" />
|
||||||
|
|
||||||
@ -26,26 +38,41 @@
|
|||||||
</activity>
|
</activity>
|
||||||
<activity
|
<activity
|
||||||
android:name=".HostActivity"
|
android:name=".HostActivity"
|
||||||
android:theme="@style/Theme.P2play.NoActionBar"
|
android:exported="false"
|
||||||
android:exported="false" />
|
android:theme="@style/Theme.P2play.NoActionBar" />
|
||||||
<activity
|
<activity
|
||||||
android:name=".MainActivity"
|
android:name=".MainActivity"
|
||||||
android:theme="@style/Theme.P2play.NoActionBar"
|
android:exported="false"
|
||||||
android:exported="false" />
|
android:theme="@style/Theme.P2play.NoActionBar" />
|
||||||
<activity
|
<activity
|
||||||
android:name=".ReproductorActivity"
|
android:name=".ReproductorActivity"
|
||||||
android:configChanges="orientation|screenSize"
|
android:configChanges="orientation|screenSize"
|
||||||
|
android:exported="false"
|
||||||
android:hardwareAccelerated="true"
|
android:hardwareAccelerated="true"
|
||||||
android:theme="@style/Theme.P2play.NoActionBar"
|
android:theme="@style/Theme.P2play.NoActionBar" />
|
||||||
|
<activity
|
||||||
|
android:name=".LoginActivity"
|
||||||
|
android:exported="false" />
|
||||||
|
<activity
|
||||||
|
android:name=".RegisterActivity"
|
||||||
|
android:exported="false" />
|
||||||
|
<activity
|
||||||
|
android:name=".AboutActivity"
|
||||||
android:exported="false" />
|
android:exported="false" />
|
||||||
<activity android:name=".LoginActivity" android:exported="false" />
|
|
||||||
<activity android:name=".RegisterActivity" android:exported="false" />
|
|
||||||
<activity android:name=".AboutActivity" android:exported="false" />
|
|
||||||
<activity
|
<activity
|
||||||
android:name=".SettingsActivity"
|
android:name=".SettingsActivity"
|
||||||
|
android:exported="false"
|
||||||
android:label="@string/title_activity_settings"
|
android:label="@string/title_activity_settings"
|
||||||
android:theme="@style/Theme.P2play"
|
android:theme="@style/Theme.P2play" />
|
||||||
android:exported="false"/>
|
|
||||||
|
<service
|
||||||
|
android:name=".services.PlaybackService"
|
||||||
|
android:foregroundServiceType="mediaPlayback"
|
||||||
|
android:exported="true">
|
||||||
|
<intent-filter>
|
||||||
|
<action android:name="androidx.media3.session.MediaSessionService"/>
|
||||||
|
</intent-filter>
|
||||||
|
</service>
|
||||||
</application>
|
</application>
|
||||||
|
|
||||||
</manifest>
|
</manifest>
|
@ -1,6 +1,5 @@
|
|||||||
package org.libre.agosto.p2play
|
package org.libre.agosto.p2play
|
||||||
|
|
||||||
|
|
||||||
import android.os.Bundle
|
import android.os.Bundle
|
||||||
import androidx.appcompat.app.AppCompatActivity
|
import androidx.appcompat.app.AppCompatActivity
|
||||||
import kotlinx.android.synthetic.main.activity_about.*
|
import kotlinx.android.synthetic.main.activity_about.*
|
||||||
@ -11,7 +10,7 @@ class AboutActivity : AppCompatActivity() {
|
|||||||
super.onCreate(savedInstanceState)
|
super.onCreate(savedInstanceState)
|
||||||
setContentView(R.layout.activity_about)
|
setContentView(R.layout.activity_about)
|
||||||
|
|
||||||
aboutUrl.text = "https://"+ManagerSingleton.url+"/about/instance"
|
aboutUrl.text = "https://" + ManagerSingleton.url + "/about/instance"
|
||||||
|
|
||||||
aboutLabel.text = aboutLabel.text.toString() + " " + this.packageManager.getPackageInfo(this.packageName, 0).versionName
|
aboutLabel.text = aboutLabel.text.toString() + " " + this.packageManager.getPackageInfo(this.packageName, 0).versionName
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
package org.libre.agosto.p2play
|
package org.libre.agosto.p2play
|
||||||
|
|
||||||
import androidx.appcompat.app.ActionBar
|
|
||||||
import android.content.res.Configuration
|
import android.content.res.Configuration
|
||||||
import android.os.Bundle
|
import android.os.Bundle
|
||||||
import android.preference.PreferenceActivity
|
import android.preference.PreferenceActivity
|
||||||
@ -8,6 +7,7 @@ import android.view.MenuInflater
|
|||||||
import android.view.View
|
import android.view.View
|
||||||
import android.view.ViewGroup
|
import android.view.ViewGroup
|
||||||
import androidx.annotation.LayoutRes
|
import androidx.annotation.LayoutRes
|
||||||
|
import androidx.appcompat.app.ActionBar
|
||||||
import androidx.appcompat.app.AppCompatDelegate
|
import androidx.appcompat.app.AppCompatDelegate
|
||||||
import androidx.appcompat.widget.Toolbar
|
import androidx.appcompat.widget.Toolbar
|
||||||
|
|
||||||
|
@ -1,11 +1,11 @@
|
|||||||
package org.libre.agosto.p2play
|
package org.libre.agosto.p2play
|
||||||
|
|
||||||
import android.os.AsyncTask
|
import android.os.AsyncTask
|
||||||
import androidx.appcompat.app.AppCompatActivity
|
|
||||||
import android.os.Bundle
|
import android.os.Bundle
|
||||||
|
import android.view.View
|
||||||
|
import androidx.appcompat.app.AppCompatActivity
|
||||||
import androidx.recyclerview.widget.LinearLayoutManager
|
import androidx.recyclerview.widget.LinearLayoutManager
|
||||||
import androidx.recyclerview.widget.RecyclerView
|
import androidx.recyclerview.widget.RecyclerView
|
||||||
import android.view.View
|
|
||||||
import com.squareup.picasso.Picasso
|
import com.squareup.picasso.Picasso
|
||||||
import kotlinx.android.synthetic.main.activity_channel.*
|
import kotlinx.android.synthetic.main.activity_channel.*
|
||||||
import org.libre.agosto.p2play.adapters.VideosAdapter
|
import org.libre.agosto.p2play.adapters.VideosAdapter
|
||||||
@ -14,14 +14,13 @@ import org.libre.agosto.p2play.ajax.Channels
|
|||||||
import org.libre.agosto.p2play.ajax.Videos
|
import org.libre.agosto.p2play.ajax.Videos
|
||||||
import org.libre.agosto.p2play.models.ChannelModel
|
import org.libre.agosto.p2play.models.ChannelModel
|
||||||
import org.libre.agosto.p2play.models.VideoModel
|
import org.libre.agosto.p2play.models.VideoModel
|
||||||
|
|
||||||
class ChannelActivity : AppCompatActivity() {
|
class ChannelActivity : AppCompatActivity() {
|
||||||
private lateinit var channelId: String
|
private lateinit var channelId: String
|
||||||
private lateinit var channel: ChannelModel
|
private lateinit var channel: ChannelModel
|
||||||
private var isSubcribed: Boolean = false
|
private var isSubcribed: Boolean = false
|
||||||
private val _channel = Channels()
|
private val channelService = Channels()
|
||||||
private val _videos = Videos()
|
private val videosService = Videos()
|
||||||
private val _actions = Actions()
|
private val actionsService = Actions()
|
||||||
|
|
||||||
private lateinit var recyclerView: RecyclerView
|
private lateinit var recyclerView: RecyclerView
|
||||||
private lateinit var viewAdapter: RecyclerView.Adapter<VideosAdapter.ViewHolder>
|
private lateinit var viewAdapter: RecyclerView.Adapter<VideosAdapter.ViewHolder>
|
||||||
@ -47,7 +46,7 @@ class ChannelActivity : AppCompatActivity() {
|
|||||||
getSubscription()
|
getSubscription()
|
||||||
getVideos()
|
getVideos()
|
||||||
|
|
||||||
if(ManagerSingleton.user.status == 1) {
|
if (ManagerSingleton.user.status == 1) {
|
||||||
subcriptionBtn.visibility = View.VISIBLE
|
subcriptionBtn.visibility = View.VISIBLE
|
||||||
getSubscription()
|
getSubscription()
|
||||||
}
|
}
|
||||||
@ -55,28 +54,28 @@ class ChannelActivity : AppCompatActivity() {
|
|||||||
|
|
||||||
private fun getChannel() {
|
private fun getChannel() {
|
||||||
AsyncTask.execute {
|
AsyncTask.execute {
|
||||||
channel = _channel.getChannelInfo(channelId)
|
channel = channelService.getChannelInfo(channelId)
|
||||||
runOnUiThread {
|
runOnUiThread {
|
||||||
usernameProfile.text = channel.name
|
usernameProfile.text = channel.name
|
||||||
hostTxt.text = channel.host
|
hostTxt.text = channel.host
|
||||||
subcriptionsTxt.text = channel.followers.toString()
|
subcriptionsTxt.text = channel.followers.toString()
|
||||||
if(channel.channelImg != "")
|
if (channel.channelImg != "") {
|
||||||
Picasso.get().load("https://${ManagerSingleton.url}${channel.channelImg}").into(channelImg)
|
Picasso.get().load("https://${ManagerSingleton.url}${channel.channelImg}").into(channelImg)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun subscribe() {
|
private fun subscribe() {
|
||||||
AsyncTask.execute {
|
AsyncTask.execute {
|
||||||
val res = _actions.subscribe(ManagerSingleton.token.token, channel.getAccount())
|
val res = actionsService.subscribe(ManagerSingleton.token.token, channel.getAccount())
|
||||||
runOnUiThread {
|
runOnUiThread {
|
||||||
if(res == 1){
|
if (res == 1) {
|
||||||
subcriptionBtn.text = getString(R.string.unSubscribeBtn)
|
subcriptionBtn.text = getString(R.string.unSubscribeBtn)
|
||||||
ManagerSingleton.Toast(getString(R.string.subscribeMsg), this)
|
ManagerSingleton.toast(getString(R.string.subscribeMsg), this)
|
||||||
getSubscription()
|
getSubscription()
|
||||||
}
|
} else {
|
||||||
else {
|
ManagerSingleton.toast(getString(R.string.errorMsg), this)
|
||||||
ManagerSingleton.Toast(getString(R.string.errorMsg), this)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -84,35 +83,34 @@ class ChannelActivity : AppCompatActivity() {
|
|||||||
|
|
||||||
private fun unSubscribe() {
|
private fun unSubscribe() {
|
||||||
AsyncTask.execute {
|
AsyncTask.execute {
|
||||||
val res = _actions.unSubscribe(ManagerSingleton.token.token, channel.getAccount())
|
val res = actionsService.unSubscribe(ManagerSingleton.token.token, channel.getAccount())
|
||||||
runOnUiThread {
|
runOnUiThread {
|
||||||
if(res == 1){
|
if (res == 1) {
|
||||||
subcriptionBtn.text = getString(R.string.subscribeBtn)
|
subcriptionBtn.text = getString(R.string.subscribeBtn)
|
||||||
ManagerSingleton.Toast(getString(R.string.unSubscribeMsg), this)
|
ManagerSingleton.toast(getString(R.string.unSubscribeMsg), this)
|
||||||
getSubscription()
|
getSubscription()
|
||||||
}
|
} else {
|
||||||
else {
|
ManagerSingleton.toast(getString(R.string.errorMsg), this)
|
||||||
ManagerSingleton.Toast(getString(R.string.errorMsg), this)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun subscribeAction() {
|
private fun subscribeAction() {
|
||||||
if(isSubcribed)
|
if (isSubcribed) {
|
||||||
unSubscribe()
|
unSubscribe()
|
||||||
else
|
} else {
|
||||||
subscribe()
|
subscribe()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun getSubscription() {
|
private fun getSubscription() {
|
||||||
AsyncTask.execute {
|
AsyncTask.execute {
|
||||||
isSubcribed = _actions.getSubscription(ManagerSingleton.token.token, channel.getAccount())
|
isSubcribed = actionsService.getSubscription(ManagerSingleton.token.token, channel.getAccount())
|
||||||
runOnUiThread {
|
runOnUiThread {
|
||||||
if(isSubcribed){
|
if (isSubcribed) {
|
||||||
subcriptionBtn.text = getText(R.string.unSubscribeBtn)
|
subcriptionBtn.text = getText(R.string.unSubscribeBtn)
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
subcriptionBtn.text = getText(R.string.subscribeBtn)
|
subcriptionBtn.text = getText(R.string.subscribeBtn)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -121,7 +119,7 @@ class ChannelActivity : AppCompatActivity() {
|
|||||||
|
|
||||||
private fun getVideos() {
|
private fun getVideos() {
|
||||||
AsyncTask.execute {
|
AsyncTask.execute {
|
||||||
val videos = _videos.channelVideos(channel.getAccount(), 0)
|
val videos = videosService.channelVideos(channel.getAccount(), 0)
|
||||||
runOnUiThread {
|
runOnUiThread {
|
||||||
initRecycler(videos)
|
initRecycler(videos)
|
||||||
}
|
}
|
||||||
@ -129,7 +127,7 @@ class ChannelActivity : AppCompatActivity() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Generic function for set data to RecyclerView
|
// Generic function for set data to RecyclerView
|
||||||
private fun initRecycler(data: ArrayList<VideoModel>){
|
private fun initRecycler(data: ArrayList<VideoModel>) {
|
||||||
// val data = arrayListOf<VideoModel>()
|
// val data = arrayListOf<VideoModel>()
|
||||||
viewAdapter = VideosAdapter(data)
|
viewAdapter = VideosAdapter(data)
|
||||||
|
|
||||||
@ -146,4 +144,4 @@ class ChannelActivity : AppCompatActivity() {
|
|||||||
}
|
}
|
||||||
// swipeContainer.isRefreshing = false
|
// swipeContainer.isRefreshing = false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -8,11 +8,11 @@ import android.database.sqlite.SQLiteOpenHelper
|
|||||||
import org.libre.agosto.p2play.models.TokenModel
|
import org.libre.agosto.p2play.models.TokenModel
|
||||||
import org.libre.agosto.p2play.models.UserModel
|
import org.libre.agosto.p2play.models.UserModel
|
||||||
|
|
||||||
class Database(context:Context): SQLiteOpenHelper(context,"p2play",null,1) {
|
class Database(context: Context) : SQLiteOpenHelper(context, "p2play", null, 1) {
|
||||||
val dbName = "p2play"
|
val dbName = "p2play"
|
||||||
|
|
||||||
private val dbUsers = "CREATE TABLE users(id INTEGER PRIMARY KEY AUTOINCREMENT, uuid INTEGER, username varchar(30), " +
|
private val dbUsers = "CREATE TABLE users(id INTEGER PRIMARY KEY AUTOINCREMENT, uuid INTEGER, username varchar(30), " +
|
||||||
"nsfw INTEGER, email string, followers INTEGER, avatar string, status integer)"
|
"nsfw INTEGER, email string, followers INTEGER, avatar string, status integer)"
|
||||||
private val dbTokens = "CREATE TABLE tokens(id INTEGER PRIMARY KEY AUTOINCREMENT, token STRING, refresh_token STRING, status INTEGER)"
|
private val dbTokens = "CREATE TABLE tokens(id INTEGER PRIMARY KEY AUTOINCREMENT, token STRING, refresh_token STRING, status INTEGER)"
|
||||||
override fun onCreate(db: SQLiteDatabase?) {
|
override fun onCreate(db: SQLiteDatabase?) {
|
||||||
db?.execSQL(dbUsers)
|
db?.execSQL(dbUsers)
|
||||||
@ -28,12 +28,12 @@ class Database(context:Context): SQLiteOpenHelper(context,"p2play",null,1) {
|
|||||||
fun newToken(token: TokenModel): Boolean {
|
fun newToken(token: TokenModel): Boolean {
|
||||||
val db = writableDatabase
|
val db = writableDatabase
|
||||||
this.closeTokens()
|
this.closeTokens()
|
||||||
val newToken=ContentValues()
|
val newToken = ContentValues()
|
||||||
newToken.put("token", token.token)
|
newToken.put("token", token.token)
|
||||||
newToken.put("refresh_token", token.refresh_token)
|
newToken.put("refresh_token", token.refresh_token)
|
||||||
newToken.put("status", token.status)
|
newToken.put("status", token.status)
|
||||||
|
|
||||||
db.insert("tokens",null,newToken)
|
db.insert("tokens", null, newToken)
|
||||||
|
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
@ -41,7 +41,7 @@ class Database(context:Context): SQLiteOpenHelper(context,"p2play",null,1) {
|
|||||||
fun newUser(user: UserModel): Boolean {
|
fun newUser(user: UserModel): Boolean {
|
||||||
val db = writableDatabase
|
val db = writableDatabase
|
||||||
this.closeUsers()
|
this.closeUsers()
|
||||||
val newUser=ContentValues()
|
val newUser = ContentValues()
|
||||||
newUser.put("uuid", user.uuid)
|
newUser.put("uuid", user.uuid)
|
||||||
newUser.put("username", user.username)
|
newUser.put("username", user.username)
|
||||||
newUser.put("email", user.email)
|
newUser.put("email", user.email)
|
||||||
@ -50,19 +50,19 @@ class Database(context:Context): SQLiteOpenHelper(context,"p2play",null,1) {
|
|||||||
newUser.put("avatar", user.avatar)
|
newUser.put("avatar", user.avatar)
|
||||||
newUser.put("status", user.status)
|
newUser.put("status", user.status)
|
||||||
|
|
||||||
db.insert("users",null, newUser)
|
db.insert("users", null, newUser)
|
||||||
|
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
|
||||||
fun getToken(): TokenModel{
|
fun getToken(): TokenModel {
|
||||||
val db = writableDatabase
|
val db = writableDatabase
|
||||||
var token = TokenModel()
|
var token = TokenModel()
|
||||||
|
|
||||||
try {
|
try {
|
||||||
var cursor= db.rawQuery("SELECT * FROM tokens WHERE status=1 ORDER BY id DESC LIMIT 1",null)
|
var cursor = db.rawQuery("SELECT * FROM tokens WHERE status=1 ORDER BY id DESC LIMIT 1", null)
|
||||||
|
|
||||||
if(cursor.count != 0){
|
if (cursor.count != 0) {
|
||||||
cursor.moveToFirst()
|
cursor.moveToFirst()
|
||||||
|
|
||||||
token.token = cursor.getString(cursor.getColumnIndex("token")).toString()
|
token.token = cursor.getString(cursor.getColumnIndex("token")).toString()
|
||||||
@ -72,23 +72,22 @@ class Database(context:Context): SQLiteOpenHelper(context,"p2play",null,1) {
|
|||||||
cursor.close()
|
cursor.close()
|
||||||
|
|
||||||
return token
|
return token
|
||||||
|
} catch (e: SQLiteException) {
|
||||||
}catch (e:SQLiteException){
|
|
||||||
db?.execSQL(dbTokens)
|
db?.execSQL(dbTokens)
|
||||||
}catch (e:Exception){
|
} catch (e: Exception) {
|
||||||
e.printStackTrace()
|
e.printStackTrace()
|
||||||
}
|
}
|
||||||
return token
|
return token
|
||||||
}
|
}
|
||||||
|
|
||||||
fun getUser(): UserModel{
|
fun getUser(): UserModel {
|
||||||
val db = writableDatabase
|
val db = writableDatabase
|
||||||
var user = UserModel()
|
var user = UserModel()
|
||||||
|
|
||||||
try {
|
try {
|
||||||
var cursor= db.rawQuery("SELECT * FROM users WHERE status=1 ORDER BY id DESC LIMIT 1",null)
|
var cursor = db.rawQuery("SELECT * FROM users WHERE status=1 ORDER BY id DESC LIMIT 1", null)
|
||||||
|
|
||||||
if(cursor.count != 0){
|
if (cursor.count != 0) {
|
||||||
cursor.moveToFirst()
|
cursor.moveToFirst()
|
||||||
|
|
||||||
user.uuid = cursor.getString(cursor.getColumnIndex("uuid")).toInt()
|
user.uuid = cursor.getString(cursor.getColumnIndex("uuid")).toInt()
|
||||||
@ -103,28 +102,26 @@ class Database(context:Context): SQLiteOpenHelper(context,"p2play",null,1) {
|
|||||||
cursor.close()
|
cursor.close()
|
||||||
|
|
||||||
return user
|
return user
|
||||||
|
} catch (e: SQLiteException) {
|
||||||
}catch (e:SQLiteException){
|
|
||||||
db?.execSQL(dbTokens)
|
db?.execSQL(dbTokens)
|
||||||
}catch (e:Exception){
|
} catch (e: Exception) {
|
||||||
e.printStackTrace()
|
e.printStackTrace()
|
||||||
}
|
}
|
||||||
return user
|
return user
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun closeTokens(){
|
private fun closeTokens() {
|
||||||
val db = writableDatabase
|
val db = writableDatabase
|
||||||
db.execSQL("UPDATE tokens SET status=-1 WHERE 1")
|
db.execSQL("UPDATE tokens SET status=-1 WHERE 1")
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun closeUsers(){
|
private fun closeUsers() {
|
||||||
val db = writableDatabase
|
val db = writableDatabase
|
||||||
db.execSQL("UPDATE users SET status=-1 WHERE 1")
|
db.execSQL("UPDATE users SET status=-1 WHERE 1")
|
||||||
}
|
}
|
||||||
|
|
||||||
fun logout(){
|
fun logout() {
|
||||||
closeUsers()
|
closeUsers()
|
||||||
closeTokens()
|
closeTokens()
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
|
||||||
|
@ -3,18 +3,18 @@ package org.libre.agosto.p2play
|
|||||||
import android.content.Intent
|
import android.content.Intent
|
||||||
import android.content.SharedPreferences
|
import android.content.SharedPreferences
|
||||||
import android.os.AsyncTask
|
import android.os.AsyncTask
|
||||||
import androidx.appcompat.app.AppCompatActivity
|
|
||||||
import android.os.Bundle
|
import android.os.Bundle
|
||||||
import android.os.Looper
|
import android.os.Looper
|
||||||
import android.preference.PreferenceManager
|
import androidx.appcompat.app.AppCompatActivity
|
||||||
|
import androidx.preference.PreferenceManager
|
||||||
import kotlinx.android.synthetic.main.activity_host.*
|
import kotlinx.android.synthetic.main.activity_host.*
|
||||||
import org.libre.agosto.p2play.ajax.Auth
|
import org.libre.agosto.p2play.ajax.Auth
|
||||||
|
|
||||||
class HostActivity : AppCompatActivity() {
|
class HostActivity : AppCompatActivity() {
|
||||||
lateinit var settings: SharedPreferences
|
lateinit var settings: SharedPreferences
|
||||||
lateinit var editor: SharedPreferences.Editor
|
lateinit var editor: SharedPreferences.Editor
|
||||||
val client:Auth = Auth()
|
val client: Auth = Auth()
|
||||||
val _db = Database(this)
|
private val db = Database(this)
|
||||||
|
|
||||||
override fun onCreate(savedInstanceState: Bundle?) {
|
override fun onCreate(savedInstanceState: Bundle?) {
|
||||||
super.onCreate(savedInstanceState)
|
super.onCreate(savedInstanceState)
|
||||||
@ -29,59 +29,57 @@ class HostActivity : AppCompatActivity() {
|
|||||||
|
|
||||||
val host = settings.getString("hostP2play", "")
|
val host = settings.getString("hostP2play", "")
|
||||||
val lastHost = settings.getString("last_host", "")
|
val lastHost = settings.getString("last_host", "")
|
||||||
if(host!=""){
|
if (host != "") {
|
||||||
if(lastHost!=host){
|
if (lastHost != host) {
|
||||||
_db.logout()
|
db.logout()
|
||||||
ManagerSingleton.logout()
|
ManagerSingleton.logout()
|
||||||
getKeys(host!!)
|
getKeys(host!!)
|
||||||
}else{
|
} else {
|
||||||
ManagerSingleton.url=host
|
ManagerSingleton.url = host
|
||||||
startApp()
|
startApp()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fun saveHost(host: String) {
|
||||||
|
editor.putString("last_host", host)
|
||||||
fun saveHost(host: String){
|
editor.putString("hostP2play", host)
|
||||||
editor.putString("last_host",host)
|
|
||||||
editor.putString("hostP2play",host)
|
|
||||||
editor.apply()
|
editor.apply()
|
||||||
ManagerSingleton.Toast(getString(R.string.finallyMsg), this)
|
ManagerSingleton.toast(getString(R.string.finallyMsg), this)
|
||||||
ManagerSingleton.url=host
|
ManagerSingleton.url = host
|
||||||
startApp()
|
startApp()
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun getKeys(hostText: String){
|
private fun getKeys(hostText: String) {
|
||||||
button.isEnabled = false
|
button.isEnabled = false
|
||||||
var host = hostText.toString()
|
var host = hostText.toString()
|
||||||
host = host.replace("http://","")
|
host = host.replace("http://", "")
|
||||||
host = host.replace("https://","")
|
host = host.replace("https://", "")
|
||||||
host = host.replace("/","")
|
host = host.replace("/", "")
|
||||||
ManagerSingleton.url = host
|
ManagerSingleton.url = host
|
||||||
AsyncTask.execute {
|
AsyncTask.execute {
|
||||||
if (Looper.myLooper()==null)
|
if (Looper.myLooper() == null) {
|
||||||
Looper.prepare()
|
Looper.prepare()
|
||||||
|
}
|
||||||
|
|
||||||
val keys = client.getKeys()
|
val keys = client.getKeys()
|
||||||
if(keys.client_id!=""){
|
if (keys.client_id != "") {
|
||||||
editor.putString("client_id",keys.client_id)
|
editor.putString("client_id", keys.client_id)
|
||||||
editor.putString("client_secret",keys.client_secret)
|
editor.putString("client_secret", keys.client_secret)
|
||||||
editor.apply()
|
editor.apply()
|
||||||
saveHost(host)
|
saveHost(host)
|
||||||
}
|
} else {
|
||||||
else{
|
|
||||||
runOnUiThread {
|
runOnUiThread {
|
||||||
ManagerSingleton.Toast(getString(R.string.errorMsg), this)
|
ManagerSingleton.toast(getString(R.string.errorMsg), this)
|
||||||
button.isEnabled = true
|
button.isEnabled = true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun startApp(){
|
private fun startApp() {
|
||||||
runOnUiThread {
|
runOnUiThread {
|
||||||
val intent = Intent(this,MainActivity::class.java)
|
val intent = Intent(this, MainActivity::class.java)
|
||||||
startActivity(intent)
|
startActivity(intent)
|
||||||
this.finish()
|
this.finish()
|
||||||
}
|
}
|
||||||
|
@ -3,84 +3,109 @@ package org.libre.agosto.p2play
|
|||||||
import android.content.Intent
|
import android.content.Intent
|
||||||
import android.content.SharedPreferences
|
import android.content.SharedPreferences
|
||||||
import android.os.AsyncTask
|
import android.os.AsyncTask
|
||||||
import androidx.appcompat.app.AppCompatActivity
|
|
||||||
import android.os.Bundle
|
import android.os.Bundle
|
||||||
import android.os.Looper
|
import android.os.Looper
|
||||||
import android.preference.PreferenceManager
|
import android.widget.EditText
|
||||||
|
import androidx.appcompat.app.AlertDialog
|
||||||
|
import androidx.appcompat.app.AppCompatActivity
|
||||||
|
import androidx.preference.PreferenceManager
|
||||||
import kotlinx.android.synthetic.main.activity_login.*
|
import kotlinx.android.synthetic.main.activity_login.*
|
||||||
import org.libre.agosto.p2play.ajax.Auth
|
import org.libre.agosto.p2play.ajax.Auth
|
||||||
|
|
||||||
class LoginActivity : AppCompatActivity() {
|
class LoginActivity : AppCompatActivity() {
|
||||||
private val _auth = Auth()
|
private val auth = Auth()
|
||||||
lateinit var settings: SharedPreferences
|
lateinit var settings: SharedPreferences
|
||||||
lateinit var client_id: String
|
lateinit var clientId: String
|
||||||
lateinit var client_secret: String
|
lateinit var clientSecret: String
|
||||||
private lateinit var _db: Database
|
private lateinit var db: Database
|
||||||
|
private var optCode: String? = null
|
||||||
|
|
||||||
override fun onCreate(savedInstanceState: Bundle?) {
|
override fun onCreate(savedInstanceState: Bundle?) {
|
||||||
super.onCreate(savedInstanceState)
|
super.onCreate(savedInstanceState)
|
||||||
setContentView(R.layout.activity_login)
|
setContentView(R.layout.activity_login)
|
||||||
setTitle(R.string.action_login)
|
setTitle(R.string.action_login)
|
||||||
_db = Database(this)
|
db = Database(this)
|
||||||
|
|
||||||
settings = PreferenceManager.getDefaultSharedPreferences(this)
|
settings = PreferenceManager.getDefaultSharedPreferences(this)
|
||||||
client_id = settings.getString("client_id", "")!!
|
clientId = settings.getString("client_id", "")!!
|
||||||
client_secret = settings.getString("client_secret", "")!!
|
clientSecret = settings.getString("client_secret", "")!!
|
||||||
|
|
||||||
registerActionBtn.setOnClickListener { startActivity(Intent(this, RegisterActivity::class.java)) }
|
registerActionBtn.setOnClickListener { startActivity(Intent(this, RegisterActivity::class.java)) }
|
||||||
loginBtn.setOnClickListener { tryLogin() }
|
loginBtn.setOnClickListener { tryLogin() }
|
||||||
}
|
}
|
||||||
|
|
||||||
fun tryLogin(){
|
fun tryLogin() {
|
||||||
loginBtn.isEnabled = false;
|
loginBtn.isEnabled = false
|
||||||
val username = userText.text.toString()
|
val username = userText.text.toString()
|
||||||
val password = passwordText.text.toString()
|
val password = passwordText.text.toString()
|
||||||
|
|
||||||
AsyncTask.execute {
|
AsyncTask.execute {
|
||||||
if (Looper.myLooper()==null)
|
if (Looper.myLooper() == null) {
|
||||||
Looper.prepare()
|
Looper.prepare()
|
||||||
|
}
|
||||||
|
|
||||||
val token = _auth.login(username, password, client_id, client_secret)
|
val token = auth.login(username, password, clientId, clientSecret, optCode)
|
||||||
|
|
||||||
// Log.d("token", token.token )
|
// Log.d("token", token.token )
|
||||||
// Log.d("status", token.status.toString() )
|
// Log.d("status", token.status.toString() )
|
||||||
|
|
||||||
|
when (token.status.toString()) {
|
||||||
when(token.status.toString()){
|
|
||||||
"1" -> {
|
"1" -> {
|
||||||
_db.newToken(token)
|
db.newToken(token)
|
||||||
ManagerSingleton.token = token
|
ManagerSingleton.token = token
|
||||||
getUser()
|
getUser()
|
||||||
}
|
}
|
||||||
"0" -> {
|
"0" -> {
|
||||||
runOnUiThread {
|
runOnUiThread {
|
||||||
ManagerSingleton.Toast(getString(R.string.loginError_msg), this)
|
ManagerSingleton.toast(getString(R.string.loginError_msg), this)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
"-1" -> {
|
"-1" -> {
|
||||||
runOnUiThread {
|
runOnUiThread {
|
||||||
loginBtn.isEnabled = true
|
loginBtn.isEnabled = true
|
||||||
ManagerSingleton.Toast(getString(R.string.loginFailed_msg), this)
|
ManagerSingleton.toast(getString(R.string.loginFailed_msg), this)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
"-2" -> {
|
||||||
|
// TODO: Start 2FA modal
|
||||||
|
runOnUiThread {
|
||||||
|
val builder = AlertDialog.Builder(this, R.style.Widget_Material3_MaterialCalendar_Fullscreen)
|
||||||
|
val dialog = layoutInflater.inflate(R.layout.two_factor_dialog, null)
|
||||||
|
|
||||||
|
val inputTwoFactor = dialog.findViewById<EditText>(R.id.twoFactorText)
|
||||||
|
|
||||||
|
builder.setView(dialog)
|
||||||
|
.setTitle(R.string.twoFactorLabel)
|
||||||
|
// Add action buttons
|
||||||
|
.setPositiveButton(R.string.loginBtn) { d, _ ->
|
||||||
|
this.optCode = inputTwoFactor.text.toString()
|
||||||
|
this.tryLogin()
|
||||||
|
d.dismiss()
|
||||||
|
}
|
||||||
|
.setNegativeButton("Cancel") { d, _ ->
|
||||||
|
dialog.run { d.cancel() }
|
||||||
|
loginBtn.isEnabled = true
|
||||||
|
}
|
||||||
|
val alertDialog = builder.create()
|
||||||
|
alertDialog.show()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fun getUser(){
|
fun getUser() {
|
||||||
val user = _auth.me(ManagerSingleton.token.token)
|
val user = auth.me(ManagerSingleton.token.token)
|
||||||
if(user.status == 1){
|
if (user.status == 1) {
|
||||||
_db.newUser(user)
|
db.newUser(user)
|
||||||
ManagerSingleton.user = user
|
ManagerSingleton.user = user
|
||||||
runOnUiThread {
|
runOnUiThread {
|
||||||
ManagerSingleton.Toast(getString(R.string.loginSuccess_msg), this)
|
ManagerSingleton.toast(getString(R.string.loginSuccess_msg), this)
|
||||||
finish()
|
finish()
|
||||||
}
|
}
|
||||||
}
|
} else {
|
||||||
else{
|
|
||||||
runOnUiThread {
|
runOnUiThread {
|
||||||
ManagerSingleton.Toast(getString(R.string.loginError_msg), this)
|
ManagerSingleton.toast(getString(R.string.loginError_msg), this)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -2,13 +2,11 @@ package org.libre.agosto.p2play
|
|||||||
|
|
||||||
import android.content.Intent
|
import android.content.Intent
|
||||||
import android.os.AsyncTask
|
import android.os.AsyncTask
|
||||||
import android.os.Build
|
|
||||||
import android.os.Bundle
|
import android.os.Bundle
|
||||||
import android.os.Handler
|
import android.os.Handler
|
||||||
import android.view.Menu
|
import android.view.Menu
|
||||||
import android.view.MenuItem
|
import android.view.MenuItem
|
||||||
import android.view.WindowManager
|
import android.view.View
|
||||||
|
|
||||||
import androidx.appcompat.app.ActionBarDrawerToggle
|
import androidx.appcompat.app.ActionBarDrawerToggle
|
||||||
import androidx.appcompat.app.AppCompatActivity
|
import androidx.appcompat.app.AppCompatActivity
|
||||||
import androidx.appcompat.widget.SearchView
|
import androidx.appcompat.widget.SearchView
|
||||||
@ -20,11 +18,17 @@ import com.squareup.picasso.Picasso
|
|||||||
import kotlinx.android.synthetic.main.activity_main.drawer_layout
|
import kotlinx.android.synthetic.main.activity_main.drawer_layout
|
||||||
import kotlinx.android.synthetic.main.activity_main.nav_view
|
import kotlinx.android.synthetic.main.activity_main.nav_view
|
||||||
import kotlinx.android.synthetic.main.app_bar_main.toolbar
|
import kotlinx.android.synthetic.main.app_bar_main.toolbar
|
||||||
|
import kotlinx.android.synthetic.main.content_main.mini
|
||||||
import kotlinx.android.synthetic.main.content_main.swipeContainer
|
import kotlinx.android.synthetic.main.content_main.swipeContainer
|
||||||
|
import kotlinx.android.synthetic.main.mini_player.mini_play_pause
|
||||||
|
import kotlinx.android.synthetic.main.mini_player.mini_player_author
|
||||||
|
import kotlinx.android.synthetic.main.mini_player.mini_player_image
|
||||||
|
import kotlinx.android.synthetic.main.mini_player.mini_player_title
|
||||||
import kotlinx.android.synthetic.main.nav_header_main.*
|
import kotlinx.android.synthetic.main.nav_header_main.*
|
||||||
import org.libre.agosto.p2play.adapters.VideosAdapter
|
import org.libre.agosto.p2play.adapters.VideosAdapter
|
||||||
import org.libre.agosto.p2play.ajax.Videos
|
import org.libre.agosto.p2play.ajax.Videos
|
||||||
import org.libre.agosto.p2play.models.VideoModel
|
import org.libre.agosto.p2play.models.VideoModel
|
||||||
|
import org.libre.agosto.p2play.singletons.PlaybackSingleton
|
||||||
|
|
||||||
class MainActivity : AppCompatActivity(), NavigationView.OnNavigationItemSelectedListener {
|
class MainActivity : AppCompatActivity(), NavigationView.OnNavigationItemSelectedListener {
|
||||||
private lateinit var recyclerView: RecyclerView
|
private lateinit var recyclerView: RecyclerView
|
||||||
@ -32,14 +36,11 @@ class MainActivity : AppCompatActivity(), NavigationView.OnNavigationItemSelecte
|
|||||||
private lateinit var viewManager: RecyclerView.LayoutManager
|
private lateinit var viewManager: RecyclerView.LayoutManager
|
||||||
private val client: Videos = Videos()
|
private val client: Videos = Videos()
|
||||||
private lateinit var lastItem: MenuItem
|
private lateinit var lastItem: MenuItem
|
||||||
private lateinit var subItem: MenuItem
|
|
||||||
lateinit var myMenu: Menu
|
lateinit var myMenu: Menu
|
||||||
private val _db = Database(this)
|
private val db = Database(this)
|
||||||
var section: String = ""
|
var section: String = ""
|
||||||
var searchVal: String = ""
|
var searchVal: String = ""
|
||||||
var pagination = 0
|
var pagination = 0
|
||||||
|
|
||||||
|
|
||||||
override fun onCreate(savedInstanceState: Bundle?) {
|
override fun onCreate(savedInstanceState: Bundle?) {
|
||||||
super.onCreate(savedInstanceState)
|
super.onCreate(savedInstanceState)
|
||||||
setContentView(R.layout.activity_main)
|
setContentView(R.layout.activity_main)
|
||||||
@ -67,6 +68,12 @@ class MainActivity : AppCompatActivity(), NavigationView.OnNavigationItemSelecte
|
|||||||
this.refresh()
|
this.refresh()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
mini_player_image.setOnClickListener { this.resumeVideo() }
|
||||||
|
mini_player_title.setOnClickListener { this.resumeVideo() }
|
||||||
|
mini_player_author.setOnClickListener { this.resumeVideo() }
|
||||||
|
mini.setOnClickListener { this.resumeVideo() }
|
||||||
|
mini_play_pause.setOnClickListener { this.playPausePlayer() }
|
||||||
|
|
||||||
Handler().postDelayed({
|
Handler().postDelayed({
|
||||||
// Title for nav_bar
|
// Title for nav_bar
|
||||||
side_emailTxt?.text = getString(R.string.nav_header_subtitle) + " " + this.packageManager.getPackageInfo(this.packageName, 0).versionName
|
side_emailTxt?.text = getString(R.string.nav_header_subtitle) + " " + this.packageManager.getPackageInfo(this.packageName, 0).versionName
|
||||||
@ -74,7 +81,7 @@ class MainActivity : AppCompatActivity(), NavigationView.OnNavigationItemSelecte
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Generic function for set data to RecyclerView
|
// Generic function for set data to RecyclerView
|
||||||
private fun initRecycler(){
|
private fun initRecycler() {
|
||||||
val data = arrayListOf<VideoModel>()
|
val data = arrayListOf<VideoModel>()
|
||||||
viewAdapter = VideosAdapter(data)
|
viewAdapter = VideosAdapter(data)
|
||||||
|
|
||||||
@ -94,8 +101,8 @@ class MainActivity : AppCompatActivity(), NavigationView.OnNavigationItemSelecte
|
|||||||
super.onScrolled(recyclerView, dx, dy)
|
super.onScrolled(recyclerView, dx, dy)
|
||||||
// super.onScrolled(recyclerView!!, dx, dy)
|
// super.onScrolled(recyclerView!!, dx, dy)
|
||||||
|
|
||||||
if(!swipeContainer.isRefreshing){
|
if (!swipeContainer.isRefreshing) {
|
||||||
if(!canScrollVertically(1)){
|
if (!canScrollVertically(1)) {
|
||||||
loadMore()
|
loadMore()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -105,28 +112,28 @@ class MainActivity : AppCompatActivity(), NavigationView.OnNavigationItemSelecte
|
|||||||
swipeContainer.isRefreshing = false
|
swipeContainer.isRefreshing = false
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun addVideos(videos: ArrayList<VideoModel>){
|
private fun addVideos(videos: ArrayList<VideoModel>) {
|
||||||
this.swipeContainer.isRefreshing = true
|
this.swipeContainer.isRefreshing = true
|
||||||
|
|
||||||
try {
|
try {
|
||||||
if(this.pagination == 0){
|
if (this.pagination == 0) {
|
||||||
(viewAdapter as VideosAdapter).clearData()
|
(viewAdapter as VideosAdapter).clearData()
|
||||||
recyclerView.scrollToPosition(0)
|
recyclerView.scrollToPosition(0)
|
||||||
}
|
}
|
||||||
|
|
||||||
(viewAdapter as VideosAdapter).addData(videos)
|
(viewAdapter as VideosAdapter).addData(videos)
|
||||||
}catch (err: Exception){
|
} catch (err: Exception) {
|
||||||
err.printStackTrace()
|
err.printStackTrace()
|
||||||
ManagerSingleton.Toast(getString(R.string.errorMsg), this)
|
ManagerSingleton.toast(getString(R.string.errorMsg), this)
|
||||||
}
|
}
|
||||||
|
|
||||||
this.swipeContainer.isRefreshing = false
|
this.swipeContainer.isRefreshing = false
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun refresh(){
|
private fun refresh() {
|
||||||
swipeContainer.isRefreshing = true
|
swipeContainer.isRefreshing = true
|
||||||
this.pagination = 0
|
this.pagination = 0
|
||||||
when(section){
|
when (section) {
|
||||||
"local" -> this.getLocalVideos()
|
"local" -> this.getLocalVideos()
|
||||||
"popular" -> this.getPopularVideos()
|
"popular" -> this.getPopularVideos()
|
||||||
"trending" -> this.getTrengindVideos()
|
"trending" -> this.getTrengindVideos()
|
||||||
@ -134,17 +141,18 @@ class MainActivity : AppCompatActivity(), NavigationView.OnNavigationItemSelecte
|
|||||||
"sub" -> this.getSubscriptionVideos()
|
"sub" -> this.getSubscriptionVideos()
|
||||||
"search" -> this.searchVideos()
|
"search" -> this.searchVideos()
|
||||||
"my_videos" -> {
|
"my_videos" -> {
|
||||||
if(ManagerSingleton.token.token != "")
|
if (ManagerSingleton.token.token != "") {
|
||||||
this.getMyVideos()
|
this.getMyVideos()
|
||||||
else
|
} else {
|
||||||
this.getLastVideos()
|
this.getLastVideos()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun getSubscriptionVideos(){
|
private fun getSubscriptionVideos() {
|
||||||
if(ManagerSingleton.user.status != 1){
|
if (ManagerSingleton.user.status != 1) {
|
||||||
ManagerSingleton.Toast("Inicia session primero", this)
|
ManagerSingleton.toast("Inicia session primero", this)
|
||||||
startActivity(Intent(this, LoginActivity::class.java))
|
startActivity(Intent(this, LoginActivity::class.java))
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
@ -160,7 +168,7 @@ class MainActivity : AppCompatActivity(), NavigationView.OnNavigationItemSelecte
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Last videos
|
// Last videos
|
||||||
private fun getLastVideos(){
|
private fun getLastVideos() {
|
||||||
swipeContainer.isRefreshing = true
|
swipeContainer.isRefreshing = true
|
||||||
section = "last"
|
section = "last"
|
||||||
setTitle(R.string.title_recent)
|
setTitle(R.string.title_recent)
|
||||||
@ -173,7 +181,7 @@ class MainActivity : AppCompatActivity(), NavigationView.OnNavigationItemSelecte
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Popular videos
|
// Popular videos
|
||||||
private fun getPopularVideos(){
|
private fun getPopularVideos() {
|
||||||
swipeContainer.isRefreshing = true
|
swipeContainer.isRefreshing = true
|
||||||
section = "popular"
|
section = "popular"
|
||||||
setTitle(R.string.title_popular)
|
setTitle(R.string.title_popular)
|
||||||
@ -186,7 +194,7 @@ class MainActivity : AppCompatActivity(), NavigationView.OnNavigationItemSelecte
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Trending videos
|
// Trending videos
|
||||||
private fun getTrengindVideos(){
|
private fun getTrengindVideos() {
|
||||||
swipeContainer.isRefreshing = true
|
swipeContainer.isRefreshing = true
|
||||||
section = "trending"
|
section = "trending"
|
||||||
setTitle(R.string.title_trending)
|
setTitle(R.string.title_trending)
|
||||||
@ -199,7 +207,7 @@ class MainActivity : AppCompatActivity(), NavigationView.OnNavigationItemSelecte
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Local videos
|
// Local videos
|
||||||
private fun getLocalVideos(){
|
private fun getLocalVideos() {
|
||||||
swipeContainer.isRefreshing = true
|
swipeContainer.isRefreshing = true
|
||||||
section = "local"
|
section = "local"
|
||||||
setTitle(R.string.title_local)
|
setTitle(R.string.title_local)
|
||||||
@ -212,7 +220,7 @@ class MainActivity : AppCompatActivity(), NavigationView.OnNavigationItemSelecte
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Videos of user
|
// Videos of user
|
||||||
private fun getMyVideos(){
|
private fun getMyVideos() {
|
||||||
swipeContainer.isRefreshing = true
|
swipeContainer.isRefreshing = true
|
||||||
section = "my_videos"
|
section = "my_videos"
|
||||||
setTitle(R.string.title_myVideos)
|
setTitle(R.string.title_myVideos)
|
||||||
@ -225,7 +233,7 @@ class MainActivity : AppCompatActivity(), NavigationView.OnNavigationItemSelecte
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Videos history of user
|
// Videos history of user
|
||||||
private fun getHistory(){
|
private fun getHistory() {
|
||||||
swipeContainer.isRefreshing = true
|
swipeContainer.isRefreshing = true
|
||||||
section = "my_videos"
|
section = "my_videos"
|
||||||
setTitle(R.string.nav_history)
|
setTitle(R.string.nav_history)
|
||||||
@ -238,7 +246,7 @@ class MainActivity : AppCompatActivity(), NavigationView.OnNavigationItemSelecte
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Most liked
|
// Most liked
|
||||||
private fun getMostLiked(){
|
private fun getMostLiked() {
|
||||||
swipeContainer.isRefreshing = true
|
swipeContainer.isRefreshing = true
|
||||||
section = "liked"
|
section = "liked"
|
||||||
setTitle(R.string.nav_likes)
|
setTitle(R.string.nav_likes)
|
||||||
@ -252,12 +260,12 @@ class MainActivity : AppCompatActivity(), NavigationView.OnNavigationItemSelecte
|
|||||||
|
|
||||||
override fun onBackPressed() {
|
override fun onBackPressed() {
|
||||||
if (drawer_layout.isDrawerOpen(GravityCompat.START)) {
|
if (drawer_layout.isDrawerOpen(GravityCompat.START)) {
|
||||||
drawer_layout.closeDrawer(GravityCompat.START)
|
drawer_layout.closeDrawer(GravityCompat.START)
|
||||||
}
|
} else if (!section.equals("trending")) {
|
||||||
else if(!section.equals("trending")) {
|
// Hot fix
|
||||||
this.getTrengindVideos()
|
pagination = 0
|
||||||
}
|
this.getTrengindVideos()
|
||||||
else {
|
} else {
|
||||||
super.onBackPressed()
|
super.onBackPressed()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -269,13 +277,13 @@ class MainActivity : AppCompatActivity(), NavigationView.OnNavigationItemSelecte
|
|||||||
val searchItem = menu.findItem(R.id.app_bar_search)
|
val searchItem = menu.findItem(R.id.app_bar_search)
|
||||||
val searchView = searchItem.actionView as SearchView
|
val searchView = searchItem.actionView as SearchView
|
||||||
|
|
||||||
searchView.setOnQueryTextListener(object : SearchView.OnQueryTextListener{
|
searchView.setOnQueryTextListener(object : SearchView.OnQueryTextListener {
|
||||||
override fun onQueryTextChange(p0: String?): Boolean {
|
override fun onQueryTextChange(p0: String?): Boolean {
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun onQueryTextSubmit(p0: String?): Boolean {
|
override fun onQueryTextSubmit(p0: String?): Boolean {
|
||||||
if(!p0.isNullOrBlank()){
|
if (!p0.isNullOrBlank()) {
|
||||||
searchVal = p0
|
searchVal = p0
|
||||||
pagination = 0
|
pagination = 0
|
||||||
searchView.onActionViewCollapsed()
|
searchView.onActionViewCollapsed()
|
||||||
@ -283,10 +291,8 @@ class MainActivity : AppCompatActivity(), NavigationView.OnNavigationItemSelecte
|
|||||||
}
|
}
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
||||||
myMenu = menu
|
myMenu = menu
|
||||||
setSideData()
|
setSideData()
|
||||||
return true
|
return true
|
||||||
@ -304,7 +310,7 @@ class MainActivity : AppCompatActivity(), NavigationView.OnNavigationItemSelecte
|
|||||||
// as you specify a parent activity in AndroidManifest.xml.
|
// as you specify a parent activity in AndroidManifest.xml.
|
||||||
when (item.itemId) {
|
when (item.itemId) {
|
||||||
R.id.action_settings -> {
|
R.id.action_settings -> {
|
||||||
val intent = Intent(this, SettingsActivity::class.java)
|
val intent = Intent(this, SettingsActivity2::class.java)
|
||||||
startActivity(intent)
|
startActivity(intent)
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
@ -325,7 +331,7 @@ class MainActivity : AppCompatActivity(), NavigationView.OnNavigationItemSelecte
|
|||||||
// Handle navigation view item clicks here.
|
// Handle navigation view item clicks here.
|
||||||
|
|
||||||
// if(::lastItem.isInitialized){
|
// if(::lastItem.isInitialized){
|
||||||
// lastItem.isChecked = false
|
// lastItem.isChecked = false
|
||||||
// }
|
// }
|
||||||
lastItem = item
|
lastItem = item
|
||||||
pagination = 0
|
pagination = 0
|
||||||
@ -353,55 +359,72 @@ class MainActivity : AppCompatActivity(), NavigationView.OnNavigationItemSelecte
|
|||||||
override fun onResume() {
|
override fun onResume() {
|
||||||
super.onResume()
|
super.onResume()
|
||||||
setSideData()
|
setSideData()
|
||||||
|
|
||||||
|
if (PlaybackSingleton.player != null && PlaybackSingleton.player!!.isPlaying) {
|
||||||
|
PlaybackSingleton.runMediaSession(this)
|
||||||
|
mini_player_title.text = PlaybackSingleton.video!!.name
|
||||||
|
mini_player_author.text = PlaybackSingleton.video!!.username
|
||||||
|
Picasso.get().load("https://${ManagerSingleton.url}${PlaybackSingleton.video!!.thumbUrl}").into(mini_player_image)
|
||||||
|
mini_play_pause.setImageResource(R.drawable.ic_pause_24)
|
||||||
|
mini.visibility = View.VISIBLE
|
||||||
|
} else {
|
||||||
|
mini.visibility = View.GONE
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun setSideData(){
|
override fun onDestroy() {
|
||||||
if(ManagerSingleton.user.status == 1){
|
if (PlaybackSingleton.player != null) {
|
||||||
|
PlaybackSingleton.release()
|
||||||
|
}
|
||||||
|
super.onDestroy()
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun setSideData() {
|
||||||
|
if (ManagerSingleton.user.status == 1) {
|
||||||
nav_view.menu.findItem(R.id.ml).isVisible = true
|
nav_view.menu.findItem(R.id.ml).isVisible = true
|
||||||
|
|
||||||
side_usernameTxt?.text = ManagerSingleton.user.username
|
side_usernameTxt?.text = ManagerSingleton.user.username
|
||||||
side_emailTxt?.text = ManagerSingleton.user.email
|
side_emailTxt?.text = ManagerSingleton.user.email
|
||||||
if(ManagerSingleton.user.avatar!="" && side_imageView != null) {
|
if (ManagerSingleton.user.avatar != "" && side_imageView != null) {
|
||||||
Picasso.get().load("https://" + ManagerSingleton.url + ManagerSingleton.user.avatar).into(side_imageView)
|
Picasso.get().load("https://" + ManagerSingleton.url + ManagerSingleton.user.avatar).into(side_imageView)
|
||||||
}
|
}
|
||||||
side_imageView?.setOnClickListener {
|
side_imageView?.setOnClickListener {
|
||||||
pagination = 0
|
pagination = 0
|
||||||
getMyVideos()
|
getMyVideos()
|
||||||
drawer_layout.closeDrawer(GravityCompat.START)
|
drawer_layout.closeDrawer(GravityCompat.START)
|
||||||
}
|
}
|
||||||
if(::myMenu.isInitialized){
|
if (::myMenu.isInitialized) {
|
||||||
myMenu.findItem(R.id.action_login).isVisible = false
|
myMenu.findItem(R.id.action_login).isVisible = false
|
||||||
myMenu.findItem(R.id.action_logout).isVisible = true
|
myMenu.findItem(R.id.action_logout).isVisible = true
|
||||||
|
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
nav_view.menu.findItem(R.id.ml).isVisible = false
|
nav_view.menu.findItem(R.id.ml).isVisible = false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun logout(){
|
private fun logout() {
|
||||||
if(::myMenu.isInitialized){
|
if (::myMenu.isInitialized) {
|
||||||
myMenu.findItem(R.id.action_login).isVisible = true
|
myMenu.findItem(R.id.action_login).isVisible = true
|
||||||
myMenu.findItem(R.id.action_logout).isVisible = false
|
myMenu.findItem(R.id.action_logout).isVisible = false
|
||||||
}
|
}
|
||||||
//nav_view.menu.findItem(R.id.ml).isVisible = false
|
// nav_view.menu.findItem(R.id.ml).isVisible = false
|
||||||
side_usernameTxt?.text = getString(R.string.nav_header_title)
|
side_usernameTxt?.text = getString(R.string.nav_header_title)
|
||||||
side_emailTxt?.text = getString(R.string.nav_header_subtitle) + " " + this.packageManager.getPackageInfo(this.packageName, 0).versionName
|
side_emailTxt?.text = getString(R.string.nav_header_subtitle) + " " + this.packageManager.getPackageInfo(this.packageName, 0).versionName
|
||||||
side_imageView?.setImageResource(R.drawable.default_avatar)
|
side_imageView?.setImageResource(R.drawable.default_avatar)
|
||||||
side_imageView?.setOnClickListener { }
|
side_imageView?.setOnClickListener { }
|
||||||
_db.logout()
|
db.logout()
|
||||||
ManagerSingleton.logout()
|
ManagerSingleton.logout()
|
||||||
|
|
||||||
this.refresh()
|
this.refresh()
|
||||||
ManagerSingleton.Toast(getString(R.string.logout_msg), this)
|
ManagerSingleton.toast(getString(R.string.logout_msg), this)
|
||||||
setSideData()
|
setSideData()
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun loadMore(){
|
private fun loadMore() {
|
||||||
swipeContainer.isRefreshing = true
|
swipeContainer.isRefreshing = true
|
||||||
this.pagination += ManagerSingleton.videos_count
|
this.pagination += ManagerSingleton.videosCount
|
||||||
|
|
||||||
when(section){
|
when (section) {
|
||||||
"local" -> this.getLocalVideos()
|
"local" -> this.getLocalVideos()
|
||||||
"popular" -> this.getPopularVideos()
|
"popular" -> this.getPopularVideos()
|
||||||
"trending" -> this.getTrengindVideos()
|
"trending" -> this.getTrengindVideos()
|
||||||
@ -409,16 +432,17 @@ class MainActivity : AppCompatActivity(), NavigationView.OnNavigationItemSelecte
|
|||||||
"sub" -> this.getSubscriptionVideos()
|
"sub" -> this.getSubscriptionVideos()
|
||||||
"search" -> this.searchVideos()
|
"search" -> this.searchVideos()
|
||||||
"my_videos" -> {
|
"my_videos" -> {
|
||||||
if(ManagerSingleton.token.token != "")
|
if (ManagerSingleton.token.token != "") {
|
||||||
this.getMyVideos()
|
this.getMyVideos()
|
||||||
else
|
} else {
|
||||||
this.getLastVideos()
|
this.getLastVideos()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
"liked" -> this.getMostLiked()
|
"liked" -> this.getMostLiked()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun searchVideos(){
|
private fun searchVideos() {
|
||||||
swipeContainer.isRefreshing = true
|
swipeContainer.isRefreshing = true
|
||||||
section = "search"
|
section = "search"
|
||||||
this.title = this.searchVal
|
this.title = this.searchVal
|
||||||
@ -430,4 +454,21 @@ class MainActivity : AppCompatActivity(), NavigationView.OnNavigationItemSelecte
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private fun resumeVideo() {
|
||||||
|
val intent = Intent(this, ReproductorActivity::class.java)
|
||||||
|
intent.putExtra("resume", true)
|
||||||
|
startActivity(intent)
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun playPausePlayer() {
|
||||||
|
PlaybackSingleton.player?.let {
|
||||||
|
if (it.isPlaying) {
|
||||||
|
it.pause()
|
||||||
|
mini_play_pause.setImageResource(R.drawable.ic_play_arrow_24)
|
||||||
|
} else {
|
||||||
|
it.play()
|
||||||
|
mini_play_pause.setImageResource(R.drawable.ic_pause_24)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,22 +1,39 @@
|
|||||||
package org.libre.agosto.p2play
|
package org.libre.agosto.p2play
|
||||||
|
|
||||||
import android.content.Context
|
import android.content.Context
|
||||||
|
import android.content.SharedPreferences
|
||||||
import org.libre.agosto.p2play.models.TokenModel
|
import org.libre.agosto.p2play.models.TokenModel
|
||||||
import org.libre.agosto.p2play.models.UserModel
|
import org.libre.agosto.p2play.models.UserModel
|
||||||
|
|
||||||
object ManagerSingleton {
|
object ManagerSingleton {
|
||||||
var url: String?= null
|
var url: String? = null
|
||||||
var user: UserModel = UserModel()
|
var user: UserModel = UserModel()
|
||||||
var token: TokenModel = TokenModel()
|
var token: TokenModel = TokenModel()
|
||||||
var nfsw: Boolean = false
|
var nfsw: Boolean = false
|
||||||
var videos_count: Int = 0
|
var videosCount: Int = 0
|
||||||
|
lateinit var settings: SharedPreferences
|
||||||
fun Toast(text: String?, context: Context) {
|
lateinit var db: Database
|
||||||
|
fun toast(text: String?, context: Context) {
|
||||||
android.widget.Toast.makeText(context, text, android.widget.Toast.LENGTH_SHORT).show()
|
android.widget.Toast.makeText(context, text, android.widget.Toast.LENGTH_SHORT).show()
|
||||||
}
|
}
|
||||||
|
|
||||||
fun logout(){
|
fun logout() {
|
||||||
|
db.logout()
|
||||||
user = UserModel()
|
user = UserModel()
|
||||||
token = TokenModel()
|
token = TokenModel()
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
fun reloadSettings() {
|
||||||
|
val host = settings.getString("hostP2play", "")
|
||||||
|
val lastHost = settings.getString("last_host", "")
|
||||||
|
if (host != "") {
|
||||||
|
if (lastHost != host) {
|
||||||
|
logout()
|
||||||
|
}
|
||||||
|
url = host
|
||||||
|
}
|
||||||
|
|
||||||
|
nfsw = settings.getBoolean("show_nsfw", false)
|
||||||
|
videosCount = settings.getString("videos_count", "15")!!.toInt()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@ -2,19 +2,19 @@ package org.libre.agosto.p2play
|
|||||||
|
|
||||||
import android.content.SharedPreferences
|
import android.content.SharedPreferences
|
||||||
import android.os.AsyncTask
|
import android.os.AsyncTask
|
||||||
import androidx.appcompat.app.AppCompatActivity
|
|
||||||
import android.os.Bundle
|
import android.os.Bundle
|
||||||
import android.os.Looper
|
import android.os.Looper
|
||||||
import android.preference.PreferenceManager
|
|
||||||
import android.util.Log
|
import android.util.Log
|
||||||
|
import androidx.appcompat.app.AppCompatActivity
|
||||||
|
import androidx.preference.PreferenceManager
|
||||||
import kotlinx.android.synthetic.main.activity_register.*
|
import kotlinx.android.synthetic.main.activity_register.*
|
||||||
import org.libre.agosto.p2play.ajax.Auth
|
import org.libre.agosto.p2play.ajax.Auth
|
||||||
|
|
||||||
class RegisterActivity : AppCompatActivity() {
|
class RegisterActivity : AppCompatActivity() {
|
||||||
private val _auth = Auth()
|
private val auth = Auth()
|
||||||
lateinit var settings: SharedPreferences
|
lateinit var settings: SharedPreferences
|
||||||
lateinit var client_id: String
|
lateinit var clientId: String
|
||||||
lateinit var client_secret: String
|
lateinit var clientSecret: String
|
||||||
|
|
||||||
override fun onCreate(savedInstanceState: Bundle?) {
|
override fun onCreate(savedInstanceState: Bundle?) {
|
||||||
super.onCreate(savedInstanceState)
|
super.onCreate(savedInstanceState)
|
||||||
@ -22,31 +22,32 @@ class RegisterActivity : AppCompatActivity() {
|
|||||||
setTitle(R.string.registerActionBtn)
|
setTitle(R.string.registerActionBtn)
|
||||||
|
|
||||||
settings = PreferenceManager.getDefaultSharedPreferences(this)
|
settings = PreferenceManager.getDefaultSharedPreferences(this)
|
||||||
client_id = settings.getString("client_id", "")!!
|
clientId = settings.getString("client_id", "")!!
|
||||||
client_secret = settings.getString("client_secret", "")!!
|
clientSecret = settings.getString("client_secret", "")!!
|
||||||
|
|
||||||
registerBtn.setOnClickListener { registerUser() }
|
registerBtn.setOnClickListener { registerUser() }
|
||||||
}
|
}
|
||||||
|
|
||||||
fun registerUser(){
|
private fun registerUser() {
|
||||||
registerBtn.isEnabled = false
|
registerBtn.isEnabled = false
|
||||||
val username = userText2.text.toString()
|
val username = userText2.text.toString()
|
||||||
val password = passwordText2.text.toString()
|
val password = passwordText2.text.toString()
|
||||||
val email = emailText.text.toString()
|
val email = emailText.text.toString()
|
||||||
AsyncTask.execute {
|
AsyncTask.execute {
|
||||||
if (Looper.myLooper()==null)
|
if (Looper.myLooper() == null) {
|
||||||
Looper.prepare()
|
Looper.prepare()
|
||||||
|
}
|
||||||
|
|
||||||
val res = _auth.register(username, password, email)
|
val res = auth.register(username, password, email)
|
||||||
Log.d("Res register", res.toString())
|
Log.d("Res register", res.toString())
|
||||||
runOnUiThread {
|
runOnUiThread {
|
||||||
when (res) {
|
when (res) {
|
||||||
1 -> {
|
1 -> {
|
||||||
ManagerSingleton.Toast(getString(R.string.registerSuccess_msg), this)
|
ManagerSingleton.toast(getString(R.string.registerSuccess_msg), this)
|
||||||
finish()
|
finish()
|
||||||
}
|
}
|
||||||
0 -> ManagerSingleton.Toast(getString(R.string.registerFailed_msg), this)
|
0 -> ManagerSingleton.toast(getString(R.string.registerFailed_msg), this)
|
||||||
-1 -> ManagerSingleton.Toast(getString(R.string.registerError_msg), this)
|
-1 -> ManagerSingleton.toast(getString(R.string.registerError_msg), this)
|
||||||
}
|
}
|
||||||
registerBtn.isEnabled = true
|
registerBtn.isEnabled = true
|
||||||
}
|
}
|
||||||
|
@ -5,25 +5,33 @@ import android.content.Intent
|
|||||||
import android.content.pm.ActivityInfo
|
import android.content.pm.ActivityInfo
|
||||||
import android.graphics.Bitmap
|
import android.graphics.Bitmap
|
||||||
import android.graphics.BitmapFactory
|
import android.graphics.BitmapFactory
|
||||||
import android.media.Image
|
import android.net.Uri
|
||||||
import android.os.AsyncTask
|
import android.os.AsyncTask
|
||||||
import android.os.Bundle
|
import android.os.Bundle
|
||||||
import android.os.Looper
|
import android.os.Looper
|
||||||
import androidx.appcompat.app.AlertDialog
|
|
||||||
import android.view.View
|
import android.view.View
|
||||||
import android.view.WindowManager
|
import android.view.WindowManager
|
||||||
import android.webkit.WebChromeClient
|
import android.webkit.WebChromeClient
|
||||||
import android.widget.EditText
|
import android.widget.EditText
|
||||||
import android.widget.FrameLayout
|
import android.widget.FrameLayout
|
||||||
import android.widget.ImageView
|
import android.widget.ImageView
|
||||||
|
import androidx.appcompat.app.AlertDialog
|
||||||
import androidx.appcompat.app.AppCompatActivity
|
import androidx.appcompat.app.AppCompatActivity
|
||||||
import androidx.core.content.ContextCompat
|
import androidx.core.content.ContextCompat
|
||||||
import androidx.media3.common.MediaItem
|
import androidx.media3.common.MediaItem
|
||||||
|
import androidx.media3.common.MediaMetadata
|
||||||
|
import androidx.media3.exoplayer.DefaultLoadControl
|
||||||
import androidx.media3.exoplayer.ExoPlayer
|
import androidx.media3.exoplayer.ExoPlayer
|
||||||
|
import androidx.media3.exoplayer.upstream.DefaultAllocator
|
||||||
|
import androidx.media3.session.MediaController
|
||||||
import androidx.recyclerview.widget.LinearLayoutManager
|
import androidx.recyclerview.widget.LinearLayoutManager
|
||||||
import androidx.recyclerview.widget.RecyclerView
|
import androidx.recyclerview.widget.RecyclerView
|
||||||
import com.squareup.picasso.Picasso
|
import com.squareup.picasso.Picasso
|
||||||
import kotlinx.android.synthetic.main.activity_reproductor.*
|
import kotlinx.android.synthetic.main.activity_reproductor.*
|
||||||
|
import kotlinx.android.synthetic.main.comment_component.commentaryBtn
|
||||||
|
import kotlinx.android.synthetic.main.comment_component.commentaryLayout
|
||||||
|
import kotlinx.android.synthetic.main.comment_component.commentaryText
|
||||||
|
import kotlinx.android.synthetic.main.comment_component.userImgCom
|
||||||
import org.libre.agosto.p2play.adapters.CommentariesAdapter
|
import org.libre.agosto.p2play.adapters.CommentariesAdapter
|
||||||
import org.libre.agosto.p2play.ajax.Actions
|
import org.libre.agosto.p2play.ajax.Actions
|
||||||
import org.libre.agosto.p2play.ajax.Comments
|
import org.libre.agosto.p2play.ajax.Comments
|
||||||
@ -31,12 +39,14 @@ import org.libre.agosto.p2play.ajax.Videos
|
|||||||
import org.libre.agosto.p2play.helpers.setFullscreen
|
import org.libre.agosto.p2play.helpers.setFullscreen
|
||||||
import org.libre.agosto.p2play.models.CommentaryModel
|
import org.libre.agosto.p2play.models.CommentaryModel
|
||||||
import org.libre.agosto.p2play.models.VideoModel
|
import org.libre.agosto.p2play.models.VideoModel
|
||||||
|
import org.libre.agosto.p2play.singletons.PlaybackSingleton
|
||||||
|
|
||||||
@Suppress("NAME_SHADOWING")
|
@Suppress("NAME_SHADOWING")
|
||||||
class ReproductorActivity : AppCompatActivity() {
|
class ReproductorActivity : AppCompatActivity() {
|
||||||
private val clientVideo: Videos = Videos()
|
private val clientVideo: Videos = Videos()
|
||||||
lateinit var video: VideoModel
|
lateinit var video: VideoModel
|
||||||
private val _actions: Actions = Actions()
|
lateinit var videoPlayback: VideoModel
|
||||||
|
private val actions: Actions = Actions()
|
||||||
private val client: Comments = Comments()
|
private val client: Comments = Comments()
|
||||||
private val videos: Videos = Videos()
|
private val videos: Videos = Videos()
|
||||||
|
|
||||||
@ -48,9 +58,14 @@ class ReproductorActivity : AppCompatActivity() {
|
|||||||
// Exoplayer
|
// Exoplayer
|
||||||
private lateinit var player: ExoPlayer
|
private lateinit var player: ExoPlayer
|
||||||
|
|
||||||
|
private lateinit var mediaControl: MediaController
|
||||||
|
|
||||||
// Fullscreen info
|
// Fullscreen info
|
||||||
private var isFullscreen = false
|
private var isFullscreen = false
|
||||||
|
|
||||||
|
// Resume info
|
||||||
|
private var isResume = false
|
||||||
|
|
||||||
@SuppressLint("SetJavaScriptEnabled", "SetTextI18n")
|
@SuppressLint("SetJavaScriptEnabled", "SetTextI18n")
|
||||||
override fun onCreate(savedInstanceState: Bundle?) {
|
override fun onCreate(savedInstanceState: Bundle?) {
|
||||||
super.onCreate(savedInstanceState)
|
super.onCreate(savedInstanceState)
|
||||||
@ -69,7 +84,15 @@ class ReproductorActivity : AppCompatActivity() {
|
|||||||
videoView.settings.domStorageEnabled = true
|
videoView.settings.domStorageEnabled = true
|
||||||
|
|
||||||
try {
|
try {
|
||||||
video = this.intent.extras?.getSerializable("video") as VideoModel
|
val resume = this.intent.extras?.getSerializable("resume")
|
||||||
|
if (resume == null) {
|
||||||
|
video = this.intent.extras?.getSerializable("video") as VideoModel
|
||||||
|
isResume = false
|
||||||
|
} else {
|
||||||
|
video = PlaybackSingleton.video!!
|
||||||
|
isResume = true
|
||||||
|
}
|
||||||
|
|
||||||
tittleVideoTxt.text = this.video.name
|
tittleVideoTxt.text = this.video.name
|
||||||
viewsTxt.text = "${this.video.views} ${getString(R.string.view_text)}"
|
viewsTxt.text = "${this.video.views} ${getString(R.string.view_text)}"
|
||||||
userTxt.text = this.video.username
|
userTxt.text = this.video.username
|
||||||
@ -81,11 +104,11 @@ class ReproductorActivity : AppCompatActivity() {
|
|||||||
hostTxt.text = this.video.userHost
|
hostTxt.text = this.video.userHost
|
||||||
|
|
||||||
// Check if user had profile image
|
// Check if user had profile image
|
||||||
if (this.video.userImageUrl != "")
|
if (this.video.userImageUrl != "") {
|
||||||
Picasso.get().load("https://" + ManagerSingleton.url + this.video.userImageUrl).into(userImg)
|
Picasso.get().load("https://" + ManagerSingleton.url + this.video.userImageUrl).into(userImg)
|
||||||
|
}
|
||||||
// Load the video
|
// Load the video
|
||||||
videoView.loadUrl("https://" + ManagerSingleton.url + this.video.embedUrl)
|
videoView.loadUrl("https://" + ManagerSingleton.url + this.video.embedUrl)
|
||||||
|
|
||||||
} catch (err: Exception) {
|
} catch (err: Exception) {
|
||||||
err.printStackTrace()
|
err.printStackTrace()
|
||||||
}
|
}
|
||||||
@ -111,24 +134,44 @@ class ReproductorActivity : AppCompatActivity() {
|
|||||||
startActivity(intent)
|
startActivity(intent)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
AsyncTask.execute {
|
AsyncTask.execute {
|
||||||
val video = this.clientVideo.getVideo(this.video.uuid)
|
videoPlayback = this.clientVideo.getVideo(this.video.uuid)
|
||||||
|
// TODO: Make this configurable
|
||||||
|
val bufferSize = 1024 * 1024 // 1mb
|
||||||
|
val allocator = DefaultAllocator(true, bufferSize)
|
||||||
|
val loadControl = DefaultLoadControl.Builder()
|
||||||
|
.setAllocator(allocator)
|
||||||
|
.build()
|
||||||
|
|
||||||
runOnUiThread {
|
runOnUiThread {
|
||||||
try {
|
try {
|
||||||
player = ExoPlayer.Builder(this.baseContext).build()
|
if (PlaybackSingleton.player == null || !PlaybackSingleton.player!!.playWhenReady) {
|
||||||
|
PlaybackSingleton.player = ExoPlayer.Builder(this.baseContext)
|
||||||
|
.setSeekBackIncrementMs(10000)
|
||||||
|
.setSeekForwardIncrementMs(10000)
|
||||||
|
.setLoadControl(loadControl).build()
|
||||||
|
}
|
||||||
|
player = PlaybackSingleton.player!!
|
||||||
exoPlayer.player = player
|
exoPlayer.player = player
|
||||||
|
|
||||||
println("----- video --------")
|
println("----- video --------")
|
||||||
println(video.streamingData?.playlistUrl)
|
println(videoPlayback.streamingData?.playlistUrl)
|
||||||
val mediaItem = MediaItem.fromUri(video.streamingData?.playlistUrl!!)
|
|
||||||
// Set the media item to be played.
|
if (!isResume) {
|
||||||
player.setMediaItem(mediaItem)
|
val mediaItem = MediaItem.Builder()
|
||||||
// Prepare the player.
|
.setUri(videoPlayback.streamingData?.playlistUrl!!)
|
||||||
player.prepare()
|
.setMediaMetadata(
|
||||||
|
MediaMetadata.Builder()
|
||||||
|
.setArtist(videoPlayback.username)
|
||||||
|
.setTitle(videoPlayback.name)
|
||||||
|
.setArtworkUri(Uri.parse("https://${ManagerSingleton.url}${videoPlayback.thumbUrl}"))
|
||||||
|
.build(),
|
||||||
|
).build()
|
||||||
|
PlaybackSingleton.setData(mediaItem, video)
|
||||||
|
}
|
||||||
// Start the playback.
|
// Start the playback.
|
||||||
// player.play()
|
// player.play()
|
||||||
} catch(err: Exception) {
|
} catch (err: Exception) {
|
||||||
err.printStackTrace()
|
err.printStackTrace()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -137,12 +180,13 @@ class ReproductorActivity : AppCompatActivity() {
|
|||||||
|
|
||||||
private fun subscribe() {
|
private fun subscribe() {
|
||||||
AsyncTask.execute {
|
AsyncTask.execute {
|
||||||
if (Looper.myLooper() == null)
|
if (Looper.myLooper() == null) {
|
||||||
Looper.prepare()
|
Looper.prepare()
|
||||||
val res = this._actions.subscribe(ManagerSingleton.token.token, video.getChannel())
|
}
|
||||||
|
val res = this.actions.subscribe(ManagerSingleton.token.token, video.getChannel())
|
||||||
if (res == 1) {
|
if (res == 1) {
|
||||||
runOnUiThread {
|
runOnUiThread {
|
||||||
ManagerSingleton.Toast(getString(R.string.subscribeMsg), this)
|
ManagerSingleton.toast(getString(R.string.subscribeMsg), this)
|
||||||
this.changeSubscribeBtn(true)
|
this.changeSubscribeBtn(true)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -151,12 +195,13 @@ class ReproductorActivity : AppCompatActivity() {
|
|||||||
|
|
||||||
private fun unSubscribe() {
|
private fun unSubscribe() {
|
||||||
AsyncTask.execute {
|
AsyncTask.execute {
|
||||||
if (Looper.myLooper() == null)
|
if (Looper.myLooper() == null) {
|
||||||
Looper.prepare()
|
Looper.prepare()
|
||||||
val res = this._actions.unSubscribe(ManagerSingleton.token.token, video.getChannel())
|
}
|
||||||
|
val res = this.actions.unSubscribe(ManagerSingleton.token.token, video.getChannel())
|
||||||
if (res == 1) {
|
if (res == 1) {
|
||||||
runOnUiThread {
|
runOnUiThread {
|
||||||
ManagerSingleton.Toast(getString(R.string.unSubscribeMsg), this)
|
ManagerSingleton.toast(getString(R.string.unSubscribeMsg), this)
|
||||||
this.changeSubscribeBtn(false)
|
this.changeSubscribeBtn(false)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -165,12 +210,13 @@ class ReproductorActivity : AppCompatActivity() {
|
|||||||
|
|
||||||
private fun rate(rate: String) {
|
private fun rate(rate: String) {
|
||||||
AsyncTask.execute {
|
AsyncTask.execute {
|
||||||
if (Looper.myLooper() == null)
|
if (Looper.myLooper() == null) {
|
||||||
Looper.prepare()
|
Looper.prepare()
|
||||||
val res = this._actions.rate(ManagerSingleton.token.token, this.video.id, rate)
|
}
|
||||||
|
val res = this.actions.rate(ManagerSingleton.token.token, this.video.id, rate)
|
||||||
if (res == 1) {
|
if (res == 1) {
|
||||||
runOnUiThread {
|
runOnUiThread {
|
||||||
ManagerSingleton.Toast(getString(R.string.rateMsg), this)
|
ManagerSingleton.toast(getString(R.string.rateMsg), this)
|
||||||
if (rate == "like") {
|
if (rate == "like") {
|
||||||
textViewLike.setTextColor(ContextCompat.getColor(this, R.color.colorLike))
|
textViewLike.setTextColor(ContextCompat.getColor(this, R.color.colorLike))
|
||||||
textViewDislike.setTextColor(ContextCompat.getColor(this, R.color.primary_dark_material_light))
|
textViewDislike.setTextColor(ContextCompat.getColor(this, R.color.primary_dark_material_light))
|
||||||
@ -185,9 +231,10 @@ class ReproductorActivity : AppCompatActivity() {
|
|||||||
|
|
||||||
private fun getRate() {
|
private fun getRate() {
|
||||||
AsyncTask.execute {
|
AsyncTask.execute {
|
||||||
if (Looper.myLooper() == null)
|
if (Looper.myLooper() == null) {
|
||||||
Looper.prepare()
|
Looper.prepare()
|
||||||
val rate = this._actions.getRate(ManagerSingleton.token.token, this.video.id)
|
}
|
||||||
|
val rate = this.actions.getRate(ManagerSingleton.token.token, this.video.id)
|
||||||
runOnUiThread {
|
runOnUiThread {
|
||||||
when (rate) {
|
when (rate) {
|
||||||
"like" -> {
|
"like" -> {
|
||||||
@ -210,9 +257,10 @@ class ReproductorActivity : AppCompatActivity() {
|
|||||||
private fun getSubscription() {
|
private fun getSubscription() {
|
||||||
val account = this.video.nameChannel + "@" + this.video.userHost
|
val account = this.video.nameChannel + "@" + this.video.userHost
|
||||||
AsyncTask.execute {
|
AsyncTask.execute {
|
||||||
if (Looper.myLooper() == null)
|
if (Looper.myLooper() == null) {
|
||||||
Looper.prepare()
|
Looper.prepare()
|
||||||
val isSubscribed = this._actions.getSubscription(ManagerSingleton.token.token, account)
|
}
|
||||||
|
val isSubscribed = this.actions.getSubscription(ManagerSingleton.token.token, account)
|
||||||
runOnUiThread {
|
runOnUiThread {
|
||||||
this.changeSubscribeBtn(isSubscribed)
|
this.changeSubscribeBtn(isSubscribed)
|
||||||
}
|
}
|
||||||
@ -231,7 +279,7 @@ class ReproductorActivity : AppCompatActivity() {
|
|||||||
|
|
||||||
private fun setDataComments(data: ArrayList<CommentaryModel>) {
|
private fun setDataComments(data: ArrayList<CommentaryModel>) {
|
||||||
// Set data for RecyclerView
|
// Set data for RecyclerView
|
||||||
viewAdapter = CommentariesAdapter(data)
|
viewAdapter = CommentariesAdapter(data).setFragmentManager(supportFragmentManager)
|
||||||
|
|
||||||
recyclerView = findViewById<RecyclerView>(R.id.listCommentaries).apply {
|
recyclerView = findViewById<RecyclerView>(R.id.listCommentaries).apply {
|
||||||
// use this setting to improve performance if you know that changes
|
// use this setting to improve performance if you know that changes
|
||||||
@ -257,7 +305,7 @@ class ReproductorActivity : AppCompatActivity() {
|
|||||||
|
|
||||||
private fun makeComment() {
|
private fun makeComment() {
|
||||||
if (commentaryText.text.toString() == "") {
|
if (commentaryText.text.toString() == "") {
|
||||||
ManagerSingleton.Toast(getString(R.string.emptyCommentaryMsg), this)
|
ManagerSingleton.toast(getString(R.string.emptyCommentaryMsg), this)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
val text = commentaryText.text.toString()
|
val text = commentaryText.text.toString()
|
||||||
@ -265,11 +313,11 @@ class ReproductorActivity : AppCompatActivity() {
|
|||||||
val res = this.client.makeCommentary(ManagerSingleton.token.token, this.video.id, text)
|
val res = this.client.makeCommentary(ManagerSingleton.token.token, this.video.id, text)
|
||||||
runOnUiThread {
|
runOnUiThread {
|
||||||
if (res) {
|
if (res) {
|
||||||
ManagerSingleton.Toast(getString(R.string.makedCommentaryMsg), this)
|
ManagerSingleton.toast(getString(R.string.makedCommentaryMsg), this)
|
||||||
commentaryText.text?.clear()
|
commentaryText.text?.clear()
|
||||||
this.getComments()
|
this.getComments()
|
||||||
} else {
|
} else {
|
||||||
ManagerSingleton.Toast(getString(R.string.errorCommentaryMsg), this)
|
ManagerSingleton.toast(getString(R.string.errorCommentaryMsg), this)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -286,10 +334,12 @@ class ReproductorActivity : AppCompatActivity() {
|
|||||||
if (ManagerSingleton.user.avatar != "") {
|
if (ManagerSingleton.user.avatar != "") {
|
||||||
Picasso.get().load("https://" + ManagerSingleton.url + ManagerSingleton.user.avatar).into(userImgCom)
|
Picasso.get().load("https://" + ManagerSingleton.url + ManagerSingleton.user.avatar).into(userImgCom)
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
|
commentaryLayout.visibility = View.GONE
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fun getDescription() {
|
private fun getDescription() {
|
||||||
AsyncTask.execute {
|
AsyncTask.execute {
|
||||||
val fullDescription = this.videos.fullDescription(this.video.id)
|
val fullDescription = this.videos.fullDescription(this.video.id)
|
||||||
runOnUiThread {
|
runOnUiThread {
|
||||||
@ -318,6 +368,7 @@ class ReproductorActivity : AppCompatActivity() {
|
|||||||
// Inflate and set the layout for the dialog
|
// Inflate and set the layout for the dialog
|
||||||
// Pass null as the parent view because its going in the dialog layout
|
// Pass null as the parent view because its going in the dialog layout
|
||||||
builder.setView(dialog)
|
builder.setView(dialog)
|
||||||
|
.setTitle(R.string.reportDialog)
|
||||||
// Add action buttons
|
// Add action buttons
|
||||||
.setPositiveButton(R.string.reportBtn) { _, _ ->
|
.setPositiveButton(R.string.reportBtn) { _, _ ->
|
||||||
val reason = inputReason.text.toString()
|
val reason = inputReason.text.toString()
|
||||||
@ -330,22 +381,21 @@ class ReproductorActivity : AppCompatActivity() {
|
|||||||
alertDialog.show()
|
alertDialog.show()
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun reportVideo(reason: String){
|
private fun reportVideo(reason: String) {
|
||||||
AsyncTask.execute {
|
AsyncTask.execute {
|
||||||
val res = _actions.reportVideo(video.id, reason, ManagerSingleton.token.token)
|
val res = actions.reportVideo(video.id, reason, ManagerSingleton.token.token)
|
||||||
|
|
||||||
runOnUiThread {
|
runOnUiThread {
|
||||||
if(res) {
|
if (res) {
|
||||||
ManagerSingleton.Toast(getText(R.string.reportDialogMsg).toString(), this)
|
ManagerSingleton.toast(getText(R.string.reportDialogMsg).toString(), this)
|
||||||
}
|
} else {
|
||||||
else {
|
ManagerSingleton.toast(getText(R.string.errorMsg).toString(), this)
|
||||||
ManagerSingleton.Toast(getText(R.string.errorMsg).toString(), this)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun toggleFullscreen () {
|
private fun toggleFullscreen() {
|
||||||
if (isFullscreen) {
|
if (isFullscreen) {
|
||||||
nonFullScreen.visibility = View.VISIBLE
|
nonFullScreen.visibility = View.VISIBLE
|
||||||
fullScreenExo.visibility = View.GONE
|
fullScreenExo.visibility = View.GONE
|
||||||
@ -360,8 +410,7 @@ class ReproductorActivity : AppCompatActivity() {
|
|||||||
window.decorView.systemUiVisibility = View.SYSTEM_UI_FLAG_VISIBLE
|
window.decorView.systemUiVisibility = View.SYSTEM_UI_FLAG_VISIBLE
|
||||||
|
|
||||||
isFullscreen = false
|
isFullscreen = false
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
val matchParent = WindowManager.LayoutParams.MATCH_PARENT
|
val matchParent = WindowManager.LayoutParams.MATCH_PARENT
|
||||||
|
|
||||||
nonFullScreen.visibility = View.GONE
|
nonFullScreen.visibility = View.GONE
|
||||||
@ -378,11 +427,13 @@ class ReproductorActivity : AppCompatActivity() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
override fun onDestroy() {
|
override fun onDestroy() {
|
||||||
player.release()
|
if (!player.isPlaying) {
|
||||||
|
PlaybackSingleton.release()
|
||||||
|
}
|
||||||
super.onDestroy()
|
super.onDestroy()
|
||||||
}
|
}
|
||||||
|
|
||||||
internal inner class WebClient: WebChromeClient() {
|
internal inner class WebClient : WebChromeClient() {
|
||||||
private var mCustomView: View? = null
|
private var mCustomView: View? = null
|
||||||
private var mCustomViewCallback: WebChromeClient.CustomViewCallback? = null
|
private var mCustomViewCallback: WebChromeClient.CustomViewCallback? = null
|
||||||
private var mOriginalOrientation: Int = 0
|
private var mOriginalOrientation: Int = 0
|
||||||
@ -390,12 +441,14 @@ class ReproductorActivity : AppCompatActivity() {
|
|||||||
|
|
||||||
override fun getDefaultVideoPoster(): Bitmap? {
|
override fun getDefaultVideoPoster(): Bitmap? {
|
||||||
AsyncTask.execute {
|
AsyncTask.execute {
|
||||||
this@ReproductorActivity._actions.watchVideo(this@ReproductorActivity.video.id, ManagerSingleton.token.token)
|
this@ReproductorActivity.actions.watchVideo(this@ReproductorActivity.video.id, ManagerSingleton.token.token)
|
||||||
}
|
}
|
||||||
|
|
||||||
return if (mCustomView == null) {
|
return if (mCustomView == null) {
|
||||||
null
|
null
|
||||||
} else BitmapFactory.decodeResource(this@ReproductorActivity.resources, 2130837573)
|
} else {
|
||||||
|
BitmapFactory.decodeResource(this@ReproductorActivity.resources, 2130837573)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun onHideCustomView() {
|
override fun onHideCustomView() {
|
||||||
@ -416,8 +469,7 @@ class ReproductorActivity : AppCompatActivity() {
|
|||||||
attrs.flags = attrs.flags and WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON.inv()
|
attrs.flags = attrs.flags and WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON.inv()
|
||||||
window.attributes = attrs
|
window.attributes = attrs
|
||||||
this@ReproductorActivity.window.decorView.systemUiVisibility = View.SYSTEM_UI_FLAG_VISIBLE
|
this@ReproductorActivity.window.decorView.systemUiVisibility = View.SYSTEM_UI_FLAG_VISIBLE
|
||||||
}
|
} catch (err: Exception) {
|
||||||
catch (err: Exception){
|
|
||||||
err.printStackTrace()
|
err.printStackTrace()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -432,18 +484,17 @@ class ReproductorActivity : AppCompatActivity() {
|
|||||||
this.mOriginalSystemUiVisibility = this@ReproductorActivity.window.decorView.systemUiVisibility
|
this.mOriginalSystemUiVisibility = this@ReproductorActivity.window.decorView.systemUiVisibility
|
||||||
this.mOriginalOrientation = this@ReproductorActivity.requestedOrientation
|
this.mOriginalOrientation = this@ReproductorActivity.requestedOrientation
|
||||||
this.mCustomViewCallback = paramCustomViewCallback
|
this.mCustomViewCallback = paramCustomViewCallback
|
||||||
val match_parent = WindowManager.LayoutParams.MATCH_PARENT
|
val matchParent = WindowManager.LayoutParams.MATCH_PARENT
|
||||||
|
|
||||||
this@ReproductorActivity.nonFullScreen.visibility = View.GONE
|
this@ReproductorActivity.nonFullScreen.visibility = View.GONE
|
||||||
this@ReproductorActivity.fullScreen.visibility = View.VISIBLE
|
this@ReproductorActivity.fullScreen.visibility = View.VISIBLE
|
||||||
|
|
||||||
this@ReproductorActivity.fullScreen.addView(paramView, FrameLayout.LayoutParams(match_parent, match_parent))
|
this@ReproductorActivity.fullScreen.addView(paramView, FrameLayout.LayoutParams(matchParent, matchParent))
|
||||||
|
|
||||||
setFullscreen(this@ReproductorActivity.window)
|
setFullscreen(this@ReproductorActivity.window)
|
||||||
|
|
||||||
this@ReproductorActivity.requestedOrientation = ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE
|
this@ReproductorActivity.requestedOrientation = ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE
|
||||||
}
|
} catch (err: Exception) {
|
||||||
catch (err: Exception){
|
|
||||||
err.printStackTrace()
|
err.printStackTrace()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -4,8 +4,6 @@ import android.annotation.TargetApi
|
|||||||
import android.content.Context
|
import android.content.Context
|
||||||
import android.content.Intent
|
import android.content.Intent
|
||||||
import android.content.res.Configuration
|
import android.content.res.Configuration
|
||||||
import android.media.RingtoneManager
|
|
||||||
import android.net.Uri
|
|
||||||
import android.os.Build
|
import android.os.Build
|
||||||
import android.os.Bundle
|
import android.os.Bundle
|
||||||
import android.preference.ListPreference
|
import android.preference.ListPreference
|
||||||
@ -13,9 +11,6 @@ import android.preference.Preference
|
|||||||
import android.preference.PreferenceActivity
|
import android.preference.PreferenceActivity
|
||||||
import android.preference.PreferenceFragment
|
import android.preference.PreferenceFragment
|
||||||
import android.preference.PreferenceManager
|
import android.preference.PreferenceManager
|
||||||
import android.preference.RingtonePreference
|
|
||||||
import android.text.TextUtils
|
|
||||||
import android.util.Log
|
|
||||||
import android.view.MenuItem
|
import android.view.MenuItem
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -37,7 +32,7 @@ class SettingsActivity : AppCompatPreferenceActivity() {
|
|||||||
|
|
||||||
override fun onBackPressed() {
|
override fun onBackPressed() {
|
||||||
super.onBackPressed()
|
super.onBackPressed()
|
||||||
ManagerSingleton.Toast(getString(R.string.pref_message_exit), this)
|
ManagerSingleton.toast(getString(R.string.pref_message_exit), this)
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -67,8 +62,8 @@ class SettingsActivity : AppCompatPreferenceActivity() {
|
|||||||
* Make sure to deny any unknown fragments here.
|
* Make sure to deny any unknown fragments here.
|
||||||
*/
|
*/
|
||||||
override fun isValidFragment(fragmentName: String): Boolean {
|
override fun isValidFragment(fragmentName: String): Boolean {
|
||||||
return PreferenceFragment::class.java.name == fragmentName
|
return PreferenceFragment::class.java.name == fragmentName ||
|
||||||
|| GeneralPreferenceFragment::class.java.name == fragmentName
|
GeneralPreferenceFragment::class.java.name == fragmentName
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -116,11 +111,12 @@ class SettingsActivity : AppCompatPreferenceActivity() {
|
|||||||
|
|
||||||
// Set the summary to reflect the new value.
|
// Set the summary to reflect the new value.
|
||||||
preference.setSummary(
|
preference.setSummary(
|
||||||
if (index >= 0)
|
if (index >= 0) {
|
||||||
listPreference.entries[index]
|
listPreference.entries[index]
|
||||||
else
|
} else {
|
||||||
null)
|
null
|
||||||
|
},
|
||||||
|
)
|
||||||
} else {
|
} else {
|
||||||
// For all other preferences, set the summary to the value's
|
// For all other preferences, set the summary to the value's
|
||||||
// simple string representation.
|
// simple string representation.
|
||||||
@ -152,10 +148,12 @@ class SettingsActivity : AppCompatPreferenceActivity() {
|
|||||||
|
|
||||||
// Trigger the listener immediately with the preference's
|
// Trigger the listener immediately with the preference's
|
||||||
// current value.
|
// current value.
|
||||||
sBindPreferenceSummaryToValueListener.onPreferenceChange(preference,
|
sBindPreferenceSummaryToValueListener.onPreferenceChange(
|
||||||
PreferenceManager
|
preference,
|
||||||
.getDefaultSharedPreferences(preference.context)
|
PreferenceManager
|
||||||
.getString(preference.key, ""))
|
.getDefaultSharedPreferences(preference.context)
|
||||||
|
.getString(preference.key, ""),
|
||||||
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -0,0 +1,31 @@
|
|||||||
|
package org.libre.agosto.p2play
|
||||||
|
|
||||||
|
import android.os.Bundle
|
||||||
|
import androidx.appcompat.app.AppCompatActivity
|
||||||
|
import androidx.preference.PreferenceFragmentCompat
|
||||||
|
|
||||||
|
class SettingsActivity2 : AppCompatActivity() {
|
||||||
|
|
||||||
|
override fun onCreate(savedInstanceState: Bundle?) {
|
||||||
|
super.onCreate(savedInstanceState)
|
||||||
|
setContentView(R.layout.settings_activity)
|
||||||
|
if (savedInstanceState == null) {
|
||||||
|
supportFragmentManager
|
||||||
|
.beginTransaction()
|
||||||
|
.replace(R.id.settings, SettingsFragment())
|
||||||
|
.commit()
|
||||||
|
}
|
||||||
|
supportActionBar?.setDisplayHomeAsUpEnabled(true)
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun onDestroy() {
|
||||||
|
super.onDestroy()
|
||||||
|
ManagerSingleton.reloadSettings()
|
||||||
|
}
|
||||||
|
|
||||||
|
class SettingsFragment : PreferenceFragmentCompat() {
|
||||||
|
override fun onCreatePreferences(savedInstanceState: Bundle?, rootKey: String?) {
|
||||||
|
setPreferencesFromResource(R.xml.root_preferences, rootKey)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -3,88 +3,80 @@ package org.libre.agosto.p2play
|
|||||||
import android.content.Intent
|
import android.content.Intent
|
||||||
import android.content.SharedPreferences
|
import android.content.SharedPreferences
|
||||||
import android.os.AsyncTask
|
import android.os.AsyncTask
|
||||||
import androidx.appcompat.app.AppCompatActivity
|
|
||||||
import android.os.Bundle
|
import android.os.Bundle
|
||||||
import android.os.Handler
|
import android.os.Handler
|
||||||
import android.os.Looper
|
import android.os.Looper
|
||||||
import android.preference.PreferenceManager
|
|
||||||
import android.util.Log
|
import android.util.Log
|
||||||
|
import androidx.appcompat.app.AppCompatActivity
|
||||||
|
import androidx.preference.PreferenceManager
|
||||||
import org.libre.agosto.p2play.ajax.Auth
|
import org.libre.agosto.p2play.ajax.Auth
|
||||||
import java.lang.Exception
|
import java.lang.Exception
|
||||||
|
|
||||||
class SplashActivity : AppCompatActivity() {
|
class SplashActivity : AppCompatActivity() {
|
||||||
lateinit var settings: SharedPreferences
|
lateinit var settings: SharedPreferences
|
||||||
lateinit var editor: SharedPreferences.Editor
|
|
||||||
val client: Auth = Auth()
|
val client: Auth = Auth()
|
||||||
val _db = Database(this)
|
val db = Database(this)
|
||||||
|
|
||||||
override fun onCreate(savedInstanceState: Bundle?) {
|
override fun onCreate(savedInstanceState: Bundle?) {
|
||||||
super.onCreate(savedInstanceState)
|
super.onCreate(savedInstanceState)
|
||||||
setContentView(R.layout.activity_splash)
|
setContentView(R.layout.activity_splash)
|
||||||
|
|
||||||
settings = PreferenceManager.getDefaultSharedPreferences(this)
|
settings = PreferenceManager.getDefaultSharedPreferences(this)
|
||||||
|
ManagerSingleton.settings = settings
|
||||||
|
ManagerSingleton.db = db
|
||||||
|
|
||||||
ManagerSingleton.nfsw = settings.getBoolean("show_nfsw", false)
|
ManagerSingleton.reloadSettings()
|
||||||
ManagerSingleton.videos_count = settings.getString("videos_count", "15")!!.toInt()
|
|
||||||
|
|
||||||
|
val host = settings.getString("hostP2play", "")
|
||||||
val host = settings.getString("hostP2play","")
|
val lastHost = settings.getString("last_host", "")
|
||||||
val lastHost = settings.getString("last_host","")
|
if (host != "") {
|
||||||
if(host != ""){
|
if (lastHost != host) {
|
||||||
if(lastHost != host){
|
|
||||||
_db.logout()
|
|
||||||
Handler().postDelayed({
|
Handler().postDelayed({
|
||||||
startHostActivity()
|
startHostActivity()
|
||||||
}, 2000)
|
}, 2000)
|
||||||
}else{
|
} else {
|
||||||
ManagerSingleton.url = host
|
ManagerSingleton.url = host
|
||||||
checkUser()
|
checkUser()
|
||||||
}
|
}
|
||||||
}
|
} else {
|
||||||
else{
|
|
||||||
Handler().postDelayed({
|
Handler().postDelayed({
|
||||||
startHostActivity()
|
startHostActivity()
|
||||||
}, 2000)
|
}, 2000)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun checkUser(){
|
private fun checkUser() {
|
||||||
Log.d("was", "Chequed")
|
Log.d("was", "Checked")
|
||||||
try {
|
try {
|
||||||
val token = _db.getToken()
|
val token = db.getToken()
|
||||||
val user = _db.getUser()
|
val user = db.getUser()
|
||||||
AsyncTask.execute {
|
AsyncTask.execute {
|
||||||
if (Looper.myLooper() == null)
|
if (Looper.myLooper() == null) {
|
||||||
Looper.prepare()
|
Looper.prepare()
|
||||||
|
}
|
||||||
|
|
||||||
if (token.status == 1 && user.status == 1) {
|
if (token.status == 1 && user.status == 1) {
|
||||||
val client_id = settings.getString("client_id", "")!!
|
val clientId = settings.getString("client_id", "")!!
|
||||||
val client_secret = settings.getString("client_secret", "")!!
|
val clientSecret = settings.getString("client_secret", "")!!
|
||||||
|
|
||||||
val newToken = client.refreshToken(token, client_id, client_secret)
|
val newToken = client.refreshToken(token, clientId, clientSecret)
|
||||||
|
|
||||||
when (token.status.toString()) {
|
when (token.status.toString()) {
|
||||||
"1" -> {
|
"1" -> {
|
||||||
_db.newToken(newToken)
|
db.newToken(newToken)
|
||||||
ManagerSingleton.token = newToken
|
ManagerSingleton.token = newToken
|
||||||
ManagerSingleton.user = user
|
ManagerSingleton.user = user
|
||||||
}
|
}
|
||||||
else -> _db.logout()
|
else -> ManagerSingleton.logout()
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
_db.logout()
|
ManagerSingleton.logout()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
startApp()
|
startApp()
|
||||||
Log.d("Aqui", "81")
|
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
} catch (err: Exception) {
|
||||||
catch (err: Exception){
|
|
||||||
err.printStackTrace()
|
err.printStackTrace()
|
||||||
Log.d("Aqui", "89")
|
|
||||||
Handler().postDelayed({
|
Handler().postDelayed({
|
||||||
startApp()
|
startApp()
|
||||||
}, 2000)
|
}, 2000)
|
||||||
@ -106,4 +98,4 @@ class SplashActivity : AppCompatActivity() {
|
|||||||
this.finish()
|
this.finish()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,31 +1,42 @@
|
|||||||
package org.libre.agosto.p2play.adapters
|
package org.libre.agosto.p2play.adapters
|
||||||
|
|
||||||
import android.content.Context
|
import android.content.Context
|
||||||
import android.content.Intent
|
import android.os.Bundle
|
||||||
import androidx.recyclerview.widget.RecyclerView
|
|
||||||
import android.text.Html
|
import android.text.Html
|
||||||
import android.view.LayoutInflater
|
import android.view.LayoutInflater
|
||||||
import android.view.View
|
import android.view.View
|
||||||
import android.view.ViewGroup
|
import android.view.ViewGroup
|
||||||
import android.widget.ImageView
|
import android.widget.ImageView
|
||||||
import android.widget.TextView
|
import android.widget.TextView
|
||||||
|
import androidx.fragment.app.FragmentManager
|
||||||
|
import androidx.fragment.app.FragmentTransaction
|
||||||
|
import androidx.recyclerview.widget.RecyclerView
|
||||||
import com.squareup.picasso.Picasso
|
import com.squareup.picasso.Picasso
|
||||||
import kotlinx.android.synthetic.main.view_video.view.userImg
|
import org.libre.agosto.p2play.ManagerSingleton
|
||||||
import org.libre.agosto.p2play.*
|
import org.libre.agosto.p2play.R
|
||||||
|
import org.libre.agosto.p2play.dialogs.ThreadDialog
|
||||||
import org.libre.agosto.p2play.models.CommentaryModel
|
import org.libre.agosto.p2play.models.CommentaryModel
|
||||||
|
import java.io.Serializable
|
||||||
|
|
||||||
@Suppress("DEPRECATION")
|
|
||||||
class CommentariesAdapter(private val myDataset: ArrayList<CommentaryModel>) :
|
class CommentariesAdapter(private val myDataset: ArrayList<CommentaryModel>) :
|
||||||
RecyclerView.Adapter<CommentariesAdapter.ViewHolder>() {
|
RecyclerView.Adapter<CommentariesAdapter.ViewHolder>() {
|
||||||
|
|
||||||
|
private lateinit var fragmentManager: FragmentManager
|
||||||
|
|
||||||
|
fun setFragmentManager(manager: FragmentManager): CommentariesAdapter {
|
||||||
|
this.fragmentManager = manager
|
||||||
|
return this
|
||||||
|
}
|
||||||
|
|
||||||
// Provide a reference to the views for each data item
|
// Provide a reference to the views for each data item
|
||||||
// Complex data items may need more than one view per item, and
|
// Complex data items may need more than one view per item, and
|
||||||
// you provide access to all the views for a data item in a view holder.
|
// you provide access to all the views for a data item in a view holder.
|
||||||
// Each data item is just a string in this case that is shown in a TextView.
|
// Each data item is just a string in this case that is shown in a TextView.
|
||||||
class ViewHolder(val view: View) : RecyclerView.ViewHolder(view){
|
class ViewHolder(val view: View) : RecyclerView.ViewHolder(view) {
|
||||||
val userImg: ImageView
|
val userImg: ImageView
|
||||||
val username: TextView
|
val username: TextView
|
||||||
val commentary: TextView
|
val commentary: TextView
|
||||||
|
val replyBtn: TextView
|
||||||
val context: Context
|
val context: Context
|
||||||
|
|
||||||
init {
|
init {
|
||||||
@ -33,17 +44,19 @@ class CommentariesAdapter(private val myDataset: ArrayList<CommentaryModel>) :
|
|||||||
username = view.findViewById(R.id.userTxt)
|
username = view.findViewById(R.id.userTxt)
|
||||||
commentary = view.findViewById(R.id.userCommentary)
|
commentary = view.findViewById(R.id.userCommentary)
|
||||||
userImg = view.findViewById(R.id.userCommentImg)
|
userImg = view.findViewById(R.id.userCommentImg)
|
||||||
|
replyBtn = view.findViewById(R.id.replyBtn)
|
||||||
context = view.context
|
context = view.context
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// Create new views (invoked by the layout manager)
|
// Create new views (invoked by the layout manager)
|
||||||
override fun onCreateViewHolder(parent: ViewGroup,
|
override fun onCreateViewHolder(
|
||||||
viewType: Int): CommentariesAdapter.ViewHolder {
|
parent: ViewGroup,
|
||||||
|
viewType: Int,
|
||||||
|
): ViewHolder {
|
||||||
// create a new view
|
// create a new view
|
||||||
val view = LayoutInflater.from(parent.context)
|
val view = LayoutInflater.from(parent.context)
|
||||||
.inflate(R.layout.view_commentary, parent, false) as View
|
.inflate(R.layout.view_commentary, parent, false) as View
|
||||||
|
|
||||||
// set the view's size, margins, paddings and layout parameters
|
// set the view's size, margins, paddings and layout parameters
|
||||||
return ViewHolder(view)
|
return ViewHolder(view)
|
||||||
@ -56,15 +69,21 @@ class CommentariesAdapter(private val myDataset: ArrayList<CommentaryModel>) :
|
|||||||
holder.username.text = myDataset[position].username
|
holder.username.text = myDataset[position].username
|
||||||
|
|
||||||
// holder.userImg.setOnClickListener {
|
// holder.userImg.setOnClickListener {
|
||||||
// val intent = Intent(holder.context, ChannelActivity::class.java)
|
// val intent = Intent(holder.context, ChannelActivity::class.java)
|
||||||
// intent.putExtra("channel", myDataset[position])
|
// intent.putExtra("channel", myDataset[position])
|
||||||
// holder.context.startActivity(intent)
|
// holder.context.startActivity(intent)
|
||||||
// }
|
// }
|
||||||
|
|
||||||
if(myDataset[position].userImageUrl!="")
|
if (myDataset[position].userImageUrl != "") {
|
||||||
Picasso.get().load("https://"+ManagerSingleton.url+myDataset[position].userImageUrl).into(holder.userImg);
|
Picasso.get().load("https://" + ManagerSingleton.url + myDataset[position].userImageUrl).into(holder.userImg)
|
||||||
|
}
|
||||||
|
|
||||||
holder.commentary.text = Html.fromHtml(myDataset[position].commentary)
|
holder.commentary.text = Html.fromHtml(myDataset[position].commentary)
|
||||||
|
holder.replyBtn.setOnClickListener { this.initRepliesDialog(myDataset[position]) }
|
||||||
|
|
||||||
|
if (myDataset[position].replies > 0) {
|
||||||
|
holder.replyBtn.text = holder.itemView.context.getString(R.string.see_replies, myDataset[position].replies)
|
||||||
|
}
|
||||||
|
|
||||||
// TODO: Support for view and account (is different than a video channel)
|
// TODO: Support for view and account (is different than a video channel)
|
||||||
// holder.userImg.setOnClickListener {
|
// holder.userImg.setOnClickListener {
|
||||||
@ -76,4 +95,22 @@ class CommentariesAdapter(private val myDataset: ArrayList<CommentaryModel>) :
|
|||||||
|
|
||||||
// Return the size of your dataset (invoked by the layout manager)
|
// Return the size of your dataset (invoked by the layout manager)
|
||||||
override fun getItemCount() = myDataset.size
|
override fun getItemCount() = myDataset.size
|
||||||
}
|
|
||||||
|
private fun initRepliesDialog(commentData: CommentaryModel) {
|
||||||
|
val dialog = ThreadDialog()
|
||||||
|
val bundle = Bundle()
|
||||||
|
bundle.putSerializable("comment", commentData as Serializable)
|
||||||
|
|
||||||
|
dialog.arguments = bundle
|
||||||
|
dialog.fragmentManager2 = this.fragmentManager
|
||||||
|
val transaction = fragmentManager.beginTransaction()
|
||||||
|
// For a polished look, specify a transition animation.
|
||||||
|
transaction.setTransition(FragmentTransaction.TRANSIT_FRAGMENT_OPEN)
|
||||||
|
// To make it fullscreen, use the 'content' root view as the container
|
||||||
|
// for the fragment, which is always the root view for the activity.
|
||||||
|
transaction
|
||||||
|
.add(android.R.id.content, dialog)
|
||||||
|
.addToBackStack("comments")
|
||||||
|
.commit()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@ -2,27 +2,29 @@ package org.libre.agosto.p2play.adapters
|
|||||||
|
|
||||||
import android.content.Context
|
import android.content.Context
|
||||||
import android.content.Intent
|
import android.content.Intent
|
||||||
import androidx.recyclerview.widget.RecyclerView
|
|
||||||
import android.view.LayoutInflater
|
import android.view.LayoutInflater
|
||||||
import android.view.View
|
import android.view.View
|
||||||
import android.view.ViewGroup
|
import android.view.ViewGroup
|
||||||
import android.widget.ImageView
|
import android.widget.ImageView
|
||||||
import android.widget.TextView
|
import android.widget.TextView
|
||||||
|
import androidx.recyclerview.widget.RecyclerView
|
||||||
import com.squareup.picasso.Picasso
|
import com.squareup.picasso.Picasso
|
||||||
import org.libre.agosto.p2play.*
|
import org.libre.agosto.p2play.ChannelActivity
|
||||||
|
import org.libre.agosto.p2play.ManagerSingleton
|
||||||
|
import org.libre.agosto.p2play.R
|
||||||
|
import org.libre.agosto.p2play.ReproductorActivity
|
||||||
import org.libre.agosto.p2play.helpers.mapSeconds
|
import org.libre.agosto.p2play.helpers.mapSeconds
|
||||||
import org.libre.agosto.p2play.models.VideoModel
|
import org.libre.agosto.p2play.models.VideoModel
|
||||||
import java.io.Serializable
|
import java.io.Serializable
|
||||||
|
|
||||||
class VideosAdapter(private val myDataset: ArrayList<VideoModel>) :
|
class VideosAdapter(private val myDataset: ArrayList<VideoModel>) :
|
||||||
RecyclerView.Adapter<VideosAdapter.ViewHolder>() {
|
RecyclerView.Adapter<VideosAdapter.ViewHolder>() {
|
||||||
|
|
||||||
|
|
||||||
// Provide a reference to the views for each data item
|
// Provide a reference to the views for each data item
|
||||||
// Complex data items may need more than one view per item, and
|
// Complex data items may need more than one view per item, and
|
||||||
// you provide access to all the views for a data item in a view holder.
|
// you provide access to all the views for a data item in a view holder.
|
||||||
// Each data item is just a string in this case that is shown in a TextView.
|
// Each data item is just a string in this case that is shown in a TextView.
|
||||||
class ViewHolder(private val view: View) : RecyclerView.ViewHolder(view){
|
class ViewHolder(private val view: View) : RecyclerView.ViewHolder(view) {
|
||||||
val thumb: ImageView = view.findViewById(R.id.thumb)
|
val thumb: ImageView = view.findViewById(R.id.thumb)
|
||||||
val userImg: ImageView = view.findViewById(R.id.userImg)
|
val userImg: ImageView = view.findViewById(R.id.userImg)
|
||||||
val title: TextView = view.findViewById(R.id.tittleTxt)
|
val title: TextView = view.findViewById(R.id.tittleTxt)
|
||||||
@ -36,7 +38,7 @@ class VideosAdapter(private val myDataset: ArrayList<VideoModel>) :
|
|||||||
override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): ViewHolder {
|
override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): ViewHolder {
|
||||||
// create a new view
|
// create a new view
|
||||||
val view = LayoutInflater.from(parent.context)
|
val view = LayoutInflater.from(parent.context)
|
||||||
.inflate(R.layout.view_video, parent, false) as View
|
.inflate(R.layout.view_video, parent, false) as View
|
||||||
// set the view's size, margins, paddings and layout parameters
|
// set the view's size, margins, paddings and layout parameters
|
||||||
return ViewHolder(view)
|
return ViewHolder(view)
|
||||||
}
|
}
|
||||||
@ -49,7 +51,7 @@ class VideosAdapter(private val myDataset: ArrayList<VideoModel>) :
|
|||||||
holder.title.setOnClickListener {
|
holder.title.setOnClickListener {
|
||||||
this.launchChannelActivity(myDataset[position] as Serializable, holder.context)
|
this.launchChannelActivity(myDataset[position] as Serializable, holder.context)
|
||||||
}
|
}
|
||||||
Picasso.get().load("https://"+ManagerSingleton.url+myDataset[position].thumbUrl).into(holder.thumb)
|
Picasso.get().load("https://" + ManagerSingleton.url + myDataset[position].thumbUrl).into(holder.thumb)
|
||||||
holder.thumb.setOnClickListener {
|
holder.thumb.setOnClickListener {
|
||||||
this.launchChannelActivity(myDataset[position] as Serializable, holder.context)
|
this.launchChannelActivity(myDataset[position] as Serializable, holder.context)
|
||||||
}
|
}
|
||||||
@ -60,18 +62,19 @@ class VideosAdapter(private val myDataset: ArrayList<VideoModel>) :
|
|||||||
holder.context.startActivity(intent)
|
holder.context.startActivity(intent)
|
||||||
}
|
}
|
||||||
|
|
||||||
if(myDataset[position].userImageUrl!="")
|
if (myDataset[position].userImageUrl != "") {
|
||||||
Picasso.get().load("https://"+ManagerSingleton.url+myDataset[position].userImageUrl).into(holder.userImg)
|
Picasso.get().load("https://" + ManagerSingleton.url + myDataset[position].userImageUrl).into(holder.userImg)
|
||||||
else
|
} else {
|
||||||
Picasso.get().load(R.drawable.default_avatar).into(holder.userImg)
|
Picasso.get().load(R.drawable.default_avatar).into(holder.userImg)
|
||||||
|
}
|
||||||
|
|
||||||
val viewsText = holder.context.getString(R.string.view_text)
|
val viewsText = holder.context.getString(R.string.view_text)
|
||||||
val seconds = myDataset[position].duration.toInt();
|
val seconds = myDataset[position].duration.toInt()
|
||||||
val timeString = mapSeconds(seconds)
|
val timeString = mapSeconds(seconds)
|
||||||
|
|
||||||
holder.duration.text = timeString
|
holder.duration.text = timeString
|
||||||
|
|
||||||
holder.description.text = myDataset[position].username+" - "+myDataset[position].views+" "+viewsText
|
holder.description.text = myDataset[position].username + " - " + myDataset[position].views + " " + viewsText
|
||||||
|
|
||||||
if (myDataset[position].isLive) {
|
if (myDataset[position].isLive) {
|
||||||
holder.isLive.visibility = View.VISIBLE
|
holder.isLive.visibility = View.VISIBLE
|
||||||
@ -81,20 +84,20 @@ class VideosAdapter(private val myDataset: ArrayList<VideoModel>) :
|
|||||||
// Return the size of your dataset (invoked by the layout manager)
|
// Return the size of your dataset (invoked by the layout manager)
|
||||||
override fun getItemCount() = myDataset.size
|
override fun getItemCount() = myDataset.size
|
||||||
|
|
||||||
fun clearData(){
|
fun clearData() {
|
||||||
myDataset.clear()
|
myDataset.clear()
|
||||||
notifyDataSetChanged()
|
notifyDataSetChanged()
|
||||||
}
|
}
|
||||||
|
|
||||||
fun addData(newItems: ArrayList<VideoModel>){
|
fun addData(newItems: ArrayList<VideoModel>) {
|
||||||
val lastPos = myDataset.size
|
val lastPos = myDataset.size
|
||||||
myDataset.addAll(newItems)
|
myDataset.addAll(newItems)
|
||||||
notifyItemRangeInserted(lastPos, newItems.size)
|
notifyItemRangeInserted(lastPos, newItems.size)
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun launchChannelActivity (data: Serializable, context: Context) {
|
private fun launchChannelActivity(data: Serializable, context: Context) {
|
||||||
val intent = Intent(context, ReproductorActivity::class.java)
|
val intent = Intent(context, ReproductorActivity::class.java)
|
||||||
intent.putExtra("video", data)
|
intent.putExtra("video", data)
|
||||||
context.startActivity(intent)
|
context.startActivity(intent)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -3,11 +3,11 @@ package org.libre.agosto.p2play.ajax
|
|||||||
import android.util.JsonReader
|
import android.util.JsonReader
|
||||||
import java.io.InputStreamReader
|
import java.io.InputStreamReader
|
||||||
|
|
||||||
class Actions: Client() {
|
class Actions : Client() {
|
||||||
|
|
||||||
fun subscribe(token: String, account: String):Int{
|
fun subscribe(token: String, account: String): Int {
|
||||||
val con = this._newCon("users/me/subscriptions","POST", token)
|
val con = this.newCon("users/me/subscriptions", "POST", token)
|
||||||
val params:String= "uri=$account"
|
val params: String = "uri=$account"
|
||||||
con.outputStream.write(params.toByteArray())
|
con.outputStream.write(params.toByteArray())
|
||||||
var response = 0
|
var response = 0
|
||||||
|
|
||||||
@ -15,8 +15,7 @@ class Actions: Client() {
|
|||||||
if (con.responseCode == 204) {
|
if (con.responseCode == 204) {
|
||||||
response = 1
|
response = 1
|
||||||
}
|
}
|
||||||
}
|
} catch (err: Exception) {
|
||||||
catch (err: Exception){
|
|
||||||
err.printStackTrace()
|
err.printStackTrace()
|
||||||
response = -1
|
response = -1
|
||||||
}
|
}
|
||||||
@ -25,16 +24,15 @@ class Actions: Client() {
|
|||||||
return response
|
return response
|
||||||
}
|
}
|
||||||
|
|
||||||
fun unSubscribe(token: String, account: String):Int{
|
fun unSubscribe(token: String, account: String): Int {
|
||||||
val con = this._newCon("users/me/subscriptions/$account","DELETE", token)
|
val con = this.newCon("users/me/subscriptions/$account", "DELETE", token)
|
||||||
var response = 0
|
var response = 0
|
||||||
|
|
||||||
try {
|
try {
|
||||||
if (con.responseCode == 204) {
|
if (con.responseCode == 204) {
|
||||||
response = 1
|
response = 1
|
||||||
}
|
}
|
||||||
}
|
} catch (err: Exception) {
|
||||||
catch (err: Exception){
|
|
||||||
err.printStackTrace()
|
err.printStackTrace()
|
||||||
response = -1
|
response = -1
|
||||||
}
|
}
|
||||||
@ -43,8 +41,8 @@ class Actions: Client() {
|
|||||||
return response
|
return response
|
||||||
}
|
}
|
||||||
|
|
||||||
fun getSubscription(token: String, account: String): Boolean{
|
fun getSubscription(token: String, account: String): Boolean {
|
||||||
val con = this._newCon("users/me/subscriptions/exist?uris=$account","GET", token)
|
val con = this.newCon("users/me/subscriptions/exist?uris=$account", "GET", token)
|
||||||
var isSubscribed = false
|
var isSubscribed = false
|
||||||
|
|
||||||
try {
|
try {
|
||||||
@ -52,21 +50,20 @@ class Actions: Client() {
|
|||||||
val response = InputStreamReader(con.inputStream)
|
val response = InputStreamReader(con.inputStream)
|
||||||
val data = JsonReader(response)
|
val data = JsonReader(response)
|
||||||
data.beginObject()
|
data.beginObject()
|
||||||
while (data.hasNext()){
|
while (data.hasNext()) {
|
||||||
val key = data.nextName()
|
val key = data.nextName()
|
||||||
when (key.toString()) {
|
when (key.toString()) {
|
||||||
account->{
|
account -> {
|
||||||
isSubscribed = data.nextBoolean()
|
isSubscribed = data.nextBoolean()
|
||||||
}
|
}
|
||||||
else->{
|
else -> {
|
||||||
data.skipValue()
|
data.skipValue()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
data.close()
|
data.close()
|
||||||
}
|
}
|
||||||
}
|
} catch (err: Exception) {
|
||||||
catch (err: Exception){
|
|
||||||
err.printStackTrace()
|
err.printStackTrace()
|
||||||
isSubscribed = false
|
isSubscribed = false
|
||||||
}
|
}
|
||||||
@ -75,8 +72,8 @@ class Actions: Client() {
|
|||||||
return isSubscribed
|
return isSubscribed
|
||||||
}
|
}
|
||||||
|
|
||||||
fun rate(token: String, id_video: Int, rate: String):Int{
|
fun rate(token: String, id_video: Int, rate: String): Int {
|
||||||
val con = this._newCon("videos/$id_video/rate","PUT", token)
|
val con = this.newCon("videos/$id_video/rate", "PUT", token)
|
||||||
val params = "rating=$rate"
|
val params = "rating=$rate"
|
||||||
con.outputStream.write(params.toByteArray())
|
con.outputStream.write(params.toByteArray())
|
||||||
var response = 0
|
var response = 0
|
||||||
@ -85,8 +82,7 @@ class Actions: Client() {
|
|||||||
if (con.responseCode == 204) {
|
if (con.responseCode == 204) {
|
||||||
response = 1
|
response = 1
|
||||||
}
|
}
|
||||||
}
|
} catch (err: Exception) {
|
||||||
catch (err: Exception){
|
|
||||||
err.printStackTrace()
|
err.printStackTrace()
|
||||||
response = -1
|
response = -1
|
||||||
}
|
}
|
||||||
@ -95,8 +91,8 @@ class Actions: Client() {
|
|||||||
return response
|
return response
|
||||||
}
|
}
|
||||||
|
|
||||||
fun getRate(token: String, id_video: Int):String{
|
fun getRate(token: String, id_video: Int): String {
|
||||||
val con = this._newCon("users/me/videos/$id_video/rating","GET", token)
|
val con = this.newCon("users/me/videos/$id_video/rating", "GET", token)
|
||||||
var rating = "none"
|
var rating = "none"
|
||||||
|
|
||||||
try {
|
try {
|
||||||
@ -104,21 +100,20 @@ class Actions: Client() {
|
|||||||
val response = InputStreamReader(con.inputStream)
|
val response = InputStreamReader(con.inputStream)
|
||||||
val data = JsonReader(response)
|
val data = JsonReader(response)
|
||||||
data.beginObject()
|
data.beginObject()
|
||||||
while (data.hasNext()){
|
while (data.hasNext()) {
|
||||||
val key = data.nextName()
|
val key = data.nextName()
|
||||||
when (key.toString()) {
|
when (key.toString()) {
|
||||||
"rating"->{
|
"rating" -> {
|
||||||
rating = data.nextString()
|
rating = data.nextString()
|
||||||
}
|
}
|
||||||
else->{
|
else -> {
|
||||||
data.skipValue()
|
data.skipValue()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
con.disconnect()
|
con.disconnect()
|
||||||
}
|
}
|
||||||
}
|
} catch (err: Exception) {
|
||||||
catch (err: Exception){
|
|
||||||
err.printStackTrace()
|
err.printStackTrace()
|
||||||
rating = "none"
|
rating = "none"
|
||||||
}
|
}
|
||||||
@ -128,13 +123,13 @@ class Actions: Client() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
fun reportVideo(videoId: Int, reason: String, token: String): Boolean {
|
fun reportVideo(videoId: Int, reason: String, token: String): Boolean {
|
||||||
val con = this._newCon("videos/$videoId/abuse", "POST", token)
|
val con = this.newCon("videos/$videoId/abuse", "POST", token)
|
||||||
val params = "reason=$reason"
|
val params = "reason=$reason"
|
||||||
con.outputStream.write(params.toByteArray())
|
con.outputStream.write(params.toByteArray())
|
||||||
|
|
||||||
var response = false
|
var response = false
|
||||||
try {
|
try {
|
||||||
if(con.responseCode == 200){
|
if (con.responseCode == 200) {
|
||||||
response = true
|
response = true
|
||||||
}
|
}
|
||||||
} catch (err: Exception) {
|
} catch (err: Exception) {
|
||||||
@ -146,13 +141,13 @@ class Actions: Client() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
fun watchVideo(videoId: Int, token: String): Boolean {
|
fun watchVideo(videoId: Int, token: String): Boolean {
|
||||||
val con = this._newCon("videos/$videoId/watching", "PUT", token)
|
val con = this.newCon("videos/$videoId/watching", "PUT", token)
|
||||||
val params = "currentTime=1"
|
val params = "currentTime=1"
|
||||||
con.outputStream.write(params.toByteArray())
|
con.outputStream.write(params.toByteArray())
|
||||||
|
|
||||||
var response = false
|
var response = false
|
||||||
try {
|
try {
|
||||||
if(con.responseCode == 204){
|
if (con.responseCode == 204) {
|
||||||
response = true
|
response = true
|
||||||
}
|
}
|
||||||
} catch (err: Exception) {
|
} catch (err: Exception) {
|
||||||
@ -162,4 +157,4 @@ class Actions: Client() {
|
|||||||
|
|
||||||
return response
|
return response
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -4,46 +4,53 @@ package org.libre.agosto.p2play.ajax
|
|||||||
import android.util.JsonReader
|
import android.util.JsonReader
|
||||||
import android.util.JsonToken
|
import android.util.JsonToken
|
||||||
import android.util.Log
|
import android.util.Log
|
||||||
import org.libre.agosto.p2play.ManagerSingleton
|
|
||||||
import org.libre.agosto.p2play.models.TokenModel
|
import org.libre.agosto.p2play.models.TokenModel
|
||||||
import org.libre.agosto.p2play.models.UserModel
|
import org.libre.agosto.p2play.models.UserModel
|
||||||
import java.io.InputStreamReader
|
import java.io.InputStreamReader
|
||||||
|
|
||||||
class Auth: Client() {
|
class Auth : Client() {
|
||||||
private val stockParams = "grant_type=password"
|
private val stockParams = "grant_type=password"
|
||||||
|
|
||||||
fun login(username: String, password: String, client_id: String, client_secret: String): TokenModel{
|
fun login(username: String, password: String, client_id: String, client_secret: String, twoFactorCode: String? = null): TokenModel {
|
||||||
val con = this._newCon("users/token","POST")
|
val con = this.newCon("users/token", "POST")
|
||||||
val params = "$stockParams&username=$username&password=$password&client_id=$client_id&client_secret=$client_secret"
|
val params = "$stockParams&username=$username&password=$password&client_id=$client_id&client_secret=$client_secret"
|
||||||
|
|
||||||
|
if (twoFactorCode !== null) {
|
||||||
|
con.setRequestProperty("x-peertube-otp", twoFactorCode)
|
||||||
|
}
|
||||||
|
|
||||||
con.outputStream.write(params.toByteArray())
|
con.outputStream.write(params.toByteArray())
|
||||||
val token = TokenModel()
|
val token = TokenModel()
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
when (con.responseCode) {
|
||||||
|
200 -> {
|
||||||
|
val response = InputStreamReader(con.inputStream)
|
||||||
|
val data = JsonReader(response)
|
||||||
|
data.beginObject()
|
||||||
|
|
||||||
if(con.responseCode==200){
|
while (data.hasNext()) {
|
||||||
val response = InputStreamReader(con.inputStream)
|
val k = data.nextName()
|
||||||
val data = JsonReader(response)
|
when (k.toString()) {
|
||||||
data.beginObject()
|
"access_token" -> token.token = data.nextString()
|
||||||
|
"refresh_token" -> token.refresh_token = data.nextString()
|
||||||
while(data.hasNext()){
|
else -> data.skipValue()
|
||||||
val k = data.nextName()
|
}
|
||||||
when(k.toString()){
|
|
||||||
"access_token" -> token.token = data.nextString()
|
|
||||||
"refresh_token" -> token.refresh_token = data.nextString()
|
|
||||||
else -> data.skipValue()
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
data.endObject()
|
||||||
|
data.close()
|
||||||
|
token.status = 1
|
||||||
|
}
|
||||||
|
401 -> {
|
||||||
|
// User require 2FA code
|
||||||
|
token.status = -2
|
||||||
|
}
|
||||||
|
else -> {
|
||||||
|
Log.d("Status", con.responseMessage)
|
||||||
}
|
}
|
||||||
|
|
||||||
data.endObject()
|
|
||||||
data.close()
|
|
||||||
token.status = 1
|
|
||||||
|
|
||||||
}
|
}
|
||||||
else{
|
} catch (err: Exception) {
|
||||||
Log.d("Status", con.responseMessage)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
catch (err: Exception){
|
|
||||||
err.printStackTrace()
|
err.printStackTrace()
|
||||||
token.status = 0
|
token.status = 0
|
||||||
}
|
}
|
||||||
@ -52,8 +59,8 @@ class Auth: Client() {
|
|||||||
return token
|
return token
|
||||||
}
|
}
|
||||||
|
|
||||||
fun register(username: String, password: String, email: String): Int{
|
fun register(username: String, password: String, email: String): Int {
|
||||||
val con = this._newCon("users/register","POST")
|
val con = this.newCon("users/register", "POST")
|
||||||
val params = "username=$username&password=$password&email=$email"
|
val params = "username=$username&password=$password&email=$email"
|
||||||
con.outputStream.write(params.toByteArray())
|
con.outputStream.write(params.toByteArray())
|
||||||
|
|
||||||
@ -63,32 +70,30 @@ class Auth: Client() {
|
|||||||
if (con.responseCode == 204) {
|
if (con.responseCode == 204) {
|
||||||
response = 1
|
response = 1
|
||||||
}
|
}
|
||||||
}
|
} catch (err: Exception) {
|
||||||
catch (err: Exception){
|
|
||||||
err.printStackTrace()
|
err.printStackTrace()
|
||||||
response = -1
|
response = -1
|
||||||
}
|
}
|
||||||
|
|
||||||
con.disconnect()
|
con.disconnect()
|
||||||
return response
|
return response
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
fun refreshToken(token: TokenModel, client_id: String, client_secret: String): TokenModel{
|
fun refreshToken(token: TokenModel, client_id: String, client_secret: String): TokenModel {
|
||||||
val con = this._newCon("users/token", "POST", token.token)
|
val con = this.newCon("users/token", "POST", token.token)
|
||||||
val params = "refresh_token=${token.refresh_token}&response_type=code&grant_type=refresh_token&client_id=$client_id&client_secret=$client_secret"
|
val params = "refresh_token=${token.refresh_token}&response_type=code&grant_type=refresh_token&client_id=$client_id&client_secret=$client_secret"
|
||||||
con.outputStream.write(params.toByteArray())
|
con.outputStream.write(params.toByteArray())
|
||||||
// val token = TokenModel()
|
// val token = TokenModel()
|
||||||
|
|
||||||
try {
|
try {
|
||||||
if(con.responseCode==200){
|
if (con.responseCode == 200) {
|
||||||
val response = InputStreamReader(con.inputStream)
|
val response = InputStreamReader(con.inputStream)
|
||||||
val data = JsonReader(response)
|
val data = JsonReader(response)
|
||||||
data.beginObject()
|
data.beginObject()
|
||||||
|
|
||||||
while(data.hasNext()){
|
while (data.hasNext()) {
|
||||||
val k = data.nextName()
|
val k = data.nextName()
|
||||||
when(k.toString()){
|
when (k.toString()) {
|
||||||
"access_token" -> token.token = data.nextString()
|
"access_token" -> token.token = data.nextString()
|
||||||
"refresh_token" -> token.refresh_token = data.nextString()
|
"refresh_token" -> token.refresh_token = data.nextString()
|
||||||
else -> data.skipValue()
|
else -> data.skipValue()
|
||||||
@ -98,13 +103,10 @@ class Auth: Client() {
|
|||||||
data.endObject()
|
data.endObject()
|
||||||
data.close()
|
data.close()
|
||||||
token.status = 1
|
token.status = 1
|
||||||
|
} else {
|
||||||
}
|
|
||||||
else{
|
|
||||||
Log.d("Status", con.responseMessage)
|
Log.d("Status", con.responseMessage)
|
||||||
}
|
}
|
||||||
}
|
} catch (err: Exception) {
|
||||||
catch (err: Exception){
|
|
||||||
err.printStackTrace()
|
err.printStackTrace()
|
||||||
token.status = 0
|
token.status = 0
|
||||||
}
|
}
|
||||||
@ -113,32 +115,31 @@ class Auth: Client() {
|
|||||||
return token
|
return token
|
||||||
}
|
}
|
||||||
|
|
||||||
fun me(token: String): UserModel{
|
fun me(token: String): UserModel {
|
||||||
val con = this._newCon("users/me","GET", token)
|
val con = this.newCon("users/me", "GET", token)
|
||||||
val user = UserModel()
|
val user = UserModel()
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
if (con.responseCode == 200) {
|
||||||
if(con.responseCode==200){
|
|
||||||
val response = InputStreamReader(con.inputStream)
|
val response = InputStreamReader(con.inputStream)
|
||||||
val data = JsonReader(response)
|
val data = JsonReader(response)
|
||||||
data.beginObject()
|
data.beginObject()
|
||||||
|
|
||||||
while(data.hasNext()){
|
while (data.hasNext()) {
|
||||||
val k = data.nextName()
|
val k = data.nextName()
|
||||||
when(k.toString()){
|
when (k.toString()) {
|
||||||
"id" -> user.uuid = data.nextInt()
|
"id" -> user.uuid = data.nextInt()
|
||||||
"username" -> user.username = data.nextString()
|
"username" -> user.username = data.nextString()
|
||||||
"email" -> user.email = data.nextString()
|
"email" -> user.email = data.nextString()
|
||||||
"displayNSFW" -> user.nsfw = data.nextBoolean()
|
"displayNSFW" -> user.nsfw = data.nextBoolean()
|
||||||
"account" -> {
|
"account" -> {
|
||||||
data.beginObject()
|
data.beginObject()
|
||||||
while (data.hasNext()){
|
while (data.hasNext()) {
|
||||||
val l = data.nextName()
|
val l = data.nextName()
|
||||||
when(l.toString()){
|
when (l.toString()) {
|
||||||
"followersCount" -> user.followers = data.nextInt()
|
"followersCount" -> user.followers = data.nextInt()
|
||||||
"avatar" -> {
|
"avatar" -> {
|
||||||
if(data.peek() == JsonToken.BEGIN_OBJECT) {
|
if (data.peek() == JsonToken.BEGIN_OBJECT) {
|
||||||
data.beginObject()
|
data.beginObject()
|
||||||
while (data.hasNext()) {
|
while (data.hasNext()) {
|
||||||
val m = data.nextName()
|
val m = data.nextName()
|
||||||
@ -148,8 +149,7 @@ class Auth: Client() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
data.endObject()
|
data.endObject()
|
||||||
}
|
} else {
|
||||||
else{
|
|
||||||
data.skipValue()
|
data.skipValue()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -165,13 +165,10 @@ class Auth: Client() {
|
|||||||
data.endObject()
|
data.endObject()
|
||||||
data.close()
|
data.close()
|
||||||
user.status = 1
|
user.status = 1
|
||||||
|
} else {
|
||||||
}
|
|
||||||
else{
|
|
||||||
Log.d("Status", con.responseMessage)
|
Log.d("Status", con.responseMessage)
|
||||||
}
|
}
|
||||||
}
|
} catch (err: Exception) {
|
||||||
catch (err: Exception){
|
|
||||||
err.printStackTrace()
|
err.printStackTrace()
|
||||||
user.status = 0
|
user.status = 0
|
||||||
}
|
}
|
||||||
@ -179,5 +176,4 @@ class Auth: Client() {
|
|||||||
con.disconnect()
|
con.disconnect()
|
||||||
return user
|
return user
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
|
||||||
|
@ -1,14 +1,12 @@
|
|||||||
package org.libre.agosto.p2play.ajax
|
package org.libre.agosto.p2play.ajax
|
||||||
|
|
||||||
import android.util.JsonReader
|
import android.util.JsonReader
|
||||||
import android.util.JsonToken
|
|
||||||
import org.libre.agosto.p2play.models.ChannelModel
|
import org.libre.agosto.p2play.models.ChannelModel
|
||||||
import org.libre.agosto.p2play.models.CommentaryModel
|
|
||||||
import java.io.InputStreamReader
|
import java.io.InputStreamReader
|
||||||
|
|
||||||
class Channels: Client() {
|
class Channels : Client() {
|
||||||
|
|
||||||
private fun parseChannel(data: JsonReader): ChannelModel{
|
private fun parseChannel(data: JsonReader): ChannelModel {
|
||||||
val channel = ChannelModel()
|
val channel = ChannelModel()
|
||||||
|
|
||||||
data.close()
|
data.close()
|
||||||
@ -17,19 +15,19 @@ class Channels: Client() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
fun getChannelInfo(account: String): ChannelModel {
|
fun getChannelInfo(account: String): ChannelModel {
|
||||||
val con = this._newCon("video-channels/$account", "GET")
|
val con = this.newCon("video-channels/$account", "GET")
|
||||||
var channel = ChannelModel()
|
var channel = ChannelModel()
|
||||||
try {
|
try {
|
||||||
if(con.responseCode == 200){
|
if (con.responseCode == 200) {
|
||||||
val response = InputStreamReader(con.inputStream)
|
val response = InputStreamReader(con.inputStream)
|
||||||
val data = JsonReader(response)
|
val data = JsonReader(response)
|
||||||
channel.parseChannel(data)
|
channel.parseChannel(data)
|
||||||
data.close()
|
data.close()
|
||||||
}
|
}
|
||||||
}catch (err: Exception) {
|
} catch (err: Exception) {
|
||||||
err.printStackTrace()
|
err.printStackTrace()
|
||||||
}
|
}
|
||||||
|
|
||||||
return channel
|
return channel
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -5,12 +5,11 @@ import android.util.Log
|
|||||||
import org.libre.agosto.p2play.ManagerSingleton
|
import org.libre.agosto.p2play.ManagerSingleton
|
||||||
import org.libre.agosto.p2play.models.HostModel
|
import org.libre.agosto.p2play.models.HostModel
|
||||||
import java.io.InputStreamReader
|
import java.io.InputStreamReader
|
||||||
import java.io.Reader
|
|
||||||
import java.net.HttpURLConnection
|
import java.net.HttpURLConnection
|
||||||
import java.net.URL
|
import java.net.URL
|
||||||
|
|
||||||
open class Client {
|
open class Client {
|
||||||
protected fun _newCon(uri: String, method: String, token: String = ""): HttpURLConnection {
|
protected fun newCon(uri: String, method: String, token: String = ""): HttpURLConnection {
|
||||||
val url = URL("https://${ManagerSingleton.url}/api/v1/$uri")
|
val url = URL("https://${ManagerSingleton.url}/api/v1/$uri")
|
||||||
val con = url.openConnection() as HttpURLConnection
|
val con = url.openConnection() as HttpURLConnection
|
||||||
|
|
||||||
@ -18,24 +17,25 @@ open class Client {
|
|||||||
con.setRequestProperty("Content-Type", "application/x-www-form-urlencoded")
|
con.setRequestProperty("Content-Type", "application/x-www-form-urlencoded")
|
||||||
con.setRequestProperty("Accept", "*/*")
|
con.setRequestProperty("Accept", "*/*")
|
||||||
|
|
||||||
if(token != ""){
|
if (token != "") {
|
||||||
con.setRequestProperty("Authorization", "Bearer $token")
|
con.setRequestProperty("Authorization", "Bearer $token")
|
||||||
}
|
}
|
||||||
|
|
||||||
con.requestMethod=method
|
con.requestMethod = method
|
||||||
con.connectTimeout=60000
|
con.connectTimeout = 60000
|
||||||
con.readTimeout=60000
|
con.readTimeout = 60000
|
||||||
|
|
||||||
if(method == "POST")
|
if (method == "POST") {
|
||||||
con.doOutput=true
|
con.doOutput = true
|
||||||
|
}
|
||||||
|
|
||||||
Log.d("Petition", url.toString())
|
Log.d("Petition", url.toString())
|
||||||
return con
|
return con
|
||||||
}
|
}
|
||||||
|
|
||||||
fun getKeys():HostModel{
|
fun getKeys(): HostModel {
|
||||||
val con = this._newCon("oauth-clients/local","GET")
|
val con = this.newCon("oauth-clients/local", "GET")
|
||||||
val keys = HostModel("","")
|
val keys = HostModel("", "")
|
||||||
try {
|
try {
|
||||||
if (con.responseCode == 200) {
|
if (con.responseCode == 200) {
|
||||||
val response = InputStreamReader(con.inputStream)
|
val response = InputStreamReader(con.inputStream)
|
||||||
@ -44,25 +44,24 @@ open class Client {
|
|||||||
while (data.hasNext()) {
|
while (data.hasNext()) {
|
||||||
val key = data.nextName()
|
val key = data.nextName()
|
||||||
when (key.toString()) {
|
when (key.toString()) {
|
||||||
"client_id"->{
|
"client_id" -> {
|
||||||
keys.client_id = data.nextString()
|
keys.client_id = data.nextString()
|
||||||
}
|
}
|
||||||
"client_secret"->{
|
"client_secret" -> {
|
||||||
keys.client_secret = data.nextString()
|
keys.client_secret = data.nextString()
|
||||||
}
|
}
|
||||||
else->{
|
else -> {
|
||||||
data.skipValue()
|
data.skipValue()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
data.close()
|
data.close()
|
||||||
}
|
}
|
||||||
} catch(err:Exception){
|
} catch (err: Exception) {
|
||||||
err.printStackTrace()
|
err.printStackTrace()
|
||||||
}
|
}
|
||||||
|
|
||||||
con.disconnect()
|
con.disconnect()
|
||||||
return keys
|
return keys
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
|
||||||
|
@ -1,18 +1,16 @@
|
|||||||
package org.libre.agosto.p2play.ajax
|
package org.libre.agosto.p2play.ajax
|
||||||
|
|
||||||
import android.util.JsonReader
|
import android.util.JsonReader
|
||||||
import android.util.JsonToken
|
|
||||||
import android.util.Log
|
import android.util.Log
|
||||||
import org.libre.agosto.p2play.models.CommentaryModel
|
import org.libre.agosto.p2play.models.CommentaryModel
|
||||||
import java.io.InputStreamReader
|
import java.io.InputStreamReader
|
||||||
|
|
||||||
class Comments: Client() {
|
class Comments : Client() {
|
||||||
|
|
||||||
private fun parseCommentaries(data: JsonReader): ArrayList<CommentaryModel> {
|
private fun parseCommentaries(data: JsonReader): ArrayList<CommentaryModel> {
|
||||||
val commentaries = arrayListOf<CommentaryModel>()
|
val commentaries = arrayListOf<CommentaryModel>()
|
||||||
data.beginObject()
|
data.beginObject()
|
||||||
while (data.hasNext()){
|
while (data.hasNext()) {
|
||||||
when(data.nextName()) {
|
when (data.nextName()) {
|
||||||
"data" -> {
|
"data" -> {
|
||||||
data.beginArray()
|
data.beginArray()
|
||||||
while (data.hasNext()) {
|
while (data.hasNext()) {
|
||||||
@ -32,7 +30,7 @@ class Comments: Client() {
|
|||||||
|
|
||||||
fun getCommentaries(videoId: Int): ArrayList<CommentaryModel> {
|
fun getCommentaries(videoId: Int): ArrayList<CommentaryModel> {
|
||||||
var commentaries = arrayListOf<CommentaryModel>()
|
var commentaries = arrayListOf<CommentaryModel>()
|
||||||
val con = this._newCon("videos/$videoId/comment-threads", "GET")
|
val con = this.newCon("videos/$videoId/comment-threads", "GET")
|
||||||
|
|
||||||
try {
|
try {
|
||||||
if (con.responseCode == 200) {
|
if (con.responseCode == 200) {
|
||||||
@ -41,7 +39,7 @@ class Comments: Client() {
|
|||||||
commentaries = parseCommentaries(data)
|
commentaries = parseCommentaries(data)
|
||||||
data.close()
|
data.close()
|
||||||
}
|
}
|
||||||
} catch(err:Exception){
|
} catch (err: Exception) {
|
||||||
err.printStackTrace()
|
err.printStackTrace()
|
||||||
}
|
}
|
||||||
con.disconnect()
|
con.disconnect()
|
||||||
@ -49,7 +47,7 @@ class Comments: Client() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
fun makeCommentary(token: String, videoId: Int, text: String): Boolean {
|
fun makeCommentary(token: String, videoId: Int, text: String): Boolean {
|
||||||
val con = this._newCon("videos/$videoId/comment-threads", "POST", token)
|
val con = this.newCon("videos/$videoId/comment-threads", "POST", token)
|
||||||
val params = "text=$text"
|
val params = "text=$text"
|
||||||
con.outputStream.write(params.toByteArray())
|
con.outputStream.write(params.toByteArray())
|
||||||
|
|
||||||
@ -59,13 +57,11 @@ class Comments: Client() {
|
|||||||
if (con.responseCode == 200) {
|
if (con.responseCode == 200) {
|
||||||
con.disconnect()
|
con.disconnect()
|
||||||
response = true
|
response = true
|
||||||
}
|
} else {
|
||||||
else{
|
|
||||||
Log.d("Status", con.responseMessage)
|
Log.d("Status", con.responseMessage)
|
||||||
response = false
|
response = false
|
||||||
}
|
}
|
||||||
}
|
} catch (err: Exception) {
|
||||||
catch (err: Exception){
|
|
||||||
err.printStackTrace()
|
err.printStackTrace()
|
||||||
response = false
|
response = false
|
||||||
}
|
}
|
||||||
@ -74,4 +70,67 @@ class Comments: Client() {
|
|||||||
return response
|
return response
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
fun getCommentariesThread(videoId: Int, threadId: Int): ArrayList<CommentaryModel> {
|
||||||
|
var commentaries = arrayListOf<CommentaryModel>()
|
||||||
|
val con = this.newCon("videos/$videoId/comment-threads/$threadId", "GET")
|
||||||
|
|
||||||
|
try {
|
||||||
|
if (con.responseCode == 200) {
|
||||||
|
val response = InputStreamReader(con.inputStream)
|
||||||
|
val data = JsonReader(response)
|
||||||
|
data.beginObject()
|
||||||
|
while (data.hasNext()) {
|
||||||
|
when (data.nextName()) {
|
||||||
|
"children" -> {
|
||||||
|
data.beginArray()
|
||||||
|
while (data.hasNext()) {
|
||||||
|
data.beginObject()
|
||||||
|
while (data.hasNext()) {
|
||||||
|
when (data.nextName()) {
|
||||||
|
"comment" -> {
|
||||||
|
val comment = CommentaryModel()
|
||||||
|
comment.parseCommentary(data)
|
||||||
|
commentaries.add(comment)
|
||||||
|
}
|
||||||
|
else -> data.skipValue()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
data.endObject()
|
||||||
|
}
|
||||||
|
data.endArray()
|
||||||
|
}
|
||||||
|
else -> data.skipValue()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
data.endObject()
|
||||||
|
data.close()
|
||||||
|
}
|
||||||
|
} catch (err: Exception) {
|
||||||
|
err.printStackTrace()
|
||||||
|
}
|
||||||
|
con.disconnect()
|
||||||
|
return commentaries
|
||||||
|
}
|
||||||
|
|
||||||
|
fun replyThread(token: String, videoId: Int, threadId: Int, text: String): Boolean {
|
||||||
|
val con = this.newCon("videos/$videoId/comments/$threadId", "POST", token)
|
||||||
|
val params = "text=$text"
|
||||||
|
con.outputStream.write(params.toByteArray())
|
||||||
|
|
||||||
|
val response: Boolean = try {
|
||||||
|
if (con.responseCode == 200) {
|
||||||
|
con.disconnect()
|
||||||
|
true
|
||||||
|
} else {
|
||||||
|
Log.d("Status", con.responseMessage)
|
||||||
|
false
|
||||||
|
}
|
||||||
|
} catch (err: Exception) {
|
||||||
|
err.printStackTrace()
|
||||||
|
false
|
||||||
|
}
|
||||||
|
|
||||||
|
con.disconnect()
|
||||||
|
return response
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@ -5,14 +5,14 @@ import org.libre.agosto.p2play.ManagerSingleton
|
|||||||
import org.libre.agosto.p2play.models.VideoModel
|
import org.libre.agosto.p2play.models.VideoModel
|
||||||
import java.io.InputStreamReader
|
import java.io.InputStreamReader
|
||||||
|
|
||||||
class Videos: Client() {
|
class Videos : Client() {
|
||||||
|
|
||||||
private fun parseVideos(data: JsonReader): ArrayList<VideoModel>{
|
private fun parseVideos(data: JsonReader): ArrayList<VideoModel> {
|
||||||
val videos = arrayListOf<VideoModel>()
|
val videos = arrayListOf<VideoModel>()
|
||||||
data.beginObject()
|
data.beginObject()
|
||||||
while (data.hasNext()){
|
while (data.hasNext()) {
|
||||||
when(data.nextName()){
|
when (data.nextName()) {
|
||||||
"data"->{
|
"data" -> {
|
||||||
data.beginArray()
|
data.beginArray()
|
||||||
while (data.hasNext()) {
|
while (data.hasNext()) {
|
||||||
val video = VideoModel()
|
val video = VideoModel()
|
||||||
@ -21,7 +21,7 @@ class Videos: Client() {
|
|||||||
}
|
}
|
||||||
data.endArray()
|
data.endArray()
|
||||||
}
|
}
|
||||||
else-> data.skipValue()
|
else -> data.skipValue()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
data.endObject()
|
data.endObject()
|
||||||
@ -29,12 +29,12 @@ class Videos: Client() {
|
|||||||
return videos
|
return videos
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun getVideos(start:Int, sort:String = "-publishedAt", isLocal:Boolean = false):ArrayList<VideoModel>{
|
private fun getVideos(start: Int, sort: String = "-publishedAt", isLocal: Boolean = false): ArrayList<VideoModel> {
|
||||||
val nsfw = ManagerSingleton.nfsw
|
val nsfw = ManagerSingleton.nfsw
|
||||||
val count = ManagerSingleton.videos_count
|
val count = ManagerSingleton.videosCount
|
||||||
var params = "start=$start&count=$count&sort=$sort&nsfw=$nsfw&isLocal=$isLocal"
|
var params = "start=$start&count=$count&sort=$sort&nsfw=$nsfw&isLocal=$isLocal"
|
||||||
|
|
||||||
val con = this._newCon("videos?$params","GET")
|
val con = this.newCon("videos?$params", "GET")
|
||||||
var videos = arrayListOf<VideoModel>()
|
var videos = arrayListOf<VideoModel>()
|
||||||
try {
|
try {
|
||||||
if (con.responseCode == 200) {
|
if (con.responseCode == 200) {
|
||||||
@ -43,33 +43,33 @@ class Videos: Client() {
|
|||||||
videos = parseVideos(data)
|
videos = parseVideos(data)
|
||||||
data.close()
|
data.close()
|
||||||
}
|
}
|
||||||
} catch(err:Exception){
|
} catch (err: Exception) {
|
||||||
err.printStackTrace()
|
err.printStackTrace()
|
||||||
}
|
}
|
||||||
con.disconnect()
|
con.disconnect()
|
||||||
return videos
|
return videos
|
||||||
}
|
}
|
||||||
|
|
||||||
fun getLastVideos(start:Int = 0): ArrayList<VideoModel>{
|
fun getLastVideos(start: Int = 0): ArrayList<VideoModel> {
|
||||||
return this.getVideos(start)
|
return this.getVideos(start)
|
||||||
}
|
}
|
||||||
|
|
||||||
fun getPopularVideos(start:Int = 0): ArrayList<VideoModel>{
|
fun getPopularVideos(start: Int = 0): ArrayList<VideoModel> {
|
||||||
return this.getVideos(start,"-views")
|
return this.getVideos(start, "-views")
|
||||||
}
|
}
|
||||||
|
|
||||||
fun getTrendingVideos(start:Int = 0): ArrayList<VideoModel>{
|
fun getTrendingVideos(start: Int = 0): ArrayList<VideoModel> {
|
||||||
return this.getVideos(start,"-trending")
|
return this.getVideos(start, "-trending")
|
||||||
}
|
}
|
||||||
|
|
||||||
fun getLocalVideos(start:Int = 0): ArrayList<VideoModel>{
|
fun getLocalVideos(start: Int = 0): ArrayList<VideoModel> {
|
||||||
return this.getVideos(start,"-publishedAt", true)
|
return this.getVideos(start, "-publishedAt", true)
|
||||||
}
|
}
|
||||||
|
|
||||||
fun myVideos(token: String, start: Int = 0): ArrayList<VideoModel>{
|
fun myVideos(token: String, start: Int = 0): ArrayList<VideoModel> {
|
||||||
val count = ManagerSingleton.videos_count
|
val count = ManagerSingleton.videosCount
|
||||||
val params = "start=$start&count=$count"
|
val params = "start=$start&count=$count"
|
||||||
val con = this._newCon("users/me/videos?$params","GET", token)
|
val con = this.newCon("users/me/videos?$params", "GET", token)
|
||||||
var videos = arrayListOf<VideoModel>()
|
var videos = arrayListOf<VideoModel>()
|
||||||
try {
|
try {
|
||||||
if (con.responseCode == 200) {
|
if (con.responseCode == 200) {
|
||||||
@ -78,7 +78,7 @@ class Videos: Client() {
|
|||||||
videos = parseVideos(data)
|
videos = parseVideos(data)
|
||||||
data.close()
|
data.close()
|
||||||
}
|
}
|
||||||
} catch(err:Exception){
|
} catch (err: Exception) {
|
||||||
err.printStackTrace()
|
err.printStackTrace()
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -86,10 +86,10 @@ class Videos: Client() {
|
|||||||
return videos
|
return videos
|
||||||
}
|
}
|
||||||
|
|
||||||
fun videoSubscriptions(token: String, start: Int = 0): ArrayList<VideoModel>{
|
fun videoSubscriptions(token: String, start: Int = 0): ArrayList<VideoModel> {
|
||||||
val count = ManagerSingleton.videos_count
|
val count = ManagerSingleton.videosCount
|
||||||
val params = "start=$start&count=$count"
|
val params = "start=$start&count=$count"
|
||||||
val con = this._newCon("users/me/subscriptions/videos?$params","GET", token)
|
val con = this.newCon("users/me/subscriptions/videos?$params", "GET", token)
|
||||||
var videos = arrayListOf<VideoModel>()
|
var videos = arrayListOf<VideoModel>()
|
||||||
try {
|
try {
|
||||||
if (con.responseCode == 200) {
|
if (con.responseCode == 200) {
|
||||||
@ -102,7 +102,7 @@ class Videos: Client() {
|
|||||||
val data = JsonReader(response)
|
val data = JsonReader(response)
|
||||||
print(data)
|
print(data)
|
||||||
}
|
}
|
||||||
} catch(err:Exception){
|
} catch (err: Exception) {
|
||||||
err.printStackTrace()
|
err.printStackTrace()
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -110,10 +110,10 @@ class Videos: Client() {
|
|||||||
return videos
|
return videos
|
||||||
}
|
}
|
||||||
|
|
||||||
fun videoHistory(token: String, start: Int = 0): ArrayList<VideoModel>{
|
fun videoHistory(token: String, start: Int = 0): ArrayList<VideoModel> {
|
||||||
val count = ManagerSingleton.videos_count
|
val count = ManagerSingleton.videosCount
|
||||||
val params = "start=$start&count=$count"
|
val params = "start=$start&count=$count"
|
||||||
val con = this._newCon("users/me/history/videos?$params","GET", token)
|
val con = this.newCon("users/me/history/videos?$params", "GET", token)
|
||||||
var videos = arrayListOf<VideoModel>()
|
var videos = arrayListOf<VideoModel>()
|
||||||
try {
|
try {
|
||||||
if (con.responseCode == 200) {
|
if (con.responseCode == 200) {
|
||||||
@ -122,7 +122,7 @@ class Videos: Client() {
|
|||||||
videos = parseVideos(data)
|
videos = parseVideos(data)
|
||||||
data.close()
|
data.close()
|
||||||
}
|
}
|
||||||
} catch(err:Exception){
|
} catch (err: Exception) {
|
||||||
err.printStackTrace()
|
err.printStackTrace()
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -130,11 +130,11 @@ class Videos: Client() {
|
|||||||
return videos
|
return videos
|
||||||
}
|
}
|
||||||
|
|
||||||
fun search(text: String, start: Int = 0): ArrayList<VideoModel>{
|
fun search(text: String, start: Int = 0): ArrayList<VideoModel> {
|
||||||
val count = ManagerSingleton.videos_count
|
val count = ManagerSingleton.videosCount
|
||||||
val nsfw = ManagerSingleton.nfsw
|
val nsfw = ManagerSingleton.nfsw
|
||||||
val params = "search=$text&start=$start&count=$count&nsfw=$nsfw"
|
val params = "search=$text&start=$start&count=$count&nsfw=$nsfw"
|
||||||
val con = this._newCon("search/videos?$params","GET")
|
val con = this.newCon("search/videos?$params", "GET")
|
||||||
var videos = arrayListOf<VideoModel>()
|
var videos = arrayListOf<VideoModel>()
|
||||||
try {
|
try {
|
||||||
if (con.responseCode == 200) {
|
if (con.responseCode == 200) {
|
||||||
@ -143,15 +143,15 @@ class Videos: Client() {
|
|||||||
videos = parseVideos(data)
|
videos = parseVideos(data)
|
||||||
data.close()
|
data.close()
|
||||||
}
|
}
|
||||||
} catch(err:Exception){
|
} catch (err: Exception) {
|
||||||
err.printStackTrace()
|
err.printStackTrace()
|
||||||
}
|
}
|
||||||
con.disconnect()
|
con.disconnect()
|
||||||
return videos
|
return videos
|
||||||
}
|
}
|
||||||
|
|
||||||
fun fullDescription(videoId: Int): String{
|
fun fullDescription(videoId: Int): String {
|
||||||
val con = this._newCon("videos/$videoId/description","GET")
|
val con = this.newCon("videos/$videoId/description", "GET")
|
||||||
var description = ""
|
var description = ""
|
||||||
try {
|
try {
|
||||||
if (con.responseCode == 200) {
|
if (con.responseCode == 200) {
|
||||||
@ -159,9 +159,9 @@ class Videos: Client() {
|
|||||||
val data = JsonReader(response)
|
val data = JsonReader(response)
|
||||||
|
|
||||||
data.beginObject()
|
data.beginObject()
|
||||||
while (data.hasNext()){
|
while (data.hasNext()) {
|
||||||
val name = data.nextName()
|
val name = data.nextName()
|
||||||
when(name){
|
when (name) {
|
||||||
"description" -> description = data.nextString()
|
"description" -> description = data.nextString()
|
||||||
else -> data.skipValue()
|
else -> data.skipValue()
|
||||||
}
|
}
|
||||||
@ -169,7 +169,7 @@ class Videos: Client() {
|
|||||||
data.endObject()
|
data.endObject()
|
||||||
data.close()
|
data.close()
|
||||||
}
|
}
|
||||||
} catch(err:Exception){
|
} catch (err: Exception) {
|
||||||
err.printStackTrace()
|
err.printStackTrace()
|
||||||
description = "Error!"
|
description = "Error!"
|
||||||
}
|
}
|
||||||
@ -178,9 +178,9 @@ class Videos: Client() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
fun channelVideos(account: String, start: Int): ArrayList<VideoModel> {
|
fun channelVideos(account: String, start: Int): ArrayList<VideoModel> {
|
||||||
val count = ManagerSingleton.videos_count
|
val count = ManagerSingleton.videosCount
|
||||||
val params = "start=$start&count=$count"
|
val params = "start=$start&count=$count"
|
||||||
val con = this._newCon("video-channels/$account/videos?$params","GET")
|
val con = this.newCon("video-channels/$account/videos?$params", "GET")
|
||||||
var videos = arrayListOf<VideoModel>()
|
var videos = arrayListOf<VideoModel>()
|
||||||
try {
|
try {
|
||||||
if (con.responseCode == 200) {
|
if (con.responseCode == 200) {
|
||||||
@ -189,7 +189,7 @@ class Videos: Client() {
|
|||||||
videos = parseVideos(data)
|
videos = parseVideos(data)
|
||||||
data.close()
|
data.close()
|
||||||
}
|
}
|
||||||
} catch(err:Exception){
|
} catch (err: Exception) {
|
||||||
err.printStackTrace()
|
err.printStackTrace()
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -197,12 +197,12 @@ class Videos: Client() {
|
|||||||
return videos
|
return videos
|
||||||
}
|
}
|
||||||
|
|
||||||
fun getMostLikedVideos(start:Int = 0): ArrayList<VideoModel>{
|
fun getMostLikedVideos(start: Int = 0): ArrayList<VideoModel> {
|
||||||
return this.getVideos(start,"-likes")
|
return this.getVideos(start, "-likes")
|
||||||
}
|
}
|
||||||
|
|
||||||
fun getVideo(uuid: String): VideoModel {
|
fun getVideo(uuid: String): VideoModel {
|
||||||
val con = this._newCon("videos/$uuid","GET")
|
val con = this.newCon("videos/$uuid", "GET")
|
||||||
val video = VideoModel()
|
val video = VideoModel()
|
||||||
try {
|
try {
|
||||||
if (con.responseCode == 200) {
|
if (con.responseCode == 200) {
|
||||||
@ -211,11 +211,11 @@ class Videos: Client() {
|
|||||||
video.parseVideo(data)
|
video.parseVideo(data)
|
||||||
data.close()
|
data.close()
|
||||||
}
|
}
|
||||||
} catch(err:Exception){
|
} catch (err: Exception) {
|
||||||
err.printStackTrace()
|
err.printStackTrace()
|
||||||
}
|
}
|
||||||
|
|
||||||
con.disconnect()
|
con.disconnect()
|
||||||
return video
|
return video
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -0,0 +1,132 @@
|
|||||||
|
package org.libre.agosto.p2play.dialogs
|
||||||
|
|
||||||
|
import android.app.Dialog
|
||||||
|
import android.os.AsyncTask
|
||||||
|
import android.os.Bundle
|
||||||
|
import android.view.LayoutInflater
|
||||||
|
import android.view.View
|
||||||
|
import android.view.ViewGroup
|
||||||
|
import android.view.Window
|
||||||
|
import androidx.fragment.app.DialogFragment
|
||||||
|
import androidx.fragment.app.FragmentManager
|
||||||
|
import androidx.recyclerview.widget.LinearLayoutManager
|
||||||
|
import androidx.recyclerview.widget.RecyclerView
|
||||||
|
import com.squareup.picasso.Picasso
|
||||||
|
import kotlinx.android.synthetic.main.comment_component.commentaryLayout
|
||||||
|
import kotlinx.android.synthetic.main.comment_component.commentaryText
|
||||||
|
import kotlinx.android.synthetic.main.comment_component.userImgCom
|
||||||
|
import kotlinx.android.synthetic.main.comment_component.view.commentaryBtn
|
||||||
|
import kotlinx.android.synthetic.main.comment_component.view.commentaryLayout
|
||||||
|
import kotlinx.android.synthetic.main.comment_component.view.commentaryText
|
||||||
|
import kotlinx.android.synthetic.main.comment_component.view.userImgCom
|
||||||
|
import kotlinx.android.synthetic.main.dialog_thread.view.materialToolbar
|
||||||
|
import kotlinx.android.synthetic.main.view_commentary.view.replyBtn
|
||||||
|
import kotlinx.android.synthetic.main.view_commentary.view.userCommentImg
|
||||||
|
import kotlinx.android.synthetic.main.view_commentary.view.userCommentary
|
||||||
|
import kotlinx.android.synthetic.main.view_commentary.view.userTxt
|
||||||
|
import org.libre.agosto.p2play.ManagerSingleton
|
||||||
|
import org.libre.agosto.p2play.R
|
||||||
|
import org.libre.agosto.p2play.adapters.CommentariesAdapter
|
||||||
|
import org.libre.agosto.p2play.ajax.Comments
|
||||||
|
import org.libre.agosto.p2play.models.CommentaryModel
|
||||||
|
|
||||||
|
class ThreadDialog : DialogFragment() {
|
||||||
|
private lateinit var comment: CommentaryModel
|
||||||
|
lateinit var fragmentManager2: FragmentManager
|
||||||
|
private val client: Comments = Comments()
|
||||||
|
|
||||||
|
// The system calls this to get the DialogFragment's layout, regardless of
|
||||||
|
// whether it's being displayed as a dialog or an embedded fragment.
|
||||||
|
override fun onCreateView(
|
||||||
|
inflater: LayoutInflater,
|
||||||
|
container: ViewGroup?,
|
||||||
|
savedInstanceState: Bundle?,
|
||||||
|
): View {
|
||||||
|
// Inflate the layout to use as a dialog or embedded fragment.
|
||||||
|
val view = inflater.inflate(R.layout.dialog_thread, container, false)
|
||||||
|
comment = arguments?.getSerializable("comment") as CommentaryModel
|
||||||
|
|
||||||
|
view.userTxt.text = comment.username
|
||||||
|
view.userCommentary.text = comment.commentary
|
||||||
|
Picasso.get().load("https://${ManagerSingleton.url}${comment.userImageUrl}").into(view.userCommentImg)
|
||||||
|
view.replyBtn.visibility = View.GONE
|
||||||
|
|
||||||
|
if (ManagerSingleton.user.status == 1) {
|
||||||
|
view.commentaryText.setText("${comment.username}@${comment.userHost} ")
|
||||||
|
if (ManagerSingleton.user.avatar != "") {
|
||||||
|
Picasso.get().load("https://${ManagerSingleton.url}${ManagerSingleton.user.avatar}").into(view.userImgCom)
|
||||||
|
}
|
||||||
|
|
||||||
|
view.commentaryText.requestFocus()
|
||||||
|
view.commentaryBtn.setOnClickListener { this.replyThread() }
|
||||||
|
} else {
|
||||||
|
view.commentaryLayout.visibility = View.GONE
|
||||||
|
}
|
||||||
|
|
||||||
|
view.materialToolbar.setTitle("Thread")
|
||||||
|
view.materialToolbar.setNavigationIcon(R.drawable.baseline_arrow_back_24)
|
||||||
|
view.materialToolbar.setNavigationOnClickListener {
|
||||||
|
dismiss()
|
||||||
|
this.fragmentManager2.popBackStack()
|
||||||
|
}
|
||||||
|
|
||||||
|
this.getComments()
|
||||||
|
|
||||||
|
return view
|
||||||
|
}
|
||||||
|
|
||||||
|
// The system calls this only when creating the layout in a dialog.
|
||||||
|
override fun onCreateDialog(savedInstanceState: Bundle?): Dialog {
|
||||||
|
val dialog = super.onCreateDialog(savedInstanceState)
|
||||||
|
dialog.requestWindowFeature(Window.FEATURE_NO_TITLE)
|
||||||
|
return dialog
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun getComments() {
|
||||||
|
AsyncTask.execute {
|
||||||
|
val data =
|
||||||
|
this.client.getCommentariesThread(this.comment.videoId, this.comment.id)
|
||||||
|
activity?.runOnUiThread {
|
||||||
|
this.setDataComments(data)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun setDataComments(data: ArrayList<CommentaryModel>) {
|
||||||
|
// Set data for RecyclerView
|
||||||
|
val viewAdapter = CommentariesAdapter(data).setFragmentManager(this.fragmentManager2)
|
||||||
|
|
||||||
|
view?.findViewById<RecyclerView>(R.id.listCommentaries)?.let {
|
||||||
|
// use this setting to improve performance if you know that changes
|
||||||
|
// in content do not change the layout size of the RecyclerView
|
||||||
|
it.setHasFixedSize(true)
|
||||||
|
// use a linear layout manager
|
||||||
|
it.layoutManager = LinearLayoutManager(activity)
|
||||||
|
|
||||||
|
// specify an viewAdapter (see also next example)
|
||||||
|
it.adapter = viewAdapter
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun replyThread() {
|
||||||
|
val commentary = view?.commentaryText?.text.toString()
|
||||||
|
|
||||||
|
if (commentary == "") {
|
||||||
|
ManagerSingleton.toast(getString(R.string.emptyCommentaryMsg), requireActivity())
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
AsyncTask.execute {
|
||||||
|
val res = this.client.replyThread(ManagerSingleton.token.token, this.comment.videoId, this.comment.id, commentary)
|
||||||
|
activity?.runOnUiThread {
|
||||||
|
if (res) {
|
||||||
|
ManagerSingleton.toast(getString(R.string.makedCommentaryMsg), requireActivity())
|
||||||
|
commentaryText.text?.clear()
|
||||||
|
this.getComments()
|
||||||
|
} else {
|
||||||
|
ManagerSingleton.toast(getString(R.string.errorCommentaryMsg), requireActivity())
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -1,6 +1,6 @@
|
|||||||
package org.libre.agosto.p2play.helpers
|
package org.libre.agosto.p2play.helpers
|
||||||
|
|
||||||
fun mapSeconds (inputSeconds: Int): String {
|
fun mapSeconds(inputSeconds: Int): String {
|
||||||
val seconds = (inputSeconds % 60)
|
val seconds = (inputSeconds % 60)
|
||||||
var minutes = inputSeconds / 60
|
var minutes = inputSeconds / 60
|
||||||
var hours = 0
|
var hours = 0
|
||||||
@ -17,4 +17,4 @@ fun mapSeconds (inputSeconds: Int): String {
|
|||||||
}
|
}
|
||||||
|
|
||||||
return result
|
return result
|
||||||
}
|
}
|
@ -4,10 +4,10 @@ import android.view.View
|
|||||||
import android.view.Window
|
import android.view.Window
|
||||||
import android.view.WindowManager
|
import android.view.WindowManager
|
||||||
|
|
||||||
fun setFullscreen (window: Window) {
|
fun setFullscreen(window: Window) {
|
||||||
val attrs = window.attributes
|
val attrs = window.attributes
|
||||||
attrs.flags = attrs.flags or WindowManager.LayoutParams.FLAG_FULLSCREEN
|
attrs.flags = attrs.flags or WindowManager.LayoutParams.FLAG_FULLSCREEN
|
||||||
attrs.flags = attrs.flags or WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON
|
attrs.flags = attrs.flags or WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON
|
||||||
window.attributes = attrs
|
window.attributes = attrs
|
||||||
window.decorView.systemUiVisibility = View.SYSTEM_UI_FLAG_HIDE_NAVIGATION
|
window.decorView.systemUiVisibility = View.SYSTEM_UI_FLAG_HIDE_NAVIGATION
|
||||||
}
|
}
|
@ -3,16 +3,16 @@ package org.libre.agosto.p2play.models
|
|||||||
import android.util.JsonReader
|
import android.util.JsonReader
|
||||||
import android.util.JsonToken
|
import android.util.JsonToken
|
||||||
|
|
||||||
class ChannelModel (
|
class ChannelModel(
|
||||||
var id: Int = 0,
|
var id: Int = 0,
|
||||||
var url: String = "",
|
var url: String = "",
|
||||||
var nameChannel: String = "",
|
var nameChannel: String = "",
|
||||||
var followers: Int = 0,
|
var followers: Int = 0,
|
||||||
var host: String = "",
|
var host: String = "",
|
||||||
var name: String = "",
|
var name: String = "",
|
||||||
var description: String = "",
|
var description: String = "",
|
||||||
var support: String = "",
|
var support: String = "",
|
||||||
var channelImg: String = ""
|
var channelImg: String = "",
|
||||||
) {
|
) {
|
||||||
fun getAccount(): String {
|
fun getAccount(): String {
|
||||||
return "$nameChannel@$host"
|
return "$nameChannel@$host"
|
||||||
@ -22,8 +22,7 @@ class ChannelModel (
|
|||||||
data.beginObject()
|
data.beginObject()
|
||||||
|
|
||||||
while (data.hasNext()) {
|
while (data.hasNext()) {
|
||||||
|
when (data.nextName()) {
|
||||||
when(data.nextName()){
|
|
||||||
"id" -> this.id = data.nextInt()
|
"id" -> this.id = data.nextInt()
|
||||||
"url" -> this.url = data.nextString()
|
"url" -> this.url = data.nextString()
|
||||||
"name" -> this.nameChannel = data.nextString()
|
"name" -> this.nameChannel = data.nextString()
|
||||||
@ -31,34 +30,36 @@ class ChannelModel (
|
|||||||
"followersCount" -> this.followers = data.nextInt()
|
"followersCount" -> this.followers = data.nextInt()
|
||||||
"displayName" -> this.name = data.nextString()
|
"displayName" -> this.name = data.nextString()
|
||||||
"description" -> {
|
"description" -> {
|
||||||
if(data.peek() == JsonToken.STRING)
|
if (data.peek() == JsonToken.STRING) {
|
||||||
this.description = data.nextString()
|
this.description = data.nextString()
|
||||||
else
|
} else {
|
||||||
data.skipValue()
|
data.skipValue()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
"support" -> {
|
"support" -> {
|
||||||
if(data.peek() == JsonToken.STRING)
|
if (data.peek() == JsonToken.STRING) {
|
||||||
this.support = data.nextString()
|
this.support = data.nextString()
|
||||||
else
|
} else {
|
||||||
data.skipValue()
|
data.skipValue()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
"avatar" -> {
|
"avatar" -> {
|
||||||
if(data.peek() == JsonToken.BEGIN_OBJECT){
|
if (data.peek() == JsonToken.BEGIN_OBJECT) {
|
||||||
data.beginObject()
|
data.beginObject()
|
||||||
while (data.hasNext()){
|
while (data.hasNext()) {
|
||||||
when(data.nextName()){
|
when (data.nextName()) {
|
||||||
"path" -> this.channelImg = data.nextString()
|
"path" -> this.channelImg = data.nextString()
|
||||||
else -> data.skipValue()
|
else -> data.skipValue()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
data.endObject()
|
data.endObject()
|
||||||
}
|
} else {
|
||||||
else
|
|
||||||
data.skipValue()
|
data.skipValue()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else -> data.skipValue()
|
else -> data.skipValue()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
data.endObject()
|
data.endObject()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -2,18 +2,20 @@ package org.libre.agosto.p2play.models
|
|||||||
|
|
||||||
import android.util.JsonReader
|
import android.util.JsonReader
|
||||||
import android.util.JsonToken
|
import android.util.JsonToken
|
||||||
|
import java.io.Serializable
|
||||||
|
|
||||||
class CommentaryModel (
|
class CommentaryModel(
|
||||||
var id: Int = 0,
|
var id: Int = 0,
|
||||||
var threadId: Int = 0,
|
var threadId: Int = 0,
|
||||||
var userUuid: String = "",
|
var userUuid: String = "",
|
||||||
var username: String = "",
|
var username: String = "",
|
||||||
var userImageUrl: String = "",
|
var userImageUrl: String = "",
|
||||||
var commentary: String = "",
|
var commentary: String = "",
|
||||||
var userHost: String = "",
|
var userHost: String = "",
|
||||||
var replies: Int = 0,
|
var replies: Int = 0,
|
||||||
var nameChannel: String = ""
|
var nameChannel: String = "",
|
||||||
) {
|
var videoId: Int = 0,
|
||||||
|
) : Serializable {
|
||||||
fun parseCommentary(data: JsonReader) {
|
fun parseCommentary(data: JsonReader) {
|
||||||
data.beginObject()
|
data.beginObject()
|
||||||
while (data.hasNext()) {
|
while (data.hasNext()) {
|
||||||
@ -23,27 +25,27 @@ class CommentaryModel (
|
|||||||
"threadId" -> this.threadId = data.nextInt()
|
"threadId" -> this.threadId = data.nextInt()
|
||||||
"text" -> this.commentary = data.nextString()
|
"text" -> this.commentary = data.nextString()
|
||||||
"totalReplies" -> this.replies = data.nextInt()
|
"totalReplies" -> this.replies = data.nextInt()
|
||||||
|
"videoId" -> this.videoId = data.nextInt()
|
||||||
"account" -> {
|
"account" -> {
|
||||||
data.beginObject()
|
data.beginObject()
|
||||||
while (data.hasNext()){
|
while (data.hasNext()) {
|
||||||
val acKey = data.nextName()
|
val acKey = data.nextName()
|
||||||
when(acKey.toString()){
|
when (acKey.toString()) {
|
||||||
"displayName"-> this.username=data.nextString()
|
"displayName" -> this.username = data.nextString()
|
||||||
"avatar"-> {
|
"avatar" -> {
|
||||||
if(data.peek() == JsonToken.BEGIN_OBJECT){
|
if (data.peek() == JsonToken.BEGIN_OBJECT) {
|
||||||
data.beginObject()
|
data.beginObject()
|
||||||
while (data.hasNext()){
|
while (data.hasNext()) {
|
||||||
val avKey = data.nextName()
|
val avKey = data.nextName()
|
||||||
when(avKey){
|
when (avKey) {
|
||||||
"path"-> this.userImageUrl = data.nextString()
|
"path" -> this.userImageUrl = data.nextString()
|
||||||
else-> data.skipValue()
|
else -> data.skipValue()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
data.endObject()
|
data.endObject()
|
||||||
}
|
} else {
|
||||||
else
|
|
||||||
data.skipValue()
|
data.skipValue()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
"uuid" -> this.userUuid = data.nextString()
|
"uuid" -> this.userUuid = data.nextString()
|
||||||
"host" -> this.userHost = data.nextString()
|
"host" -> this.userHost = data.nextString()
|
||||||
@ -60,7 +62,6 @@ class CommentaryModel (
|
|||||||
}
|
}
|
||||||
|
|
||||||
fun getAccount(): String {
|
fun getAccount(): String {
|
||||||
return "$nameChannel@$userHost"
|
return "$nameChannel@$userHost"
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
package org.libre.agosto.p2play.models
|
package org.libre.agosto.p2play.models
|
||||||
|
|
||||||
class HostModel (var client_id:String, var client_secret:String)
|
class HostModel(var client_id: String, var client_secret: String)
|
||||||
|
@ -12,10 +12,10 @@ class StreamingModel(
|
|||||||
while (data.hasNext()) {
|
while (data.hasNext()) {
|
||||||
val key = data.nextName()
|
val key = data.nextName()
|
||||||
when (key.toString()) {
|
when (key.toString()) {
|
||||||
"playlistUrl"->{
|
"playlistUrl" -> {
|
||||||
this.playlistUrl = data.nextString()
|
this.playlistUrl = data.nextString()
|
||||||
}
|
}
|
||||||
"segmentsSha256Url"->{
|
"segmentsSha256Url" -> {
|
||||||
this.segmentsSha256Url = data.nextString()
|
this.segmentsSha256Url = data.nextString()
|
||||||
}
|
}
|
||||||
else -> data.skipValue()
|
else -> data.skipValue()
|
||||||
@ -23,4 +23,4 @@ class StreamingModel(
|
|||||||
}
|
}
|
||||||
data.endObject()
|
data.endObject()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
package org.libre.agosto.p2play.models
|
package org.libre.agosto.p2play.models
|
||||||
|
|
||||||
class TokenModel (
|
class TokenModel(
|
||||||
var token: String = "",
|
var token: String = "",
|
||||||
var refresh_token: String = "",
|
var refresh_token: String = "",
|
||||||
var status: Int = -1
|
var status: Int = -1,
|
||||||
)
|
)
|
||||||
|
@ -1,12 +1,12 @@
|
|||||||
package org.libre.agosto.p2play.models
|
package org.libre.agosto.p2play.models
|
||||||
|
|
||||||
class UserModel (
|
class UserModel(
|
||||||
var id: Int = 0,
|
var id: Int = 0,
|
||||||
var uuid: Int = 0,
|
var uuid: Int = 0,
|
||||||
var username: String = "",
|
var username: String = "",
|
||||||
var email: String = "",
|
var email: String = "",
|
||||||
var nsfw: Boolean = true,
|
var nsfw: Boolean = true,
|
||||||
var followers: Int = 0,
|
var followers: Int = 0,
|
||||||
var avatar: String = "",
|
var avatar: String = "",
|
||||||
var status: Int = -1
|
var status: Int = -1,
|
||||||
)
|
)
|
||||||
|
@ -19,8 +19,8 @@ class VideoModel(
|
|||||||
var userHost: String = "",
|
var userHost: String = "",
|
||||||
var nameChannel: String = "",
|
var nameChannel: String = "",
|
||||||
var isLive: Boolean = false,
|
var isLive: Boolean = false,
|
||||||
var streamingData: StreamingModel? = null
|
var streamingData: StreamingModel? = null,
|
||||||
):Serializable {
|
) : Serializable {
|
||||||
fun getChannel(): String {
|
fun getChannel(): String {
|
||||||
return "$nameChannel@$userHost"
|
return "$nameChannel@$userHost"
|
||||||
}
|
}
|
||||||
@ -29,38 +29,39 @@ class VideoModel(
|
|||||||
return "https://$userHost/videos/watch/$uuid"
|
return "https://$userHost/videos/watch/$uuid"
|
||||||
}
|
}
|
||||||
|
|
||||||
fun parseVideo(data: JsonReader){
|
fun parseVideo(data: JsonReader) {
|
||||||
data.beginObject()
|
data.beginObject()
|
||||||
while (data.hasNext()){
|
while (data.hasNext()) {
|
||||||
val key = data.nextName()
|
val key = data.nextName()
|
||||||
when (key.toString()) {
|
when (key.toString()) {
|
||||||
"id"-> this.id = data.nextInt()
|
"id" -> this.id = data.nextInt()
|
||||||
"uuid" -> this.uuid = data.nextString()
|
"uuid" -> this.uuid = data.nextString()
|
||||||
"name"->{
|
"name" -> {
|
||||||
this.name= data.nextString()
|
this.name = data.nextString()
|
||||||
}
|
}
|
||||||
"description"->{
|
"description" -> {
|
||||||
if(data.peek() == JsonToken.STRING)
|
if (data.peek() == JsonToken.STRING) {
|
||||||
this.description = data.nextString()
|
this.description = data.nextString()
|
||||||
else
|
} else {
|
||||||
data.skipValue()
|
data.skipValue()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
"duration"->{
|
"duration" -> {
|
||||||
this.duration = data.nextInt()
|
this.duration = data.nextInt()
|
||||||
}
|
}
|
||||||
"thumbnailPath"->{
|
"thumbnailPath" -> {
|
||||||
this.thumbUrl = data.nextString()
|
this.thumbUrl = data.nextString()
|
||||||
}
|
}
|
||||||
"embedPath"->{
|
"embedPath" -> {
|
||||||
this.embedUrl = data.nextString()
|
this.embedUrl = data.nextString()
|
||||||
}
|
}
|
||||||
"views"->{
|
"views" -> {
|
||||||
this.views = data.nextInt()
|
this.views = data.nextInt()
|
||||||
}
|
}
|
||||||
"isLive"-> {
|
"isLive" -> {
|
||||||
this.isLive = data.nextBoolean()
|
this.isLive = data.nextBoolean()
|
||||||
}
|
}
|
||||||
"streamingPlaylists"-> {
|
"streamingPlaylists" -> {
|
||||||
data.beginArray()
|
data.beginArray()
|
||||||
if (data.hasNext()) {
|
if (data.hasNext()) {
|
||||||
val streamingData = StreamingModel()
|
val streamingData = StreamingModel()
|
||||||
@ -70,14 +71,14 @@ class VideoModel(
|
|||||||
data.endArray()
|
data.endArray()
|
||||||
}
|
}
|
||||||
"files" -> {
|
"files" -> {
|
||||||
|
data.beginArray()
|
||||||
if (streamingData === null) {
|
if (streamingData === null) {
|
||||||
data.beginArray()
|
|
||||||
if (data.hasNext()) {
|
if (data.hasNext()) {
|
||||||
data.beginObject()
|
data.beginObject()
|
||||||
while (data.hasNext()) {
|
while (data.hasNext()) {
|
||||||
val key2 = data.nextName()
|
val key2 = data.nextName()
|
||||||
when (key2.toString()) {
|
when (key2.toString()) {
|
||||||
"fileDownloadUrl"->{
|
"fileUrl" -> {
|
||||||
streamingData = StreamingModel()
|
streamingData = StreamingModel()
|
||||||
streamingData!!.playlistUrl = data.nextString()
|
streamingData!!.playlistUrl = data.nextString()
|
||||||
}
|
}
|
||||||
@ -86,44 +87,46 @@ class VideoModel(
|
|||||||
}
|
}
|
||||||
data.endObject()
|
data.endObject()
|
||||||
}
|
}
|
||||||
data.endArray()
|
while (data.hasNext()) {
|
||||||
|
data.skipValue()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
data.endArray()
|
||||||
}
|
}
|
||||||
"channel"->{
|
"channel" -> {
|
||||||
data.beginObject()
|
data.beginObject()
|
||||||
while (data.hasNext()){
|
while (data.hasNext()) {
|
||||||
val acKey = data.nextName()
|
val acKey = data.nextName()
|
||||||
when(acKey.toString()){
|
when (acKey.toString()) {
|
||||||
"displayName"-> this.username=data.nextString()
|
"displayName" -> this.username = data.nextString()
|
||||||
"avatar"-> {
|
"avatar" -> {
|
||||||
if(data.peek() == JsonToken.BEGIN_OBJECT){
|
if (data.peek() == JsonToken.BEGIN_OBJECT) {
|
||||||
data.beginObject()
|
data.beginObject()
|
||||||
while (data.hasNext()){
|
while (data.hasNext()) {
|
||||||
val avKey = data.nextName()
|
val avKey = data.nextName()
|
||||||
when(avKey){
|
when (avKey) {
|
||||||
"path"-> this.userImageUrl = data.nextString()
|
"path" -> this.userImageUrl = data.nextString()
|
||||||
else-> data.skipValue()
|
else -> data.skipValue()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
data.endObject()
|
data.endObject()
|
||||||
}
|
} else {
|
||||||
else
|
|
||||||
data.skipValue()
|
data.skipValue()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
"uuid" -> this.userUuid = data.nextString()
|
"uuid" -> this.userUuid = data.nextString()
|
||||||
"host" -> this.userHost = data.nextString()
|
"host" -> this.userHost = data.nextString()
|
||||||
"name" -> this.nameChannel = data.nextString()
|
"name" -> this.nameChannel = data.nextString()
|
||||||
else-> data.skipValue()
|
else -> data.skipValue()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
data.endObject()
|
data.endObject()
|
||||||
}
|
}
|
||||||
else->{
|
else -> {
|
||||||
data.skipValue()
|
data.skipValue()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
data.endObject()
|
data.endObject()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -0,0 +1,47 @@
|
|||||||
|
package org.libre.agosto.p2play.services
|
||||||
|
|
||||||
|
import android.app.PendingIntent
|
||||||
|
import android.content.Intent
|
||||||
|
import androidx.media3.session.MediaSession
|
||||||
|
import androidx.media3.session.MediaSessionService
|
||||||
|
import org.libre.agosto.p2play.ReproductorActivity
|
||||||
|
import org.libre.agosto.p2play.singletons.PlaybackSingleton
|
||||||
|
|
||||||
|
class PlaybackService : MediaSessionService() {
|
||||||
|
private var mediaSession: MediaSession? = null
|
||||||
|
|
||||||
|
// Create your Player and MediaSession in the onCreate lifecycle event
|
||||||
|
override fun onCreate() {
|
||||||
|
super.onCreate()
|
||||||
|
val player = PlaybackSingleton.player!!
|
||||||
|
mediaSession = MediaSession.Builder(this, player)
|
||||||
|
.build()
|
||||||
|
val contentIntent = Intent(this, ReproductorActivity::class.java)
|
||||||
|
contentIntent.putExtra("resume", true)
|
||||||
|
val pendingIntent = PendingIntent.getActivity(
|
||||||
|
this,
|
||||||
|
0,
|
||||||
|
contentIntent,
|
||||||
|
PendingIntent.FLAG_MUTABLE,
|
||||||
|
)
|
||||||
|
mediaSession!!.setSessionActivity(pendingIntent)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Remember to release the player and media session in onDestroy
|
||||||
|
override fun onDestroy() {
|
||||||
|
mediaSession?.run {
|
||||||
|
release()
|
||||||
|
mediaSession = null
|
||||||
|
}
|
||||||
|
super.onDestroy()
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun onTaskRemoved(rootIntent: Intent?) {
|
||||||
|
this.mediaSession!!.player.stop()
|
||||||
|
super.onTaskRemoved(rootIntent)
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun onGetSession(controllerInfo: MediaSession.ControllerInfo): MediaSession? {
|
||||||
|
return mediaSession
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,51 @@
|
|||||||
|
package org.libre.agosto.p2play.singletons
|
||||||
|
|
||||||
|
import android.content.ComponentName
|
||||||
|
import android.content.Context
|
||||||
|
import androidx.media3.common.MediaItem
|
||||||
|
import androidx.media3.exoplayer.ExoPlayer
|
||||||
|
import androidx.media3.session.MediaController
|
||||||
|
import androidx.media3.session.SessionToken
|
||||||
|
import com.google.common.util.concurrent.MoreExecutors
|
||||||
|
import org.libre.agosto.p2play.models.VideoModel
|
||||||
|
import org.libre.agosto.p2play.services.PlaybackService
|
||||||
|
|
||||||
|
object PlaybackSingleton {
|
||||||
|
var player: ExoPlayer? = null
|
||||||
|
var video: VideoModel? = null
|
||||||
|
private var withMediaSession = false
|
||||||
|
|
||||||
|
fun setData(mediaItem: MediaItem, video: VideoModel): ExoPlayer? {
|
||||||
|
player?.let {
|
||||||
|
if (it.isPlaying) {
|
||||||
|
it.pause()
|
||||||
|
}
|
||||||
|
it.setMediaItem(mediaItem)
|
||||||
|
it.prepare()
|
||||||
|
this.video = video
|
||||||
|
return it
|
||||||
|
}
|
||||||
|
|
||||||
|
return null
|
||||||
|
}
|
||||||
|
|
||||||
|
fun release() {
|
||||||
|
player?.release()
|
||||||
|
}
|
||||||
|
|
||||||
|
fun runMediaSession(context: Context) {
|
||||||
|
if (!this.withMediaSession) {
|
||||||
|
val sessionToken = SessionToken(context, ComponentName(context, PlaybackService::class.java))
|
||||||
|
|
||||||
|
val controllerFuture = MediaController.Builder(context, sessionToken).buildAsync()
|
||||||
|
|
||||||
|
controllerFuture.addListener(
|
||||||
|
{
|
||||||
|
val med = controllerFuture.get()
|
||||||
|
},
|
||||||
|
MoreExecutors.directExecutor(),
|
||||||
|
)
|
||||||
|
this.withMediaSession = true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
5
app/src/main/res/drawable/baseline_arrow_back_24.xml
Normal file
5
app/src/main/res/drawable/baseline_arrow_back_24.xml
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
<vector xmlns:android="http://schemas.android.com/apk/res/android" android:autoMirrored="true" android:height="24dp" android:tint="#000000" android:viewportHeight="24" android:viewportWidth="24" android:width="24dp">
|
||||||
|
|
||||||
|
<path android:fillColor="@android:color/white" android:pathData="M20,11H7.83l5.59,-5.59L12,4l-8,8 8,8 1.41,-1.41L7.83,13H20v-2z"/>
|
||||||
|
|
||||||
|
</vector>
|
@ -8,18 +8,18 @@
|
|||||||
android:strokeLineJoin="round"
|
android:strokeLineJoin="round"
|
||||||
android:strokeWidth="2"
|
android:strokeWidth="2"
|
||||||
android:fillColor="#00000000"
|
android:fillColor="#00000000"
|
||||||
android:strokeColor="#000000"
|
android:strokeColor="#585858"
|
||||||
android:fillType="evenOdd"/>
|
android:fillType="evenOdd"/>
|
||||||
<path
|
<path
|
||||||
android:pathData="M12,17.75C12.6904,17.75 13.25,17.1904 13.25,16.5C13.25,15.8096 12.6904,15.25 12,15.25C11.3096,15.25 10.75,15.8096 10.75,16.5C10.75,17.1904 11.3096,17.75 12,17.75Z"
|
android:pathData="M12,17.75C12.6904,17.75 13.25,17.1904 13.25,16.5C13.25,15.8096 12.6904,15.25 12,15.25C11.3096,15.25 10.75,15.8096 10.75,16.5C10.75,17.1904 11.3096,17.75 12,17.75Z"
|
||||||
android:strokeWidth="1"
|
android:strokeWidth="1"
|
||||||
android:fillColor="#000000"
|
android:fillColor="#585858"
|
||||||
android:fillType="evenOdd"
|
android:strokeColor="#585858"
|
||||||
android:strokeColor="#00000000"/>
|
android:fillType="evenOdd" />
|
||||||
<path
|
<path
|
||||||
android:pathData="M12,9L12,9A1,1 0,0 1,13 10L13,13A1,1 0,0 1,12 14L12,14A1,1 0,0 1,11 13L11,10A1,1 0,0 1,12 9z"
|
android:pathData="M12,9L12,9A1,1 0,0 1,13 10L13,13A1,1 0,0 1,12 14L12,14A1,1 0,0 1,11 13L11,10A1,1 0,0 1,12 9z"
|
||||||
android:strokeWidth="1"
|
android:strokeWidth="1"
|
||||||
android:fillColor="#000000"
|
android:fillColor="#585858"
|
||||||
android:fillType="evenOdd"
|
android:strokeColor="#585858"
|
||||||
android:strokeColor="#00000000"/>
|
android:fillType="evenOdd" />
|
||||||
</vector>
|
</vector>
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
android:pathData="M20,15L20,18.0026C20,19.1057 19.1074,20 18.0049,20L5.9951,20C4.8932,20 4,19.1074 4,18.0049L4,5.9951C4,4.8932 4.8959,4 5.9974,4L9,4"
|
android:pathData="M20,15L20,18.0026C20,19.1057 19.1074,20 18.0049,20L5.9951,20C4.8932,20 4,19.1074 4,18.0049L4,5.9951C4,4.8932 4.8959,4 5.9974,4L9,4"
|
||||||
android:strokeWidth="2"
|
android:strokeWidth="2"
|
||||||
android:fillColor="#00000000"
|
android:fillColor="#00000000"
|
||||||
android:strokeColor="#000000"
|
android:strokeColor="#585858"
|
||||||
android:fillType="evenOdd"
|
android:fillType="evenOdd"
|
||||||
android:strokeLineCap="round"/>
|
android:strokeLineCap="round"/>
|
||||||
<path
|
<path
|
||||||
@ -15,7 +15,7 @@
|
|||||||
android:strokeLineJoin="round"
|
android:strokeLineJoin="round"
|
||||||
android:strokeWidth="2"
|
android:strokeWidth="2"
|
||||||
android:fillColor="#00000000"
|
android:fillColor="#00000000"
|
||||||
android:strokeColor="#000000"
|
android:strokeColor="#585858"
|
||||||
android:fillType="evenOdd"
|
android:fillType="evenOdd"
|
||||||
android:strokeLineCap="round"/>
|
android:strokeLineCap="round"/>
|
||||||
<path
|
<path
|
||||||
@ -23,7 +23,7 @@
|
|||||||
android:strokeLineJoin="round"
|
android:strokeLineJoin="round"
|
||||||
android:strokeWidth="2"
|
android:strokeWidth="2"
|
||||||
android:fillColor="#00000000"
|
android:fillColor="#00000000"
|
||||||
android:strokeColor="#000000"
|
android:strokeColor="#585858"
|
||||||
android:fillType="evenOdd"
|
android:fillType="evenOdd"
|
||||||
android:strokeLineCap="round"/>
|
android:strokeLineCap="round"/>
|
||||||
</vector>
|
</vector>
|
||||||
|
@ -65,14 +65,14 @@
|
|||||||
<WebView
|
<WebView
|
||||||
android:id="@+id/videoView"
|
android:id="@+id/videoView"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="222dp"
|
android:layout_height="205dp"
|
||||||
android:layout_weight="1"
|
android:layout_weight="1"
|
||||||
android:visibility="gone" />
|
android:visibility="gone" />
|
||||||
|
|
||||||
<androidx.media3.ui.PlayerView
|
<androidx.media3.ui.PlayerView
|
||||||
android:id="@+id/exoPlayer"
|
android:id="@+id/exoPlayer"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="222dp"
|
android:layout_height="205dp"
|
||||||
app:use_controller="true"
|
app:use_controller="true"
|
||||||
app:controller_layout_id="@layout/custom_player_controls"
|
app:controller_layout_id="@layout/custom_player_controls"
|
||||||
app:player_layout_id="@layout/exo_player_view"/>
|
app:player_layout_id="@layout/exo_player_view"/>
|
||||||
@ -220,15 +220,16 @@
|
|||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="60dp"
|
android:layout_height="60dp"
|
||||||
android:layout_weight="1"
|
android:layout_weight="1"
|
||||||
|
android:gravity="center|center_vertical"
|
||||||
android:orientation="horizontal">
|
android:orientation="horizontal">
|
||||||
|
|
||||||
<ImageView
|
<ImageView
|
||||||
android:id="@+id/userImg"
|
android:id="@+id/userImg"
|
||||||
android:layout_width="40dp"
|
android:layout_width="35dp"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="wrap_content"
|
||||||
android:layout_margin="0dp"
|
android:layout_margin="0dp"
|
||||||
android:layout_weight="1"
|
android:layout_weight="1"
|
||||||
android:adjustViewBounds="false"
|
android:adjustViewBounds="true"
|
||||||
android:cropToPadding="false"
|
android:cropToPadding="false"
|
||||||
android:padding="5dp"
|
android:padding="5dp"
|
||||||
android:scaleType="fitCenter"
|
android:scaleType="fitCenter"
|
||||||
@ -236,7 +237,7 @@
|
|||||||
|
|
||||||
<LinearLayout
|
<LinearLayout
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="wrap_content"
|
||||||
android:layout_weight="3"
|
android:layout_weight="3"
|
||||||
android:orientation="vertical">
|
android:orientation="vertical">
|
||||||
|
|
||||||
@ -244,6 +245,7 @@
|
|||||||
android:id="@+id/userTxt"
|
android:id="@+id/userTxt"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
|
android:maxWidth="300dp"
|
||||||
android:textAppearance="@android:style/TextAppearance.Material.Large"
|
android:textAppearance="@android:style/TextAppearance.Material.Large"
|
||||||
android:textSize="18sp"
|
android:textSize="18sp"
|
||||||
android:textStyle="bold" />
|
android:textStyle="bold" />
|
||||||
@ -323,50 +325,7 @@
|
|||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="20dp" />
|
android:layout_height="20dp" />
|
||||||
|
|
||||||
<androidx.appcompat.widget.LinearLayoutCompat
|
<include layout="@layout/comment_component" />
|
||||||
android:id="@+id/commentaryLayout"
|
|
||||||
android:layout_width="match_parent"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:orientation="vertical"
|
|
||||||
android:visibility="gone">
|
|
||||||
|
|
||||||
<LinearLayout
|
|
||||||
android:layout_width="match_parent"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:orientation="horizontal">
|
|
||||||
|
|
||||||
<ImageView
|
|
||||||
android:id="@+id/userImgCom"
|
|
||||||
android:layout_width="10dp"
|
|
||||||
android:layout_height="60dp"
|
|
||||||
android:layout_weight="1"
|
|
||||||
app:srcCompat="@drawable/default_avatar" />
|
|
||||||
|
|
||||||
<com.google.android.material.textfield.TextInputLayout
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:layout_margin="4dp"
|
|
||||||
android:layout_weight="3"
|
|
||||||
android:hint="@string/commentHolder">
|
|
||||||
|
|
||||||
<com.google.android.material.textfield.TextInputEditText
|
|
||||||
android:id="@+id/commentaryText"
|
|
||||||
android:layout_width="match_parent"
|
|
||||||
android:layout_height="match_parent"
|
|
||||||
android:ems="10"
|
|
||||||
android:inputType="textMultiLine" />
|
|
||||||
</com.google.android.material.textfield.TextInputLayout>
|
|
||||||
|
|
||||||
</LinearLayout>
|
|
||||||
|
|
||||||
<com.google.android.material.button.MaterialButton
|
|
||||||
android:id="@+id/commentaryBtn"
|
|
||||||
android:layout_width="match_parent"
|
|
||||||
android:layout_height="match_parent"
|
|
||||||
android:layout_weight="1"
|
|
||||||
android:text="@string/commentaryText" />
|
|
||||||
|
|
||||||
</androidx.appcompat.widget.LinearLayoutCompat>
|
|
||||||
|
|
||||||
<androidx.recyclerview.widget.RecyclerView
|
<androidx.recyclerview.widget.RecyclerView
|
||||||
android:id="@+id/listCommentaries"
|
android:id="@+id/listCommentaries"
|
||||||
@ -379,4 +338,5 @@
|
|||||||
|
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
</ScrollView>
|
</ScrollView>
|
||||||
|
|
||||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
46
app/src/main/res/layout/comment_component.xml
Normal file
46
app/src/main/res/layout/comment_component.xml
Normal file
@ -0,0 +1,46 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<androidx.appcompat.widget.LinearLayoutCompat
|
||||||
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||||
|
android:id="@+id/commentaryLayout"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:orientation="vertical">
|
||||||
|
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:orientation="horizontal">
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/userImgCom"
|
||||||
|
android:layout_width="5dp"
|
||||||
|
android:layout_height="57dp"
|
||||||
|
android:layout_weight="1"
|
||||||
|
app:srcCompat="@drawable/default_avatar" />
|
||||||
|
|
||||||
|
<com.google.android.material.textfield.TextInputLayout
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_margin="4dp"
|
||||||
|
android:layout_weight="3"
|
||||||
|
android:hint="@string/commentHolder">
|
||||||
|
|
||||||
|
<com.google.android.material.textfield.TextInputEditText
|
||||||
|
android:id="@+id/commentaryText"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent"
|
||||||
|
android:ems="10"
|
||||||
|
android:inputType="textMultiLine" />
|
||||||
|
</com.google.android.material.textfield.TextInputLayout>
|
||||||
|
|
||||||
|
</LinearLayout>
|
||||||
|
|
||||||
|
<com.google.android.material.button.MaterialButton
|
||||||
|
android:id="@+id/commentaryBtn"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent"
|
||||||
|
android:layout_weight="1"
|
||||||
|
android:text="@string/commentaryText" />
|
||||||
|
|
||||||
|
</androidx.appcompat.widget.LinearLayoutCompat>
|
@ -25,4 +25,16 @@
|
|||||||
app:layout_constraintTop_toTopOf="parent" />
|
app:layout_constraintTop_toTopOf="parent" />
|
||||||
|
|
||||||
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
|
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
|
||||||
|
|
||||||
|
<include
|
||||||
|
android:id="@+id/mini"
|
||||||
|
layout="@layout/mini_player"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
|
||||||
|
android:visibility="gone"
|
||||||
|
app:layout_constraintBottom_toBottomOf="parent"
|
||||||
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
|
app:layout_constraintStart_toStartOf="parent" />
|
||||||
|
|
||||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
50
app/src/main/res/layout/dialog_thread.xml
Normal file
50
app/src/main/res/layout/dialog_thread.xml
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||||
|
xmlns:tools="http://schemas.android.com/tools"
|
||||||
|
android:background="?attr/colorSurface"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent">
|
||||||
|
|
||||||
|
<LinearLayout
|
||||||
|
android:id="@+id/linearLayout3"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="0dp"
|
||||||
|
android:layout_marginBottom="130dp"
|
||||||
|
android:orientation="vertical"
|
||||||
|
app:layout_constraintBottom_toBottomOf="parent"
|
||||||
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
|
app:layout_constraintTop_toTopOf="parent">
|
||||||
|
|
||||||
|
<androidx.appcompat.widget.Toolbar
|
||||||
|
android:id="@+id/materialToolbar"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:minHeight="?attr/actionBarSize" />
|
||||||
|
|
||||||
|
<include
|
||||||
|
layout="@layout/view_commentary"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content" />
|
||||||
|
|
||||||
|
<View
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="1dp"
|
||||||
|
android:background="?android:attr/listDivider" />
|
||||||
|
|
||||||
|
<androidx.recyclerview.widget.RecyclerView
|
||||||
|
android:id="@+id/listCommentaries"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent"
|
||||||
|
android:layout_marginStart="10dp"/>
|
||||||
|
|
||||||
|
</LinearLayout>
|
||||||
|
|
||||||
|
<include
|
||||||
|
layout="@layout/comment_component"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
app:layout_constraintBottom_toBottomOf="parent" />
|
||||||
|
|
||||||
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
66
app/src/main/res/layout/mini_player.xml
Normal file
66
app/src/main/res/layout/mini_player.xml
Normal file
@ -0,0 +1,66 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||||
|
xmlns:tools="http://schemas.android.com/tools"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:background="?attr/androidBackgroundSecondary"
|
||||||
|
android:elevation="5dp"
|
||||||
|
android:clickable="true"
|
||||||
|
android:id="@+id/mini_player">
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/mini_player_image"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="60dp"
|
||||||
|
app:layout_constraintBottom_toBottomOf="parent"
|
||||||
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
|
app:layout_constraintTop_toTopOf="parent"
|
||||||
|
app:srcCompat="@drawable/default_avatar"
|
||||||
|
tools:srcCompat="@drawable/default_avatar" />
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/mini_player_title"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginStart="12dp"
|
||||||
|
android:layout_marginTop="8dp"
|
||||||
|
android:maxWidth="180dp"
|
||||||
|
android:text="Video"
|
||||||
|
android:textAppearance="@style/TextAppearance.AppCompat.Body2"
|
||||||
|
app:layout_constraintStart_toEndOf="@+id/mini_player_image"
|
||||||
|
app:layout_constraintTop_toTopOf="parent"
|
||||||
|
android:maxLines="1"
|
||||||
|
android:ellipsize="end"
|
||||||
|
android:textColor="?attr/androidOnBackgroundSecondary"/>
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/mini_player_author"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginStart="12dp"
|
||||||
|
android:layout_marginBottom="8dp"
|
||||||
|
android:maxWidth="180dp"
|
||||||
|
android:text="Author"
|
||||||
|
app:layout_constraintBottom_toBottomOf="parent"
|
||||||
|
app:layout_constraintStart_toEndOf="@+id/mini_player_image"
|
||||||
|
android:maxLines="1"
|
||||||
|
android:ellipsize="end" />
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/mini_play_pause"
|
||||||
|
android:layout_width="50dp"
|
||||||
|
android:layout_height="50dp"
|
||||||
|
android:layout_marginEnd="16dp"
|
||||||
|
android:layout_weight="1"
|
||||||
|
android:adjustViewBounds="false"
|
||||||
|
android:contentDescription="@string/likeBtn"
|
||||||
|
android:cropToPadding="false"
|
||||||
|
android:scaleType="center"
|
||||||
|
android:visibility="visible"
|
||||||
|
app:layout_constraintBottom_toBottomOf="parent"
|
||||||
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
|
app:layout_constraintTop_toTopOf="parent"
|
||||||
|
app:srcCompat="@drawable/ic_pause_24"
|
||||||
|
app:tint="@color/colorAccent" />
|
||||||
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
@ -1,8 +1,8 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
android:id="@+id/layout_root"
|
android:id="@+id/layout_root"
|
||||||
android:layout_width="fill_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="fill_parent"
|
android:layout_height="wrap_content"
|
||||||
android:orientation="vertical"
|
android:orientation="vertical"
|
||||||
android:padding="10dp" >
|
android:padding="10dp" >
|
||||||
|
|
||||||
@ -10,16 +10,13 @@
|
|||||||
<com.google.android.material.textfield.TextInputLayout
|
<com.google.android.material.textfield.TextInputLayout
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_margin="4dp"
|
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox">
|
||||||
android:layout_weight="3"
|
|
||||||
android:hint="@string/reportDialog">
|
|
||||||
|
|
||||||
<com.google.android.material.textfield.TextInputEditText
|
<com.google.android.material.textfield.TextInputEditText
|
||||||
android:id="@+id/reportText"
|
android:id="@+id/reportText"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:inputType="textMultiLine" >
|
android:inputType="textMultiLine" >
|
||||||
|
|
||||||
<requestFocus />
|
<requestFocus />
|
||||||
|
|
||||||
</com.google.android.material.textfield.TextInputEditText>
|
</com.google.android.material.textfield.TextInputEditText>
|
||||||
|
9
app/src/main/res/layout/settings_activity.xml
Normal file
9
app/src/main/res/layout/settings_activity.xml
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent">
|
||||||
|
|
||||||
|
<FrameLayout
|
||||||
|
android:id="@+id/settings"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent" />
|
||||||
|
</LinearLayout>
|
27
app/src/main/res/layout/two_factor_dialog.xml
Normal file
27
app/src/main/res/layout/two_factor_dialog.xml
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:orientation="vertical"
|
||||||
|
android:padding="10dp" >
|
||||||
|
|
||||||
|
|
||||||
|
<com.google.android.material.textfield.TextInputLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_margin="0dp"
|
||||||
|
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox">
|
||||||
|
|
||||||
|
<com.google.android.material.textfield.TextInputEditText
|
||||||
|
android:id="@+id/twoFactorText"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content">
|
||||||
|
|
||||||
|
<requestFocus />
|
||||||
|
|
||||||
|
</com.google.android.material.textfield.TextInputEditText>
|
||||||
|
|
||||||
|
</com.google.android.material.textfield.TextInputLayout>
|
||||||
|
|
||||||
|
</LinearLayout>
|
@ -7,6 +7,7 @@
|
|||||||
<LinearLayout
|
<LinearLayout
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginBottom="8dp"
|
||||||
android:orientation="horizontal"
|
android:orientation="horizontal"
|
||||||
android:paddingLeft="10dp"
|
android:paddingLeft="10dp"
|
||||||
android:paddingRight="10dp"
|
android:paddingRight="10dp"
|
||||||
@ -46,6 +47,14 @@
|
|||||||
android:linksClickable="true"
|
android:linksClickable="true"
|
||||||
android:maxLength="1000"
|
android:maxLength="1000"
|
||||||
android:maxLines="10" />
|
android:maxLines="10" />
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/replyBtn"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="@string/reply"
|
||||||
|
android:textColor="?attr/colorSecondary"
|
||||||
|
android:textStyle="bold" />
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
@ -73,7 +73,7 @@
|
|||||||
android:layout_width="120dp"
|
android:layout_width="120dp"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
android:layout_weight="1"
|
android:layout_weight="1"
|
||||||
android:adjustViewBounds="false"
|
android:adjustViewBounds="true"
|
||||||
android:clickable="false"
|
android:clickable="false"
|
||||||
android:cropToPadding="false"
|
android:cropToPadding="false"
|
||||||
android:padding="5dp"
|
android:padding="5dp"
|
||||||
|
@ -14,6 +14,8 @@
|
|||||||
<item name="colorPrimaryDark">@color/colorAccent</item>
|
<item name="colorPrimaryDark">@color/colorAccent</item>
|
||||||
<item name="colorAccent">@color/md_theme_dark_onBackground</item>
|
<item name="colorAccent">@color/md_theme_dark_onBackground</item>
|
||||||
<item name="android:textColorLink">@color/md_theme_dark_secondary</item>
|
<item name="android:textColorLink">@color/md_theme_dark_secondary</item>
|
||||||
|
<item name="androidBackgroundSecondary">@color/md_theme_dark_tertiaryContainer</item>
|
||||||
|
<item name="androidOnBackgroundSecondary">@color/md_theme_dark_onTertiaryContainer</item>
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
<style name="Theme.P2play.NoActionBar" parent="Theme.P2play">
|
<style name="Theme.P2play.NoActionBar" parent="Theme.P2play">
|
||||||
|
5
app/src/main/res/values/attrs.xml
Normal file
5
app/src/main/res/values/attrs.xml
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<resources>
|
||||||
|
<attr name="androidBackgroundSecondary" format="reference" />
|
||||||
|
<attr name="androidOnBackgroundSecondary" format="reference" />
|
||||||
|
</resources>
|
@ -34,6 +34,7 @@
|
|||||||
<string name="passwordText" translatable="false"> </string>
|
<string name="passwordText" translatable="false"> </string>
|
||||||
<string name="loginBtn">Login now</string>
|
<string name="loginBtn">Login now</string>
|
||||||
<string name="registerActionBtn">Create new account</string>
|
<string name="registerActionBtn">Create new account</string>
|
||||||
|
<string name="twoFactorLabel">Two factor code</string>
|
||||||
<!-- Toast msg -->
|
<!-- Toast msg -->
|
||||||
<string name="loginSuccess_msg">You are now logged in</string>
|
<string name="loginSuccess_msg">You are now logged in</string>
|
||||||
<string name="loginError_msg">An error has occurred</string>
|
<string name="loginError_msg">An error has occurred</string>
|
||||||
@ -94,6 +95,9 @@
|
|||||||
<string name="unSubscribeBtn">Unsubscribe</string>
|
<string name="unSubscribeBtn">Unsubscribe</string>
|
||||||
<string name="commentaryText">Comment</string>
|
<string name="commentaryText">Comment</string>
|
||||||
<string name="showMore">Show more</string>
|
<string name="showMore">Show more</string>
|
||||||
|
<!-- Comments -->
|
||||||
|
<string name="reply">Reply</string>
|
||||||
|
<string name="see_replies">See replies (%1$d)</string>
|
||||||
<!-- Messages -->
|
<!-- Messages -->
|
||||||
<string name="subscribeMsg">You have subscribed to this channel</string>
|
<string name="subscribeMsg">You have subscribed to this channel</string>
|
||||||
<string name="rateMsg">You have rated the video</string>
|
<string name="rateMsg">You have rated the video</string>
|
||||||
|
@ -12,8 +12,10 @@
|
|||||||
<item name="colorSurface">@color/md_theme_light_surface</item>
|
<item name="colorSurface">@color/md_theme_light_surface</item>
|
||||||
<item name="colorOnSurface">@color/md_theme_light_onSurface</item>
|
<item name="colorOnSurface">@color/md_theme_light_onSurface</item>
|
||||||
<item name="colorPrimaryDark">@color/md_theme_light_primary</item>
|
<item name="colorPrimaryDark">@color/md_theme_light_primary</item>
|
||||||
<item name="colorAccent">@color/md_theme_light_onPrimary</item>
|
<item name="colorAccent">@color/md_theme_light_secondary</item>
|
||||||
<item name="android:textColorLink">@color/md_theme_light_secondary</item>
|
<item name="android:textColorLink">@color/md_theme_light_secondary</item>
|
||||||
|
<item name="androidBackgroundSecondary">@color/md_theme_light_tertiaryContainer</item>
|
||||||
|
<item name="androidOnBackgroundSecondary">@color/md_theme_light_onTertiaryContainer</item>
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
<style name="Theme.P2play.NoActionBar" parent="Theme.P2play">
|
<style name="Theme.P2play.NoActionBar" parent="Theme.P2play">
|
||||||
|
31
app/src/main/res/xml/root_preferences.xml
Normal file
31
app/src/main/res/xml/root_preferences.xml
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
<PreferenceScreen xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||||
|
xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
|
|
||||||
|
<PreferenceCategory app:title="@string/pref_header_general">
|
||||||
|
<EditTextPreference
|
||||||
|
app:defaultValue="@string/pref_hostname_error"
|
||||||
|
android:inputType="text"
|
||||||
|
app:key="hostP2play"
|
||||||
|
android:maxLines="1"
|
||||||
|
android:selectAllOnFocus="true"
|
||||||
|
android:singleLine="true"
|
||||||
|
app:useSimpleSummaryProvider="true"
|
||||||
|
app:title="@string/pref_hostname_title" />
|
||||||
|
|
||||||
|
<SwitchPreference
|
||||||
|
app:defaultValue="false"
|
||||||
|
app:key="show_nsfw"
|
||||||
|
app:summary="@string/pref_nfsw_description"
|
||||||
|
app:title="@string/pref_nfsw_title" />
|
||||||
|
|
||||||
|
<EditTextPreference
|
||||||
|
app:defaultValue="15"
|
||||||
|
android:inputType="number"
|
||||||
|
app:key="videos_count"
|
||||||
|
android:selectAllOnFocus="true"
|
||||||
|
app:singleLine="true"
|
||||||
|
app:useSimpleSummaryProvider="true"
|
||||||
|
app:title="@string/pref_videos_count_title" />
|
||||||
|
</PreferenceCategory>
|
||||||
|
|
||||||
|
</PreferenceScreen>
|
@ -1,9 +1,8 @@
|
|||||||
package org.libre.agosto.p2play
|
package org.libre.agosto.p2play
|
||||||
|
|
||||||
|
import org.junit.Assert.assertEquals
|
||||||
import org.junit.Test
|
import org.junit.Test
|
||||||
|
|
||||||
import org.junit.Assert.*
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Example local unit test, which will execute on the development machine (host).
|
* Example local unit test, which will execute on the development machine (host).
|
||||||
*
|
*
|
||||||
|
@ -7,7 +7,7 @@ buildscript {
|
|||||||
mavenCentral()
|
mavenCentral()
|
||||||
}
|
}
|
||||||
dependencies {
|
dependencies {
|
||||||
classpath 'com.android.tools.build:gradle:8.3.0'
|
classpath 'com.android.tools.build:gradle:8.3.2'
|
||||||
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
||||||
// NOTE: Do not place your application dependencies here; they belong
|
// NOTE: Do not place your application dependencies here; they belong
|
||||||
// in the individual module build.gradle files
|
// in the individual module build.gradle files
|
||||||
|
@ -12,6 +12,7 @@ android.useAndroidX=true
|
|||||||
android.defaults.buildfeatures.buildconfig=true
|
android.defaults.buildfeatures.buildconfig=true
|
||||||
android.nonTransitiveRClass=false
|
android.nonTransitiveRClass=false
|
||||||
android.nonFinalResIds=false
|
android.nonFinalResIds=false
|
||||||
|
org.gradle.configuration-cache=true
|
||||||
|
|
||||||
# When configured, Gradle will run in incubating parallel mode.
|
# When configured, Gradle will run in incubating parallel mode.
|
||||||
# This option should only be used with decoupled projects. More details, visit
|
# This option should only be used with decoupled projects. More details, visit
|
||||||
|
6
metadata/en-US/changelogs/10.txt
Normal file
6
metadata/en-US/changelogs/10.txt
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
- 2FA login support!
|
||||||
|
- Background player!
|
||||||
|
- See and reply video threads!
|
||||||
|
- New Setting menu added
|
||||||
|
- Code improved
|
||||||
|
- Bugs fixed
|
Reference in New Issue
Block a user