mirror of
https://github.com/oxen-io/session-android.git
synced 2024-12-22 16:07:30 +00:00
Clean
This commit is contained in:
parent
a900c389bc
commit
781a8500df
@ -356,7 +356,7 @@ def assembleWebsiteDescriptor = { variant, file ->
|
|||||||
descriptorFile.write(descriptor)
|
descriptorFile.write(descriptor)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
/*
|
||||||
def signProductionRelease = { variant ->
|
def signProductionRelease = { variant ->
|
||||||
variant.outputs.collect { output ->
|
variant.outputs.collect { output ->
|
||||||
String apkName = output.outputFile.name
|
String apkName = output.outputFile.name
|
||||||
@ -397,6 +397,7 @@ tasks.whenTaskAdded { task ->
|
|||||||
task.finalizedBy signProductionWebsiteRelease
|
task.finalizedBy signProductionWebsiteRelease
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
def getLastCommitTimestamp() {
|
def getLastCommitTimestamp() {
|
||||||
new ByteArrayOutputStream().withStream { os ->
|
new ByteArrayOutputStream().withStream { os ->
|
||||||
|
@ -232,7 +232,6 @@ import java.util.concurrent.atomic.AtomicBoolean;
|
|||||||
import java.util.concurrent.atomic.AtomicInteger;
|
import java.util.concurrent.atomic.AtomicInteger;
|
||||||
|
|
||||||
import kotlin.Unit;
|
import kotlin.Unit;
|
||||||
import kotlin.jvm.functions.Function1;
|
|
||||||
import network.loki.messenger.R;
|
import network.loki.messenger.R;
|
||||||
|
|
||||||
import static org.thoughtcrime.securesms.TransportOption.Type;
|
import static org.thoughtcrime.securesms.TransportOption.Type;
|
||||||
@ -2122,31 +2121,13 @@ public class ConversationActivity extends PassphraseRequiredActionBarActivity
|
|||||||
final int subscriptionId,
|
final int subscriptionId,
|
||||||
final boolean initiating)
|
final boolean initiating)
|
||||||
{
|
{
|
||||||
final SettableFuture<Void> future = new SettableFuture<>();
|
|
||||||
|
|
||||||
boolean isLokiPublicChat = isGroupConversation(); // TODO: Figure out a better way of determining this
|
boolean isLokiPublicChat = isGroupConversation(); // TODO: Figure out a better way of determining this
|
||||||
if (isLokiPublicChat) {
|
if (isLokiPublicChat) {
|
||||||
String hexEncodedPublicKey = TextSecurePreferences.getLocalNumber(this);
|
try {
|
||||||
String displayName = DatabaseFactory.getLokiAPIDatabase(this).getUserDisplayName();
|
return sendGroupMessage();
|
||||||
if (displayName == null) displayName = "Anonymous";
|
} catch (Exception e) {
|
||||||
long timestamp = new Date().getTime();
|
// Do nothing
|
||||||
LokiGroupMessage message = new LokiGroupMessage(hexEncodedPublicKey, displayName, body, timestamp);
|
|
||||||
LokiGroupChatAPI.sendMessage(message, LokiGroupChatAPI.getPublicChatID()).success(new Function1<Unit, Unit>() {
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public Unit invoke(Unit unit) {
|
|
||||||
future.set(null);
|
|
||||||
return Unit.INSTANCE;
|
|
||||||
}
|
}
|
||||||
}).fail(new Function1<Exception, Unit>() {
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public Unit invoke(Exception e) {
|
|
||||||
future.setException(e);
|
|
||||||
return Unit.INSTANCE;
|
|
||||||
}
|
|
||||||
});
|
|
||||||
return future;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!isDefaultSms && (!isSecureText || forceSms)) {
|
if (!isDefaultSms && (!isSecureText || forceSms)) {
|
||||||
@ -2165,6 +2146,7 @@ public class ConversationActivity extends PassphraseRequiredActionBarActivity
|
|||||||
|
|
||||||
OutgoingMediaMessage outgoingMessageCandidate = new OutgoingMediaMessage(recipient, slideDeck, body, System.currentTimeMillis(), subscriptionId, expiresIn, distributionType, inputPanel.getQuote().orNull(), contacts, previews);
|
OutgoingMediaMessage outgoingMessageCandidate = new OutgoingMediaMessage(recipient, slideDeck, body, System.currentTimeMillis(), subscriptionId, expiresIn, distributionType, inputPanel.getQuote().orNull(), contacts, previews);
|
||||||
|
|
||||||
|
final SettableFuture<Void> future = new SettableFuture<>();
|
||||||
final Context context = getApplicationContext();
|
final Context context = getApplicationContext();
|
||||||
|
|
||||||
final OutgoingMediaMessage outgoingMessage;
|
final OutgoingMediaMessage outgoingMessage;
|
||||||
@ -2213,27 +2195,7 @@ public class ConversationActivity extends PassphraseRequiredActionBarActivity
|
|||||||
throws InvalidMessageException
|
throws InvalidMessageException
|
||||||
{
|
{
|
||||||
boolean isLokiPublicChat = isGroupConversation(); // TODO: Figure out a better way of determining this
|
boolean isLokiPublicChat = isGroupConversation(); // TODO: Figure out a better way of determining this
|
||||||
if (isLokiPublicChat) {
|
if (isLokiPublicChat) { sendGroupMessage(); return; }
|
||||||
String hexEncodedPublicKey = TextSecurePreferences.getLocalNumber(this);
|
|
||||||
String displayName = DatabaseFactory.getLokiAPIDatabase(this).getUserDisplayName();
|
|
||||||
if (displayName == null) displayName = "Anonymous";
|
|
||||||
long timestamp = new Date().getTime();
|
|
||||||
LokiGroupMessage message = new LokiGroupMessage(hexEncodedPublicKey, displayName, getMessage(), timestamp);
|
|
||||||
LokiGroupChatAPI.sendMessage(message, LokiGroupChatAPI.getPublicChatID()).success(new Function1<Unit, Unit>() {
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public Unit invoke(Unit unit) {
|
|
||||||
return Unit.INSTANCE;
|
|
||||||
}
|
|
||||||
}).fail(new Function1<Exception, Unit>() {
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public Unit invoke(Exception e) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
});
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!isDefaultSms && (!isSecureText || forceSms)) {
|
if (!isDefaultSms && (!isSecureText || forceSms)) {
|
||||||
showDefaultSmsPrompt();
|
showDefaultSmsPrompt();
|
||||||
@ -2791,5 +2753,22 @@ public class ConversationActivity extends PassphraseRequiredActionBarActivity
|
|||||||
String contactID = DatabaseFactory.getThreadDatabase(this).getRecipientForThreadId(this.threadId).getAddress().toString();
|
String contactID = DatabaseFactory.getThreadDatabase(this).getRecipientForThreadId(this.threadId).getAddress().toString();
|
||||||
DatabaseFactory.getLokiPreKeyBundleDatabase(this).removePreKeyBundle(contactID);
|
DatabaseFactory.getLokiPreKeyBundleDatabase(this).removePreKeyBundle(contactID);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public ListenableFuture<Void> sendGroupMessage() throws InvalidMessageException {
|
||||||
|
final SettableFuture<Void> future = new SettableFuture<>();
|
||||||
|
String hexEncodedPublicKey = TextSecurePreferences.getLocalNumber(this);
|
||||||
|
String displayName = DatabaseFactory.getLokiAPIDatabase(this).getUserDisplayName();
|
||||||
|
if (displayName == null) displayName = "Anonymous";
|
||||||
|
long timestamp = new Date().getTime();
|
||||||
|
LokiGroupMessage message = new LokiGroupMessage(hexEncodedPublicKey, displayName, getMessage(), timestamp);
|
||||||
|
LokiGroupChatAPI.sendMessage(message, LokiGroupChatAPI.getPublicChatID()).success(unit -> {
|
||||||
|
future.set(null);
|
||||||
|
return Unit.INSTANCE;
|
||||||
|
}).fail(e -> {
|
||||||
|
future.setException(e);
|
||||||
|
return Unit.INSTANCE;
|
||||||
|
});
|
||||||
|
return future;
|
||||||
|
}
|
||||||
// endregion
|
// endregion
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user