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

130 lines
5.4 KiB
Kotlin
Raw Normal View History

2016-07-02 06:37:42 +02:00
/*
* Twidere - Twitter client for Android
*
* Copyright (C) 2012-2014 Mariotaku Lee <mariotaku.lee@gmail.com>
*
* 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.
*
* 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.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package org.mariotaku.twidere.loader
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
import org.mariotaku.microblog.library.twitter.model.*
2016-12-03 06:48:40 +01:00
import org.mariotaku.twidere.annotation.AccountType
2016-12-04 04:58:03 +01:00
import org.mariotaku.twidere.extension.model.isOfficial
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
import org.mariotaku.twidere.util.TwitterWrapper
2016-07-02 06:37:42 +02:00
class MediaTimelineLoader(
context: Context,
accountKey: UserKey,
private val userKey: UserKey?,
private val screenName: String?,
sinceId: String?,
maxId: String?,
data: List<ParcelableStatus>?,
savedStatusesArgs: Array<String>?,
tabPosition: Int,
fromUser: Boolean,
loadingMore: Boolean
) : MicroBlogAPIStatusesLoader(context, accountKey, sinceId, maxId, -1, data, savedStatusesArgs,
tabPosition, fromUser, loadingMore) {
private var user: User? = null
@Throws(MicroBlogException::class)
override fun getStatuses(microBlog: MicroBlog,
2016-12-04 04:58:03 +01:00
details: AccountDetails,
2016-07-02 06:37:42 +02:00
paging: Paging): ResponseList<Status> {
val context = context
2016-12-04 04:58:03 +01:00
when (details.type) {
2016-12-03 06:48:40 +01:00
AccountType.TWITTER -> {
2016-12-04 04:58:03 +01:00
if (details.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 {
val screenName: String
if (this.screenName != null) {
screenName = this.screenName
} else if (userKey != null) {
if (user == null) {
user = TwitterWrapper.tryShowUser(microBlog, userKey.id, null,
2016-12-04 04:58:03 +01:00
details.type)
2016-07-02 06:37:42 +02:00
}
screenName = user!!.screenName
} else {
throw MicroBlogException("Invalid parameters")
}
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
if (status.mediaEntities.isNullOrEmpty()) {
return@filterTo false
2016-07-02 06:37:42 +02:00
}
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")
}
@WorkerThread
override fun shouldFilterStatus(database: SQLiteDatabase, status: ParcelableStatus): Boolean {
val retweetUserId = if (status.is_retweet) status.user_key else null
return !isMyTimeline && InternalTwitterContentUtils.isFiltered(database, retweetUserId,
status.text_plain, status.quoted_text_plain, status.spans, status.quoted_spans,
status.source, status.quoted_source, null, status.quoted_user_key)
}
private val isMyTimeline: Boolean
get() {
val accountKey = accountKey ?: return false
if (userKey != null) {
return userKey.maybeEquals(accountKey)
} else {
val accountScreenName = DataStoreUtils.getAccountScreenName(context, accountKey)
return accountScreenName != null && accountScreenName.equals(screenName!!, ignoreCase = true)
}
}
}