blob: 33c1bb55e0a0eac96962e8e54252f555a6cf5e86 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
/**
* @author Jorge Bay Gondra
*/
import * as utilsJs from '../lib/utils.js';
import DriverRemoteConnection from '../lib/driver/driver-remote-connection.js';
import Client from '../lib/driver/client.js';
import PlainTextSaslAuthenticator from '../lib/driver/auth/plain-text-sasl-authenticator.js';
import jsYaml from 'js-yaml';
import fs from 'fs';
let serverUrl;
let serverAuthUrl;
let socketServerUrl;
let sockerServerConfigPath;
if (process.env.DOCKER_ENVIRONMENT === 'true') {
serverUrl = 'ws://gremlin-server-test-js:45940/gremlin';
serverAuthUrl = 'wss://gremlin-server-test-js:45941/gremlin';
socketServerUrl = 'ws://gremlin-socket-server-js:';
sockerServerConfigPath = '/js_app/gremlin-socket-server/conf/test-ws-gremlin.yaml';
} else {
serverUrl = 'ws://localhost:45940/gremlin';
serverAuthUrl = 'wss://localhost:45941/gremlin';
socketServerUrl = 'ws://localhost:';
sockerServerConfigPath = '../../../../../gremlin-tools/gremlin-socket-server/conf/test-ws-gremlin.yaml';
}
/** @returns {DriverRemoteConnection} */
export function getConnection(traversalSource) {
return new DriverRemoteConnection(serverUrl, { traversalSource, mimeType: process.env.CLIENT_MIMETYPE });
}
export function getSecureConnectionWithPlainTextSaslAuthenticator(traversalSource, username, password) {
const authenticator = new PlainTextSaslAuthenticator(username, password);
return new DriverRemoteConnection(serverAuthUrl, {
traversalSource,
authenticator,
rejectUnauthorized: false,
mimeType: process.env.CLIENT_MIMETYPE,
});
}
export function getDriverRemoteConnection(url, options) {
return new DriverRemoteConnection(url, { ...options, mimeType: process.env.CLIENT_MIMETYPE });
}
export function getClient(traversalSource) {
return new Client(serverUrl, { traversalSource, mimeType: process.env.CLIENT_MIMETYPE });
}
export function getSessionClient(traversalSource) {
const sessionId = utilsJs.getUuid();
return new Client(serverUrl, {
'traversalSource': traversalSource,
'session': sessionId.toString(),
mimeType: process.env.CLIENT_MIMETYPE,
});
}
function getMimeTypeFromSocketServerSettings(socketServerSettings) {
let mimeType;
switch(socketServerSettings.SERIALIZER) {
case "GraphSONV2":
mimeType = 'application/vnd.gremlin-v2.0+json';
break;
case "GraphSONV3":
mimeType = 'application/vnd.gremlin-v3.0+json';
break;
case "GraphBinaryV1":
default:
mimeType = 'application/vnd.graphbinary-v1.0';
break;
}
return mimeType;
}
export function getGremlinSocketServerClient(traversalSource) {
const settings = getGremlinSocketServerSettings();
const url = socketServerUrl + settings.PORT + '/gremlin';
let mimeType = getMimeTypeFromSocketServerSettings(settings)
return new Client(url, { traversalSource, mimeType });
}
export const getGremlinSocketServerClientNoUserAgent = function getGremlinSocketServerClient(traversalSource) {
const settings = getGremlinSocketServerSettings();
const url = socketServerUrl + settings.PORT + '/gremlin';
let mimeType = getMimeTypeFromSocketServerSettings(settings)
return new Client(url, { traversalSource, mimeType, enableUserAgentOnConnect:false });
};
export function getGremlinSocketServerSettings() {
const settings = jsYaml.load(fs.readFileSync(sockerServerConfigPath, 'utf8'));
return settings;
}