Skip to content
This repository was archived by the owner on Jul 28, 2023. It is now read-only.

Commit 8717ded

Browse files
author
zhangzhx
committed
AWS Toolkit for Eclipse: v201803062120 Release.
1 parent 1ffe7b8 commit 8717ded

File tree

23 files changed

+478
-144
lines changed

23 files changed

+478
-144
lines changed

CHANGELOG.json

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
{
22
"current": [
3+
"* **Update Error Report dialog to include the Github issue link.**"
4+
],
5+
"v201801042359": [
36
"* **Merge Pull Request #93.**",
47
"* **Resolve Issues: #87, #94, #95, #96, #97.**"
58
],

bundles/com.amazonaws.eclipse.codecommit/src/com/amazonaws/eclipse/codecommit/explorer/CodeCommitActionProvider.java

+5-2
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@
5353
import com.amazonaws.eclipse.codecommit.CodeCommitPlugin;
5454
import com.amazonaws.eclipse.codecommit.wizard.CloneRepositoryWizard;
5555
import com.amazonaws.eclipse.core.AwsToolkitCore;
56+
import com.amazonaws.eclipse.core.exceptions.AwsActionException;
5657
import com.amazonaws.eclipse.core.mobileanalytics.AwsToolkitMetricType;
5758
import com.amazonaws.eclipse.core.regions.RegionUtils;
5859
import com.amazonaws.eclipse.core.regions.ServiceAbbreviations;
@@ -117,7 +118,8 @@ protected void doRun() {
117118

118119
} catch (Exception e) {
119120
actionFailed();
120-
CodeCommitPlugin.getDefault().reportException("Failed to create repository!", e);
121+
CodeCommitPlugin.getDefault().reportException("Failed to create repository!",
122+
new AwsActionException(AwsToolkitMetricType.EXPLORER_CODECOMMIT_CREATE_REPO.getName(), e.getMessage(), e));
121123
}
122124
} else {
123125
actionCanceled();
@@ -254,7 +256,8 @@ protected void doRun() {
254256
dialog.open();
255257
actionSucceeded();
256258
} catch (Exception e) {
257-
CodeCommitPlugin.getDefault().reportException(e.getMessage(), e);
259+
CodeCommitPlugin.getDefault().reportException("Failed to clone CodeCommit repository!",
260+
new AwsActionException(AwsToolkitMetricType.EXPLORER_CODECOMMIT_CLONE_REPO.getName(), e.getMessage(), e));
258261
actionFailed();
259262
} finally {
260263
actionFinished();

bundles/com.amazonaws.eclipse.codecommit/src/com/amazonaws/eclipse/codecommit/wizard/CloneRepositoryWizard.java

+4-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,9 @@
4141
import com.amazonaws.eclipse.core.egit.jobs.ImportProjectJob;
4242
import com.amazonaws.eclipse.core.egit.ui.CloneDestinationPage;
4343
import com.amazonaws.eclipse.core.egit.ui.SourceBranchPage;
44+
import com.amazonaws.eclipse.core.exceptions.AwsActionException;
4445
import com.amazonaws.eclipse.core.maven.MavenUtils;
46+
import com.amazonaws.eclipse.core.mobileanalytics.AwsToolkitMetricType;
4547
import com.amazonaws.eclipse.core.model.GitCredentialsDataModel;
4648
import com.amazonaws.eclipse.core.regions.RegionUtils;
4749
import com.amazonaws.eclipse.core.util.WorkbenchUtils;
@@ -137,7 +139,8 @@ public void run(IProgressMonitor monitor)
137139
});
138140
} catch (InvocationTargetException e) {
139141
CodeCommitAnalytics.trackCloneRepository(EventResult.FAILED);
140-
CodeCommitPlugin.getDefault().reportException(e.getMessage(), e);
142+
CodeCommitPlugin.getDefault().reportException("Failed to clone git repository.",
143+
new AwsActionException(AwsToolkitMetricType.EXPLORER_CODECOMMIT_CLONE_REPO.getName(), e.getMessage(), e));
141144
return false;
142145
} catch (InterruptedException e) {
143146
CodeCommitAnalytics.trackCloneRepository(EventResult.CANCELED);

bundles/com.amazonaws.eclipse.core/META-INF/MANIFEST.MF

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ Export-Package: com.amazonaws.eclipse.core,
2121
com.amazonaws.eclipse.core.egit,
2222
com.amazonaws.eclipse.core.egit.jobs,
2323
com.amazonaws.eclipse.core.egit.ui,
24+
com.amazonaws.eclipse.core.exceptions,
2425
com.amazonaws.eclipse.core.maven,
2526
com.amazonaws.eclipse.core.mobileanalytics,
2627
com.amazonaws.eclipse.core.model,
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,192 @@
1+
/*
2+
* Copyright 2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License").
5+
* You may not use this file except in compliance with the License.
6+
* A copy of the License is located at
7+
*
8+
* http://aws.amazon.com/apache2.0
9+
*
10+
* or in the "license" file accompanying this file. This file is distributed
11+
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
12+
* express or implied. See the License for the specific language governing
13+
* permissions and limitations under the License.
14+
*/
15+
package com.amazonaws.eclipse.core;
16+
17+
import java.io.IOException;
18+
import java.io.InputStream;
19+
import java.io.OutputStream;
20+
import java.text.ParseException;
21+
import java.text.SimpleDateFormat;
22+
import java.util.Date;
23+
24+
import org.apache.http.Header;
25+
import org.apache.http.HttpEntity;
26+
import org.apache.http.HttpHost;
27+
import org.apache.http.HttpResponse;
28+
import org.apache.http.client.ClientProtocolException;
29+
import org.apache.http.client.CredentialsProvider;
30+
import org.apache.http.client.HttpClient;
31+
import org.apache.http.client.config.RequestConfig;
32+
import org.apache.http.client.config.RequestConfig.Builder;
33+
import org.apache.http.client.methods.HttpGet;
34+
import org.apache.http.client.methods.HttpHead;
35+
import org.apache.http.impl.client.DefaultHttpRequestRetryHandler;
36+
import org.apache.http.impl.client.HttpClientBuilder;
37+
38+
public class AwsToolkitHttpClient {
39+
private final HttpClient httpClient;
40+
41+
private AwsToolkitHttpClient(
42+
Integer connectionTimeout,
43+
Integer socketTimeout,
44+
String userAgent,
45+
HttpHost proxy,
46+
CredentialsProvider credentialsProvider) {
47+
48+
Builder requestConfigBuilder = RequestConfig.custom();
49+
if (connectionTimeout != null) {
50+
requestConfigBuilder.setConnectionRequestTimeout(connectionTimeout);
51+
}
52+
if (socketTimeout != null) {
53+
requestConfigBuilder.setSocketTimeout(socketTimeout);
54+
}
55+
56+
HttpClientBuilder builder = HttpClientBuilder.create()
57+
.setDefaultRequestConfig(requestConfigBuilder.build())
58+
.setUserAgent(userAgent);
59+
if (proxy != null) {
60+
builder.setProxy(proxy);
61+
if (credentialsProvider != null) {
62+
builder.setDefaultCredentialsProvider(credentialsProvider);
63+
}
64+
}
65+
httpClient = builder
66+
.setRetryHandler(new DefaultHttpRequestRetryHandler(3, true))
67+
.build();
68+
}
69+
70+
/**
71+
* Head the given URL for the last modified date.
72+
*
73+
* @param url The target URL resource.
74+
* @return The last modified date give the URL, or null if the date cannot be retrieved
75+
* @throws ClientProtocolException
76+
* @throws IOException
77+
*/
78+
public Date getLastModifiedDate(String url) throws ClientProtocolException, IOException {
79+
HttpHead headMethod = new HttpHead(url);
80+
HttpResponse response = httpClient.execute(headMethod);
81+
Header header = response.getFirstHeader("Last-Modified");
82+
if (header != null) {
83+
String lastModifiedDateString = header.getValue();
84+
SimpleDateFormat dateFormat = new SimpleDateFormat("EEE, dd MMM yyyy HH:mm:ss zzz");
85+
try {
86+
return dateFormat.parse(lastModifiedDateString);
87+
} catch (ParseException e) {
88+
return null;
89+
}
90+
}
91+
return null;
92+
}
93+
94+
/**
95+
* Fetch the content of the target URL and redirect to the output stream.
96+
* If no content is fetched, do nothing.
97+
*
98+
* @param url The target URL
99+
* @param output The OutputStream
100+
* @throws ClientProtocolException
101+
* @throws IOException
102+
*/
103+
public void outputEntityContent(String url, OutputStream output) throws ClientProtocolException, IOException {
104+
try (InputStream inputStream = getEntityContent(url)) {
105+
if (inputStream == null) {
106+
return;
107+
}
108+
int length;
109+
byte[] buffer = new byte[2048];
110+
while ((length = inputStream.read(buffer)) != -1) {
111+
output.write(buffer, 0, length);
112+
}
113+
}
114+
}
115+
116+
/**
117+
* Return the input stream of the underlying resource in the target URL.
118+
* @param url The target URL
119+
* @return The underlying input stream, or null if it doesn't have entity
120+
* @throws ClientProtocolException
121+
* @throws IOException
122+
*/
123+
public InputStream getEntityContent(String url) throws ClientProtocolException, IOException {
124+
HttpGet getMethod = new HttpGet(url);
125+
HttpResponse response = httpClient.execute(getMethod);
126+
HttpEntity entity = response.getEntity();
127+
return entity == null ? null : entity.getContent();
128+
}
129+
130+
static AwsToolkitHttpClientBuilder builder() {
131+
return new AwsToolkitHttpClientBuilder();
132+
}
133+
134+
static final class AwsToolkitHttpClientBuilder {
135+
private Integer connectionTimeout;
136+
private Integer socketTimeout;
137+
private String userAgent;
138+
private HttpHost proxy;
139+
private CredentialsProvider credentialsProvider;
140+
141+
private AwsToolkitHttpClientBuilder() {}
142+
143+
public AwsToolkitHttpClient build() {
144+
return new AwsToolkitHttpClient(connectionTimeout, socketTimeout, userAgent, proxy, credentialsProvider);
145+
}
146+
147+
public Integer getConnectionTimeout() {
148+
return connectionTimeout;
149+
}
150+
151+
public AwsToolkitHttpClientBuilder setConnectionTimeout(Integer connectionTimeout) {
152+
this.connectionTimeout = connectionTimeout;
153+
return this;
154+
}
155+
156+
public Integer getSocketTimeout() {
157+
return socketTimeout;
158+
}
159+
160+
public AwsToolkitHttpClientBuilder setSocketTimeout(Integer socketTimeout) {
161+
this.socketTimeout = socketTimeout;
162+
return this;
163+
}
164+
165+
public String getUserAgent() {
166+
return userAgent;
167+
}
168+
169+
public AwsToolkitHttpClientBuilder setUserAgent(String userAgent) {
170+
this.userAgent = userAgent;
171+
return this;
172+
}
173+
174+
public HttpHost getProxy() {
175+
return proxy;
176+
}
177+
178+
public AwsToolkitHttpClientBuilder setProxy(HttpHost proxy) {
179+
this.proxy = proxy;
180+
return this;
181+
}
182+
183+
public CredentialsProvider getCredentialsProvider() {
184+
return credentialsProvider;
185+
}
186+
187+
public AwsToolkitHttpClientBuilder setCredentialsProvider(CredentialsProvider credentialsProvider) {
188+
this.credentialsProvider = credentialsProvider;
189+
return this;
190+
}
191+
}
192+
}

bundles/com.amazonaws.eclipse.core/src/com/amazonaws/eclipse/core/HttpClientFactory.java

+25-34
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,7 @@
2020
import org.apache.http.HttpHost;
2121
import org.apache.http.auth.AuthScope;
2222
import org.apache.http.auth.NTCredentials;
23-
import org.apache.http.conn.params.ConnRoutePNames;
24-
import org.apache.http.impl.client.DefaultHttpClient;
25-
import org.apache.http.params.BasicHttpParams;
26-
import org.apache.http.params.HttpConnectionParams;
27-
import org.apache.http.params.HttpParams;
28-
import org.apache.http.params.HttpProtocolParams;
23+
import org.apache.http.impl.client.BasicCredentialsProvider;
2924
import org.eclipse.core.net.proxy.IProxyData;
3025
import org.eclipse.core.net.proxy.IProxyService;
3126
import org.eclipse.core.runtime.Plugin;
@@ -39,55 +34,51 @@
3934
*/
4035
public final class HttpClientFactory {
4136

42-
public static DefaultHttpClient create(Plugin plugin, String url) {
43-
HttpParams httpClientParams = new BasicHttpParams();
44-
37+
public static AwsToolkitHttpClient create(Plugin plugin, String url) {
4538
IPreferenceStore preferences = AwsToolkitCore.getDefault().getPreferenceStore();
46-
4739
int connectionTimeout = preferences.getInt(PreferenceConstants.P_CONNECTION_TIMEOUT);
4840
int socketTimeout = preferences.getInt(PreferenceConstants.P_SOCKET_TIMEOUT);
4941

50-
HttpConnectionParams.setConnectionTimeout(httpClientParams, connectionTimeout);
51-
HttpConnectionParams.setSoTimeout(httpClientParams, socketTimeout);
52-
53-
HttpProtocolParams.setUserAgent(httpClientParams,
54-
AwsClientUtils
55-
.formatUserAgentString("AWS-Toolkit-For-Eclipse", plugin));
56-
57-
DefaultHttpClient httpclient = new DefaultHttpClient(httpClientParams);
58-
configureProxy(httpclient, url);
42+
IProxyData data = getEclipseProxyData(url);
43+
HttpHost httpHost = null;
44+
BasicCredentialsProvider credentialsProvider = null;
45+
if (data != null) {
46+
httpHost = new HttpHost(data.getHost(), data.getPort());
47+
if (data.isRequiresAuthentication()) {
48+
credentialsProvider = new BasicCredentialsProvider();
49+
credentialsProvider.setCredentials(new AuthScope(httpHost),
50+
new NTCredentials(data.getUserId(), data.getPassword(), null, null));
51+
}
52+
}
5953

60-
return httpclient;
54+
return AwsToolkitHttpClient.builder()
55+
.setConnectionTimeout(connectionTimeout)
56+
.setSocketTimeout(socketTimeout)
57+
.setUserAgent(AwsClientUtils.formatUserAgentString("AWS-Toolkit-For-Eclipse", plugin))
58+
.setProxy(httpHost)
59+
.setCredentialsProvider(credentialsProvider)
60+
.build();
6161
}
6262

63-
private static void configureProxy(DefaultHttpClient client, String url) {
63+
private static IProxyData getEclipseProxyData(String url) {
6464
AwsToolkitCore plugin = AwsToolkitCore.getDefault();
6565
if (plugin != null) {
6666
IProxyService proxyService =
6767
AwsToolkitCore.getDefault().getProxyService();
6868

6969
if (proxyService.isProxiesEnabled()) {
7070
try {
71-
IProxyData[] proxyData;
72-
proxyData = proxyService.select(new URI(url));
71+
IProxyData[] proxyData = proxyService.select(new URI(url));
7372
if (proxyData.length > 0) {
74-
75-
IProxyData data = proxyData[0];
76-
client.getParams().setParameter(
77-
ConnRoutePNames.DEFAULT_PROXY,
78-
new HttpHost(data.getHost(), data.getPort()));
79-
80-
if (data.isRequiresAuthentication()) {
81-
client.getCredentialsProvider().setCredentials(
82-
new AuthScope(data.getHost(), data.getPort()),
83-
new NTCredentials(data.getUserId(), data.getPassword(), null, null));
84-
}
73+
return proxyData[0];
8574
}
8675
} catch (URISyntaxException e) {
8776
plugin.logError(e.getMessage(), e);
8877
}
8978
}
9079
}
80+
81+
return null;
9182
}
9283

9384
private HttpClientFactory() {

bundles/com.amazonaws.eclipse.core/src/com/amazonaws/eclipse/core/accounts/AccountInfoProvider.java

+9-3
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@
1515
package com.amazonaws.eclipse.core.accounts;
1616

1717
import java.io.File;
18+
import java.nio.file.Files;
19+
import java.nio.file.Path;
20+
import java.nio.file.Paths;
1821
import java.util.Collection;
1922
import java.util.Collections;
2023
import java.util.HashMap;
@@ -40,6 +43,7 @@
4043
import com.amazonaws.eclipse.core.accounts.profiles.SdkProfilesCredentialsConfiguration;
4144
import com.amazonaws.eclipse.core.preferences.PreferenceConstants;
4245
import com.amazonaws.eclipse.core.ui.preferences.AwsAccountPreferencePage;
46+
import com.amazonaws.eclipse.core.util.FileUtils;
4347
import com.amazonaws.util.StringUtils;
4448

4549
/**
@@ -204,19 +208,21 @@ private void reloadProfileAccountInfo(final boolean boostrapCredentialsFile, fin
204208

205209
String credFileLocation = prefStore
206210
.getString(PreferenceConstants.P_CREDENTIAL_PROFILE_FILE_LOCATION);
207-
File credFile = new File(credFileLocation);
208211

209212
ProfilesConfigFile profileConfigFile = null;
210213

211214
try {
212-
if (!credFile.exists() && boostrapCredentialsFile) {
215+
Path credFilePath = Paths.get(credFileLocation);
216+
if (!Files.exists(credFilePath) && boostrapCredentialsFile) {
217+
File credFile = FileUtils.createFileWithPermission600(credFileLocation);
218+
// TODO We need to reconsider whether to dump an empty credentials profile when we cannot find one.
213219
ProfilesConfigFileWriter.dumpToFile(
214220
credFile,
215221
true, // overwrite=true
216222
new Profile(PreferenceConstants.DEFAULT_ACCOUNT_NAME, new BasicAWSCredentials("", "")));
217223
}
218224

219-
profileConfigFile = new ProfilesConfigFile(credFile);
225+
profileConfigFile = new ProfilesConfigFile(credFilePath.toFile());
220226
} catch (Exception e) {
221227
String errorMsg = String.format("Failed to load credential profiles from (%s).",
222228
credFileLocation);

0 commit comments

Comments
 (0)