mirror of https://github.com/Ashinch/ReadYou.git
replace URL inputstream with okhttp inputstream in RssHelper (#85)
* add okhttp3 in ext, and add okhttp-coroutines-jvm lib * replace URL inputstream with okhttp buffered inputstream in RssHelper * use executeAsync for parseFullContent in RssHelper * make searchFeed call without queryRssXml in RssHelper
This commit is contained in:
parent
fc82363196
commit
a94017d564
|
@ -113,10 +113,11 @@ dependencies {
|
||||||
implementation("io.coil-kt:coil-svg:$coil")
|
implementation("io.coil-kt:coil-svg:$coil")
|
||||||
implementation("io.coil-kt:coil-gif:$coil")
|
implementation("io.coil-kt:coil-gif:$coil")
|
||||||
|
|
||||||
implementation "org.conscrypt:conscrypt-android:2.5.2"
|
implementation 'org.conscrypt:conscrypt-android:2.5.2'
|
||||||
|
|
||||||
// https://square.github.io/okhttp/changelogs/changelog/
|
// https://square.github.io/okhttp/changelogs/changelog/
|
||||||
implementation "com.squareup.okhttp3:okhttp:$okhttp"
|
implementation "com.squareup.okhttp3:okhttp:$okhttp"
|
||||||
|
implementation "com.squareup.okhttp3:okhttp-coroutines-jvm:$okhttp"
|
||||||
implementation "com.squareup.retrofit2:retrofit:$retrofit2"
|
implementation "com.squareup.retrofit2:retrofit:$retrofit2"
|
||||||
implementation "com.squareup.retrofit2:converter-gson:$retrofit2"
|
implementation "com.squareup.retrofit2:converter-gson:$retrofit2"
|
||||||
|
|
||||||
|
|
|
@ -45,7 +45,6 @@ import javax.net.ssl.X509TrustManager
|
||||||
@Module
|
@Module
|
||||||
@InstallIn(SingletonComponent::class)
|
@InstallIn(SingletonComponent::class)
|
||||||
object OkHttpClientModule {
|
object OkHttpClientModule {
|
||||||
|
|
||||||
@Provides
|
@Provides
|
||||||
@Singleton
|
@Singleton
|
||||||
fun provideOkHttpClient(
|
fun provideOkHttpClient(
|
||||||
|
|
|
@ -3,6 +3,7 @@ package me.ash.reader.data.repository
|
||||||
import android.content.Context
|
import android.content.Context
|
||||||
import android.text.Html
|
import android.text.Html
|
||||||
import android.util.Log
|
import android.util.Log
|
||||||
|
import com.rometools.rome.feed.synd.SyndEntry
|
||||||
import com.rometools.rome.feed.synd.SyndFeed
|
import com.rometools.rome.feed.synd.SyndFeed
|
||||||
import com.rometools.rome.io.SyndFeedInput
|
import com.rometools.rome.io.SyndFeedInput
|
||||||
import com.rometools.rome.io.XmlReader
|
import com.rometools.rome.io.XmlReader
|
||||||
|
@ -20,7 +21,8 @@ import net.dankito.readability4j.Readability4J
|
||||||
import net.dankito.readability4j.extended.Readability4JExtended
|
import net.dankito.readability4j.extended.Readability4JExtended
|
||||||
import okhttp3.OkHttpClient
|
import okhttp3.OkHttpClient
|
||||||
import okhttp3.Request
|
import okhttp3.Request
|
||||||
import java.net.URL
|
import okhttp3.executeAsync
|
||||||
|
import java.io.InputStream
|
||||||
import java.util.*
|
import java.util.*
|
||||||
import javax.inject.Inject
|
import javax.inject.Inject
|
||||||
|
|
||||||
|
@ -35,7 +37,8 @@ class RssHelper @Inject constructor(
|
||||||
suspend fun searchFeed(feedLink: String): FeedWithArticle {
|
suspend fun searchFeed(feedLink: String): FeedWithArticle {
|
||||||
return withContext(dispatcherIO) {
|
return withContext(dispatcherIO) {
|
||||||
val accountId = context.currentAccountId
|
val accountId = context.currentAccountId
|
||||||
val parseRss: SyndFeed = SyndFeedInput().build(XmlReader(URL(feedLink)))
|
val parseRss: SyndFeed =
|
||||||
|
SyndFeedInput().build(XmlReader(inputStream(okHttpClient, feedLink)))
|
||||||
val feed = Feed(
|
val feed = Feed(
|
||||||
id = accountId.spacerDollar(UUID.randomUUID().toString()),
|
id = accountId.spacerDollar(UUID.randomUUID().toString()),
|
||||||
name = parseRss.title!!,
|
name = parseRss.title!!,
|
||||||
|
@ -43,7 +46,8 @@ class RssHelper @Inject constructor(
|
||||||
groupId = "",
|
groupId = "",
|
||||||
accountId = accountId,
|
accountId = accountId,
|
||||||
)
|
)
|
||||||
FeedWithArticle(feed, queryRssXml(feed))
|
val list = parseRss.entries.map { article(feed, context.currentAccountId, it) }
|
||||||
|
FeedWithArticle(feed, list)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -57,9 +61,7 @@ class RssHelper @Inject constructor(
|
||||||
@Throws(Exception::class)
|
@Throws(Exception::class)
|
||||||
suspend fun parseFullContent(link: String, title: String): String {
|
suspend fun parseFullContent(link: String, title: String): String {
|
||||||
return withContext(dispatcherIO) {
|
return withContext(dispatcherIO) {
|
||||||
val response = okHttpClient
|
val response = response(okHttpClient, link)
|
||||||
.newCall(Request.Builder().url(link).build())
|
|
||||||
.execute()
|
|
||||||
val content = response.body!!.string()
|
val content = response.body!!.string()
|
||||||
val readability4J: Readability4J =
|
val readability4J: Readability4J =
|
||||||
Readability4JExtended(link, content)
|
Readability4JExtended(link, content)
|
||||||
|
@ -82,18 +84,24 @@ class RssHelper @Inject constructor(
|
||||||
latestLink: String? = null,
|
latestLink: String? = null,
|
||||||
): List<Article> {
|
): List<Article> {
|
||||||
return withContext(dispatcherIO) {
|
return withContext(dispatcherIO) {
|
||||||
val a = mutableListOf<Article>()
|
|
||||||
val accountId = context.currentAccountId
|
val accountId = context.currentAccountId
|
||||||
val parseRss: SyndFeed = SyndFeedInput().build(
|
val parseRss: SyndFeed = SyndFeedInput().build(
|
||||||
XmlReader(URL(feed.url).openConnection().apply {
|
XmlReader(inputStream(okHttpClient, feed.url))
|
||||||
connectTimeout = 5000
|
|
||||||
readTimeout = 5000
|
|
||||||
})
|
|
||||||
)
|
)
|
||||||
parseRss.entries.forEach {
|
parseRss.entries.asSequence()
|
||||||
if (latestLink != null && latestLink == it.link) return@withContext a
|
.takeWhile { latestLink == null || latestLink != it.link }
|
||||||
val desc = it.description?.value
|
.map { article(feed, accountId, it) }
|
||||||
val content = it.contents
|
.toList()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun article(
|
||||||
|
feed: Feed,
|
||||||
|
accountId: Int,
|
||||||
|
syndEntry: SyndEntry
|
||||||
|
): Article {
|
||||||
|
val desc = syndEntry.description?.value
|
||||||
|
val content = syndEntry.contents
|
||||||
.takeIf { it.isNotEmpty() }
|
.takeIf { it.isNotEmpty() }
|
||||||
?.let { it.joinToString("\n") { it.value } }
|
?.let { it.joinToString("\n") { it.value } }
|
||||||
Log.i(
|
Log.i(
|
||||||
|
@ -101,19 +109,18 @@ class RssHelper @Inject constructor(
|
||||||
"request rss:\n" +
|
"request rss:\n" +
|
||||||
"name: ${feed.name}\n" +
|
"name: ${feed.name}\n" +
|
||||||
"feedUrl: ${feed.url}\n" +
|
"feedUrl: ${feed.url}\n" +
|
||||||
"url: ${it.link}\n" +
|
"url: ${syndEntry.link}\n" +
|
||||||
"title: ${it.title}\n" +
|
"title: ${syndEntry.title}\n" +
|
||||||
"desc: ${desc}\n" +
|
"desc: ${desc}\n" +
|
||||||
"content: ${content}\n"
|
"content: ${content}\n"
|
||||||
)
|
)
|
||||||
a.add(
|
return Article(
|
||||||
Article(
|
|
||||||
id = accountId.spacerDollar(UUID.randomUUID().toString()),
|
id = accountId.spacerDollar(UUID.randomUUID().toString()),
|
||||||
accountId = accountId,
|
accountId = accountId,
|
||||||
feedId = feed.id,
|
feedId = feed.id,
|
||||||
date = it.publishedDate ?: it.updatedDate ?: Date(),
|
date = syndEntry.publishedDate ?: syndEntry.updatedDate ?: Date(),
|
||||||
title = Html.fromHtml(it.title.toString()).toString(),
|
title = Html.fromHtml(syndEntry.title.toString()).toString(),
|
||||||
author = it.author,
|
author = syndEntry.author,
|
||||||
rawDescription = (content ?: desc) ?: "",
|
rawDescription = (content ?: desc) ?: "",
|
||||||
shortDescription = (Readability4JExtended("", desc ?: content ?: "")
|
shortDescription = (Readability4JExtended("", desc ?: content ?: "")
|
||||||
.parse().textContent ?: "")
|
.parse().textContent ?: "")
|
||||||
|
@ -121,12 +128,8 @@ class RssHelper @Inject constructor(
|
||||||
.trim(),
|
.trim(),
|
||||||
fullContent = content,
|
fullContent = content,
|
||||||
img = findImg((content ?: desc) ?: ""),
|
img = findImg((content ?: desc) ?: ""),
|
||||||
link = it.link ?: "",
|
link = syndEntry.link ?: "",
|
||||||
)
|
)
|
||||||
)
|
|
||||||
}
|
|
||||||
a
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun findImg(rawDescription: String): String? {
|
private fun findImg(rawDescription: String): String? {
|
||||||
|
@ -146,9 +149,7 @@ class RssHelper @Inject constructor(
|
||||||
) {
|
) {
|
||||||
withContext(dispatcherIO) {
|
withContext(dispatcherIO) {
|
||||||
val domainRegex = Regex("(http|https)://(www.)?(\\w+(\\.)?)+")
|
val domainRegex = Regex("(http|https)://(www.)?(\\w+(\\.)?)+")
|
||||||
val request = OkHttpClient()
|
val request = response(okHttpClient, articleLink)
|
||||||
.newCall(Request.Builder().url(articleLink).build())
|
|
||||||
.execute()
|
|
||||||
val content = request.body!!.string()
|
val content = request.body!!.string()
|
||||||
val regex =
|
val regex =
|
||||||
Regex("""<link(.+?)rel="shortcut icon"(.+?)href="(.+?)"""")
|
Regex("""<link(.+?)rel="shortcut icon"(.+?)href="(.+?)"""")
|
||||||
|
@ -168,10 +169,7 @@ class RssHelper @Inject constructor(
|
||||||
} else {
|
} else {
|
||||||
domainRegex.find(articleLink)?.value?.let {
|
domainRegex.find(articleLink)?.value?.let {
|
||||||
Log.i("RLog", "favicon: ${it}")
|
Log.i("RLog", "favicon: ${it}")
|
||||||
val request = OkHttpClient()
|
if (response(okHttpClient, "$it/favicon.ico").isSuccessful) {
|
||||||
.newCall(Request.Builder().url("$it/favicon.ico").build())
|
|
||||||
.execute()
|
|
||||||
if (request.isSuccessful) {
|
|
||||||
saveRssIcon(feedDao, feed, it)
|
saveRssIcon(feedDao, feed, it)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -186,4 +184,14 @@ class RssHelper @Inject constructor(
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private suspend fun inputStream(
|
||||||
|
client: OkHttpClient,
|
||||||
|
url: String
|
||||||
|
): InputStream = response(client, url).body!!.byteStream()
|
||||||
|
|
||||||
|
private suspend fun response(
|
||||||
|
client: OkHttpClient,
|
||||||
|
url: String
|
||||||
|
) = client.newCall(Request.Builder().url(url).build()).executeAsync()
|
||||||
}
|
}
|
Loading…
Reference in New Issue