Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: c22515f2ca9b90fe8de5797e4b86591636bb2b7b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
/*******************************************************************************
 * Copyright (c) 2007, 2008 IBM Corporation and others.
 *
 * This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.jsch.ui;

import org.eclipse.core.runtime.OperationCanceledException;
import org.eclipse.jface.dialogs.IDialogConstants;
import org.eclipse.jface.dialogs.MessageDialog;
import org.eclipse.jsch.core.IJSchService;
import org.eclipse.jsch.internal.ui.KeyboardInteractiveDialog;
import org.eclipse.jsch.internal.ui.Messages;
import org.eclipse.jsch.internal.ui.UserValidationDialog;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;

import com.jcraft.jsch.Session;
import com.jcraft.jsch.UIKeyboardInteractive;
import com.jcraft.jsch.UserInfo;

/**
 * A {@link UserInfo} prompter implementation that can be used when connecting a
 * {@link Session}.
 * <p>
 * Clients may instantiate or subclass this class.
 *
 * @since 1.0
 * @see IJSchService#createSession(String, int, String)
 * @see IJSchService#connect(Session, int,
 *      org.eclipse.core.runtime.IProgressMonitor)
 */
public class UserInfoPrompter implements UserInfo, UIKeyboardInteractive{

	private String passphrase;
	private String password;
	private final Session session;
	private int attemptCount;

	/**
	 * Create a prompter for the given session. This constructor will associate
	 * this prompter with the session using {@link Session#setUserInfo(UserInfo)}.
	 *
	 * @param session
	 *          the session
	 */
	public UserInfoPrompter(Session session){
		super();
		this.session=session;
		session.setUserInfo(this);
	}

	/**
	 * Return the session to which this prompter is assigned.
	 *
	 * @return the session to which this prompter is assigned
	 */
	public Session getSession(){
		return session;
	}

	@Override
public String getPassphrase(){
		return passphrase;
	}

	@Override
public String getPassword(){
		return password;
	}

	/**
	 * Set the pass phrase to be used when connecting the session. Return
	 * <code>null</code> if the pass phrase is not known.
	 *
	 * @param passphrase
	 *          the pass phrase to be used when connecting the session or
	 *          <code>null</code>
	 */
	public void setPassphrase(String passphrase){
		this.passphrase=passphrase;
	}

	/**
	 * Set the password to be used when connecting the session. Return
	 * <code>null</code> if the password is not known.
	 *
	 * @param password
	 *          the password to be used when connecting the session or
	 *          <code>null</code>
	 */
	public void setPassword(String password){
		this.password=password;
	}

	@Override
public boolean promptPassphrase(String message){
		String _passphrase=promptSecret(message);
		if(_passphrase!=null){
			setPassphrase(_passphrase);
		}
		return _passphrase!=null;
	}

	@Override
public boolean promptPassword(String message){
		String _password=promptSecret(message);
		if(_password!=null){
			setPassword(_password);
		}
		return _password!=null;
	}

	private String promptSecret(final String message){
		// ask the user for a password
		final String[] result=new String[1];
		Display display=Display.getCurrent();
		if(display!=null){
			result[0]=promptForPassword(message);
		}
		else{
			// sync exec in default thread
			Display.getDefault().syncExec(() -> result[0] = promptForPassword(message));
		}

		if(result[0]==null){
			throw new OperationCanceledException();
		}
		return result[0];
	}

	/* package */String promptForPassword(final String message){
		String username=getSession().getUserName();
		UserValidationDialog dialog=new UserValidationDialog(null, null,
				(username==null) ? "" : username, message); //$NON-NLS-1$
		dialog.setUsernameMutable(false);
		dialog.open();
		return dialog.getPassword();
	}

	@Override
public String[] promptKeyboardInteractive(String destination, String name,
			String instruction, String[] prompt, boolean[] echo){
		if(prompt.length==0){
			// No need to prompt, just return an empty String array
			return new String[0];
		}
		try{
			if(attemptCount==0&&password!=null&&prompt.length==1
					&&prompt[0].trim().equalsIgnoreCase("password:")){ //$NON-NLS-1$
				// Return the provided password the first time but always prompt on
				// subsequent tries
				attemptCount++;
				return new String[] {password};
			}
			String[] result=promptForKeyboradInteractiveInUI(destination, name,
					instruction, prompt, echo);
			if(result==null)
				return null; // canceled
			if(result.length==1&&prompt.length==1
					&&prompt[0].trim().equalsIgnoreCase("password:")){ //$NON-NLS-1$
				password=result[0];
			}
			attemptCount++;
			return result;
		}
		catch(OperationCanceledException e){
			return null;
		}
	}

	private String[] promptForKeyboradInteractiveInUI(final String destination,
			final String name, final String instruction, final String[] prompt,
			final boolean[] echo){
		final String[][] result=new String[1][];
		Display display=Display.getCurrent();
		if(display!=null){
			result[0]=internalPromptForUserInteractive(destination, name,
					instruction, prompt, echo);
		}
		else{
			// sync exec in default thread
			Display.getDefault().syncExec(
					() -> result[0] = internalPromptForUserInteractive(destination, name, instruction, prompt, echo));
		}
		return result[0];
	}

	/* package */ String[] internalPromptForUserInteractive(String destination,
			String name, String instruction, String[] prompt, boolean[] echo){
		String domain=null;
		String userName=getSession().getUserName();
		KeyboardInteractiveDialog dialog=new KeyboardInteractiveDialog(null,
				domain, destination, name, userName, instruction, prompt, echo);
		dialog.open();
		String[] _result=dialog.getResult();
		return _result;
	}

	@Override
public boolean promptYesNo(String question){
		int prompt=prompt(MessageDialog.QUESTION, Messages.UserInfoPrompter_0,
				question, new int[] {IDialogConstants.YES_ID, IDialogConstants.NO_ID},
				0 // yes
		// the
		// default
		);
		return prompt==0;
	}

	@Override
public void showMessage(String message){
		prompt(MessageDialog.INFORMATION, Messages.UserInfoPrompter_1, message,
				new int[] {IDialogConstants.OK_ID}, 0);
	}

	private int prompt(final int promptType, final String title,
			final String message, final int[] promptResponses,
			final int defaultResponse){
		final Display display=getStandardDisplay();
		final int[] retval=new int[1];
		final String[] buttons=new String[promptResponses.length];
		for(int i=0; i<promptResponses.length; i++){
			int prompt=promptResponses[i];
			switch(prompt){
				case IDialogConstants.OK_ID:
					buttons[i]=IDialogConstants.OK_LABEL;
					break;
				case IDialogConstants.CANCEL_ID:
					buttons[i]=IDialogConstants.CANCEL_LABEL;
					break;
				case IDialogConstants.NO_ID:
					buttons[i]=IDialogConstants.NO_LABEL;
					break;
				case IDialogConstants.YES_ID:
					buttons[i]=IDialogConstants.YES_LABEL;
					break;
			}
		}

		display.syncExec(() -> {
				final MessageDialog dialog=new MessageDialog(new Shell(display), title,
						null /* title image */, message, promptType, buttons,
						defaultResponse);
				retval[0]=dialog.open();
		});
		return retval[0];
	}

	private Display getStandardDisplay(){
		Display display=Display.getCurrent();
		if(display==null){
			display=Display.getDefault();
		}
		return display;
	}

}

Back to the top