/* * Twidere - Twitter client for Android * * Copyright (C) 2012-2017 Mariotaku Lee * * 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 . */ package org.mariotaku.twidere.model.util import android.content.ContentResolver import androidx.collection.ArraySet import org.mariotaku.microblog.library.twitter.model.User import org.mariotaku.sqliteqb.library.Expression import org.mariotaku.twidere.extension.bulkInsert import org.mariotaku.twidere.model.ParcelableRelationship import org.mariotaku.twidere.model.ParcelableUser import org.mariotaku.twidere.model.UserKey import org.mariotaku.twidere.provider.TwidereDataStore.CachedRelationships import org.mariotaku.twidere.util.updateItems object ParcelableRelationshipUtils { fun create(user: ParcelableUser, filtering: Boolean): ParcelableRelationship { val obj = ParcelableRelationship() obj.account_key = user.account_key obj.user_key = user.key obj.filtering = filtering if (user.extras != null) { obj.following = user.is_following obj.followed_by = user.extras?.followed_by ?: false obj.blocking = user.extras?.blocking ?: false obj.blocked_by = user.extras?.blocked_by ?: false obj.can_dm = user.extras?.followed_by ?: false obj.notifications_enabled = user.extras?.notifications_enabled ?: false } return obj } fun create(accountKey: UserKey, userKey: UserKey, user: User, filtering: Boolean = false): ParcelableRelationship { val obj = ParcelableRelationship() obj.account_key = accountKey obj.user_key = userKey obj.filtering = filtering obj.following = user.isFollowing == true obj.followed_by = user.isFollowedBy == true obj.blocking = user.isBlocking == true obj.blocked_by = user.isBlockedBy == true obj.can_dm = user.isFollowedBy == true obj.notifications_enabled = user.isNotificationsEnabled == true return obj } /** * @param relationships Relationships to update, if an item has _id, then we will call * `ContentResolver.update`, `ContentResolver.bulkInsert` otherwise. */ fun insert(cr: ContentResolver, relationships: Collection) { val insertItems = ArraySet() relationships.forEach { parcelableRelationship -> if (parcelableRelationship._id > 0) { val where = Expression.equals(CachedRelationships._ID, parcelableRelationship._id).sql cr.updateItems(CachedRelationships.CONTENT_URI, CachedRelationships.COLUMNS, where, null, ParcelableRelationship::class.java) { return@updateItems it } } else { insertItems.add(parcelableRelationship) } } cr.bulkInsert(CachedRelationships.CONTENT_URI, insertItems, ParcelableRelationship::class.java) } }