-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathAmbiverseApiClient.java
More file actions
395 lines (344 loc) · 12.1 KB
/
AmbiverseApiClient.java
File metadata and controls
395 lines (344 loc) · 12.1 KB
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
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
package com.ambiverse.api;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.logging.Logger;
import com.ambiverse.api.model.AnalyzeInput;
import com.ambiverse.api.model.AnalyzeOutput;
import com.google.api.client.auth.oauth2.BearerToken;
import com.google.api.client.auth.oauth2.ClientCredentialsTokenRequest;
import com.google.api.client.auth.oauth2.ClientParametersAuthentication;
import com.google.api.client.auth.oauth2.TokenResponse;
import com.google.api.client.googleapis.auth.oauth2.GoogleClientSecrets;
import com.google.api.client.googleapis.services.json.AbstractGoogleJsonClient;
import com.google.api.client.http.GenericUrl;
import com.google.api.client.http.HttpRequestInitializer;
import com.google.api.client.http.HttpTransport;
import com.google.api.client.http.json.JsonHttpContent;
import com.google.api.client.json.JsonFactory;
/**
* Ambiverse API Client that builds on the
* <a href="https://developers.google.com/api-client-library/java/">Google API Client Library for Java</a>.
* The client abstracts API requests to native Java objects and methods. That way, it allows you to
* easily analyze texts with the {@link #entityLinking() Entity Linking Service} or query the
* {@link #knowledgeGraph() Knowledge Graph Service} for details about entities.
*
* @see <a href="https://developer.ambiverse.com/docs">API Documentation</a>
* @see <a href="https://developer.ambiverse.com/overview">API Overview</a>
*/
public class AmbiverseApiClient extends AbstractGoogleJsonClient {
/** The host URL of the Ambiverse API */
public static final String HOST_URL = "https://api.ambiverse.com";
/** The service path of the current schema */
public static final String SERVICE_PATH = "/v2";
/** The file that the client credentials are read from */
private static final String CLIENT_SECRETS_FILENAME = "client_secrets.json";
private static final Logger logger = Logger.getLogger(AmbiverseApiClient.class.getName());
private EntityLinking entityLinking = null;
private KnowledgeGraph knowledgeGraph = null;
/**
* Constructor for a new instance of {@link AmbiverseApiClient}.
*
* @param builder The builder to use for constructing the client instance.
*/
protected AmbiverseApiClient(Builder builder) {
super(builder);
}
/**
* Constructor for a new instance of {@link AmbiverseApiClient}.
*
* @param transport The HTTP Transport to use.
* @param jsonFactory The JSON Factory to use.
* @param httpRequestInitializer The HTTP Request Initializer to use, e.g. a {@link Credential}.
*/
public AmbiverseApiClient(HttpTransport transport, JsonFactory jsonFactory,
HttpRequestInitializer httpRequestInitializer) {
this(new Builder(transport, jsonFactory, httpRequestInitializer)
.setApplicationName("SampleCompany-SampleApp/1.0"));
}
/**
* Authenticates your client application against the Ambiverse API endpoint via the OAuth 2
* protocol. Your client credentials are read from client_secrets.json on your classpath and
* exchanged for an API access token, which is stored within the API client throughout your
* session.
* @see <a href="https://developers.google.com/api-client-library/python/guide/aaa_client_secrets">Google Client Secrets file format</a>
* @return Credential object holding your API access token
* @throws IOException
*/
public static Credential authorize(HttpTransport transport, JsonFactory jsonFactory)
throws IOException {
// Read the credentials from the provided client_secrets.json file
GoogleClientSecrets clientSecrets = null;
try {
clientSecrets = GoogleClientSecrets.load(jsonFactory,
new InputStreamReader(AmbiverseApiClient.class.getClassLoader().getResourceAsStream(CLIENT_SECRETS_FILENAME)));
} catch (NullPointerException e) {
logger.severe("Copy src/main/resources/client_secrets_template.json to src/main/resources" + CLIENT_SECRETS_FILENAME + " , " +
System.lineSeparator() +
"and make sure to specify your client credentials there.");
System.exit(1);
}
// Request an access token
TokenResponse response = new ClientCredentialsTokenRequest(
transport,
jsonFactory,
new GenericUrl(clientSecrets.getWeb().getTokenUri()))
.setClientAuthentication(new ClientParametersAuthentication(
clientSecrets.getWeb().getClientId(),
clientSecrets.getWeb().getClientSecret()))
.execute();
// Return the Credential object
Credential c = new Credential(BearerToken.authorizationHeaderAccessMethod());
c.setAccessToken(response.getAccessToken());
return c;
}
/**
* Builder used for initializing the {@link AmbiverseApiClient}.
*
*/
public static final class Builder
extends AbstractGoogleJsonClient.Builder {
/**
* Constructor for a new {@link Builder} instance.
*
* @param transport The HTTP Transport to use.
* @param jsonFactory The JSON Factory to use.
* @param httpRequestInitializer The HTTP Request Initializer to use, e.g. a {@link Credential}.
*/
public Builder(HttpTransport transport, JsonFactory jsonFactory,
HttpRequestInitializer httpRequestInitializer) {
super(transport,
jsonFactory,
HOST_URL,
SERVICE_PATH,
httpRequestInitializer,
false);
}
/**
* Builds a new instance of {@link AmbiverseApiClient}.
*/
@Override
public AmbiverseApiClient build() {
return new AmbiverseApiClient(this);
}
/**
* Sets the application name to be used in the UserAgent header of each request or null
* for none.
*
* @param applicationName The name of the application
*/
@Override
public Builder setApplicationName(
String applicationName) {
super.setApplicationName(applicationName);
return this;
}
}
/**
* Access method for the Entity Linking Service.
*
* @see <a href="https://developer.ambiverse.com/overview#entity-linking-service">Entity Linking Service Overview</a>
* @return Instance of {@link EntityLinking}
*/
public synchronized EntityLinking entityLinking() {
if (entityLinking == null) {
entityLinking = new EntityLinking();
}
return entityLinking;
}
/**
* Wrapper for the REST endpoints of the Entity Linking Service.
*/
public class EntityLinking {
public static final String PATH = "entitylinking";
private Analyze analyze = null;
/**
* Access method for the {@link Analyze} resource.
*
* @return Instance of {@link Analyze}
*/
public Analyze analyze() {
if (analyze == null) {
analyze = new Analyze();
}
return analyze;
}
/**
* Wrapper for the REST endpoints of the Analyze resource.
*/
public class Analyze {
private static final String PATH = EntityLinking.PATH + "/analyze";
/**
* Access method for the text analysis endpoint.
*
* @param input Instance of {@link AnalyzeInput}
* @return HTTP request instance of {@link Post} for {@link AnalyzeOutput}.
*/
public Post process(AnalyzeInput input) {
return new Post(input);
}
/**
* HTTP request for {@link AnalyzeOutput}. *
*/
public class Post extends Request<com.ambiverse.api.model.AnalyzeOutput> {
protected Post(AnalyzeInput input) {
super(AmbiverseApiClient.this,
"POST",
PATH,
new JsonHttpContent(AmbiverseApiClient.this.getJsonFactory(), input),
com.ambiverse.api.model.AnalyzeOutput.class);
}
}
/**
* Access method for the metadata endpoint.
*
* @return HTTP request instance of {@link GetMeta} for {@link com.ambiverse.api.model.Meta}.
*/
public GetMeta getMeta() {
return new GetMeta();
}
/**
* HTTP request for {@link com.ambiverse.api.model.Meta}.
*/
public class GetMeta extends Request<com.ambiverse.api.model.Meta> {
private static final String PATH = Analyze.PATH + "/_meta";
protected GetMeta() {
super(AmbiverseApiClient.this, "GET", PATH, null, com.ambiverse.api.model.Meta.class);
}
}
}
}
/**
* Access method for the Knowledge Graph Service.
*
* @see <a href="https://developer.ambiverse.com/overview#knowledge-graph-service">Knowledge Graph Service Overview</a>
* @return Instance of {@link KnowledgeGraph}
*/
public synchronized KnowledgeGraph knowledgeGraph() {
if (knowledgeGraph == null) {
knowledgeGraph = new KnowledgeGraph();
}
return knowledgeGraph;
}
/**
* Wrapper for the REST endpoints of the Knowledge Graph Service.
*/
public class KnowledgeGraph {
public static final String PATH = "knowledgegraph";
private Entities entities = null;
private Categories categories = null;
/**
* Access method for the {@link Entities} resource.
*
* @return Instance of {@link Entities}
*/
public synchronized Entities entities() {
if (entities == null) {
entities = new Entities();
}
return entities;
}
/**
* Access method for the {@link Categories} resource.
*
* @return Instance of {@link Categories}
*/
public synchronized Categories categories() {
if (categories == null) {
categories = new Categories();
}
return categories;
}
/**
* Wrapper for the REST endpoints of the Entities resource.
*/
public class Entities {
private static final String PATH = KnowledgeGraph.PATH + "/entities";
/**
* Access method for the {@link com.ambiverse.api.model.Entities} resource
*
* @return HTTP request instance of {@link Post} for {@link com.ambiverse.api.model.Entities}.
*/
public Post get(String... yagoIDs) {
return new Post(yagoIDs);
}
/**
* HTTP request for {@link com.ambiverse.api.model.Entities}.
*/
public class Post extends Request<com.ambiverse.api.model.Entities> {
private static final String PATH = Entities.PATH;
protected Post(String... yagoIDs) {
super(AmbiverseApiClient.this,
"POST",
PATH,
new JsonHttpContent(AmbiverseApiClient.this.getJsonFactory(), yagoIDs),
com.ambiverse.api.model.Entities.class);
}
}
/**
* Access method for the metadata resource
*
* @return HTTP request instance of {@link GetMeta} for {@link com.ambiverse.api.model.Meta}.
*/
public GetMeta getMeta() {
return new GetMeta();
}
/**
* HTTP request for {@link com.ambiverse.api.model.Meta}.
*/
public class GetMeta extends Request<com.ambiverse.api.model.Meta> {
private static final String PATH = Entities.PATH + "/_meta";
protected GetMeta() {
super(AmbiverseApiClient.this, "GET", PATH, null, com.ambiverse.api.model.Meta.class);
}
}
}
/**
* Wrapper for the REST endpoints of the Categories resource.
*/
public class Categories {
private static final String PATH = KnowledgeGraph.PATH + "/categories";
/**
* Access method for the {@link com.ambiverse.api.model.Categories} resource
*
* @return HTTP request instance of {@link Post} for {@link com.ambiverse.api.model.Categories}.
*/
public Post get(String... yagoIDs) {
return new Post(yagoIDs);
}
/**
* HTTP request for {@link com.ambiverse.api.model.Categories}.
*/
public class Post extends Request<com.ambiverse.api.model.Categories> {
// private static final String PATH = Categories.PATH + "/{yagoIDs}";
//
// @Key
// private String[] yagoIDs;
protected Post(String... yagoIDs) {
super(AmbiverseApiClient.this,
"POST",
PATH,
new JsonHttpContent(AmbiverseApiClient.this.getJsonFactory(), yagoIDs),
com.ambiverse.api.model.Categories.class);
// this.yagoIDs = yagoIDs;
}
}
/**
* Access method for the metadata resource
*
* @return HTTP request instance of {@link GetMeta} for {@link com.ambiverse.api.model.Meta}.
*/
public GetMeta getMeta() {
return new GetMeta();
}
/**
* HTTP request for {@link com.ambiverse.api.model.Meta}.
*/
public class GetMeta extends Request<com.ambiverse.api.model.Meta> {
private static final String PATH = Categories.PATH + "/_meta";
protected GetMeta() {
super(AmbiverseApiClient.this, "GET", PATH, null, com.ambiverse.api.model.Meta.class);
}
}
}
}
}