bcv-vf/src/main/java/the/bytecode/club/bytecodeviewer/resources/exporting/impl/APKExport.java

134 lines
5 KiB
Java
Raw Normal View History

2021-06-27 20:41:38 +00:00
package the.bytecode.club.bytecodeviewer.resources.exporting.impl;
import java.io.File;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
import javax.swing.JFileChooser;
2021-06-27 20:41:38 +00:00
import the.bytecode.club.bytecodeviewer.BytecodeViewer;
import the.bytecode.club.bytecodeviewer.Configuration;
import the.bytecode.club.bytecodeviewer.gui.components.FileChooser;
import the.bytecode.club.bytecodeviewer.gui.components.MultipleChoiceDialog;
2021-07-11 09:14:42 +00:00
import the.bytecode.club.bytecodeviewer.resources.ResourceContainer;
2021-06-27 20:41:38 +00:00
import the.bytecode.club.bytecodeviewer.resources.exporting.Exporter;
import the.bytecode.club.bytecodeviewer.util.APKTool;
import the.bytecode.club.bytecodeviewer.util.DialogUtils;
import the.bytecode.club.bytecodeviewer.util.JarUtils;
import the.bytecode.club.bytecodeviewer.util.MiscUtils;
2021-06-27 20:41:38 +00:00
import static the.bytecode.club.bytecodeviewer.Constants.fs;
import static the.bytecode.club.bytecodeviewer.Constants.tempDirectory;
/***************************************************************************
* Bytecode Viewer (BCV) - Java & Android Reverse Engineering Suite *
* Copyright (C) 2014 Kalen 'Konloch' Kinloch - http://bytecodeviewer.com *
* *
* 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 <http://www.gnu.org/licenses/>. *
***************************************************************************/
2021-06-27 20:41:38 +00:00
/**
* @author Konloch
* @since 6/27/2021
*/
2021-06-27 20:41:38 +00:00
public class APKExport implements Exporter
{
@Override
public void promptForExport()
{
if (BytecodeViewer.promptIfNoLoadedResources())
2021-06-27 20:41:38 +00:00
return;
Collection<ResourceContainer> containers = BytecodeViewer.getResourceContainers();
List<ResourceContainer> validContainers = new ArrayList<>();
2021-06-27 20:41:38 +00:00
List<String> validContainersNames = new ArrayList<>();
ResourceContainer container;
2021-06-27 20:41:38 +00:00
for (ResourceContainer resourceContainer : containers)
2021-06-27 20:41:38 +00:00
{
if (resourceContainer.APKToolContents != null && resourceContainer.APKToolContents.exists())
2021-06-27 20:41:38 +00:00
{
validContainersNames.add(resourceContainer.name);
validContainers.add(resourceContainer);
2021-06-27 20:41:38 +00:00
}
}
if (!validContainers.isEmpty())
{
container = validContainers.get(0);
2021-06-27 21:23:23 +00:00
//if theres only one file in the container don't bother asking
2021-06-27 20:41:38 +00:00
if (validContainers.size() >= 2)
{
MultipleChoiceDialog dialog = new MultipleChoiceDialog("Bytecode Viewer - Select APK",
2021-06-27 21:23:23 +00:00
"Which file would you like to export as an APK?",
validContainersNames.toArray(new String[0]));
2021-06-27 20:41:38 +00:00
//TODO may be off by one
container = (ResourceContainer) containers.stream().skip(dialog.promptChoice());
2021-06-27 20:41:38 +00:00
}
} else {
2021-06-27 21:23:23 +00:00
BytecodeViewer.showMessage("You can only export as APK from a valid APK file. Make sure Settings>Decode Resources is ticked on." +
"\n\nTip: Try exporting as DEX, it doesn't rely on decoded APK resources");
2021-06-27 20:41:38 +00:00
return;
}
final ResourceContainer finalContainer = container;
2021-06-27 20:41:38 +00:00
Thread exportThread = new Thread(() ->
{
2021-07-11 13:55:30 +00:00
if (!BytecodeViewer.autoCompileSuccessful())
2021-06-27 20:41:38 +00:00
return;
JFileChooser fc = new FileChooser(Configuration.getLastSaveDirectory(),
2021-06-27 20:41:38 +00:00
"Select APK Export",
"Android APK",
"apk");
int returnVal = fc.showSaveDialog(BytecodeViewer.viewer);
if (returnVal == JFileChooser.APPROVE_OPTION)
{
2021-07-19 14:11:14 +00:00
Configuration.setLastSaveDirectory(fc.getSelectedFile());
2021-06-27 20:41:38 +00:00
final File file = fc.getSelectedFile();
String output = file.getAbsolutePath();
2021-12-19 23:24:17 +00:00
//auto append .apk
2021-06-27 20:41:38 +00:00
if (!output.endsWith(".apk"))
2021-12-19 23:24:17 +00:00
output += ".apk";
2021-06-27 20:41:38 +00:00
final File file2 = new File(output);
if (!DialogUtils.canOverwriteFile(file2))
return;
2021-06-27 20:41:38 +00:00
Thread saveThread = new Thread(() ->
{
2021-07-06 22:57:42 +00:00
BytecodeViewer.updateBusyStatus(true);
2021-06-27 20:41:38 +00:00
final String input = tempDirectory + fs + MiscUtils.getRandomizedName() + ".jar";
JarUtils.saveAsJar(BytecodeViewer.getLoadedClasses(), input);
Thread buildAPKThread = new Thread(() ->
{
APKTool.buildAPK(new File(input), file2, finalContainer);
2021-07-06 22:57:42 +00:00
BytecodeViewer.updateBusyStatus(false);
2021-07-01 09:48:10 +00:00
}, "Process APK");
2021-06-27 20:41:38 +00:00
buildAPKThread.start();
2021-07-01 09:48:10 +00:00
}, "Jar Export");
2021-06-27 20:41:38 +00:00
saveThread.start();
}
2021-07-01 09:48:10 +00:00
}, "Resource Export");
2021-06-27 20:41:38 +00:00
exportThread.start();
}
}