123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410 |
- /**
- * Copyright (c) 2006-2016, JGraph Ltd
- * Copyright (c) 2006-2016, Gaudenz Alder
- */
- /**
- * Constructs a new point for the optional x and y coordinates. If no
- * coordinates are given, then the default values for <x> and <y> are used.
- * @constructor
- * @class Implements a basic 2D point. Known subclassers = {@link mxRectangle}.
- * @param {number} x X-coordinate of the point.
- * @param {number} y Y-coordinate of the point.
- */
- DriveClient = function(editorUi)
- {
- mxEventSource.call(this);
-
- /**
- * Holds a reference to the UI. Needed for the sharing client.
- */
- this.ui = editorUi;
- if (this.ui.editor.chromeless && urlParams['rt'] != '1')
- {
- this.appId = '850530949725';
- this.clientId = '850530949725.apps.googleusercontent.com';
- this.scopes = ['https://www.googleapis.com/auth/drive.readonly', 'openid'];
-
- // Only used for writing files which is disabled in viewer app
- this.mimeType = 'all_types_supported';
- }
- else if (this.ui.isDriveDomain())
- {
- this.appId = '671128082532';
- this.clientId = '671128082532.apps.googleusercontent.com';
- this.mimeType = 'application/vnd.jgraph.mxfile.realtime';
- }
- else
- {
- // Uses a different mime-type and realtime model than the drive domain
- // because realtime models for different app IDs are not compatible
- this.appId = '420247213240';
- this.clientId = '420247213240-hnbju1pt13seqrc1hhd5htpotk4g9q7u.apps.googleusercontent.com';
- this.mimeType = 'application/vnd.jgraph.mxfile.rtlegacy';
- }
-
- this.mimeTypes = 'application/mxe,application/vnd.jgraph.mxfile,' +
- 'application/mxr,application/vnd.jgraph.mxfile.realtime,' +
- 'application/vnd.jgraph.mxfile.rtlegacy';
- };
- // Extends mxEventSource
- mxUtils.extend(DriveClient, mxEventSource);
- /**
- * OAuth 2.0 scopes for installing Drive Apps.
- */
- DriveClient.prototype.scopes = (urlParams['photos'] == '1') ?
- ['https://www.googleapis.com/auth/drive.file',
- 'https://www.googleapis.com/auth/drive.install',
- 'https://www.googleapis.com/auth/photos',
- 'https://www.googleapis.com/auth/photos.upload',
- 'https://www.googleapis.com/auth/userinfo.profile'] :
- ['https://www.googleapis.com/auth/drive.file',
- 'https://www.googleapis.com/auth/drive.install',
- 'https://www.googleapis.com/auth/userinfo.profile'];
- /**
- * 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.
- */
- DriveClient.prototype.enableThumbnails = true;
- /**
- * Specifies the width for thumbnails. Default is 480. This value
- * must be between 220 and 1600.
- */
- DriveClient.prototype.thumbnailWidth = 480;
- /**
- * The maximum number of bytes per thumbnail. Default is 2000000.
- */
- DriveClient.prototype.maxThumbnailSize = 2000000;
- /**
- * Defines the base64url PNG to be used if no thumbnail was generated
- * (including the case where thumbnails are disabled).
- */
- DriveClient.prototype.placeholderThumbnail = 'iVBORw0KGgoAAAANSUhEUgAAAJYAAACWCAMAAAAL34HQAAACN1BMVEXwhwXvhgX4iwXzhwXgbQzvhgXhbAzocgzqcwzldAoAAADhbgvjcQnmdgrlbgDwhgXsfwXufgjwhgXwgQfziAXxgADibgz4iwX4jAX3iwTpcwr1igXoewjsfgj3igX4iwXqcQv4jAX3iwXtfQnndQrvhAbibArwhwXgbQz//////v39jwX6jQX+/v7fagHfawzdVQDwhADgbhPgbhXwhwPocQ3uvKvwiA/faQDscgzxiAT97+XgciTgcSP6jAXgbQ3gcCHwiRfpcQzwhwfeXQD77ef74NLvhgTvegD66uPgbAf66+TvfADwjCzgcCfwiSD67ObhcjjwiBHhczvwiyrgbxj///777ujgcSHgcB/xiRzgbhveWgDeVwDhdEDgbRDqfgffYgDfXwD97+bvfQDxiz7//vvwiRr118rrcgztggbfZgDfZAD++PT98+3gbBPsgAb99vD33tPgcB7icAvuhAX//Pn66N/00sTyy7vuuqbjekLwhwzkcgr88er449n++vfutp/kh1vgcBvhbwvmdwnwgwDwgADeWQD87eLxxrTssJjqpIf0roHmjWTkhFP759n63czvvanomnjnlHDhczD22cr4y6/wwa/3xKX2wJ3rqpH0tY7qp4vpnoDymlbjf0vxjjntcwzldAroegj/kgX12s7518PzqnnnkWfynmLieUjpewjrdAD40Lj1uZTzpm3idTbiciLydQzzfwnyiQTsfgD3xqnzp3TxlkzgbCrdTwDdSwBLKUlNAAAAJ3RSTlP8/b2X/YH8wb+FAIuIggJbQin5opAM9+a/ubaubyD78NjSyr2WgRp4sjN4AAAI70lEQVR42u2cZ38SQRDGT8WGvfde4E4BxVMRRaKiUURRlJhQRDCCSgQVO/bee++9994+nMt5ywoezFJd/fm8uITi3p9n5mbYkcCpO6rVnVu2YEXd+3dRIySuo7pLv4GjGNKg7j3UHTl1l14PajmG9OFBnx7Ird4PumpYEtf1QXc112l0M7OGKXEfeg3guo3iNIyJG92Jaz61mYYxcaNacs1H/8f6j6X5j1WI/mMVIsawRFEzI49SjwOqAJa43emclk8Rp2c7AFZ+LDGyvXE2kmO2Q1Lq17RSd6ND48QIwFVuLNHTOPbEpTOz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'.replace(/\+/g, '-').replace(/\//g, '_');
- /**
- * Mime type for the paceholder thumbnail.
- */
- DriveClient.prototype.placeholderMimeType = 'image/png';
- /**
- * Executes the first step for connecting to Google Drive.
- */
- DriveClient.prototype.libraryMimeType = 'application/vnd.jgraph.mxlibrary';
- /**
- * Contains the hostname of the new app.
- */
- DriveClient.prototype.newAppHostname = 'www.draw.io';
- /**
- * Contains the hostname of the old app.
- */
- DriveClient.prototype.oldAppHostname = 'legacy.draw.io';
- /**
- * Executes the first step for connecting to Google Drive.
- */
- DriveClient.prototype.extension = '.html';
- /**
- * Interval for updating the access token.
- */
- DriveClient.prototype.tokenRefreshInterval = 0;
- /**
- * Interval for updating the access token.
- */
- DriveClient.prototype.lastTokenRefresh = 0;
- /**
- * Executes the first step for connecting to Google Drive.
- */
- DriveClient.prototype.maxRetries = 4;
- /**
- * Executes the first step for connecting to Google Drive.
- */
- DriveClient.prototype.mimeTypeCheckCoolOff = 60000;
- /**
- * Executes the first step for connecting to Google Drive.
- */
- DriveClient.prototype.user = null;
- /**
- * Authorizes the client, gets the userId and calls <open>.
- */
- DriveClient.prototype.setUser = function(user)
- {
- this.user = user;
-
- if (this.user == null && this.tokenRefreshThread != null)
- {
- window.clearTimeout(this.tokenRefreshThread);
- this.tokenRefreshThread = null;
- }
-
- this.fireEvent(new mxEventObject('userChanged'));
- };
- /**
- * Authorizes the client, gets the userId and calls <open>.
- */
- DriveClient.prototype.getUser = function()
- {
- return this.user;
- };
- /**
- * Authorizes the client, gets the userId and calls <open>.
- */
- DriveClient.prototype.setUserId = function(userId, remember)
- {
- if (typeof(Storage) != 'undefined')
- {
- try
- {
- sessionStorage.setItem('GUID', userId);
-
- if (remember)
- {
- var expiry = new Date();
- expiry.setYear(expiry.getFullYear() + 1);
- document.cookie = 'GUID=' + userId + '; expires=' + expiry.toUTCString();
- }
- }
- catch (e)
- {
- // any errors for storing the user ID can be safely ignored
- }
- }
- };
- /**
- * Authorizes the client, gets the userId and calls <open>.
- */
- DriveClient.prototype.clearUserId = function()
- {
- if (typeof(Storage) != 'undefined')
- {
- sessionStorage.removeItem('GUID');
- var expiry = new Date();
- expiry.setYear(expiry.getFullYear() - 1);
- document.cookie = 'GUID=; expires=' + expiry.toUTCString();
- }
- };
- /**
- * Authorizes the client, gets the userId and calls <open>.
- */
- DriveClient.prototype.getUserId = function()
- {
- var uid = null;
-
- if (this.user != null)
- {
- uid = this.user.id;
- }
- if (typeof(Storage) != 'undefined')
- {
- if (uid == null)
- {
- uid = sessionStorage.getItem('GUID');
- }
-
- if (uid == null)
- {
- var cookies = document.cookie.split(";");
-
- for (var i = 0; i < cookies.length; i++)
- {
- // Removes spaces around cookie
- var cookie = mxUtils.trim(cookies[i]);
-
- if (cookie.substring(0, 5) == 'GUID=')
- {
- uid = cookie.substring(5);
- break;
- }
- }
- }
- }
-
- return uid;
- };
- /**
- * Authorizes the client, gets the userId and calls <open>.
- */
- DriveClient.prototype.execute = function(fn)
- {
- // Handles error in immediate authorize call via callback that shows a
- // UI with a button that executes the second non-immediate authorize
- var fallback = mxUtils.bind(this, function(resp)
- {
- // Remember is an argument for the callback that executes
- // when the user clicks the authorize button in the UI and
- // success executes after successful authorization.
- this.ui.showAuthDialog(this, true, mxUtils.bind(this, function(remember, success)
- {
- this.authorize(false, function()
- {
- if (success != null)
- {
- success();
- }
-
- fn();
- }, mxUtils.bind(this, function(resp)
- {
- var msg = mxResources.get('cannotLogin');
-
- // Handles special domain policy errors
- if (resp != null && resp.error != null && resp.error.code == 403 &&
- resp.error.data != null && resp.error.data[0].reason == 'domainPolicy')
- {
- msg = resp.error.message;
- }
-
- this.ui.drive.clearUserId();
- this.ui.drive.setUser(null);
- gapi.auth.signOut();
-
- this.ui.showError(mxResources.get('error'), msg, mxResources.get('ok'));
- }), remember);
- }));
- });
-
- // First immediate authorize attempt
- this.authorize(true, fn, fallback);
- };
- /**
- * Translates this point by the given vector.
- *
- * @param {number} dx X-coordinate of the translation.
- * @param {number} dy Y-coordinate of the translation.
- */
- DriveClient.prototype.executeRequest = function(req, success, error)
- {
- var acceptResponse = true;
- var timeoutThread = null;
- var retryCount = 0;
-
- // Cancels any pending requests
- if (this.requestThread != null)
- {
- window.clearTimeout(this.requestThread);
- }
-
- var fn = mxUtils.bind(this, function()
- {
- this.requestThread = null;
- this.currentRequest = req;
- if (timeoutThread != null)
- {
- window.clearTimeout(timeoutThread);
- }
-
- timeoutThread = window.setTimeout(mxUtils.bind(this, function()
- {
- acceptResponse = false;
-
- if (error != null)
- {
- error({code: App.ERROR_TIMEOUT, retry: fn});
- }
- }), this.ui.timeout);
- req.execute(mxUtils.bind(this, function(resp)
- {
- window.clearTimeout(timeoutThread);
-
- if (acceptResponse)
- {
- if (resp != null && resp.error == null)
- {
- if (success != null)
- {
- success(resp);
- }
- }
- else
- {
- // Handles special error for saving old file where mime was changed to new
- // LATER: Check if 403 is never auth error, for now we check the message for a specific
- // case where the old app mime type was overridden by the new app
- if (error != null && resp != null && resp.error != null && resp.error.code == 403 &&
- (resp.error.message == 'The requested mime type change is forbidden.' ||
- resp.error.errors != null && resp.error.errors[0].reason == 'domainPolicy'))
- {
- error(resp);
- }
- // Handles authentication error
- else if (resp != null && resp.error != null && (resp.error.code == 401 || resp.error.code == 403))
- {
- // Shows an error if we're authenticated but the server still doesn't allow it
- if (resp.error.code == 403 && this.user != null)
- {
- if (error != null)
- {
- error(resp);
- }
- }
- else
- {
- this.execute(fn);
- }
- }
- // Schedules a retry if no new request was executed
- // TODO: Check for 'rateLimitExceeded', 'userRateLimitExceeded' in errors
- // see https://developers.google.com/drive/handle-errors
- else if (resp != null && resp.error != null && resp.error.code != 404 && this.currentRequest == req && retryCount < this.maxRetries)
- {
- retryCount++;
- var jitter = 1 + 0.1 * (Math.random() - 0.5);
- this.requestThread = window.setTimeout(fn, Math.round(Math.pow(2, retryCount) * jitter * 1000));
- }
- else if (error != null)
- {
- error(resp);
- }
- }
- }
- }));
- });
-
- fn();
- },
- /**
- * Authorizes the client, gets the userId and calls <open>.
- */
- DriveClient.prototype.authorize = function(immediate, success, error, remember)
- {
- var userId = this.getUserId();
-
- // Immediate only possible with userId
- if (immediate && userId == null)
- {
- if (error != null)
- {
- error();
- }
- }
- else
- {
- var params =
- {
- scope: this.scopes,
- client_id: this.clientId
- };
-
- if (immediate && userId != null)
- {
- params.immediate = true;
- params.user_id = userId;
- }
- else
- {
- params.immediate = false;
- params.authuser = -1;
- }
-
- gapi.auth.authorize(params, mxUtils.bind(this, function(resp)
- {
- // Updates the current user info
- if (resp != null && resp.error == null)
- {
- if (this.user == null || !immediate || this.user.id != userId)
- {
- this.updateUser(success, error, remember);
- }
- else if (success != null)
- {
- success();
- }
- }
- else if (error != null)
- {
- error(resp);
- }
- this.resetTokenRefresh(resp);
- }));
- }
- };
- /**
- * Checks if the client is authorized and calls the next step.
- */
- DriveClient.prototype.resetTokenRefresh = function(resp)
- {
- if (this.tokenRefreshThread != null)
- {
- window.clearTimeout(this.tokenRefreshThread);
- this.tokenRefreshThread = null;
- }
- // Starts timer to refresh token before it expires
- if (resp != null && resp.error == null && resp.expires_in > 0)
- {
- this.tokenRefreshInterval = parseInt(resp.expires_in) * 1000;
- this.lastTokenRefresh = new Date().getTime();
-
- this.tokenRefreshThread = window.setTimeout(mxUtils.bind(this, function()
- {
- this.authorize(true, mxUtils.bind(this, function()
- {
- //console.log('tokenRefresh: refreshed', gapi.auth.getToken());
- }), mxUtils.bind(this, function()
- {
- //console.log('tokenRefresh: error refreshing', gapi.auth.getToken());
- }));
- }), resp.expires_in * 900);
- }
- };
- /**
- * Checks if the client is authorized and calls the next step.
- */
- DriveClient.prototype.checkToken = function(fn)
- {
- var connected = this.lastTokenRefresh > 0;
- var delta = new Date().getTime() - this.lastTokenRefresh;
- if (delta > this.tokenRefreshInterval || this.tokenRefreshThread == null)
- {
- // Uses execute instead of authorize to allow a fallback authorization if cookie was lost
- this.execute(mxUtils.bind(this, function()
- {
- fn();
-
- if (connected)
- {
- this.fireEvent(new mxEventObject('disconnected'));
- }
- }));
- }
- else
- {
- fn();
- }
- };
- /**
- * Checks if the client is authorized and calls the next step.
- */
- DriveClient.prototype.updateUser = function(success, error, remember)
- {
- var token = gapi.auth.getToken().access_token;
- var url = 'https://www.googleapis.com/oauth2/v2/userinfo?alt=json&access_token=' + token;
-
- this.ui.loadUrl(url, mxUtils.bind(this, function(data)
- {
- var info = JSON.parse(data);
-
- // Requests more information about the user
- this.executeRequest(gapi.client.drive.about.get(), mxUtils.bind(this, function(resp)
- {
- this.setUser(new DrawioUser(info.id, resp.user.emailAddress, resp.user.displayName,
- (resp.user.picture != null) ? resp.user.picture.url : null));
- this.setUserId(info.id, remember);
- if (success != null)
- {
- success();
- }
- }), error);
- }), error);
- };
- /**
- * Translates this point by the given vector.
- *
- * @param {number} dx X-coordinate of the translation.
- * @param {number} dy Y-coordinate of the translation.
- */
- DriveClient.prototype.copyFile = function(id, title, success, error)
- {
- if (id != null && title != null)
- {
- this.executeRequest(gapi.client.drive.files.copy({'fileId': id, 'resource': {'title' : title}}), 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.
- */
- DriveClient.prototype.renameFile = function(id, title, success, error)
- {
- if (id != null && title != null)
- {
- this.executeRequest(this.createDriveRequest(id, {'title' : title}), 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.
- */
- DriveClient.prototype.moveFile = function(id, folderId, success, error)
- {
- if (id != null && folderId != null)
- {
- this.executeRequest(this.createDriveRequest(id, {'parents': [{'kind': 'drive#fileLink', 'id': folderId}]}), 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.
- */
- DriveClient.prototype.createDriveRequest = function(id, body)
- {
- return gapi.client.request({
- 'path': '/drive/v2/files/' + id,
- 'method': 'PUT',
- 'params': {'uploadType' : 'multipart'},
- 'headers': {'Content-Type': 'application/json; charset=UTF-8'},
- 'body': JSON.stringify(body)
- });
- };
- /**
- * Loads the given file as a library file.
- */
- DriveClient.prototype.getLibrary = function(id, success, error)
- {
- return this.getFile(id, success, error, true, true);
- };
- /**
- * Checks if the client is authorized and calls the next step. The optional
- * readXml argument is used for import. Default is false. The optional
- * readLibrary argument is used for reading libraries. Default is false.
- */
- DriveClient.prototype.convertFile = function(resp, success, error)
- {
- var name = resp.title;
- name = name.substring(0, name.lastIndexOf('.')) + this.extension;
-
- // Gets file data
- var token = gapi.auth.getToken().access_token;
- var url = resp.downloadUrl + '&access_token=' + token;
-
- this.ui.loadUrl(url, mxUtils.bind(this, function(data)
- {
- this.ui.parseFile(new Blob([data], {type: 'application/octet-stream'}), mxUtils.bind(this, function(xhr)
- {
- if (xhr.readyState == 4)
- {
- if (xhr.status == 200 && xhr.responseText.substring(0, 13) == '<mxGraphModel')
- {
- this.insertFile(name, xhr.responseText, (resp.parents != null && resp.parents.length > 0) ?
- resp.parents[0].id : null, success, error);
- }
- else if (error != null)
- {
- error({message: mxResources.get('errorLoadingFile')});
- }
- }
- }), resp.title);
- }));
- };
- /**
- * Checks if the client is authorized and calls the next step. The optional
- * readXml argument is used for import. Default is false. The optional
- * readLibrary argument is used for reading libraries. Default is false.
- */
- DriveClient.prototype.getFile = function(id, success, error, readXml, readLibrary)
- {
- readXml = (readXml != null) ? readXml : false;
- readLibrary = (readLibrary != null) ? readLibrary : false;
-
- if (urlParams['rev'] != null)
- {
- this.executeRequest(gapi.client.drive.revisions.get({'fileId': id, 'revisionId': urlParams['rev']}), mxUtils.bind(this, function(resp)
- {
- this.getXmlFile(resp, null, success, error);
- }), error);
- }
- else
- {
- this.executeRequest(gapi.client.drive.files.get({'fileId': id}), mxUtils.bind(this, function(resp)
- {
- if (this.user != null)
- {
- // Handles .vsdx and Gliffy files by creating a new file
- if (!readLibrary && !readXml && Graph.fileSupport && new XMLHttpRequest().upload &&
- (/(\.vsdx)$/i.test(resp.title) || /(\.gliffy)$/i.test(resp.title)))
- {
- this.convertFile(resp, success, error);
- }
- else
- {
- if (readXml || readLibrary || resp.mimeType == this.libraryMimeType)
- {
- this.getXmlFile(resp, null, success, error, true, readLibrary);
- }
- else
- {
- this.loadRealtime(resp, mxUtils.bind(this, function(doc)
- {
- try
- {
- // Converts XML files to realtime including old realtime model
- if (doc == null || doc.getModel() == null || doc.getModel().getRoot() == null ||
- doc.getModel().getRoot().isEmpty() || (doc.getModel().getRoot().has('cells') &&
- !doc.getModel().getRoot().has(DriveRealtime.prototype.diagramsKey)))
- {
- this.getXmlFile(resp, doc, success, error);
- }
- else
- {
- // XML not required here since the realtime model is not empty
- success(new DriveFile(this.ui, null, resp, doc));
- }
- }
- catch (e)
- {
- error(e);
- }
- }), error);
- }
- }
- }
- else
- {
- error({message: mxResources.get('loggedOut')});
- }
- }), error);
- }
- };
- /**
- * Checks if the client is authorized and calls the next step.
- */
- DriveClient.prototype.loadRealtime = function(resp, success, error)
- {
- // Redirects to new app because the realtime models of different apps are not visible
- if (urlParams['ignoremime'] != '1' && this.appId == '420247213240' && (resp.mimeType == 'application/mxr' || resp.mimeType == 'application/vnd.jgraph.mxfile.realtime'))
- {
- this.redirectToNewApp(error, resp.id);
- }
- // Checks if we're in viewer app or if the file is writeable if it needs to be converted
- else if (this.appId != '850530949725' && (resp.editable || (resp.mimeType != 'application/mxe' &&
- resp.mimeType != 'application/vnd.jgraph.mxfile')))
- {
- var fn = mxUtils.bind(this, function()
- {
- var acceptResponse = true;
-
- var timeoutThread = window.setTimeout(mxUtils.bind(this, function()
- {
- acceptResponse = false;
- error({code: App.ERROR_TIMEOUT, retry: fn});
- }), this.ui.timeout);
-
- gapi.drive.realtime.load(resp.id, mxUtils.bind(this, function(doc)
- {
- window.clearTimeout(timeoutThread);
-
- if (acceptResponse)
- {
- success(doc);
- }
- }));
- });
-
- fn();
- }
- // Shows the file as read-only without conversion
- else
- {
- success();
- }
- };
- /**
- * Checks if the client is authorized and calls the next step. The ignoreMime argument is
- * used for import via getFile. Default is false. The optional
- * readLibrary argument is used for reading libraries. Default is false.
- */
- DriveClient.prototype.getXmlFile = function(resp, doc, success, error, ignoreMime, readLibrary)
- {
- var token = gapi.auth.getToken().access_token;
- var url = resp.downloadUrl + '&access_token=' + token;
-
- // Loads XML to initialize realtime document if realtime is empty
- this.ui.loadUrl(url, mxUtils.bind(this, function(data)
- {
- if (data == null)
- {
- // TODO: Optional redirect to legacy if link is for old file
- error({message: mxResources.get('invalidOrMissingFile')});
- }
- else if (resp.mimeType == this.libraryMimeType || readLibrary)
- {
- if (resp.mimeType == this.libraryMimeType && !readLibrary)
- {
- error({message: mxResources.get('notADiagramFile')});
- }
- else
- {
- success(new DriveLibrary(this.ui, data, resp));
- }
- }
- else
- {
- var file = new DriveFile(this.ui, data, resp, doc);
-
- // Checks if mime-type needs to be updated if the file is editable and no viewer app
- if (!ignoreMime && this.appId != '850530949725' && file.isEditable() && resp.mimeType != this.mimeType)
- {
- // Overwrites mime-type (only mutable on update when uploading new content)
- this.saveFile(file, true, mxUtils.bind(this, function(resp)
- {
- file.desc = resp;
- success(file);
- }), error, true);
- }
- else
- {
- success(file);
- }
- }
- }), error, resp.mimeType == 'image/png');
- };
- /**
- * Translates this point by the given vector.
- *
- * @param {number} dx X-coordinate of the translation.
- * @param {number} dy Y-coordinate of the translation.
- */
- DriveClient.prototype.saveFile = function(file, revision, success, error, noCheck, unloading)
- {
- if (file.isEditable())
- {
- var t0 = new Date().getTime();
- noCheck = (noCheck != null) ? noCheck : (!this.ui.isLegacyDriveDomain() || urlParams['ignoremime'] == '1');
- // NOTE: Unloading arg is currently ignored, saving during unload/beforeUnload is not possible using
- // asynchronous code, which is needed to create the thumbnail, or asynchronous requests which is the only
- // way to execute the gapi request below.
- // If no thumbnail is created and noCheck is true (which is always true if unloading is true) in which case
- // this code is synchronous, the executeRequest call is reached but the request is still not sent. This is
- // true for both, calls from beforeUnload and unload handlers. Note sure how to make the call synchronous
- // which is said to fix this when called from beforeUnload.
- // However, this would result in a missing thumbnail in most cases so a better solution might be to reduce
- // the autosave interval in DriveRealtime, but that would increase the number of requests.
- unloading = (unloading != null) ? unloading : false;
-
- // Adds optional thumbnail to upload request
- var doSave = mxUtils.bind(this, function(thumb, thumbMime, keepExisting)
- {
- var meta =
- {
- 'mimeType': (file.constructor == DriveLibrary) ? this.libraryMimeType : this.mimeType,
- 'title': file.getTitle()
- };
- // Specifies that no thumbnail should be uploaded in which case the existing thumbnail is used
- if (!keepExisting)
- {
- // Uses placeholder thumbnail to replace existing one except when unloading
- // in which case the XML is updated but the existing thumbnail is not in order
- // to avoid executing asynchronous code and get the XML to the server instead
- if (thumb == null && !unloading)
- {
- thumb = this.placeholderThumbnail;
- thumbMime = this.placeholderMimeType;
- }
-
- // Adds metadata for thumbnail
- if (thumb != null && thumbMime != null)
- {
- meta.thumbnail =
- {
- 'image': thumb,
- 'mimeType': thumbMime
- };
- }
- }
- // Updates saveDelay on drive file
- var wrapper = function()
- {
- file.saveDelay = new Date().getTime() - t0;
- success.apply(this, arguments);
- };
-
- this.executeRequest(this.createUploadRequest(file.getId(), meta,
- file.getData(), revision || (file.desc.mimeType != this.mimeType &&
- file.desc.mimeType != this.libraryMimeType)), wrapper, error);
- });
-
- // Indirection to generate thumbnails if enabled and supported
- // (required because generation of thumbnails is asynchronous)
- var fn = mxUtils.bind(this, function()
- {
- var keepExistingThumb = this.ui.currentPage != null && this.ui.currentPage != this.ui.pages[0];
- // NOTE: getThumbnail is asynchronous and returns false if no thumbnails can be created
- if (unloading || file.constructor == DriveLibrary || !this.enableThumbnails || urlParams['thumb'] == '0' ||
- keepExistingThumb || !this.ui.getThumbnail(this.thumbnailWidth, mxUtils.bind(this, function(canvas)
- {
- // Callback for getThumbnail
- var thumb = null;
-
- if (canvas != null)
- {
- try
- {
- // Security errors are possible
- thumb = canvas.toDataURL('image/png');
- }
- catch (e)
- {
- // ignore and continue with placeholder
- }
- }
-
- // Maximum thumbnail size is 2MB
- if (thumb == null || thumb.length > this.maxThumbnailSize)
- {
- thumb = null;
- }
- else
- {
- // Converts base64 data into required format for Drive (base64url with no prefix)
- thumb = thumb.substring(thumb.indexOf(',') + 1).replace(/\+/g, '-').replace(/\//g, '_');
- }
-
- doSave(thumb, 'image/png');
- })))
- {
- // If-branch
- doSave(null, null, file.constructor != DriveLibrary && keepExistingThumb);
- }
- });
-
- // New revision is required if mime type changes, but the mime type should not be replaced
- // if the file has been converted to the new realtime format. To check this we make sure
- // that the mime type has not changed before updating it in the case of the legacy app.
- // Note: We need to always check the mime type because saveFile cancels previous save
- // attempts so if the save frequency is higher than the time for all retries than you
- // will never see the error message and accumulate lots of changes that will be lost.
- if (noCheck || !revision)
- {
- fn();
- }
- else
- {
- this.verifyMimeType(file.getId(), fn, true);
- }
- }
- else
- {
- this.ui.editor.graph.reset();
-
- if (error != null)
- {
- error({message: mxResources.get('readOnly')});
- }
- }
- };
- /**
- * Verifies the mime type of the given file ID.
- */
- DriveClient.prototype.verifyMimeType = function(fileId, fn, force, error)
- {
- if (this.lastMimeCheck == null)
- {
- this.lastMimeCheck = 0;
- }
-
- var now = new Date().getTime();
- if (force || now - this.lastMimeCheck > this.mimeTypeCheckCoolOff)
- {
- this.lastMimeCheck = now;
- if (!this.checkingMimeType)
- {
- this.checkingMimeType = true;
-
- this.executeRequest(gapi.client.drive.files.get({'fileId': fileId, 'fields': 'mimeType'}), mxUtils.bind(this, function(resp)
- {
- this.checkingMimeType = false;
-
- if (resp != null && resp.mimeType == 'application/vnd.jgraph.mxfile.realtime')
- {
- this.redirectToNewApp(error, fileId);
- }
- else if (fn != null)
- {
- fn();
- }
- }));
- }
- }
- };
- /**
- * Checks if the client is authorized and calls the next step.
- */
- DriveClient.prototype.redirectToNewApp = function(error, fileId)
- {
- this.ui.spinner.stop();
-
- if (!this.redirectDialogShowing)
- {
- this.redirectDialogShowing = true;
-
- var url = window.location.protocol + '//' + this.newAppHostname + '/' + this.ui.getSearch(
- ['create', 'title', 'mode', 'url', 'drive', 'splash']) + '#G' + fileId;
-
- if (error != null)
- {
- this.ui.confirm(mxResources.get('redirectToNewApp'), mxUtils.bind(this, function()
- {
- this.redirectDialogShowing = false;
- window.location.href = url;
- }), mxUtils.bind(this, function()
- {
- this.redirectDialogShowing = false;
-
- if (error != null)
- {
- error();
- }
- }));
- }
- else
- {
- this.ui.alert(mxResources.get('redirectToNewApp'), mxUtils.bind(this, function()
- {
- this.redirectDialogShowing = false;
- window.location.href = url;
- }));
- }
- }
- };
- /**
- * Translates this point by the given vector.
- *
- * @param {number} dx X-coordinate of the translation.
- * @param {number} dy Y-coordinate of the translation.
- */
- DriveClient.prototype.insertFile = function(title, data, folderId, success, error, mimeType, binary, allowRealtime)
- {
- mimeType = (mimeType != null) ? mimeType : this.mimeType;
- allowRealtime = (allowRealtime != null) ? allowRealtime : true;
-
- var metadata =
- {
- 'mimeType': mimeType,
- 'title': title
- };
-
- if (folderId != null)
- {
- metadata.parents = [{'kind': 'drive#fileLink', 'id': folderId}];
- }
- // NOTE: Cannot create thumbnail on insert since no ui has no current file
- this.executeRequest(this.createUploadRequest(null, metadata, data, false, binary), mxUtils.bind(this, function(resp)
- {
- if (mimeType == this.libraryMimeType)
- {
- success(new DriveLibrary(this.ui, data, resp));
- }
- else if (resp == false)
- {
- if (error != null)
- {
- error({message: mxResources.get('errorSavingFile')});
- }
- }
- else if (allowRealtime)
- {
- this.loadRealtime(resp, mxUtils.bind(this, function(doc)
- {
- if (this.user != null)
- {
- var file = new DriveFile(this.ui, data, resp, doc);
-
- // Avoids creating a new revision on first autosave of new files
- file.lastAutosaveRevision = new Date().getTime();
-
- success(file);
- }
- else if (error != null)
- {
- error({message: mxResources.get('loggedOut')});
- }
- }), error);
- }
- else
- {
- success(resp);
- }
- }), error);
- };
- /**
- * Translates this point by the given vector.
- *
- * @param {number} dx X-coordinate of the translation.
- * @param {number} dy Y-coordinate of the translation.
- */
- DriveClient.prototype.createUploadRequest = function(id, metadata, data, revision, binary)
- {
- binary = (binary != null) ? binary : false;
- var bd = '-------314159265358979323846';
- var delim = '\r\n--' + bd + '\r\n';
- var close = '\r\n--' + bd + '--';
- var ctype = 'application/octect-stream';
- var reqObj =
- {
- 'path': '/upload/drive/v2/files' + (id != null ? '/' + id : ''),
- 'method': (id != null) ? 'PUT' : 'POST',
- 'params': {'uploadType': 'multipart'},
- 'headers': {'Content-Type' : 'multipart/mixed; boundary="' + bd + '"'},
- 'body' : delim + 'Content-Type: application/json\r\n\r\n' + JSON.stringify(metadata) + delim +
- 'Content-Type: ' + ctype + '\r\n' + 'Content-Transfer-Encoding: base64\r\n' + '\r\n' +
- ((data != null) ? (binary) ? data : Base64.encode(data) : '') + close
- }
-
- if (!revision)
- {
- reqObj.params['newRevision'] = false;
- }
-
- return gapi.client.request(reqObj);
- };
- /**
- * Translates this point by the given vector.
- *
- * @param {number} dx X-coordinate of the translation.
- * @param {number} dy Y-coordinate of the translation.
- */
- DriveClient.prototype.pickFile = function(fn, acceptAllFiles)
- {
- this.filePickerCallback = (fn != null) ? fn : mxUtils.bind(this, function(id)
- {
- this.ui.loadFile('G' + id);
- });
-
- this.filePicked = mxUtils.bind(this, function(data)
- {
- if (data.action == google.picker.Action.PICKED)
- {
- this.filePickerCallback(data.docs[0].id);
- }
- });
-
- if (this.ui.spinner.spin(document.body, mxResources.get('authorizing')))
- {
- this.execute(mxUtils.bind(this, function()
- {
- this.ui.spinner.stop();
-
- // Reuses picker as long as token doesn't change.
- var token = gapi.auth.getToken().access_token;
- var name = (acceptAllFiles) ? 'genericPicker' : 'filePicker';
-
- // Click on background closes dialog as workaround for blocking dialog
- // states such as 401 where the dialog cannot be closed and blocks UI
- var exit = mxUtils.bind(this, function(evt)
- {
- // Workaround for click from appIcon on second call
- if (mxEvent.getSource(evt).className == 'picker modal-dialog-bg picker-dialog-bg')
- {
- mxEvent.removeListener(document, 'click', exit);
- this[name].setVisible(false);
- }
- });
-
- if (this[name] == null || this[name + 'Token'] != token)
- {
- // FIXME: Dispose not working
- // if (this[name] != null)
- // {
- // console.log(name, this[name]);
- // this[name].dispose();
- // }
-
- this[name + 'Token'] = token;
- // Pseudo-hierarchical directory view, see
- // https://groups.google.com/forum/#!topic/google-picker-api/FSFcuJe7icQ
- var view = new google.picker.DocsView(google.picker.ViewId.FOLDERS)
- .setParent('root')
- .setIncludeFolders(true);
-
- var view2 = new google.picker.DocsView();
-
- var view3 = new google.picker.DocsUploadView()
- .setIncludeFolders(true);
- if (!acceptAllFiles)
- {
- view.setMimeTypes(this.mimeTypes);
- view2.setMimeTypes(this.mimeTypes);
- }
-
- this[name] = new google.picker.PickerBuilder()
- .setOAuthToken(this[name + 'Token'])
- .setLocale(mxLanguage)
- .setAppId(this.appId)
- .addView(view)
- .addView(view2)
- .addView(google.picker.ViewId.RECENTLY_PICKED)
- .addView(view3)
- .setCallback(mxUtils.bind(this, function(data)
- {
- if (data.action == google.picker.Action.PICKED ||
- data.action == google.picker.Action.CANCEL)
- {
- mxEvent.removeListener(document, 'click', exit);
- }
-
- if (data.action == google.picker.Action.PICKED)
- {
- this.filePicked(data);
- }
- })).build();
- }
- mxEvent.addListener(document, 'click', exit);
- this[name].setVisible(true);
- this.ui.movePickersToTop();
- }));
- }
- };
- /**
- * Translates this point by the given vector.
- *
- * @param {number} dx X-coordinate of the translation.
- * @param {number} dy Y-coordinate of the translation.
- */
- DriveClient.prototype.pickFolder = function(fn)
- {
- // Picker is initialized once and points to this function
- // which is overridden each time to the picker is shown
- this.folderPickerCallback = fn;
-
- if (this.ui.spinner.spin(document.body, mxResources.get('authorizing')))
- {
- this.execute(mxUtils.bind(this, function()
- {
- this.ui.spinner.stop();
-
- // Reuses picker as long as token doesn't change.
- var token = gapi.auth.getToken().access_token;
- var name = 'folderPicker';
-
- // Click on background closes dialog as workaround for blocking dialog
- // states such as 401 where the dialog cannot be closed and blocks UI
- var exit = mxUtils.bind(this, function(evt)
- {
- // Workaround for click from appIcon on second call
- if (mxEvent.getSource(evt).className == 'picker modal-dialog-bg picker-dialog-bg')
- {
- mxEvent.removeListener(document, 'click', exit);
- this[name].setVisible(false);
- }
- });
-
- if (this[name] == null || this[name + 'Token'] != token)
- {
- // FIXME: Dispose not working
- // if (this[name] != null)
- // {
- // console.log(name, this[name]);
- // this[name].dispose();
- // }
-
- this[name + 'Token'] = token;
- // Pseudo-hierarchical directory view, see
- // https://groups.google.com/forum/#!topic/google-picker-api/FSFcuJe7icQ
- var view = new google.picker.DocsView(google.picker.ViewId.FOLDERS)
- .setParent('root')
- .setIncludeFolders(true)
- .setSelectFolderEnabled(true)
- .setMimeTypes('application/vnd.google-apps.folder');
-
- var view2 = new google.picker.DocsView()
- .setIncludeFolders(true)
- .setSelectFolderEnabled(true)
- .setMimeTypes('application/vnd.google-apps.folder');
-
- this[name] = new google.picker.PickerBuilder()
- .setSelectableMimeTypes('application/vnd.google-apps.folder')
- .setOAuthToken(this[name + 'Token'])
- .setLocale(mxLanguage)
- .setAppId(this.appId)
- .addView(view)
- .addView(view2)
- .addView(google.picker.ViewId.RECENTLY_PICKED)
- .setTitle(mxResources.get('pickFolder'))
- .setCallback(mxUtils.bind(this, function(data)
- {
- if (data.action == google.picker.Action.PICKED ||
- data.action == google.picker.Action.CANCEL)
- {
- mxEvent.removeListener(document, 'click', exit);
- }
-
- this.folderPickerCallback(data);
- })).build();
- }
- mxEvent.addListener(document, 'click', exit);
- this[name].setVisible(true);
- this.ui.movePickersToTop();
- }));
- }
- };
- /**
- * Translates this point by the given vector.
- *
- * @param {number} dx X-coordinate of the translation.
- * @param {number} dy Y-coordinate of the translation.
- */
- DriveClient.prototype.pickLibrary = function(fn)
- {
- this.filePickerCallback = fn;
-
- this.filePicked = mxUtils.bind(this, function(data)
- {
- if (data.action == google.picker.Action.PICKED)
- {
- this.filePickerCallback(data.docs[0].id);
- }
- else if (data.action == google.picker.Action.CANCEL && this.ui.getCurrentFile() == null)
- {
- this.ui.showSplash();
- }
- });
-
- if (this.ui.spinner.spin(document.body, mxResources.get('authorizing')))
- {
- this.execute(mxUtils.bind(this, function()
- {
- this.ui.spinner.stop();
-
- // Click on background closes dialog as workaround for blocking dialog
- // states such as 401 where the dialog cannot be closed and blocks UI
- var exit = mxUtils.bind(this, function(evt)
- {
- // Workaround for click from appIcon on second call
- if (mxEvent.getSource(evt).className == 'picker modal-dialog-bg picker-dialog-bg')
- {
- mxEvent.removeListener(document, 'click', exit);
- this.libraryPicker.setVisible(false);
- }
- });
-
- // Reuses picker as long as token doesn't change.
- var token = gapi.auth.getToken().access_token;
-
- if (this.libraryPicker == null || this.libraryPickerToken != token)
- {
- // FIXME: Dispose not working
- // if (this[name] != null)
- // {
- // console.log(name, this[name]);
- // this[name].dispose();
- // }
-
- this.libraryPickerToken = token;
- // Pseudo-hierarchical directory view, see
- // https://groups.google.com/forum/#!topic/google-picker-api/FSFcuJe7icQ
- var view = new google.picker.DocsView(google.picker.ViewId.FOLDERS)
- .setParent('root')
- .setIncludeFolders(true)
- .setMimeTypes(this.libraryMimeType + ',application/xml,text/plain,application/octet-stream');
-
- var view2 = new google.picker.DocsView()
- .setMimeTypes(this.libraryMimeType + ',application/xml,text/plain,application/octet-stream');
-
- var view3 = new google.picker.DocsUploadView()
- .setIncludeFolders(true);
-
- this.libraryPicker = new google.picker.PickerBuilder()
- .setOAuthToken(this.libraryPickerToken)
- .setLocale(mxLanguage)
- .setAppId(this.appId)
- .addView(view)
- .addView(view2)
- .addView(google.picker.ViewId.RECENTLY_PICKED)
- .addView(view3)
- .setCallback(mxUtils.bind(this, function(data)
- {
- if (data.action == google.picker.Action.PICKED ||
- data.action == google.picker.Action.CANCEL)
- {
- mxEvent.removeListener(document, 'click', exit);
- }
-
- if (data.action == google.picker.Action.PICKED)
- {
- this.filePicked(data);
- }
- })).build();
- }
-
- mxEvent.addListener(document, 'click', exit);
- this.libraryPicker.setVisible(true);
- this.ui.movePickersToTop();
- }));
- }
- };
- /**
- * Translates this point by the given vector.
- *
- * @param {number} dx X-coordinate of the translation.
- * @param {number} dy Y-coordinate of the translation.
- */
- DriveClient.prototype.showPermissions = function(id)
- {
- this.checkToken(mxUtils.bind(this, function()
- {
- var shareClient = new gapi.drive.share.ShareClient(this.appId);
- shareClient.setOAuthToken(gapi.auth.getToken().access_token);
- shareClient.setItemIds([id]);
- shareClient.showSettingsDialog();
- }));
- };
|