Newer
Older
/**
* ======================================================
* OpenBIS Data Store Server facade internal code (DO NOT USE!!!)
* ======================================================
*/
function _DataStoreServerInternal(datastoreUrlOrNull, httpServerUri){
this.init(datastoreUrlOrNull, httpServerUri);
}
_DataStoreServerInternal.prototype.init = function(datastoreUrlOrNull, httpServerUri){
this.datastoreUrl = this.normalizeUrl(datastoreUrlOrNull, httpServerUri);
this.httpServerUri = httpServerUri;
}
_DataStoreServerInternal.prototype.log = function(msg){
if(console){
console.log(msg);
}
}
_DataStoreServerInternal.prototype.normalizeUrl = function(openbisUrlOrNull, httpServerUri){
var parts = this.parseUri(window.location);
if(openbisUrlOrNull){
var openbisParts = this.parseUri(openbisUrlOrNull);
for(openbisPartName in openbisParts){
var openbisPartValue = openbisParts[openbisPartName];
if(openbisPartValue){
parts[openbisPartName] = openbisPartValue;
}
}
}
return parts.protocol + "://" + parts.authority + httpServerUri;
}
_DataStoreServerInternal.prototype.getUrlForMethod = function(method) {
return this.datastoreUrl + "?method=" + method;
}
_DataStoreServerInternal.prototype.jsonRequestData = function(params) {
return JSON.stringify(params);
}
_DataStoreServerInternal.prototype.sendHttpRequest = function(httpMethod, contentType, url, data) {
const xhr = new XMLHttpRequest();
xhr.open(httpMethod, url);
xhr.responseType = "blob";
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
return new Promise((resolve, reject) => {
xhr.onreadystatechange = function() {
if (xhr.readyState === XMLHttpRequest.DONE) {
const status = xhr.status;
const response = xhr.response;
if (status >= 200 && status < 300) {
const contentType = this.getResponseHeader('content-type');
switch (contentType) {
case 'text/plain':
// Fall through.
case'application/json': {
response.text().then((blobResponse) => resolve(blobResponse))
.catch((error) => reject(error));
break;
}
case 'application/octet-stream': {
resolve(response);
break;
}
default: {
reject("Client error HTTP response. Unsupported content-type received.");
break;
}
}
} else if (status >= 400 && status < 600) {
if (response.size > 0) {
response.text().then((blobResponse) => reject(JSON.parse(blobResponse).error[1].message))
.catch((error) => reject(error));
} else {
reject(xhr.statusText);
}
} else {
reject("ERROR: " + xhr.responseText);
}
Adam Laskowski
committed
}
}
Adam Laskowski
committed
_DataStoreServerInternal.prototype.buildGetUrl = function(queryParams) {
const queryString = Object.keys(queryParams)
.map(key => `${encodeURIComponent(key)}=${encodeURIComponent(queryParams[key])}`)
.join('&');
return `${this.datastoreUrl}?${queryString}`;
}
// Functions for working with cookies (see http://www.quirksmode.org/js/cookies.html)
_DataStoreServerInternal.prototype.createCookie = function(name,value,days) {
if (days) {
var date = new Date();
date.setTime(date.getTime()+(days*24*60*60*1000));
var expires = "; expires="+date.toGMTString();
}
else var expires = "";
document.cookie = name+"="+value+expires+"; path=/";
}
_DataStoreServerInternal.prototype.readCookie = function(name) {
var nameEQ = name + "=";
var ca = document.cookie.split(';');
for(var i=0;i < ca.length;i++) {
var c = ca[i];
while (c.charAt(0)==' ') c = c.substring(1,c.length);
if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
}
return null;
}
_DataStoreServerInternal.prototype.eraseCookie = function(name) {
this.createCookie(name,"",-1);
}
// parseUri 1.2.2 (c) Steven Levithan <stevenlevithan.com> MIT License (see http://blog.stevenlevithan.com/archives/parseuri)
_DataStoreServerInternal.prototype.parseUri = function(str) {
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
var options = {
strictMode: false,
key: ["source","protocol","authority","userInfo","user","password","host","port","relative","path","directory","file","query","anchor"],
q: {
name: "queryKey",
parser: /(?:^|&)([^&=]*)=?([^&]*)/g
},
parser: {
strict: /^(?:([^:\/?#]+):)?(?:\/\/((?:(([^:@]*)(?::([^:@]*))?)?@)?([^:\/?#]*)(?::(\d*))?))?((((?:[^?#\/]*\/)*)([^?#]*))(?:\?([^#]*))?(?:#(.*))?)/,
loose: /^(?:(?![^:@]+:[^:@\/]*@)([^:\/?#.]+):)?(?:\/\/)?((?:(([^:@]*)(?::([^:@]*))?)?@)?([^:\/?#]*)(?::(\d*))?)(((\/(?:[^?#](?![^?#\/]*\.[^?#\/.]+(?:[?#]|$)))*\/?)?([^?#\/]*))(?:\?([^#]*))?(?:#(.*))?)/
}
};
var o = options,
m = o.parser[o.strictMode ? "strict" : "loose"].exec(str),
uri = {},
i = 14;
while (i--) uri[o.key[i]] = m[i] || "";
uri[o.q.name] = {};
uri[o.key[12]].replace(o.q.parser, function ($0, $1, $2) {
if ($1) uri[o.q.name][$1] = $2;
});
return uri;
}
/** Helper method for checking response from DSS server */
function parseJsonResponse(rawResponse) {
return new Promise((resolve, reject) => {
let response = JSON.parse(rawResponse);
if (response.error) {
reject(response.error[1].message);
} else {
resolve(response);
}
});
}
/**
* ===============
* DSS facade
* ===============
*
* The facade provides access to the DSS methods
*
*/
function DataStoreServer(datastoreUrlOrNull, httpServerUri) {
this._internal = new _DataStoreServerInternal(datastoreUrlOrNull, httpServerUri);
}
/**
* ==================================================================================
* ch.ethz.sis.afsapi.api.AuthenticationAPI methods
* ==================================================================================
*/
/**
* Stores the current session in a cookie.
*
* @method
*/
DataStoreServer.prototype.rememberSession = function() {
this._internal.createCookie('dataStoreServer', this.getSession(), 1);
}
/**
* Removes the current session from a cookie.
*
* @method
*/
DataStoreServer.prototype.forgetSession = function() {
this._internal.eraseCookie('dataStoreServer');
}
/**
* Restores the current session from a cookie.
*
* @method
*/
DataStoreServer.prototype.restoreSession = function() {
this._internal.sessionToken = this._internal.readCookie('dataStoreServer');
}
/**
* Sets the current session.
*
* @method
*/
DataStoreServer.prototype.useSession = function(sessionToken){
this._internal.sessionToken = sessionToken;
}
/**
* Returns the current session.
*
* @method
*/
DataStoreServer.prototype.getSession = function(){
return this._internal.sessionToken;
}
Adam Laskowski
committed
/**
* Sets interactiveSessionKey.
*
* @method
*/
DataStoreServer.prototype.setInteractiveSessionKey = function(interactiveSessionKey){
Adam Laskowski
committed
this._internal.interactiveSessionKey = interactiveSessionKey;
}
/**
* Returns the current session.
*
* @method
*/
DataStoreServer.prototype.getInteractiveSessionKey = function(){
Adam Laskowski
committed
return this._internal.interactiveSessionKey;
}
/**
* Sets transactionManagerKey.
*
* @method
*/
DataStoreServer.prototype.setTransactionManagerKey = function(transactionManagerKey){
Adam Laskowski
committed
this._internal.transactionManagerKey = transactionManagerKey;
}
/**
* Returns the current session.
*
* @method
*/
DataStoreServer.prototype.getTransactionManagerKey = function(){
Adam Laskowski
committed
return this._internal.transactionManagerKey;
}
DataStoreServer.prototype.fillCommonParameters = function(params) {
Adam Laskowski
committed
if(this.getSession()) {
params["sessionToken"] = this.getSession();
}
if(this.getInteractiveSessionKey()) {
params["interactiveSessionKey"] = this.getInteractiveSessionKey();
}
if(this.getTransactionManagerKey()) {
params["transactionManagerKey"] = this.getTransactionManagerKey();
}
return params;
}
const encodeParams = p => Object.entries(p).map(kv => kv.map(encodeURIComponent).join("=")).join("&");
/**
* Log into DSS.
*
* @method
*/
DataStoreServer.prototype.login = function(userId, userPassword) {
Adam Laskowski
committed
var datastoreObj = this
const data = this.fillCommonParameters({
"method": "login",
"userId": userId,
"password": userPassword
});
return this._internal.sendHttpRequest(
Adam Laskowski
committed
"POST",
"application/octet-stream",
Adam Laskowski
committed
this._internal.datastoreUrl,
encodeParams(data)
).then((loginResponse) => {
vkovtun
committed
return new Promise((resolve, reject) => {
datastoreObj._internal.sessionToken = loginResponse;
datastoreObj.rememberSession();
resolve(loginResponse);
})
Adam Laskowski
committed
}
/**
* Checks whether the current session is still active.
*
*/
DataStoreServer.prototype.isSessionValid = function() {
return new Promise((resolve, reject) => {
if (this.getSession()) {
const data = this.fillCommonParameters({"method":"isSessionValid"});
this._internal.sendHttpRequest(
"GET",
"application/octet-stream",
this._internal.datastoreUrl,
encodeParams(data)
).then((response) => parseJsonResponse(response).then((value) => resolve(value))
.catch((reason) => reject(reason)));
} else {
resolve({ result : false })
}
});
* Restores the current session from a cookie.
*
* @see restoreSession()
* @see isSessionActive()
* @method
*/
DataStoreServer.prototype.ifRestoredSessionActive = function() {
}
/**
* Log out of DSS.
*
* @method
*/
DataStoreServer.prototype.logout = function() {
return new Promise((resolve, reject) => {
this.forgetSession();
if (this.getSession()) {
const data = this.fillCommonParameters({"method": "logout"});
this._internal.sendHttpRequest(
"POST",
"application/octet-stream",
this._internal.datastoreUrl,
encodeParams(data)
).then((response) => parseJsonResponse(response).then((value) => resolve(value))
.catch((reason) => reject(reason)));
} else {
resolve({result: null});
}
});
}
/**
* ==================================================================================
* ch.ethz.sis.afsapi.api.OperationsAPI methods
* ==================================================================================
*/
/**
* List files in the DSS for given owner and source
*/
DataStoreServer.prototype.list = function(owner, source, recursively){
Adam Laskowski
committed
const data = this.fillCommonParameters({
"method": "list",
"owner" : owner,
"source": source,
Adam Laskowski
committed
"recursively": recursively
});
return this._internal.sendHttpRequest(
"GET",
"application/octet-stream",
this._internal.buildGetUrl(data),
{}
).then((response) => parseJsonResponse(response));
}
/**
* Read the contents of selected file
* @param {str} owner owner of the file
* @param {str} source path to file
* @param {int} offset offset from whoch to start reading
* @param {int} limit how many characters to read
*/
DataStoreServer.prototype.read = function(owner, source, offset, limit){
Adam Laskowski
committed
const data = this.fillCommonParameters({
"method": "read",
"owner" : owner,
"source": source,
"offset": offset,
Adam Laskowski
committed
"limit": limit
});
return this._internal.sendHttpRequest(
"GET",
"application/octet-stream",
this._internal.buildGetUrl(data),
);
Adam Laskowski
committed
/** Helper function to convert string md5Hash into an array. */
function hex2a(hexx) {
var hex = hexx.toString(); //force conversion
var str = '';
for (var i = 0; i < hex.length; i += 2)
str += String.fromCharCode(parseInt(hex.substr(i, 2), 16));
return str;
}
/**
* Write data to file (or create it)
* @param {str} owner owner of the file
* @param {str} source path to file
* @param {int} offset offset from which to start writing
* @param {str} data data to write
*/
DataStoreServer.prototype.write = function(owner, source, offset, data){
Adam Laskowski
committed
const params = this.fillCommonParameters({
"method": "write",
"owner" : owner,
"source": source,
"offset": offset,
"data": btoa(data),
"md5Hash": btoa(hex2a(md5(data))),
});
return this._internal.sendHttpRequest(
"POST",
"application/octet-stream",
Adam Laskowski
committed
this._internal.datastoreUrl,
);
}
/**
* Delete file from the DSS
* @param {str} owner owner of the file
* @param {str} source path to file
*/
DataStoreServer.prototype.delete = function(owner, source){
Adam Laskowski
committed
const data = this.fillCommonParameters({
"method": "delete",
"owner" : owner,
"source": source
});
return this._internal.sendHttpRequest(
"DELETE",
"application/octet-stream",
Adam Laskowski
committed
this._internal.datastoreUrl,
);
}
/**
* Copy file within DSS
*/
DataStoreServer.prototype.copy = function(sourceOwner, source, targetOwner, target){
Adam Laskowski
committed
const data = this.fillCommonParameters({
"method": "copy",
"sourceOwner" : sourceOwner,
"source": source,
"targetOwner": targetOwner,
"target" : target
});
return this._internal.sendHttpRequest(
"POST",
"application/octet-stream",
Adam Laskowski
committed
this._internal.datastoreUrl,
);
}
/**
* Move file within DSS
*/
DataStoreServer.prototype.move = function(sourceOwner, source, targetOwner, target){
Adam Laskowski
committed
const data = this.fillCommonParameters({
"method": "move",
"sourceOwner" : sourceOwner,
"source": source,
"targetOwner": targetOwner,
"target" : target
});
return this._internal.sendHttpRequest(
"POST",
"application/octet-stream",
Adam Laskowski
committed
this._internal.datastoreUrl,
);
/**
* Create a file/directory within DSS
*/
DataStoreServer.prototype.create = function(owner, source, directory){
const data = this.fillCommonParameters({
"method": "create",
"owner" : owner,
"source": source,
"directory": directory
});
return this._internal.sendHttpRequest(
"application/octet-stream",
this._internal.datastoreUrl,
);
}
/**
* ==================================================================================
* ch.ethz.sis.afsapi.api.TwoPhaseTransactionAPI methods
* ==================================================================================
*/
DataStoreServer.prototype.begin = function(transactionId){
Adam Laskowski
committed
const data = this.fillCommonParameters({
"method": "begin",
"transactionId" : transactionId
});
return this._internal.sendHttpRequest(
"POST",
"application/octet-stream",
Adam Laskowski
committed
this._internal.datastoreUrl,
);
}
DataStoreServer.prototype.prepare = function(){
Adam Laskowski
committed
const data = this.fillCommonParameters({
"method": "prepare"
});
return this._internal.sendHttpRequest(
"POST",
"application/octet-stream",
Adam Laskowski
committed
this._internal.datastoreUrl,
);
}
DataStoreServer.prototype.commit = function(){
Adam Laskowski
committed
const data = this.fillCommonParameters({
"method": "commit"
});
return this._internal.sendHttpRequest(
"POST",
"application/octet-stream",
Adam Laskowski
committed
this._internal.datastoreUrl,
);
}
DataStoreServer.prototype.rollback = function(){
Adam Laskowski
committed
const data = this.fillCommonParameters({
"method": "rollback"
});
return this._internal.sendHttpRequest(
"POST",
"application/octet-stream",
Adam Laskowski
committed
this._internal.datastoreUrl,
);
}
DataStoreServer.prototype.recover = function(){
Adam Laskowski
committed
const data = this.fillCommonParameters({
"method": "recover"
});
return this._internal.sendHttpRequest(
"POST",
"application/octet-stream",
Adam Laskowski
committed
this._internal.datastoreUrl,
);
}