use of com.amaze.filemanager.database.UtilsHandler in project AmazeFileManager by TeamAmaze.
the class SshConnectionPool method create.
// Logic for creating SSH connection. Depends on password existence in given Uri password or
// key-based authentication
private SSHClient create(@NonNull Uri uri) throws IOException {
String host = uri.getHost();
int port = uri.getPort();
// If the uri is fetched from the app's database storage, we assume it will never be empty
String[] userInfo = uri.getUserInfo().split(":");
String username = userInfo[0];
String password = userInfo.length > 1 ? userInfo[1] : null;
if (port < 0)
port = SSH_DEFAULT_PORT;
UtilsHandler utilsHandler = AppConfig.getInstance().getUtilsHandler();
try {
String pem = utilsHandler.getSshAuthPrivateKey(uri.toString());
AtomicReference<KeyPair> keyPair = new AtomicReference<>(null);
if (pem != null && !"".equals(pem)) {
CountDownLatch latch = new CountDownLatch(1);
new PemToKeyPairTask(pem, result -> {
if (result.result != null) {
keyPair.set(result.result);
latch.countDown();
}
}).execute();
latch.await();
}
AsyncTaskResult<SSHClient> taskResult = new SshAuthenticationTask(host, port, utilsHandler.getSshHostKey(uri.toString()), username, password, keyPair.get()).execute().get();
SSHClient client = taskResult.result;
return client;
} catch (InterruptedException e) {
// FIXME: proper handling
throw new RuntimeException(e);
} catch (ExecutionException e) {
// FIXME: proper handling
throw new RuntimeException(e);
}
}
use of com.amaze.filemanager.database.UtilsHandler in project AmazeFileManager by TeamAmaze.
the class LoadFilesListTask method listRecent.
private ArrayList<LayoutElementParcelable> listRecent() {
UtilsHandler utilsHandler = new UtilsHandler(c);
final LinkedList<String> paths = utilsHandler.getHistoryLinkedList();
ArrayList<LayoutElementParcelable> songs = new ArrayList<>();
for (String f : paths) {
if (!f.equals("/")) {
HybridFileParcelable hybridFileParcelable = RootHelper.generateBaseFile(new File(f), showHiddenFiles);
if (hybridFileParcelable != null) {
hybridFileParcelable.generateMode(ma.getActivity());
if (!hybridFileParcelable.isSmb() && !hybridFileParcelable.isDirectory() && hybridFileParcelable.exists()) {
LayoutElementParcelable parcelable = createListParcelables(hybridFileParcelable);
if (parcelable != null)
songs.add(parcelable);
}
}
}
}
return songs;
}
use of com.amaze.filemanager.database.UtilsHandler in project AmazeFileManager by TeamAmaze.
the class MainActivity method onCreate.
/**
* Called when the activity is first created.
*/
@Override
public void onCreate(final Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
initialisePreferences();
initializeInteractiveShell();
dataUtils.registerOnDataChangedListener(this);
CustomSshJConfig.init();
AppConfig.setActivityContext(con);
setContentView(R.layout.main_toolbar);
appbar = new AppBar(this, getPrefs(), queue -> {
if (!queue.isEmpty()) {
mainActivityHelper.search(getPrefs(), queue);
}
});
initialiseViews();
tabHandler = new TabHandler(this);
utilsHandler = AppConfig.getInstance().getUtilsHandler();
cloudHandler = new CloudHandler(this);
mainActivityHelper = new MainActivityHelper(this);
// TODO: 7/12/2017 not init when actionIntent != null
initialiseFab();
if (CloudSheetFragment.isCloudProviderAvailable(this)) {
getSupportLoaderManager().initLoader(REQUEST_CODE_CLOUD_LIST_KEYS, null, this);
}
path = getIntent().getStringExtra("path");
openProcesses = getIntent().getBooleanExtra(KEY_INTENT_PROCESS_VIEWER, false);
intent = getIntent();
if (intent.getStringArrayListExtra(TAG_INTENT_FILTER_FAILED_OPS) != null) {
ArrayList<HybridFileParcelable> failedOps = intent.getParcelableArrayListExtra(TAG_INTENT_FILTER_FAILED_OPS);
if (failedOps != null) {
mainActivityHelper.showFailedOperationDialog(failedOps, this);
}
}
checkForExternalIntent(intent);
if (savedInstanceState != null) {
drawer.setSomethingSelected(savedInstanceState.getBoolean(KEY_DRAWER_SELECTED));
}
// setting window background color instead of each item, in order to reduce pixel overdraw
if (getAppTheme().equals(AppTheme.LIGHT)) {
/*if(Main.IS_LIST)
getWindow().setBackgroundDrawableResource(android.R.color.white);
else
getWindow().setBackgroundDrawableResource(R.color.grid_background_light);
*/
getWindow().setBackgroundDrawableResource(android.R.color.white);
} else if (getAppTheme().equals(AppTheme.BLACK)) {
getWindow().setBackgroundDrawableResource(android.R.color.black);
} else {
getWindow().setBackgroundDrawableResource(R.color.holo_dark_background);
}
/*findViewById(R.id.drawer_buttton).setOnClickListener(new ImageView.OnClickListener() {
@Override
public void onClick(View view) {
if (mDrawerLayout.isOpen(mDrawerLinear)) {
mDrawerLayout.close(mDrawerLinear);
} else mDrawerLayout.openDrawer(mDrawerLinear);
}
});*/
drawer.setDrawerIndicatorEnabled();
// recents header color implementation
if (SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
ActivityManager.TaskDescription taskDescription = new ActivityManager.TaskDescription("Amaze", ((BitmapDrawable) getResources().getDrawable(R.mipmap.ic_launcher)).getBitmap(), getColorPreference().getColor(ColorUsage.getPrimary(MainActivity.currentTab)));
setTaskDescription(taskDescription);
}
if (!getBoolean(PREFERENCE_BOOKMARKS_ADDED)) {
utilsHandler.addCommonBookmarks();
getPrefs().edit().putBoolean(PREFERENCE_BOOKMARKS_ADDED, true).commit();
}
AppConfig.runInBackground(new AppConfig.CustomAsyncCallbacks() {
@Override
public <E> E doInBackground() {
dataUtils.setHiddenFiles(utilsHandler.getHiddenFilesConcurrentRadixTree());
dataUtils.setHistory(utilsHandler.getHistoryLinkedList());
dataUtils.setGridfiles(utilsHandler.getGridViewList());
dataUtils.setListfiles(utilsHandler.getListViewList());
dataUtils.setBooks(utilsHandler.getBookmarksList());
ArrayList<String[]> servers = new ArrayList<String[]>();
servers.addAll(utilsHandler.getSmbList());
servers.addAll(utilsHandler.getSftpList());
dataUtils.setServers(servers);
return null;
}
@Override
public Void onPostExecute(Object result) {
drawer.refreshDrawer();
if (savedInstanceState == null) {
if (openProcesses) {
FragmentTransaction transaction = getSupportFragmentManager().beginTransaction();
transaction.replace(R.id.content_frame, new ProcessViewerFragment(), KEY_INTENT_PROCESS_VIEWER);
// transaction.addToBackStack(null);
drawer.setSomethingSelected(true);
openProcesses = false;
// title.setText(utils.getString(con, R.string.process_viewer));
// Commit the transaction
transaction.commit();
supportInvalidateOptionsMenu();
} else if (intent.getAction() != null && intent.getAction().equals(TileService.ACTION_QS_TILE_PREFERENCES)) {
// tile preferences, open ftp fragment
FragmentTransaction transaction2 = getSupportFragmentManager().beginTransaction();
transaction2.replace(R.id.content_frame, new FTPServerFragment());
appBarLayout.animate().translationY(0).setInterpolator(new DecelerateInterpolator(2)).start();
drawer.setSomethingSelected(true);
drawer.deselectEverything();
transaction2.commit();
} else {
if (path != null && path.length() > 0) {
HybridFile file = new HybridFile(OpenMode.UNKNOWN, path);
file.generateMode(MainActivity.this);
if (file.isDirectory(MainActivity.this))
goToMain(path);
else {
goToMain(null);
FileUtils.openFile(new File(path), MainActivity.this, getPrefs());
}
} else {
goToMain(null);
}
}
} else {
pasteHelper = savedInstanceState.getParcelable(PASTEHELPER_BUNDLE);
oppathe = savedInstanceState.getString(KEY_OPERATION_PATH);
oppathe1 = savedInstanceState.getString(KEY_OPERATED_ON_PATH);
oparrayList = savedInstanceState.getParcelableArrayList(KEY_OPERATIONS_PATH_LIST);
operation = savedInstanceState.getInt(KEY_OPERATION);
// mainFragment = (Main) savedInstanceState.getParcelable("main_fragment");
}
return null;
}
@Override
public Void onPreExecute() {
return null;
}
@Override
public Void publishResult(Object... result) {
return null;
}
@Override
public <T> T[] params() {
return null;
}
});
}
use of com.amaze.filemanager.database.UtilsHandler in project AmazeFileManager by TeamAmaze.
the class FoldersPref method onCreate.
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
activity = (PreferencesActivity) getActivity();
utilsHandler = new UtilsHandler(getActivity());
dataUtils = DataUtils.getInstance();
// Load the preferences from an XML resource
addPreferencesFromResource(R.xml.folders_prefs);
sharedPrefs = PreferenceManager.getDefaultSharedPreferences(activity);
findPreference(PreferencesConstants.PREFERENCE_SHORTCUT).setOnPreferenceClickListener(this);
for (int i = 0; i < dataUtils.getBooks().size(); i++) {
PathSwitchPreference p = new PathSwitchPreference(getActivity());
p.setTitle(dataUtils.getBooks().get(i)[0]);
p.setSummary(dataUtils.getBooks().get(i)[1]);
p.setOnPreferenceClickListener(this);
position.put(p, i);
getPreferenceScreen().addPreference(p);
}
}
use of com.amaze.filemanager.database.UtilsHandler in project AmazeFileManager by TeamAmaze.
the class AppConfig method onCreate.
@Override
public void onCreate() {
super.onCreate();
// selector in srcCompat isn't supported without this
AppCompatDelegate.setCompatVectorFromResourcesEnabled(true);
mInstance = this;
utilsProvider = new UtilitiesProvider(this);
mUtilsHandler = new UtilsHandler(this);
sBackgroundHandlerThread.start();
sBackgroundHandler = new Handler(sBackgroundHandlerThread.getLooper());
// disabling file exposure method check for api n+
StrictMode.VmPolicy.Builder builder = new StrictMode.VmPolicy.Builder();
StrictMode.setVmPolicy(builder.build());
}
Aggregations