Lines Matching refs:DriveClient

13 window.DriveClient = function(editorUi, isExtAuth)  class in window
66 mxUtils.extend(DriveClient, mxEventSource);
69 mxUtils.extend(DriveClient, DrawioClient);
71 DriveClient.prototype.redirectUri = window.location.protocol + '//' + window.location.host + '/goog… class
72 DriveClient.prototype.GDriveBaseUrl = 'https://www.googleapis.com/drive/v2';
77 DriveClient.prototype.scopes = ['https://www.googleapis.com/auth/drive.file',
84 DriveClient.prototype.allFields = 'kind,id,parents,headRevisionId,etag,title,mimeType,modifiedDate,…
92 DriveClient.prototype.catchupFields = 'etag,headRevisionId,modifiedDate,properties(key,value)';
99 DriveClient.prototype.enableThumbnails = true;
105 DriveClient.prototype.thumbnailWidth = 1000;
110 DriveClient.prototype.maxThumbnailSize = 2000000;
116 DriveClient.prototype.placeholderThumbnail = 'iVBORw0KGgoAAAANSUhEUgAAAJYAAACWCAMAAAAL34HQAAACN1BMV…
121 DriveClient.prototype.placeholderMimeType = 'image/png';
126 DriveClient.prototype.libraryMimeType = 'application/vnd.jgraph.mxlibrary';
131 DriveClient.prototype.newAppHostname = 'www.draw.io';
136 DriveClient.prototype.extension = '.drawio';
141 DriveClient.prototype.tokenRefreshInterval = 0;
146 DriveClient.prototype.lastTokenRefresh = 0;
151 DriveClient.prototype.maxRetries = 5;
156 DriveClient.prototype.staleEtagMaxRetries = 3;
161 DriveClient.prototype.coolOff = 1000;
166 DriveClient.prototype.mimeTypeCheckCoolOff = 60000;
171 DriveClient.prototype.user = null;
176 DriveClient.prototype.sameWinAuthMode = false;
181 DriveClient.prototype.sameWinRedirectUrl = null;
187 DriveClient.prototype.setUser = function(user)
209 DriveClient.prototype.setUserId = function(userId)
221 DriveClient.prototype.getUser = function()
226 DriveClient.prototype.getUsersList = function()
252 DriveClient.prototype.logout = function()
264 DriveClient.prototype.execute = function(fn)
315 DriveClient.prototype.executeRequest = function(reqObj, success, error)
523 DriveClient.prototype.createAuthWin = function(url)
546 DriveClient.prototype.authorize = function(immediate, success, error, remember, popup)
572 DriveClient.prototype.updateAuthInfo = function (newAuthInfo, remember, forceUserUpdate, success, e…
608 DriveClient.prototype.authorizeStep2 = function(state, immediate, success, error, remember, popup)
754 DriveClient.prototype.resetTokenRefresh = function(resp)
784 DriveClient.prototype.checkToken = function(fn)
811 DriveClient.prototype.updateUser = function(success, error)
865 DriveClient.prototype.copyFile = function(id, title, success, error)
884 DriveClient.prototype.renameFile = function(id, title, success, error)
899 DriveClient.prototype.moveFile = function(id, folderId, success, error)
914 DriveClient.prototype.createDriveRequest = function(id, body)
927 DriveClient.prototype.getLibrary = function(id, success, error)
935 DriveClient.prototype.loadDescriptor = function(id, success, error, fields)
942 DriveClient.prototype.listFiles = function(searchStr, afterDate, mineOnly, success, error)
956 DriveClient.prototype.getCustomProperty = function(desc, key)
982 DriveClient.prototype.getFile = function(id, success, error, readXml, readLibrary)
1062 DriveClient.prototype.isGoogleRealtimeMimeType = function(mimeType)
1072 DriveClient.prototype.getXmlFile = function(resp, success, error, ignoreMime, readLibrary)
1273 DriveClient.prototype.saveFile = function(file, revision, success, errFn, noCheck, unloading, overw…
1961 DriveClient.prototype.insertFile = function(title, data, folderId, success, error, mimeType, binary)
2003 DriveClient.prototype.createUploadRequest = function(id, metadata, data, revision, binary, etag, pi…
2049 DriveClient.prototype.createLinkPicker = function()
2089 DriveClient.prototype.pickFile = function(fn, acceptAllFiles, cancelFn)
2232 DriveClient.prototype.pickFolder = function(fn, force)
2370 DriveClient.prototype.pickLibrary = function(fn)
2493 DriveClient.prototype.showPermissions = function(id)
2578 DriveClient.prototype.clearPersistentToken = function()
2597 DriveClient.prototype.setPersistentToken = function(userAuthInfo, sessionOnly)