fix authentication dialog not showing

This commit is contained in:
Mohamed 2017-06-15 13:51:19 +02:00
parent d9ca609089
commit 496d058819
4 changed files with 11 additions and 7 deletions

View file

@ -634,8 +634,7 @@ public class GitActivity extends AppCompatActivity {
try {
op.executeAfterAuthentication(connectionMode,
settings.getString("git_remote_username", "git"),
new File(getFilesDir() + "/.ssh_key"), true);
activity.finish();
new File(getFilesDir() + "/.ssh_key"), false);
} catch (Exception e) {
e.printStackTrace();
}

View file

@ -76,12 +76,14 @@ public abstract class GitOperation {
/**
* Executes the GitCommand in an async task
*
* @param finishOnEnd
*/
public abstract void execute(boolean finishOnEnd);
/**
* Executes the GitCommand in an async task after creating the authentication
*
* @param connectionMode the server-connection mode
* @param username the username
* @param sshKey the ssh-key file
@ -93,6 +95,7 @@ public abstract class GitOperation {
/**
* Executes the GitCommand in an async task after creating the authentication
*
* @param connectionMode the server-connection mode
* @param username the username
* @param sshKey the ssh-key file
@ -168,6 +171,7 @@ public abstract class GitOperation {
if (keyPair.decrypt(passphrase.getText().toString())) {
// Authenticate using the ssh-key and then execute the command
setAuthentication(sshKey, username, passphrase.getText().toString()).execute(finishOnEnd);
callingActivity.finish();
} else {
// call back the method
executeAfterAuthentication(connectionMode, username, sshKey, true, finishOnEnd);
@ -175,11 +179,12 @@ public abstract class GitOperation {
}
}).setNegativeButton(callingActivity.getResources().getString(R.string.dialog_cancel), new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int whichButton) {
// Do nothing.
callingActivity.finish();
}
}).show();
} else {
setAuthentication(sshKey, username, "").execute(finishOnEnd);
callingActivity.finish();
}
} catch (JSchException e) {
new AlertDialog.Builder(callingActivity)

View file

@ -40,7 +40,7 @@ public class PullOperation extends GitOperation {
if (this.provider != null) {
((PullCommand) this.command).setCredentialsProvider(this.provider);
}
new GitAsyncTask(callingActivity, true, false, this).execute(this.command);
new GitAsyncTask(callingActivity, finishOnEnd, false, this).execute(this.command);
}
@Override

View file

@ -40,7 +40,7 @@ public class PushOperation extends GitOperation {
if (this.provider != null) {
((PushCommand) this.command).setCredentialsProvider(this.provider);
}
new GitAsyncTask(callingActivity, true, false, this).execute(this.command);
new GitAsyncTask(callingActivity, finishOnEnd, false, this).execute(this.command);
}
@Override