From 22bf305a59092e9c4d4afa9f50b60ac69483013c Mon Sep 17 00:00:00 2001 From: hexated Date: Wed, 21 Sep 2022 23:50:35 +0700 Subject: [PATCH] update home 123tv --- OnetwothreeTv/build.gradle.kts | 2 +- .../main/kotlin/com/hexated/OnetwothreeTv.kt | 35 ++++++++++++------- 2 files changed, 23 insertions(+), 14 deletions(-) diff --git a/OnetwothreeTv/build.gradle.kts b/OnetwothreeTv/build.gradle.kts index e6e4a51c..9bcf3679 100644 --- a/OnetwothreeTv/build.gradle.kts +++ b/OnetwothreeTv/build.gradle.kts @@ -1,5 +1,5 @@ // use an integer for version numbers -version = 1 +version = 2 cloudstream { diff --git a/OnetwothreeTv/src/main/kotlin/com/hexated/OnetwothreeTv.kt b/OnetwothreeTv/src/main/kotlin/com/hexated/OnetwothreeTv.kt index 3139733a..0329a864 100644 --- a/OnetwothreeTv/src/main/kotlin/com/hexated/OnetwothreeTv.kt +++ b/OnetwothreeTv/src/main/kotlin/com/hexated/OnetwothreeTv.kt @@ -22,21 +22,30 @@ class OnetwothreeTv : MainAPI() { TvType.Live ) + override val mainPage = mainPageOf( + "1" to "United States (USA)", + "$mainUrl/top-streams/" to "Top Streams", + "$mainUrl/latest-streams/" to "Latest Streams", + ) + override suspend fun getMainPage(page: Int, request: MainPageRequest): HomePageResponse { - val homePageList = ArrayList() - listOf( - Pair("$mainUrl/category/united-states-usa/", "United States (USA)"), - Pair("$mainUrl/top-streams/", "Top Streams"), - Pair("$mainUrl/latest-streams/", "Latest Streams") - ).apmap { - val home = - app.get(it.first).document.select("div.videos-latest-list.row div.col-md-3.col-sm-6") - .mapNotNull { item -> - item.toSearchResult() - } - if (home.isNotEmpty()) homePageList.add(HomePageList(it.second, home, true)) + + val document = if(request.name.contains("USA")) { + app.post( "$mainUrl/wp-admin/admin-ajax.php" , data = mapOf( + "action" to "_123tv_load_more_videos_from_category", + "cat_id" to request.data, + "page_num" to "${page.minus(1)}" + ), headers = mapOf( + "X-Requested-With" to "XMLHttpRequest" + )).document + } else { + app.get(request.data).document } - return HomePageResponse(homePageList) + val home = document.select("div.col-md-3.col-sm-6").mapNotNull { + it.toSearchResult() + } + return newHomePageResponse(request.name, home) + } private fun Element.toSearchResult(): LiveSearchResponse? {