|
|
|
@ -17,8 +17,6 @@ import org.session.libsession.messaging.jobs.ConfigurationSyncJob
|
|
|
|
|
import org.session.libsession.messaging.jobs.JobQueue
|
|
|
|
|
import org.session.libsession.messaging.messages.Destination
|
|
|
|
|
import org.session.libsession.messaging.messages.control.ConfigurationMessage
|
|
|
|
|
import org.session.libsession.messaging.sending_receiving.MessageSender
|
|
|
|
|
import org.session.libsession.snode.SnodeAPI
|
|
|
|
|
import org.session.libsession.utilities.Address
|
|
|
|
|
import org.session.libsession.utilities.GroupUtil
|
|
|
|
|
import org.session.libsession.utilities.TextSecurePreferences
|
|
|
|
@ -55,61 +53,16 @@ object ConfigurationMessageUtilities {
|
|
|
|
|
fun syncConfigurationIfNeeded(context: Context) {
|
|
|
|
|
// add if check here to schedule new config job process and return early
|
|
|
|
|
val userPublicKey = TextSecurePreferences.getLocalNumber(context) ?: return
|
|
|
|
|
val forcedConfig = TextSecurePreferences.hasForcedNewConfig(context)
|
|
|
|
|
val currentTime = SnodeAPI.nowWithOffset
|
|
|
|
|
if (ConfigBase.isNewConfigEnabled(forcedConfig, currentTime)) {
|
|
|
|
|
scheduleConfigSync(userPublicKey)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
val lastSyncTime = TextSecurePreferences.getLastConfigurationSyncTime(context)
|
|
|
|
|
val now = System.currentTimeMillis()
|
|
|
|
|
if (now - lastSyncTime < 7 * 24 * 60 * 60 * 1000) return
|
|
|
|
|
val contacts = ContactUtilities.getAllContacts(context).filter { recipient ->
|
|
|
|
|
!recipient.name.isNullOrEmpty() && !recipient.isLocalNumber && recipient.address.serialize().isNotEmpty()
|
|
|
|
|
}.map { recipient ->
|
|
|
|
|
ConfigurationMessage.Contact(
|
|
|
|
|
publicKey = recipient.address.serialize(),
|
|
|
|
|
name = recipient.name!!,
|
|
|
|
|
profilePicture = recipient.profileAvatar,
|
|
|
|
|
profileKey = recipient.profileKey,
|
|
|
|
|
isApproved = recipient.isApproved,
|
|
|
|
|
isBlocked = recipient.isBlocked,
|
|
|
|
|
didApproveMe = recipient.hasApprovedMe()
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
val configurationMessage = ConfigurationMessage.getCurrent(contacts) ?: return
|
|
|
|
|
MessageSender.send(configurationMessage, Address.fromSerialized(userPublicKey))
|
|
|
|
|
TextSecurePreferences.setLastConfigurationSyncTime(context, now)
|
|
|
|
|
scheduleConfigSync(userPublicKey)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fun forceSyncConfigurationNowIfNeeded(context: Context): Promise<Unit, Exception> {
|
|
|
|
|
// add if check here to schedule new config job process and return early
|
|
|
|
|
val userPublicKey = TextSecurePreferences.getLocalNumber(context) ?: return Promise.ofFail(NullPointerException("User Public Key is null"))
|
|
|
|
|
val forcedConfig = TextSecurePreferences.hasForcedNewConfig(context)
|
|
|
|
|
val currentTime = SnodeAPI.nowWithOffset
|
|
|
|
|
if (ConfigBase.isNewConfigEnabled(forcedConfig, currentTime)) {
|
|
|
|
|
// schedule job if none exist
|
|
|
|
|
// don't schedule job if we already have one
|
|
|
|
|
scheduleConfigSync(userPublicKey)
|
|
|
|
|
return Promise.ofSuccess(Unit)
|
|
|
|
|
}
|
|
|
|
|
val contacts = ContactUtilities.getAllContacts(context).filter { recipient ->
|
|
|
|
|
!recipient.isGroupRecipient && !recipient.name.isNullOrEmpty() && !recipient.isLocalNumber && recipient.address.serialize().isNotEmpty()
|
|
|
|
|
}.map { recipient ->
|
|
|
|
|
ConfigurationMessage.Contact(
|
|
|
|
|
publicKey = recipient.address.serialize(),
|
|
|
|
|
name = recipient.name!!,
|
|
|
|
|
profilePicture = recipient.profileAvatar,
|
|
|
|
|
profileKey = recipient.profileKey,
|
|
|
|
|
isApproved = recipient.isApproved,
|
|
|
|
|
isBlocked = recipient.isBlocked,
|
|
|
|
|
didApproveMe = recipient.hasApprovedMe()
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
val configurationMessage = ConfigurationMessage.getCurrent(contacts) ?: return Promise.ofSuccess(Unit)
|
|
|
|
|
val promise = MessageSender.send(configurationMessage, Destination.from(Address.fromSerialized(userPublicKey)), isSyncMessage = true)
|
|
|
|
|
TextSecurePreferences.setLastConfigurationSyncTime(context, System.currentTimeMillis())
|
|
|
|
|
return promise
|
|
|
|
|
// schedule job if none exist
|
|
|
|
|
// don't schedule job if we already have one
|
|
|
|
|
scheduleConfigSync(userPublicKey)
|
|
|
|
|
return Promise.ofSuccess(Unit)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private fun maybeUserSecretKey() = MessagingModuleConfiguration.shared.getUserED25519KeyPair()?.secretKey?.asBytes
|
|
|
|
|