mirror of
https://github.com/syncthing/syncthing-android.git
synced 2024-11-26 14:21:16 +00:00
Merge branch 'syncthing-v0.12'
This commit is contained in:
commit
ace095de56
2 changed files with 46 additions and 18 deletions
|
@ -1 +1 @@
|
|||
Subproject commit feffc0416fc7a6267b1da7fab10164742fbc60c9
|
||||
Subproject commit f3dc78d457d119dbffba42332f499151a5705ef4
|
|
@ -3,10 +3,7 @@ package com.nutomic.syncthingandroid.util;
|
|||
import android.content.Context;
|
||||
import android.os.Build;
|
||||
import android.os.Environment;
|
||||
import android.os.Handler;
|
||||
import android.os.Looper;
|
||||
import android.util.Log;
|
||||
import android.widget.Toast;
|
||||
|
||||
import com.nutomic.syncthingandroid.R;
|
||||
import com.nutomic.syncthingandroid.syncthing.SyncthingRunnable;
|
||||
|
@ -19,6 +16,7 @@ import org.xml.sax.SAXException;
|
|||
|
||||
import java.io.File;
|
||||
import java.io.IOException;
|
||||
import java.util.Arrays;
|
||||
import java.util.Locale;
|
||||
|
||||
import javax.xml.parsers.DocumentBuilder;
|
||||
|
@ -42,6 +40,21 @@ public class ConfigXml {
|
|||
|
||||
private static final String TAG = "ConfigXml";
|
||||
|
||||
private static final String[] REPLACE_DISCOVERY_SERVERS = new String[] {
|
||||
"default",
|
||||
"udp4://194.126.249.5:22026",
|
||||
"udp6://[2001:470:28:4d6::5]:22026"
|
||||
};
|
||||
|
||||
private static final String[] DISCOVERY_SERVER_IPS = new String[] {
|
||||
"https://194.126.249.5/?id=SR7AARM-TCBUZ5O-VFAXY4D-CECGSDE-3Q6IZ4G-XG7AH75-OBIXJQV-QJ6NLQA",
|
||||
"https://45.55.230.38/?id=AQEHEO2-XOS7QRA-X2COH5K-PO6OPVA-EWOSEGO-KZFMD32-XJ4ZV46-CUUVKAS",
|
||||
"https://128.199.95.124/?id=7WT2BVR-FX62ZOW-TNVVW25-6AHFJGD-XEXQSBW-VO3MPL2-JBTLL4T-P4572Q4",
|
||||
"https://[2001:470:28:4d6::5]/?id=SR7AARM-TCBUZ5O-VFAXY4D-CECGSDE-3Q6IZ4G-XG7AH75-OBIXJQV-QJ6NLQA",
|
||||
"https://[2604:a880:800:10::182:a001]/?id=AQEHEO2-XOS7QRA-X2COH5K-PO6OPVA-EWOSEGO-KZFMD32-XJ4ZV46-CUUVKAS",
|
||||
"https://[2400:6180:0:d0::d9:d001]/?id=7WT2BVR-FX62ZOW-TNVVW25-6AHFJGD-XEXQSBW-VO3MPL2-JBTLL4T-P4572Q4",
|
||||
};
|
||||
|
||||
/**
|
||||
* File in the config folder that contains configuration.
|
||||
*/
|
||||
|
@ -122,20 +135,8 @@ public class ConfigXml {
|
|||
Element options = (Element) mConfig.getDocumentElement()
|
||||
.getElementsByTagName("options").item(0);
|
||||
|
||||
// Hardcode default globalAnnounceServer ip.
|
||||
NodeList globalAnnounceServer = options.getElementsByTagName("globalAnnounceServer");
|
||||
for (int i = 0; i < globalAnnounceServer.getLength(); i++) {
|
||||
Element g = (Element) globalAnnounceServer.item(i);
|
||||
if (g.getTextContent().equals("udp4://announce.syncthing.net:22026")) {
|
||||
Log.i(TAG, "Replacing globalAnnounceServer address with ip");
|
||||
g.setTextContent("udp4://194.126.249.5:22026");
|
||||
changed = true;
|
||||
}
|
||||
if (g.getTextContent().equals("udp6://announce-v6.syncthing.net:22026")) {
|
||||
Log.i(TAG, "Replacing IPv6 globalAnnounceServer address with ip");
|
||||
g.setTextContent("udp6://[2001:470:28:4d6::5]:22026");
|
||||
changed = true;
|
||||
}
|
||||
if (replaceAnnounceServers(options)) {
|
||||
changed = true;
|
||||
}
|
||||
|
||||
NodeList folders = mConfig.getDocumentElement().getElementsByTagName("folder");
|
||||
|
@ -180,6 +181,33 @@ public class ConfigXml {
|
|||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Replaces the announce servers in {@link #REPLACE_DISCOVERY_SERVERS} with those in
|
||||
* {@link #DISCOVERY_SERVER_IPS}.
|
||||
*/
|
||||
private boolean replaceAnnounceServers(Element options) {
|
||||
// Hardcode default globalAnnounceServer ip.
|
||||
NodeList globalAnnounceServers = options.getElementsByTagName("globalAnnounceServer");
|
||||
boolean needUpdateAnnounceServers = false;
|
||||
for (int i = 0; i < globalAnnounceServers.getLength(); i++) {
|
||||
Node announce = globalAnnounceServers.item(i);
|
||||
if (Arrays.asList(REPLACE_DISCOVERY_SERVERS).contains(announce.getTextContent())) {
|
||||
options.removeChild(announce);
|
||||
needUpdateAnnounceServers = true;
|
||||
}
|
||||
}
|
||||
|
||||
if (needUpdateAnnounceServers) {
|
||||
Log.i(TAG, "Replacing globalAnnounceServer address with ip");
|
||||
for (String server : DISCOVERY_SERVER_IPS) {
|
||||
Element newAnnounce = mConfig.createElement("globalAnnounceServer");
|
||||
newAnnounce.setTextContent(server);
|
||||
options.appendChild(newAnnounce);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
/**
|
||||
* Set 'hashers' (see https://github.com/syncthing/syncthing-android/issues/384) on the
|
||||
* given folder.
|
||||
|
|
Loading…
Reference in a new issue