123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744 |
- /**
- * Copyright (c) 2006-2017, JGraph Ltd
- * Copyright (c) 2006-2017, Gaudenz Alder
- */
- OneDriveClient = function(editorUi)
- {
- DrawioClient.call(this, editorUi, 'odauth');
-
- this.token = this.token;
- };
- // Extends DrawioClient
- mxUtils.extend(OneDriveClient, DrawioClient);
- /**
- * Specifies if thumbnails should be enabled. Default is true.
- * LATER: If thumbnails are disabled, make sure to replace the
- * existing thumbnail with the placeholder only once.
- */
- OneDriveClient.prototype.clientId = (window.location.hostname == 'test.draw.io') ?
- '2e598409-107f-4b59-89ca-d7723c8e00a4' : '45c10911-200f-4e27-a666-9e9fca147395';
- /**
- * OAuth 2.0 scopes for installing Drive Apps.
- */
- OneDriveClient.prototype.scopes = 'user.read';
- /**
- * OAuth 2.0 scopes for installing Drive Apps.
- */
- OneDriveClient.prototype.redirectUri = 'https://' + window.location.hostname + '/onedrive3.html';
- /**
- * Executes the first step for connecting to Google Drive.
- */
- OneDriveClient.prototype.extension = '.html';
- /**
- * Executes the first step for connecting to Google Drive.
- */
- OneDriveClient.prototype.baseUrl = 'https://graph.microsoft.com/v1.0';
- /**
- * Checks if the client is authorized and calls the next step.
- */
- OneDriveClient.prototype.get = function(url, onload, onerror)
- {
- var req = new mxXmlRequest(url, null, 'GET');
-
- req.setRequestHeaders = mxUtils.bind(this, function(request, params)
- {
- request.setRequestHeader('Authorization', 'Bearer ' + this.token);
- });
-
- req.send(onload, onerror);
-
- return req;
- };
- /**
- * Checks if the client is authorized and calls the next step.
- */
- OneDriveClient.prototype.updateUser = function(success, error, failOnAuth)
- {
- var acceptResponse = true;
-
- var timeoutThread = window.setTimeout(mxUtils.bind(this, function()
- {
- acceptResponse = false;
- error({code: App.ERROR_TIMEOUT});
- }), this.ui.timeout);
-
- this.get(this.baseUrl + '/me', mxUtils.bind(this, function(req)
- {
- window.clearTimeout(timeoutThread);
-
- if (acceptResponse)
- {
- if (req.getStatus() < 200 || req.getStatus() >= 300)
- {
- if (!failOnAuth)
- {
- this.logout();
-
- this.authenticate(mxUtils.bind(this, function()
- {
- this.updateUser(success, error, true);
- }), error);
- }
- else
- {
- error({message: mxResources.get('accessDenied')});
- }
- }
- else
- {
- var data = JSON.parse(req.getText());
- this.setUser(new DrawioUser(data.id, null, data.displayName));
- success();
- }
- }
- }), error);
- };
- /**
- * Authorizes the client, gets the userId and calls <open>.
- */
- OneDriveClient.prototype.authenticate = function(success, error)
- {
- if (window.onOneDriveCallback == null)
- {
- var auth = mxUtils.bind(this, function()
- {
- var acceptAuthResponse = true;
-
- this.ui.showAuthDialog(this, true, mxUtils.bind(this, function(remember, authSuccess)
- {
- var url = 'https://login.microsoftonline.com/common/oauth2/v2.0/authorize' +
- '?client_id=' + this.clientId + '&response_type=token' +
- '&redirect_uri=' + encodeURIComponent(this.redirectUri) +
- '&scope=' + encodeURIComponent(this.scopes) +
- '&response_mode=fragment';
- var width = 525,
- height = 525,
- screenX = window.screenX,
- screenY = window.screenY,
- outerWidth = window.outerWidth,
- outerHeight = window.outerHeight;
-
- var left = screenX + Math.max(outerWidth - width, 0) / 2;
- var top = screenY + Math.max(outerHeight - height, 0) / 2;
-
- var features = ['width=' + width, 'height=' + height,
- 'top=' + top, 'left=' + left,
- 'status=no', 'resizable=yes',
- 'toolbar=no', 'menubar=no',
- 'scrollbars=yes'];
- var popup = window.open(url, 'odauth', features.join(','));
-
- if (popup != null)
- {
- window.onOneDriveCallback = mxUtils.bind(this, function(token, authWindow)
- {
- if (acceptAuthResponse)
- {
- window.onOneDriveCallback = null;
- acceptAuthResponse = false;
-
- try
- {
- if (token == null)
- {
- error({message: mxResources.get('accessDenied'), retry: auth});
- }
- else
- {
- if (authSuccess != null)
- {
- authSuccess();
- }
-
- this.setUser(null);
- this.token = token;
-
- if (remember)
- {
- this.setPersistentToken(token);
- }
-
- success();
- }
- }
- catch (e)
- {
- error(e);
- }
- finally
- {
- if (authWindow != null)
- {
- authWindow.close();
- }
- }
- }
- else if (authWindow != null)
- {
- authWindow.close();
- }
- });
-
- popup.focus();
- }
- }), mxUtils.bind(this, function()
- {
- if (acceptAuthResponse)
- {
- window.onOneDriveCallback = null;
- acceptAuthResponse = false;
- error({message: mxResources.get('accessDenied'), retry: auth});
- }
- }));
- });
-
- auth();
- }
- else
- {
- error({code: App.ERROR_BUSY});
- }
- };
- /**
- * Checks if the client is authorized and calls the next step.
- */
- OneDriveClient.prototype.executeRequest = function(url, success, error)
- {
- var doExecute = mxUtils.bind(this, function(failOnAuth)
- {
- var acceptResponse = true;
-
- var timeoutThread = window.setTimeout(mxUtils.bind(this, function()
- {
- acceptResponse = false;
- error({code: App.ERROR_TIMEOUT, retry: fn});
- }), this.ui.timeout);
- this.get(url, mxUtils.bind(this, function(req)
- {
- window.clearTimeout(timeoutThread);
-
- if (acceptResponse)
- {
- // 404 (file not found) is a valid response for checkExists
- if ((req.getStatus() >= 200 && req.getStatus() <= 299) || req.getStatus() == 404)
- {
- success(req);
- }
- // 400 is returns if wrong user for this file
- else if (req.getStatus() === 401 || req.getStatus() === 400)
- {
- this.clearPersistentToken();
- this.setUser(null);
- this.token = null;
-
- if (!failOnAuth)
- {
- this.authenticate(function()
- {
- doExecute(true);
- }, error);
- }
- else
- {
- error({message: mxResources.get('accessDenied'), retry: mxUtils.bind(this, function()
- {
- this.authenticate(function()
- {
- fn(true);
- }, error);
- })});
- }
- }
- else
- {
- error(this.parseRequestText(req));
- }
- }
- }), error);
- });
-
- var fn = mxUtils.bind(this, function(failOnAuth)
- {
- if (this.user == null)
- {
- this.updateUser(function()
- {
- fn(true);
- }, error, failOnAuth);
- }
- else
- {
- doExecute(failOnAuth);
- }
- });
- if (this.token == null)
- {
- this.authenticate(function()
- {
- fn(true);
- }, error);
- }
- else
- {
- fn(false);
- }
- };
- /**
- * Checks if the client is authorized and calls the next step.
- */
- OneDriveClient.prototype.getLibrary = function(id, success, error)
- {
- this.getFile(id, success, error, false, true);
- };
- /**
- * Checks if the client is authorized and calls the next step.
- */
- OneDriveClient.prototype.getFile = function(id, success, error, denyConvert, asLibrary)
- {
- asLibrary = (asLibrary != null) ? asLibrary : false;
- this.executeRequest(this.baseUrl + '/me/drive/items/' + id, mxUtils.bind(this, function(req)
- {
- if (req.getStatus() >= 200 && req.getStatus() <= 299)
- {
- var meta = JSON.parse(req.getText());
-
- // Handles .vsdx, Gliffy and PNG+XML files by creating a temporary file
- if ((/\.vsdx$/i.test(meta.name) || /\.gliffy$/i.test(meta.name) || /\.png$/i.test(meta.name)))
- {
- var mimeType = (meta.file != null) ? meta.file.mimeType : null;
- this.ui.convertFile(meta['@microsoft.graph.downloadUrl'], meta.name, mimeType,
- this.extension, success, error);
- }
- else
- {
- var acceptResponse = true;
-
- var timeoutThread = window.setTimeout(mxUtils.bind(this, function()
- {
- acceptResponse = false;
- error({code: App.ERROR_TIMEOUT})
- }), this.ui.timeout);
-
- this.ui.loadUrl(meta['@microsoft.graph.downloadUrl'], mxUtils.bind(this, function(data)
- {
- window.clearTimeout(timeoutThread);
-
- if (acceptResponse)
- {
- if (asLibrary)
- {
- success(new OneDriveLibrary(this.ui, data, meta));
- }
- else
- {
- success(new OneDriveFile(this.ui, data, meta));
- }
- }
- }), mxUtils.bind(this, function(req)
- {
- window.clearTimeout(timeoutThread);
-
- if (acceptResponse)
- {
- error(this.parseRequestText(req));
- }
- }), meta.file != null && meta.file.mimeType != null &&
- meta.file.mimeType.substring(0, 6) == 'image/');
- }
- }
- else
- {
- error(this.parseRequestText(req));
- }
- }), error);
- };
- /**
- * Translates this point by the given vector.
- *
- * @param {number} dx X-coordinate of the translation.
- * @param {number} dy Y-coordinate of the translation.
- */
- OneDriveClient.prototype.renameFile = function(file, filename, success, error)
- {
- if (file != null && filename != null)
- {
- // TODO: How to force overwrite file with same name?
- this.checkExists(file.meta.parentReference.id, filename, false, mxUtils.bind(this, function(checked)
- {
- if (checked)
- {
- var url = this.baseUrl + '/me/drive/items/' + file.meta.id;
- this.writeFile(url, JSON.stringify({name: filename}), 'PATCH', 'application/json', success, error);
- }
- else
- {
- error();
- }
- }));
- }
- };
- /**
- * Translates this point by the given vector.
- *
- * @param {number} dx X-coordinate of the translation.
- * @param {number} dy Y-coordinate of the translation.
- */
- OneDriveClient.prototype.moveFile = function(id, folderId, success, error)
- {
- var url = this.baseUrl + '/me/drive/items/' + id;
- this.writeFile(url, JSON.stringify({parentReference: {id: folderId}}), 'PATCH', 'application/json', success, error);
- };
- /**
- * Translates this point by the given vector.
- *
- * @param {number} dx X-coordinate of the translation.
- * @param {number} dy Y-coordinate of the translation.
- */
- OneDriveClient.prototype.insertLibrary = function(filename, data, success, error, folderId)
- {
- this.insertFile(filename, data, success, error, true, folderId);
- };
- /**
- * Translates this point by the given vector.
- *
- * @param {number} dx X-coordinate of the translation.
- * @param {number} dy Y-coordinate of the translation.
- */
- OneDriveClient.prototype.insertFile = function(filename, data, success, error, asLibrary, folderId)
- {
- asLibrary = (asLibrary != null) ? asLibrary : false;
-
- this.checkExists(folderId, filename, true, mxUtils.bind(this, function(checked)
- {
- if (checked)
- {
- var folder = (folderId != null) ? '/me/drive/items/' + folderId : '/me/drive/root';
- var url = this.baseUrl + folder + '/children/' + filename + '/content';
-
- this.writeFile(url, data, 'PUT', null, mxUtils.bind(this, function(meta)
- {
- if (asLibrary)
- {
- success(new OneDriveLibrary(this.ui, data, meta));
- }
- else
- {
- success(new OneDriveFile(this.ui, data, meta));
- }
- }), error);
- }
- else
- {
- error();
- }
- }))
- };
- /**
- * Translates this point by the given vector.
- *
- * @param {number} dx X-coordinate of the translation.
- * @param {number} dy Y-coordinate of the translation.
- */
- OneDriveClient.prototype.checkExists = function(parentId, filename, askReplace, fn)
- {
- var folder = (parentId != null) ? '/me/drive/items/' + parentId : '/me/drive/root';
-
- this.executeRequest(this.baseUrl + folder + '/children/' + filename, mxUtils.bind(this, function(req)
- {
- if (req.getStatus() == 404)
- {
- fn(true);
- }
- else
- {
- if (askReplace)
- {
- this.ui.spinner.stop();
-
- this.ui.confirm(mxResources.get('replaceIt', [filename]), function()
- {
- fn(true);
- }, function()
- {
- fn(false);
- });
- }
- else
- {
- this.ui.spinner.stop();
-
- this.ui.showError(mxResources.get('error'), mxResources.get('fileExists'), mxResources.get('ok'), function()
- {
- fn(false);
- });
- }
- }
- }), function(req)
- {
- fn(false);
- }, true);
- };
- /**
- * Translates this point by the given vector.
- *
- * @param {number} dx X-coordinate of the translation.
- * @param {number} dy Y-coordinate of the translation.
- */
- OneDriveClient.prototype.saveFile = function(file, success, error)
- {
- var url = this.baseUrl + '/me/drive/items/' + file.meta.id + '/content/';
- this.writeFile(url, file.getData(), 'PUT', null, success, error);
- };
- /**
- * Translates this point by the given vector.
- *
- * @param {number} dx X-coordinate of the translation.
- * @param {number} dy Y-coordinate of the translation.
- */
- OneDriveClient.prototype.writeFile = function(url, data, method, contentType, success, error)
- {
- if (url != null && data != null)
- {
- var doExecute = mxUtils.bind(this, function(failOnAuth)
- {
- var acceptResponse = true;
-
- var timeoutThread = window.setTimeout(mxUtils.bind(this, function()
- {
- acceptResponse = false;
- error({code: App.ERROR_TIMEOUT, retry: fn});
- }), this.ui.timeout);
- var req = new mxXmlRequest(url, data, method);
-
- req.setRequestHeaders = mxUtils.bind(this, function(request, params)
- {
- // Space deletes content type header. Specification says "text/plain"
- // should work but returns an 415 Unsupported Media Type error
- request.setRequestHeader('Content-Type', contentType || ' ');
- request.setRequestHeader('Authorization', 'Bearer ' + this.token);
- });
-
- req.send(mxUtils.bind(this, function(req)
- {
- window.clearTimeout(timeoutThread);
-
- if (acceptResponse)
- {
- if (req.getStatus() >= 200 && req.getStatus() <= 299)
- {
- success(JSON.parse(req.getText()));
- }
- else if (req.getStatus() === 401)
- {
- this.clearPersistentToken();
- this.setUser(null);
- this.token = null;
-
- if (!failOnAuth)
- {
- this.authenticate(function()
- {
- doExecute(true);
- }, error);
- }
- else
- {
- error({message: mxResources.get('accessDenied'), retry: mxUtils.bind(this, function()
- {
- this.authenticate(function()
- {
- fn(true);
- }, error);
- })});
- }
- }
- else
- {
- error(this.parseRequestText(req));
- }
- }
- }), mxUtils.bind(this, function(req)
- {
- window.clearTimeout(timeoutThread);
-
- if (acceptResponse)
- {
- error(this.parseRequestText(req));
- }
- }));
- });
-
- var fn = mxUtils.bind(this, function(failOnAuth)
- {
- if (this.user == null)
- {
- this.updateUser(function()
- {
- fn(true);
- }, error, failOnAuth);
- }
- else
- {
- doExecute(failOnAuth);
- }
- });
- if (this.token == null)
- {
- this.authenticate(function()
- {
- fn(true);
- }, error);
- }
- else
- {
- fn(false);
- }
- }
- else
- {
- error({message: mxResources.get('unknownError')});
- }
- };
- /**
- * Checks if the client is authorized and calls the next step.
- */
- OneDriveClient.prototype.parseRequestText = function(req)
- {
- var result = {message: mxResources.get('unknownError')};
-
- try
- {
- result = JSON.parse(req.getText());
- }
- catch (e)
- {
- // ignore
- }
-
- return result;
- };
- /**
- * Checks if the client is authorized and calls the next step.
- */
- OneDriveClient.prototype.pickLibrary = function(fn)
- {
- this.pickFile(fn);
- };
- /**
- * Checks if the client is authorized and calls the next step.
- */
- OneDriveClient.prototype.pickFolder = function(fn)
- {
- OneDrive.save(
- {
- clientId: this.clientId,
- action: 'query',
- openInNewWindow: true,
- advanced:
- {
- 'redirectUri': this.redirectUri
- },
- success: mxUtils.bind(this, function(files)
- {
- // KNOWN: Token should be per I/O operation
- this.token = files.accessToken;
- fn(files);
- }),
- cancel: function()
- {
- // do nothing
- },
- error: mxUtils.bind(this, function(e)
- {
- this.ui.showError(mxResources.get('error'), e);
- })
- });
- };
- /**
- * Checks if the client is authorized and calls the next step.
- */
- OneDriveClient.prototype.pickFile = function(fn, returnObject)
- {
- fn = (fn != null) ? fn : mxUtils.bind(this, function(id)
- {
- this.ui.loadFile('W' + encodeURIComponent(id));
- });
-
- OneDrive.open(
- {
- clientId: this.clientId,
- action: 'query',
- multiSelect: false,
- advanced:
- {
- 'redirectUri': this.redirectUri
- },
- success: mxUtils.bind(this, function(files)
- {
- if (files != null && files.value != null && files.value.length > 0)
- {
- // KNOWN: Token should be per I/O operation
- this.token = files.accessToken;
- fn((returnObject) ? files : files.value[0].id);
- }
- }),
- cancel: function()
- {
- // do nothing
- },
- error: mxUtils.bind(this, function(e)
- {
- this.ui.showError(mxResources.get('error'), e);
- })
- });
- };
- /**
- * Checks if the client is authorized and calls the next step.
- */
- OneDriveClient.prototype.logout = function()
- {
- if (isLocalStorage)
- {
- var check = localStorage.getItem('odpickerv7cache');
-
- if (check != null && check.substring(0, 19) == '{"odsdkLoginHint":{')
- {
- localStorage.removeItem('odpickerv7cache');
- }
- }
-
- this.clearPersistentToken();
- this.setUser(null);
- this.token = null;
- };
|