forked from jens/Automation
Migration of old files unfinished.
This commit is contained in:
parent
d803d57af1
commit
bdfded960c
@ -313,55 +313,64 @@ public class Miscellaneous extends Service
|
|||||||
{
|
{
|
||||||
if(writeableFolderStringCache == null)
|
if(writeableFolderStringCache == null)
|
||||||
{
|
{
|
||||||
if(!ActivityPermissions.havePermission(ActivityPermissions.writeExternalStoragePermissionName, Miscellaneous.getAnyContext()))
|
// Use the app-specific folder as new default.
|
||||||
{
|
writeableFolderStringCache = Miscellaneous.getAnyContext().getFilesDir().getAbsolutePath();
|
||||||
// Use the app-specific folder as new default.
|
|
||||||
|
|
||||||
writeableFolderStringCache = Miscellaneous.getAnyContext().getFilesDir().getAbsolutePath();
|
File newConfigFile = new File(writeableFolderStringCache + "/" + XmlFileInterface.settingsFileName);
|
||||||
return writeableFolderStringCache;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
//TODO: We have the storage permission, probably because it's an old installation. Files should be migrated to app-specific folder.
|
|
||||||
String testPath = null;
|
|
||||||
File folder = null;
|
|
||||||
|
|
||||||
try
|
migration:
|
||||||
|
if (!newConfigFile.exists())
|
||||||
|
{
|
||||||
|
if (ActivityPermissions.havePermission(ActivityPermissions.writeExternalStoragePermissionName, Miscellaneous.getAnyContext()))
|
||||||
{
|
{
|
||||||
String[] foldersToTestArray = new String[]
|
// We have the storage permission, probably because it's an old installation. Files should be migrated to app-specific folder.
|
||||||
{
|
|
||||||
Environment.getExternalStorageDirectory().getAbsolutePath(),
|
|
||||||
"/storage/emulated/0",
|
|
||||||
"/HWUserData",
|
|
||||||
"/mnt/sdcard"
|
|
||||||
};
|
|
||||||
|
|
||||||
for (String f : foldersToTestArray)
|
String testPath = null;
|
||||||
|
File folder = null;
|
||||||
|
|
||||||
|
try
|
||||||
{
|
{
|
||||||
if (testFolder(f))
|
String[] foldersToTestArray = new String[]
|
||||||
|
{
|
||||||
|
Environment.getExternalStorageDirectory().getAbsolutePath(),
|
||||||
|
"/storage/emulated/0",
|
||||||
|
"/HWUserData",
|
||||||
|
"/mnt/sdcard"
|
||||||
|
};
|
||||||
|
|
||||||
|
for (String f : foldersToTestArray)
|
||||||
{
|
{
|
||||||
String pathToUse = f + "/" + Settings.folderName;
|
if (testFolder(f))
|
||||||
Miscellaneous.logEvent("i", "Path", "Using " + pathToUse + " to store settings and log.", 2);
|
{
|
||||||
|
String pathToUse = f + "/" + Settings.folderName;
|
||||||
|
|
||||||
// Toast.makeText(getAnyContext(), "Using " + pathToUse + " to store settings and log.", Toast.LENGTH_LONG).show();
|
// Toast.makeText(getAnyContext(), "Using " + pathToUse + " to store settings and log.", Toast.LENGTH_LONG).show();
|
||||||
return pathToUse;
|
// Migrate existing files
|
||||||
|
File oldDirectory = new File(pathToUse);
|
||||||
|
File newDirectory = new File(writeableFolderStringCache);
|
||||||
|
File oldConfigFilePath = new File(pathToUse + "/" + XmlFileInterface.settingsFileName);
|
||||||
|
if (oldConfigFilePath.exists() && oldConfigFilePath.canWrite())
|
||||||
|
{
|
||||||
|
Miscellaneous.logEvent("i", "Path", "Found old path " + pathToUse + " for settings and logs. Migrating old files to new directory.", 2);
|
||||||
|
|
||||||
|
for (File moveFile : oldDirectory.listFiles())
|
||||||
|
moveFile.renameTo(newDirectory);
|
||||||
|
|
||||||
|
String message = String.format(Miscellaneous.getAnyContext().getResources().getString(R.string.filesHaveBeenMovedTo), newDirectory.getAbsolutePath());
|
||||||
|
Miscellaneous.writeStringToFile(oldDirectory.getAbsolutePath() + "readme.txt", message);
|
||||||
|
break migration;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else
|
} catch (Exception e)
|
||||||
Miscellaneous.logEvent("e", "getWritableFolder", folder.getAbsolutePath() + " does not exist and could not be created.", 3);
|
{
|
||||||
|
Log.w("getWritableFolder", folder + " not writable.");
|
||||||
}
|
}
|
||||||
} catch (Exception e)
|
|
||||||
{
|
|
||||||
Log.w("getWritableFolder", folder + " not writable.");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// do not change to logEvent() - we can't write
|
|
||||||
Toast.makeText(getAnyContext(), "No writable folder could be found.", Toast.LENGTH_LONG).show();
|
|
||||||
Log.e("getWritableFolder", "No writable folder could be found.");
|
|
||||||
|
|
||||||
return null;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
|
||||||
return writeableFolderStringCache;
|
return writeableFolderStringCache;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected final static String logFileName = "Automation_logfile.txt";
|
protected final static String logFileName = "Automation_logfile.txt";
|
||||||
|
@ -25,7 +25,8 @@ import java.util.Collections;
|
|||||||
|
|
||||||
public class XmlFileInterface
|
public class XmlFileInterface
|
||||||
{
|
{
|
||||||
public static File settingsFile = new File(Miscellaneous.getWriteableFolder() + "/Automation_settings.xml");
|
public static String settingsFileName = "Automation_settings.xml";
|
||||||
|
public static File settingsFile = new File(Miscellaneous.getWriteableFolder() + "/" + settingsFileName);
|
||||||
public static Context context;
|
public static Context context;
|
||||||
|
|
||||||
protected static final String encryptionKey = "Y1vsP12L2S3NkTJbDOR4bQ6i02hsoo";
|
protected static final String encryptionKey = "Y1vsP12L2S3NkTJbDOR4bQ6i02hsoo";
|
||||||
|
@ -605,4 +605,5 @@
|
|||||||
<string name="publishedOn">published on</string>
|
<string name="publishedOn">published on</string>
|
||||||
<string name="displayNewsOnMainScreen">Display application news on main screen</string>
|
<string name="displayNewsOnMainScreen">Display application news on main screen</string>
|
||||||
<string name="displayNewsOnMainScreenDescription">Announcements about this app only, we\'re probably talking about 1-2 per year, not more.</string>
|
<string name="displayNewsOnMainScreenDescription">Announcements about this app only, we\'re probably talking about 1-2 per year, not more.</string>
|
||||||
|
<string name="filesHaveBeenMovedTo">Automation now uses another path to store your files. The existing ones have been moved. You can find them here: %s.</string>
|
||||||
</resources>
|
</resources>
|
Loading…
Reference in New Issue
Block a user