Twidere-App-Android-Twitter.../twidere/src/main/kotlin/org/mariotaku/twidere/loader/statuses/MediaTimelineLoader.kt

145 lines
6.5 KiB
Kotlin
Raw Normal View History

2016-07-02 06:37:42 +02:00
/*
2017-04-21 11:23:55 +02:00
* Twidere - Twitter client for Android
*
* Copyright (C) 2012-2017 Mariotaku Lee <mariotaku.lee@gmail.com>
*
2016-07-02 06:37:42 +02:00
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
2017-04-21 11:23:55 +02:00
*
2016-07-02 06:37:42 +02:00
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
2017-04-21 11:23:55 +02:00
*
2016-07-02 06:37:42 +02:00
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
2017-04-21 11:23:55 +02:00
package org.mariotaku.twidere.loader.statuses
2016-07-02 06:37:42 +02:00
import android.content.Context
import android.database.sqlite.SQLiteDatabase
import android.support.annotation.WorkerThread
2017-01-12 17:26:44 +01:00
import org.mariotaku.ktextension.isNullOrEmpty
2016-07-02 06:37:42 +02:00
import org.mariotaku.microblog.library.MicroBlog
import org.mariotaku.microblog.library.MicroBlogException
2017-04-19 13:30:07 +02:00
import org.mariotaku.microblog.library.mastodon.Mastodon
2016-07-02 06:37:42 +02:00
import org.mariotaku.microblog.library.twitter.model.*
2016-12-03 06:48:40 +01:00
import org.mariotaku.twidere.annotation.AccountType
2017-04-20 14:04:37 +02:00
import org.mariotaku.twidere.extension.api.tryShowUser
2017-04-19 13:30:07 +02:00
import org.mariotaku.twidere.extension.model.api.mastodon.toParcelable
2017-04-19 08:50:47 +02:00
import org.mariotaku.twidere.extension.model.api.toParcelable
2016-12-04 04:58:03 +01:00
import org.mariotaku.twidere.extension.model.isOfficial
2017-04-19 08:50:47 +02:00
import org.mariotaku.twidere.extension.model.newMicroBlogInstance
2017-04-21 11:23:55 +02:00
import org.mariotaku.twidere.loader.statuses.AbsRequestStatusesLoader
import org.mariotaku.twidere.loader.statuses.UserTimelineLoader
2016-12-04 04:58:03 +01:00
import org.mariotaku.twidere.model.AccountDetails
2016-07-02 06:37:42 +02:00
import org.mariotaku.twidere.model.ParcelableStatus
import org.mariotaku.twidere.model.UserKey
2016-12-04 04:58:03 +01:00
import org.mariotaku.twidere.util.DataStoreUtils
import org.mariotaku.twidere.util.InternalTwitterContentUtils
2017-04-19 13:30:07 +02:00
import org.mariotaku.microblog.library.mastodon.model.TimelineOption as MastodonTimelineOption
2016-07-02 06:37:42 +02:00
class MediaTimelineLoader(
context: Context,
2017-03-07 13:02:46 +01:00
accountKey: UserKey?,
2016-07-02 06:37:42 +02:00
private val userKey: UserKey?,
private val screenName: String?,
sinceId: String?,
maxId: String?,
data: List<ParcelableStatus>?,
savedStatusesArgs: Array<String>?,
tabPosition: Int,
fromUser: Boolean,
loadingMore: Boolean
) : AbsRequestStatusesLoader(context, accountKey, sinceId, maxId, -1, data, savedStatusesArgs,
2016-07-02 06:37:42 +02:00
tabPosition, fromUser, loadingMore) {
private var user: User? = null
2017-04-19 08:50:47 +02:00
private val isMyTimeline: Boolean
get() {
val accountKey = accountKey ?: return false
if (userKey != null) {
return userKey.maybeEquals(accountKey)
} else {
val accountScreenName = DataStoreUtils.getAccountScreenName(context, accountKey)
2017-04-19 13:30:07 +02:00
return accountScreenName != null && accountScreenName.equals(screenName, ignoreCase = true)
2017-04-19 08:50:47 +02:00
}
}
2016-07-02 06:37:42 +02:00
@Throws(MicroBlogException::class)
2017-04-19 08:50:47 +02:00
override fun getStatuses(account: AccountDetails, paging: Paging): List<ParcelableStatus> {
2017-04-19 13:30:07 +02:00
when (account.type) {
AccountType.MASTODON -> return getMastodonStatuses(account, paging)
else -> return getMicroBlogStatuses(account, paging).map {
it.toParcelable(account.key, account.type, profileImageSize)
}
2017-04-19 08:50:47 +02:00
}
}
@WorkerThread
override fun shouldFilterStatus(database: SQLiteDatabase, status: ParcelableStatus): Boolean {
if (status.media.isNullOrEmpty()) return false
val retweetUserKey = status.user_key.takeIf { status.is_retweet }
return !isMyTimeline && InternalTwitterContentUtils.isFiltered(database, retweetUserKey,
status.text_plain, status.quoted_text_plain, status.spans, status.quoted_spans,
status.source, status.quoted_source, null, status.quoted_user_key)
}
private fun getMicroBlogStatuses(account: AccountDetails, paging: Paging): ResponseList<Status> {
val microBlog = account.newMicroBlogInstance(context, MicroBlog::class.java)
when (account.type) {
2016-12-03 06:48:40 +01:00
AccountType.TWITTER -> {
2017-04-19 08:50:47 +02:00
if (account.isOfficial(context)) {
2016-07-02 06:37:42 +02:00
if (userKey != null) {
return microBlog.getMediaTimeline(userKey.id, paging)
}
if (screenName != null) {
return microBlog.getMediaTimelineByScreenName(screenName, paging)
}
} else {
2017-04-19 08:50:47 +02:00
val screenName = this.screenName ?: run {
return@run this.user ?: run fetchUser@ {
if (userKey == null) throw MicroBlogException("Invalid parameters")
2017-04-20 14:04:37 +02:00
val user = microBlog.tryShowUser(userKey.id, null, account.type)
2017-04-19 08:50:47 +02:00
this.user = user
return@fetchUser user
}.screenName
2016-07-02 06:37:42 +02:00
}
2016-12-04 04:58:03 +01:00
val query = SearchQuery("from:$screenName filter:media exclude:retweets")
2016-07-02 06:37:42 +02:00
query.paging(paging)
val result = ResponseList<Status>()
2017-01-12 17:26:44 +01:00
microBlog.search(query).filterTo(result) { status ->
2016-07-02 06:37:42 +02:00
val user = status.user
2017-01-12 17:26:44 +01:00
return@filterTo user.id == userKey?.id
|| user.screenName.equals(this.screenName, ignoreCase = true)
2016-07-02 06:37:42 +02:00
}
return result
}
throw MicroBlogException("Wrong user")
}
2016-12-03 06:48:40 +01:00
AccountType.FANFOU -> {
2016-07-02 06:37:42 +02:00
if (userKey != null) {
return microBlog.getPhotosUserTimeline(userKey.id, paging)
}
if (screenName != null) {
return microBlog.getPhotosUserTimeline(screenName, paging)
}
throw MicroBlogException("Wrong user")
}
}
throw MicroBlogException("Not implemented")
}
2017-04-19 13:30:07 +02:00
private fun getMastodonStatuses(account: AccountDetails, paging: Paging): List<ParcelableStatus> {
val mastodon = account.newMicroBlogInstance(context, Mastodon::class.java)
2017-04-21 11:23:55 +02:00
val option = org.mariotaku.microblog.library.mastodon.model.TimelineOption()
2017-04-19 13:30:07 +02:00
option.onlyMedia(true)
return UserTimelineLoader.getMastodonStatuses(mastodon, userKey, screenName, paging,
option).map { it.toParcelable(account.key) }
}
2016-07-02 06:37:42 +02:00
}