123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484 |
- /**
- * Copyright (c) 2006-2017, JGraph Ltd
- * Copyright (c) 2006-2017, Gaudenz Alder
- */
- DrawioFile = function(ui, data)
- {
- mxEventSource.call(this);
-
- /**
- * Holds the x-coordinate of the point.
- * @type number
- * @default 0
- */
- this.ui = ui;
-
- /**
- * Holds the x-coordinate of the point.
- * @type number
- * @default 0
- */
- this.data = data || '';
- this.shadowData = this.data;
- this.shadowPages = null;
- this.created = new Date().getTime();
-
- // Creates the stats object
- this.stats = {
- opened: 0, /* number of calls to open */
- merged: 0, /* number of calls to merge */
- fileMerged: 0, /* number of calls to mergeFile */
- fileReloaded: 0, /* number of calls to mergeFile */
- conflicts: 0, /* number of write conflicts when saving a file */
- timeouts: 0, /* number of time we have given up to retry after a write conflict */
- saved: 0, /* number of calls to fileSaved */
- closed: 0, /* number of calls to close */
- destroyed: 0, /* number of calls to close */
- joined: 0, /* number of join messages received */
- checksumErrors: 0, /* number of checksum errors */
- bytesSent: 0, /* number of bytes send in messages */
- bytesReceived: 0, /* number of bytes received in messages */
- msgSent: 0, /* number of messages sent */
- msgReceived: 0, /* number of messages received */
- cacheHits: 0, /* number of times the cache returned patches */
- cacheMiss: 0, /* number of times we have missed a cache entry */
- cacheFail: 0 /* number of times we have failed to read the cache */
- };
- };
- /**
- * Global switch for realtime collaboration type to use sync URL parameter
- * with the following possible values:
- *
- * - none: overwrite
- * - manual: manual sync
- * - auto: automatic sync
- */
- DrawioFile.SYNC = urlParams['sync'] || 'auto';
- /**
- * Specifies if last write wins should be used for values and styles.
- */
- DrawioFile.LAST_WRITE_WINS = true;
- // Extends mxEventSource
- mxUtils.extend(DrawioFile, mxEventSource);
- /**
- * Specifies the resource key for all changes saved status message.
- */
- DrawioFile.prototype.allChangesSavedKey = 'allChangesSaved';
- /**
- * Specifies the resource key for saving spinner.
- */
- DrawioFile.prototype.savingSpinnerKey = 'saving';
- /**
- * Specifies the resource key for saving status message.
- */
- DrawioFile.prototype.savingStatusKey = 'saving';
- /**
- * Specifies the delay between the last change and the autosave.
- */
- DrawioFile.prototype.autosaveDelay = 1500;
- /**
- * Specifies the maximum delay before an autosave is forced even if the graph
- * is being changed.
- */
- DrawioFile.prototype.maxAutosaveDelay = 30000;
- /**
- * Specifies the delay for loading the file after an optimistic sync message.
- * This should be the delay for the file to be saved minus the delay for the
- * sync message to travel.
- */
- DrawioFile.prototype.optimisticSyncDelay = 300;
- /**
- * Contains the thread for the next autosave.
- */
- DrawioFile.prototype.autosaveThread = null;
- /**
- * Stores the time stamp for the last autosave.
- */
- DrawioFile.prototype.lastAutosave = null;
- /**
- * Stores the time stamp for the last autosave.
- */
- DrawioFile.prototype.lastSaved = null;
- /**
- * Stores the time stamp for the last autosave.
- */
- DrawioFile.prototype.lastChanged = null;
- /**
- * Stores the time stamp when the file was opened.
- */
- DrawioFile.prototype.opened = null;
- /**
- * Stores the modified state.
- */
- DrawioFile.prototype.modified = false;
- /**
- * Stores a shadow of the modified state.
- */
- DrawioFile.prototype.shadowModified = false;
- /**
- * Holds a copy of the current file data.
- */
- DrawioFile.prototype.data = null;
- /**
- * Holds a copy of the last saved file data.
- */
- DrawioFile.prototype.shadowData = null;
- /**
- * Holds a copy of the parsed last saved file data.
- */
- DrawioFile.prototype.shadowPages = null;
- /**
- * Specifies if the graph change listener is enabled. Default is true.
- */
- DrawioFile.prototype.changeListenerEnabled = true;
- /**
- * Sets the delay for autosave in milliseconds. Default is 1500.
- */
- DrawioFile.prototype.lastAutosaveRevision = null;
- /**
- * Sets the delay between revisions when using autosave. Default is 300000
- * ie 5 mins. Set this to 0 to create a revision on every autosave.
- */
- DrawioFile.prototype.maxAutosaveRevisionDelay = 300000;
- /**
- * Specifies if notify events should be ignored.
- */
- DrawioFile.prototype.inConflictState = false;
- /**
- * Specifies if notify events should be ignored.
- */
- DrawioFile.prototype.invalidChecksum = false;
- /**
- * Specifies if error reports should be sent.
- */
- DrawioFile.prototype.errorReportsEnabled = false;
- /**
- * Specifies if stats should be sent.
- */
- DrawioFile.prototype.ageStart = null;
- /**
- * Specifies if notify events should be ignored.
- */
- DrawioFile.prototype.getSize = function()
- {
- return (this.data != null) ? this.data.length : 0;
- };
- /**
- * Adds the listener for automatically saving the diagram for local changes.
- */
- DrawioFile.prototype.synchronizeFile = function(success, error)
- {
- if (this.savingFile)
- {
- if (error != null)
- {
- error({message: mxResources.get('busy')});
- }
- }
- else
- {
- if (this.sync != null)
- {
- // Removes unsaved remote changes
- if (this.ownPages != null && this.ui.pages != null)
- {
- var patch = this.ui.diffPages(
- this.ui.pages, this.ownPages);
- this.patch([patch]);
- this.snapshot = this.ui.getXmlFileData();
- }
- this.sync.fileChanged(success, error);
- }
- else
- {
- this.updateFile(success, error);
- }
- }
- };
- /**
- * Adds the listener for automatically saving the diagram for local changes.
- */
- DrawioFile.prototype.updateFile = function(success, error, abort, shadow)
- {
- if (abort == null || !abort())
- {
- if (this.ui.getCurrentFile() != this || this.invalidChecksum)
- {
- if (error != null)
- {
- error();
- }
- }
- else
- {
- this.getLatestVersion(mxUtils.bind(this, function(latestFile)
- {
- try
- {
- if (abort == null || !abort())
- {
- if (this.ui.getCurrentFile() != this || this.invalidChecksum)
- {
- if (error != null)
- {
- error();
- }
- }
- else
- {
- if (latestFile != null)
- {
- this.mergeFile(latestFile, success, error, shadow);
- }
- else
- {
- this.reloadFile(success, error);
- }
- }
- }
- }
- catch (e)
- {
- if (error != null)
- {
- error(e);
- }
- }
- }), error);
- }
- }
- };
- /**
- * Adds the listener for automatically saving the diagram for local changes.
- */
- DrawioFile.prototype.mergeFile = function(file, success, error, diffShadow)
- {
- var reportError = true;
-
- try
- {
- this.stats.fileMerged++;
-
- // Takes copy of current shadow document
- var shadow = (this.shadowPages != null) ? this.shadowPages :
- this.ui.getPagesForNode(mxUtils.parseXml(
- this.shadowData).documentElement);
-
- // Loads new document as shadow document
- var pages = this.ui.getPagesForNode(
- mxUtils.parseXml(file.data).
- documentElement)
-
- if (pages != null && pages.length > 0)
- {
- // Patches the current document
- var patches = [this.ui.diffPages((diffShadow != null) ?
- diffShadow : shadow, pages)];
- var ignored = this.ignorePatches(patches);
- this.shadowPages = pages;
-
- if (!ignored)
- {
- // Creates a patch for backup if the checksum fails
- this.backupPatch = (this.isModified()) ?
- this.ui.diffPages(shadow,
- this.ui.pages) : null;
- var pending = (this.ownPages != null) ?
- this.ui.diffPages(shadow,
- this.ownPages) : null;
-
- // Patching previous shadow to verify checksum
- var patchedDetails = {};
- var currentDetails = {};
- var patched = this.ui.patchPages(shadow, patches[0]);
- var checksum = this.ui.getHashValueForPages(patched, patchedDetails);
- var current = this.ui.getHashValueForPages(this.shadowPages, currentDetails);
-
- if (urlParams['test'] == '1')
- {
- EditorUi.debug('File.mergeFile', [this], 'patches', patches,
- 'backup', this.backupPatch, 'pending', pending, 'checksum',
- current == checksum, checksum);
- }
-
- if (checksum != null && checksum != current)
- {
- var fileData = this.compressReportData(this.getAnonymizedXmlForPages(pages));
- var data = this.compressReportData(this.getAnonymizedXmlForPages(patched));
- var from = this.ui.hashValue(file.getCurrentEtag());
- var to = this.ui.hashValue(this.getCurrentEtag());
-
- this.checksumError(error, patches,
- 'Shadow Details: ' + JSON.stringify(patchedDetails) +
- '\nChecksum: ' + checksum +
- '\nCurrent: ' + current +
- '\nCurrent Details: ' + JSON.stringify(currentDetails) +
- '\nFrom: ' + from +
- '\nTo: ' + to +
- '\n\nFile Data:\n' + fileData +
- '\nPatched Shadow:\n' + data, null, 'mergeFile');
-
- // Abnormal termination
- return;
- }
- else
- {
- // Patches the own pages
- if (this.sync != null)
- {
- this.sync.patchOwnPages(patches, [pending], true);
- }
- // Patches the current document
- this.patch(patches,
- (DrawioFile.LAST_WRITE_WINS) ?
- this.backupPatch : null);
- }
- }
- }
- else
- {
- reportError = false;
- throw new Error(mxResources.get('notADiagramFile'));
- }
-
- this.invalidChecksum = false;
- this.inConflictState = false;
- this.setDescriptor(file.getDescriptor());
- this.descriptorChanged();
- this.backupPatch = null;
-
- if (success != null)
- {
- success();
- }
- }
- catch (e)
- {
- this.inConflictState = true;
- this.invalidChecksum = true;
- this.descriptorChanged();
-
- if (error != null)
- {
- error(e);
- }
- try
- {
- if (reportError)
- {
- if (this.errorReportsEnabled)
- {
- this.sendErrorReport('Error in mergeFile', null, e);
- }
- else
- {
- var user = this.getCurrentUser();
- var uid = (user != null) ? user.id : 'unknown';
-
- EditorUi.logError('Error in mergeFile', null,
- this.getMode() + '.' + this.getId(),
- uid, e);
- }
- }
- }
- catch (e2)
- {
- // ignore
- }
- }
- };
- /**
- * Adds the listener for automatically saving the diagram for local changes.
- */
- DrawioFile.prototype.getAnonymizedXmlForPages = function(pages)
- {
- var enc = new mxCodec(mxUtils.createXmlDocument());
- var file = enc.document.createElement('mxfile');
-
- if (pages != null)
- {
- for (var i = 0; i < pages.length; i++)
- {
- var temp = enc.encode(new mxGraphModel(pages[i].root));
-
- if (urlParams['dev'] != '1')
- {
- temp = this.ui.anonymizeNode(temp, true);
- }
-
- temp.setAttribute('id', pages[i].getId());
-
- if (pages[i].viewState)
- {
- this.ui.editor.graph.saveViewState(pages[i].viewState, temp, true);
- }
-
- file.appendChild(temp);
- }
- }
- return mxUtils.getPrettyXml(file);
- };
- /**
- * Adds the listener for automatically saving the diagram for local changes.
- */
- DrawioFile.prototype.compressReportData = function(data, limit, max)
- {
- limit = (limit != null) ? limit : 10000;
- if (max != null && data != null && data.length > max)
- {
- data = data.substring(0, max) + '[...]';
- }
- else if (data != null && data.length > limit)
- {
- data = Graph.compress(data) + '\n';
- }
- return data;
- };
- /**
- * Adds the listener for automatically saving the diagram for local changes.
- */
- DrawioFile.prototype.checksumError = function(error, patches, details, etag, functionName)
- {
- this.stats.checksumErrors++;
- this.inConflictState = true;
- this.invalidChecksum = true;
- this.descriptorChanged();
-
- if (this.sync != null)
- {
- this.sync.updateOnlineState();
- }
- if (error != null)
- {
- error();
- }
-
- try
- {
- if (this.errorReportsEnabled)
- {
- if (patches != null)
- {
- for (var i = 0; i < patches.length; i++)
- {
- this.ui.anonymizePatch(patches[i]);
- }
- }
-
- var fn = mxUtils.bind(this, function(file)
- {
- var json = this.compressReportData(
- JSON.stringify(patches, null, 2));
- var remote = (file != null) ? this.compressReportData(
- this.getAnonymizedXmlForPages(
- this.ui.getPagesForNode(
- mxUtils.parseXml(file.data).documentElement)), 25000) : 'n/a';
-
- this.sendErrorReport('Checksum Error in ' + functionName + ' ' + this.getHash(),
- ((details != null) ? (details) : '') + '\n\nPatches:\n' + json +
- ((remote != null) ? ('\n\nRemote:\n' + remote) : ''), null, 70000);
- });
-
- if (etag == null)
- {
- fn(null);
- }
- else
- {
- this.getLatestVersion(mxUtils.bind(this, function(file)
- {
- if (file != null && file.getCurrentEtag() == etag)
- {
- fn(file);
- }
- else
- {
- fn(null);
- }
- }), function() {});
- }
- }
- else
- {
- var user = this.getCurrentUser();
- var uid = (user != null) ? user.id : 'unknown';
-
- EditorUi.logError('Checksum Error in ' + functionName + ' ' + this.getId(),
- null, this.getMode() + '.' + this.getId(),
- 'user_' + uid + ((this.sync != null) ?
- '-client_' + this.sync.clientId : '-nosync'));
-
- // Logs checksum error for file
- try
- {
- EditorUi.logEvent({category: 'CHECKSUM-ERROR-SYNC-FILE-' + this.getHash(),
- action: functionName, label: 'user_' + uid + ((this.sync != null) ?
- '-client_' + this.sync.clientId : '-nosync')});
- }
- catch (e)
- {
- // ignore
- }
- }
- }
- catch (e)
- {
- // ignore
- }
- };
- /**
- * Adds the listener for automatically saving the diagram for local changes.
- */
- DrawioFile.prototype.sendErrorReport = function(title, details, error, max)
- {
- try
- {
- var shadow = this.compressReportData(
- this.getAnonymizedXmlForPages(
- this.shadowPages), 25000);
- var data = this.compressReportData(
- this.getAnonymizedXmlForPages(
- this.ui.pages), 25000);
- var user = this.getCurrentUser();
- var uid = (user != null) ? this.ui.hashValue(user.id) : 'unknown';
- var cid = (this.sync != null) ? '-client_' + this.sync.clientId : '-nosync';
- var filename = this.getTitle();
- var dot = filename.lastIndexOf('.');
- var ext = 'xml';
-
- if (dot > 0)
- {
- ext = filename.substring(dot);
- }
-
- var stack = (error != null) ? error.stack : new Error().stack;
-
- EditorUi.sendReport(title + ' ' + new Date().toISOString() + ':' +
- '\n\nAppVersion=' + navigator.appVersion +
- '\nFile=' + this.ui.hashValue(this.getId()) + ' (' + this.getMode() + ')' +
- ((this.isModified()) ? ' modified' : '') +
- '\nSize/Type=' + this.getSize() + ' (' + ext + ')' +
- '\nUser=' + uid + cid +
- '\nPrefix=' + this.ui.editor.graph.model.prefix +
- '\nSync=' + DrawioFile.SYNC +
- ((this.sync != null) ? (((this.sync.enabled) ? ' enabled' : '') +
- ((this.sync.isConnected()) ? ' connected' : '')) : '') +
- '\nPlugins=' + ((mxSettings.settings != null) ? mxSettings.getPlugins() : 'null') +
- '\n\nStats:\n' + JSON.stringify(this.stats, null, 2) +
- ((details != null) ? ('\n\n' + details) : '') +
- ((error != null) ? ('\n\nError: ' + error.message) : '') +
- '\n\nStack:\n' + stack +
- '\n\nShadow:\n' + shadow +
- '\n\nData:\n' + data, max);
- }
- catch (e)
- {
- // ignore
- }
- };
- /**
- * Adds the listener for automatically saving the diagram for local changes.
- */
- DrawioFile.prototype.reloadFile = function(success, error)
- {
- try
- {
- this.ui.spinner.stop();
-
- var fn = mxUtils.bind(this, function()
- {
- this.stats.fileReloaded++;
-
- // Restores view state and current page
- var viewState = this.ui.editor.graph.getViewState();
- var selection = this.ui.editor.graph.getSelectionCells();
- var page = this.ui.currentPage;
-
- this.ui.loadFile(this.getHash(), true, null, mxUtils.bind(this, function()
- {
- if (this.ui.fileLoadedError == null)
- {
- this.ui.restoreViewState(page, viewState, selection);
-
- if (this.backupPatch != null)
- {
- this.patch([this.backupPatch]);
- }
-
- // Carry-over stats
- var file = this.ui.getCurrentFile();
-
- if (file != null)
- {
- file.stats = this.stats;
- }
-
- if (success != null)
- {
- success();
- }
- }
- }), true);
- });
-
- if (this.isModified() && this.backupPatch == null)
- {
- this.ui.confirm(mxResources.get('allChangesLost'), mxUtils.bind(this, function()
- {
- this.handleFileSuccess(DrawioFile.SYNC == 'manual');
- }), fn, mxResources.get('cancel'), mxResources.get('discardChanges'));
- }
- else
- {
- fn();
- }
- }
- catch (e)
- {
- if (error != null)
- {
- error(e);
- }
- }
- };
- /**
- * Shows a conflict dialog to the user.
- */
- DrawioFile.prototype.copyFile = function(success, error)
- {
- this.ui.editor.editAsNew(this.ui.getFileData(true),
- this.ui.getCopyFilename(this));
- };
- /**
- * Returns true if the patches in the given array are empty.
- */
- DrawioFile.prototype.ignorePatches = function(patches)
- {
- var ignore = true;
-
- if (patches != null)
- {
- for (var i = 0; i < patches.length && ignore; i++)
- {
- ignore = ignore && mxUtils.isEmptyObject(patches[i]);
- }
- }
-
- return ignore;
- };
- /**
- * Applies the given patches to the file.
- */
- DrawioFile.prototype.patch = function(patches, resolver, undoable)
- {
- // Saves state of undo history
- var undoMgr = this.ui.editor.undoManager;
- var history = undoMgr.history.slice();
- var nextAdd = undoMgr.indexOfNextAdd;
-
- // Hides graph during updates
- var graph = this.ui.editor.graph;
- graph.container.style.visibility = 'hidden';
- // Ignores change events
- var prev = this.changeListenerEnabled;
- this.changeListenerEnabled = undoable;
-
- // Folding and math change require special handling
- var fold = graph.foldingEnabled;
- var math = graph.mathEnabled;
-
- // Updates text editor if cell changes during validation
- var redraw = graph.cellRenderer.redraw;
- graph.cellRenderer.redraw = function(state)
- {
- if (state.view.graph.isEditing(state.cell))
- {
- state.view.graph.scrollCellToVisible(state.cell);
- state.view.graph.cellEditor.resize();
- }
-
- redraw.apply(this, arguments);
- };
-
- graph.model.beginUpdate();
- try
- {
- // Applies patches
- for (var i = 0; i < patches.length; i++)
- {
- if (patches[i] != null)
- {
- this.ui.pages = this.ui.patchPages(this.ui.pages,
- patches[i], true, resolver, this.isModified());
- }
- }
-
- // Always needs at least one page
- if (this.ui.pages.length == 0)
- {
- this.ui.pages.push(this.ui.createPage());
- }
- // Checks if current page was removed
- if (mxUtils.indexOf(this.ui.pages, this.ui.currentPage) < 0)
- {
- this.ui.selectPage(this.ui.pages[0], true);
- }
- }
- finally
- {
- // Changes visibility before action states are updated via model event
- graph.container.style.visibility = '';
- graph.model.endUpdate();
-
- // Restores previous state
- graph.cellRenderer.redraw = redraw;
- this.changeListenerEnabled = prev;
-
- // Restores history state
- if (!undoable)
- {
- undoMgr.history = history;
- undoMgr.indexOfNextAdd = nextAdd;
- undoMgr.fireEvent(new mxEventObject(mxEvent.CLEAR));
- }
-
- if (this.ui.currentPage == null || this.ui.currentPage.needsUpdate)
- {
- // Updates the graph and background
- if (math != graph.mathEnabled)
- {
- this.ui.editor.updateGraphComponents();
- graph.refresh();
- }
- else
- {
- if (fold != graph.foldingEnabled)
- {
- graph.view.revalidate();
- }
- else
- {
- graph.view.validate();
- }
-
- graph.sizeDidChange();
- }
- }
-
- this.ui.updateTabContainer();
- this.ui.editor.fireEvent(new mxEventObject('pagesPatched', 'patches', patches));
- }
- };
- /**
- * Adds the listener for automatically saving the diagram for local changes.
- */
- DrawioFile.prototype.save = function(revision, success, error, unloading, overwrite, manual)
- {
- try
- {
- if (!this.isEditable())
- {
- if (error != null)
- {
- error({message: mxResources.get('readOnly')});
- }
- else
- {
- throw new Error(mxResources.get('readOnly'));
- }
- }
- else if (!overwrite && this.invalidChecksum)
- {
- if (error != null)
- {
- error({message: mxResources.get('checksum')});
- }
- else
- {
- throw new Error(mxResources.get('checksum'));
- }
- }
- else
- {
- this.updateFileData();
- this.clearAutosave();
-
- if (success != null)
- {
- success();
- }
- }
- }
- catch (e)
- {
- if (error != null)
- {
- error(e);
- }
- else
- {
- throw e;
- }
- }
- };
- /**
- * Translates this point by the given vector.
- *
- * @param {number} dx X-coordinate of the translation.
- * @param {number} dy Y-coordinate of the translation.
- */
- DrawioFile.prototype.updateFileData = function()
- {
- var actualPages = this.ui.pages;
- if (this.ownPages != null)
- {
- // Uses ownPgaes for getting file data below
- this.ui.pages = this.ownPages;
- // Updates view state in own current page
- if (this.ui.currentPage != null)
- {
- var ownPage = this.ui.getPageById(
- this.ui.currentPage.getId(),
- this.ownPages);
- if (ownPage != null)
- {
- ownPage.viewState = this.ui.editor.graph.getViewState();
- ownPage.needsUpdate = true;
- }
- }
- }
- this.setData(this.ui.getFileData(null, null, null, null,
- null, null, null, null, this, !this.isCompressed()));
- this.ui.pages = actualPages;
- };
- /**
- * Translates this point by the given vector.
- *
- * @param {number} dx X-coordinate of the translation.
- * @param {number} dy Y-coordinate of the translation.
- */
- DrawioFile.prototype.isCompressedStorage = function()
- {
- return true;
- };
- /**
- * Translates this point by the given vector.
- *
- * @param {number} dx X-coordinate of the translation.
- * @param {number} dy Y-coordinate of the translation.
- */
- DrawioFile.prototype.isCompressed = function()
- {
- var compressed = (this.ui.fileNode != null) ? this.ui.fileNode.getAttribute('compressed') : null;
-
- if (compressed != null)
- {
- return compressed != 'false';
- }
- else
- {
- return this.isCompressedStorage() && Editor.compressXml;
- }
- };
- /**
- * Translates this point by the given vector.
- *
- * @param {number} dx X-coordinate of the translation.
- * @param {number} dy Y-coordinate of the translation.
- */
- DrawioFile.prototype.saveAs = function(filename, 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.
- */
- DrawioFile.prototype.saveFile = function(title, revision, success, error) { };
- /**
- * Returns true if copy, export and print are not allowed for this file.
- */
- DrawioFile.prototype.getPublicUrl = function(fn)
- {
- fn(null);
- };
- /**
- * Returns true if copy, export and print are not allowed for this file.
- */
- DrawioFile.prototype.isRestricted = function()
- {
- return false;
- };
- /**
- * Translates this point by the given vector.
- *
- * @param {number} dx X-coordinate of the translation.
- * @param {number} dy Y-coordinate of the translation.
- */
- DrawioFile.prototype.isModified = function()
- {
- return this.modified;
- };
- /**
- * Translates this point by the given vector.
- *
- * @param {number} dx X-coordinate of the translation.
- * @param {number} dy Y-coordinate of the translation.
- */
- DrawioFile.prototype.getShadowModified = function()
- {
- return this.shadowModified;
- };
- /**
- * Translates this point by the given vector.
- *
- * @param {number} dx X-coordinate of the translation.
- * @param {number} dy Y-coordinate of the translation.
- */
- DrawioFile.prototype.setShadowModified = function(value)
- {
- this.shadowModified = value;
- };
- /**
- * Translates this point by the given vector.
- *
- * @param {number} dx X-coordinate of the translation.
- * @param {number} dy Y-coordinate of the translation.
- */
- DrawioFile.prototype.setModified = function(value)
- {
- this.modified = value;
- this.shadowModified = value;
- };
- /**
- * Specifies if the autosave checkbox should be shown in the document
- * properties dialog. Default is false.
- */
- DrawioFile.prototype.isAutosaveOptional = function()
- {
- return false;
- };
- /**
- * Translates this point by the given vector.
- *
- * @param {number} dx X-coordinate of the translation.
- * @param {number} dy Y-coordinate of the translation.
- */
- DrawioFile.prototype.isAutosave = function()
- {
- return !this.inConflictState && this.ui.editor.autosave;
- };
- /**
- * Translates this point by the given vector.
- *
- * @param {number} dx X-coordinate of the translation.
- * @param {number} dy Y-coordinate of the translation.
- */
- DrawioFile.prototype.isRenamable = function()
- {
- return false;
- };
- /**
- * Translates this point by the given vector.
- *
- * @param {number} dx X-coordinate of the translation.
- * @param {number} dy Y-coordinate of the translation.
- */
- DrawioFile.prototype.rename = function(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.
- */
- DrawioFile.prototype.isMovable = function()
- {
- return false;
- };
- /**
- * Translates this point by the given vector.
- *
- * @param {number} dx X-coordinate of the translation.
- * @param {number} dy Y-coordinate of the translation.
- */
- DrawioFile.prototype.isTrashed = function()
- {
- return false;
- };
- /**
- * Translates this point by the given vector.
- *
- * @param {number} dx X-coordinate of the translation.
- * @param {number} dy Y-coordinate of the translation.
- */
- DrawioFile.prototype.move = function(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.
- */
- DrawioFile.prototype.share = function()
- {
- this.ui.alert(mxResources.get('sharingAvailable'), null, 380);
- };
- /**
- * Returns the hash of the file which consists of a prefix for the storage
- * type and the ID of the file.
- */
- DrawioFile.prototype.getHash = function()
- {
- return '';
- };
- /**
- * Returns the ID of the file.
- */
- DrawioFile.prototype.getId = function()
- {
- return '';
- };
- /**
- * Returns true if the file is editable.
- */
- DrawioFile.prototype.isEditable = function()
- {
- return !this.ui.editor.isChromelessView() || this.ui.editor.editable;
- };
- /**
- * Returns the location as a new object.
- * @type mx.Point
- */
- DrawioFile.prototype.getUi = function()
- {
- return this.ui;
- };
- /**
- * Returns the current title of the file.
- */
- DrawioFile.prototype.getTitle = function()
- {
- return '';
- };
- /**
- * Sets the current data of the file.
- */
- DrawioFile.prototype.setData = function(data)
- {
- this.data = data;
- };
- /**
- * Returns the current data of the file.
- */
- DrawioFile.prototype.getData = function()
- {
- return this.data;
- };
- /**
- * Opens this file in the editor.
- */
- DrawioFile.prototype.open = function()
- {
- this.stats.opened++;
- var data = this.getData();
-
- if (data != null)
- {
- //Remove external fonts of previous file
- function removeExtFont(elems)
- {
- for (var i = 0; elems != null && i < elems.length; i++)
- {
- var e = elems[i];
-
- if (e.id != null && e.id.indexOf('extFont_') == 0)
- {
- e.parentNode.removeChild(e);
- }
- }
- };
-
- removeExtFont(document.querySelectorAll('head > style[id]'));
- removeExtFont(document.querySelectorAll('head > link[id]'));
- this.ui.setFileData(data);
-
- // Updates shadow in case any page IDs have been updated
- // only if the file has not been modified and reopened
- if (!this.isModified())
- {
- var data = this.ui.getXmlFileData();
-
- if (this.isRealtimeEnabled() && this.isRealtimeSupported())
- {
- this.ownPages = this.ui.getPagesForNode(data);
- this.snapshot = data;
- }
- this.shadowData = mxUtils.getXml(data);
- this.shadowPages = null;
- }
- }
- this.installListeners();
-
- if (this.isSyncSupported())
- {
- this.startSync();
- }
- };
- /**
- * Hook for subclassers.
- */
- DrawioFile.prototype.isSyncSupported = function()
- {
- return false;
- };
- /**
- * Returns true if all changes should be sent out immediately.
- */
- DrawioFile.prototype.isRealtimeSupported = function()
- {
- return false;
- };
- /**
- * Returns true if all changes should be sent out immediately.
- */
- DrawioFile.prototype.isRealtimeEnabled = function()
- {
- return urlParams['fast-sync'] != '0';
- };
- /**
- * Returns true if all changes should be sent out immediately.
- */
- DrawioFile.prototype.setRealtimeEnabled = function()
- {
- // do nothing
- };
- /**
- * Returns true if all changes should be sent out immediately.
- */
- DrawioFile.prototype.isRealtimeOptional = function()
- {
- return false;
- };
- /**
- * Returns true if all changes should be sent out immediately.
- */
- DrawioFile.prototype.getRealtimeState = function()
- {
- return (this.sync != null && this.sync.p2pCollab != null) ?
- this.sync.p2pCollab.getState() : 3 /* CLOSED */;
- };
- /**
- * Returns true if all changes should be sent out immediately.
- */
- DrawioFile.prototype.getRealtimeError = function()
- {
- return (this.sync != null && this.sync.p2pCollab != null) ?
- this.sync.p2pCollab.getLastError() : null;
- };
- /**
- * Returns true if the notification to update should be sent
- * together with the save request.
- */
- DrawioFile.prototype.isOptimisticSync = function()
- {
- return false;
- };
- /**
- * Hook for subclassers.
- */
- DrawioFile.prototype.isRevisionHistorySupported = function()
- {
- return false;
- };
- /**
- * Hook for subclassers.
- */
- DrawioFile.prototype.getRevisions = function(success, error)
- {
- success(null);
- };
- /**
- * Hook for subclassers to get the latest descriptor of this file
- * and return it in the success handler.
- */
- DrawioFile.prototype.loadDescriptor = function(success, error)
- {
- success(null);
- };
- /**
- * Hook for subclassers to get the latest etag of this file
- * and return it in the success handler.
- */
- DrawioFile.prototype.loadPatchDescriptor = function(success, error)
- {
- this.loadDescriptor(mxUtils.bind(this, function(desc)
- {
- success(desc);
- }), error);
- };
- /**
- * Adds the listener for automatically saving the diagram for local changes.
- */
- DrawioFile.prototype.patchDescriptor = function(desc, patch)
- {
- this.setDescriptorEtag(desc, this.getDescriptorEtag(patch));
- this.descriptorChanged();
- };
- /**
- * Creates a starts the synchronization.
- */
- DrawioFile.prototype.startSync = function()
- {
- if (((DrawioFile.SYNC == 'auto' || DrawioFile.SYNC == 'fast') &&
- urlParams['stealth'] != '1') && (urlParams['rt'] == '1' ||
- !this.ui.editor.chromeless || this.ui.editor.editable))
- {
- if (this.sync == null)
- {
- this.sync = new DrawioFileSync(this);
- }
- this.addListener('realtimeStateChanged', mxUtils.bind(this, function()
- {
- this.ui.fireEvent(new mxEventObject('realtimeStateChanged'));
- }));
-
- this.sync.start();
- }
- };
- /**
- * Hook for subclassers to check if an error is a conflict.
- */
- DrawioFile.prototype.isConflict = function()
- {
- return false;
- };
- /**
- * Gets the channel ID for sync messages.
- */
- DrawioFile.prototype.getChannelId = function()
- {
- // Slash, space and plus replaced with underscore
- return Graph.compress(this.getHash()).replace(/[\/ +]/g, '_');
- };
- /**
- * Gets the channel ID from the given descriptor.
- */
- DrawioFile.prototype.getChannelKey = function(desc)
- {
- return null;
- };
- /**
- * Returns the current etag.
- */
- DrawioFile.prototype.getCurrentUser = function()
- {
- return null;
- };
- /**
- * Hook for subclassers to get the latest version of this file
- * and return it in the success handler.
- */
- DrawioFile.prototype.getLatestVersion = function(success, error)
- {
- success(null);
- };
- /**
- * Returns the last modified date of this file.
- */
- DrawioFile.prototype.getLastModifiedDate = function()
- {
- return new Date();
- };
- /**
- * Sets the current revision ID.
- */
- DrawioFile.prototype.setCurrentRevisionId = function(id)
- {
- this.setDescriptorRevisionId(this.getDescriptor(), id);
- };
- /**
- * Returns the current revision ID.
- */
- DrawioFile.prototype.getCurrentRevisionId = function()
- {
- return this.getDescriptorRevisionId(this.getDescriptor());
- };
- /**
- * Sets the current etag.
- */
- DrawioFile.prototype.setCurrentEtag = function(etag)
- {
- this.setDescriptorEtag(this.getDescriptor(), etag);
- };
- /**
- * Returns the current etag.
- */
- DrawioFile.prototype.getCurrentEtag = function()
- {
- return this.getDescriptorEtag(this.getDescriptor());
- };
- /**
- * Returns the descriptor from this file.
- */
- DrawioFile.prototype.getDescriptor = function()
- {
- return null;
- };
- /**
- * Sets the descriptor for this file.
- */
- DrawioFile.prototype.setDescriptor = function() { };
- /**
- * Updates the revision ID on the given descriptor.
- */
- DrawioFile.prototype.setDescriptorRevisionId = function(desc, id)
- {
- this.setDescriptorEtag(desc, id);
- };
- /**
- * Returns the revision ID from the given descriptor.
- */
- DrawioFile.prototype.getDescriptorRevisionId = function(desc)
- {
- return this.getDescriptorEtag(desc);
- };
- /**
- * Updates the etag on the given descriptor.
- */
- DrawioFile.prototype.setDescriptorEtag = function(desc, etag) { };
- /**
- * Returns the etag from the given descriptor.
- */
- DrawioFile.prototype.getDescriptorEtag = function(desc)
- {
- return null;
- };
- /**
- * Returns the secret from the given descriptor. This must be stored
- * in a custom property and generated by the saving client so that a
- * token can be obtained from the cache for writing the patch after
- * saving the file. If this cannot be saved in a custom property then
- * null must be returned so that no deltas are used for updating the
- * file (the file is reloaded every time instead). This is needed to
- * make sure nobody with read-only permissions can write a patch to
- * the cache before the saving client wrote the patch and inject
- * data into the file via other clients merging that data.
- */
- DrawioFile.prototype.getDescriptorSecret = function(desc)
- {
- return null;
- };
- /**
- * Installs the change listener.
- */
- DrawioFile.prototype.installListeners = function()
- {
- if (this.changeListener == null)
- {
- this.changeListener = mxUtils.bind(this, function(sender, eventObject)
- {
- var edit = (eventObject != null) ? eventObject.getProperty('edit') : null;
-
- if (this.changeListenerEnabled && this.isEditable() && (edit == null || !edit.ignoreEdit))
- {
- this.fileChanged();
- }
- });
-
- this.ui.editor.graph.model.addListener(mxEvent.CHANGE, this.changeListener);
-
- // Some options trigger autosave
- this.ui.editor.graph.addListener('gridSizeChanged', this.changeListener);
- this.ui.editor.graph.addListener('shadowVisibleChanged', this.changeListener);
- this.ui.addListener('pageFormatChanged', this.changeListener);
- this.ui.addListener('pageScaleChanged', this.changeListener);
- this.ui.addListener('backgroundColorChanged', this.changeListener);
- this.ui.addListener('backgroundImageChanged', this.changeListener);
- this.ui.addListener('foldingEnabledChanged', this.changeListener);
- this.ui.addListener('mathEnabledChanged', this.changeListener);
- this.ui.addListener('gridEnabledChanged', this.changeListener);
- this.ui.addListener('guidesEnabledChanged', this.changeListener);
- this.ui.addListener('tooltipsEnabledChanged', this.changeListener);
- this.ui.addListener('pageViewChanged', this.changeListener);
- this.ui.addListener('connectionPointsChanged', this.changeListener);
- this.ui.addListener('connectionArrowsChanged', this.changeListener);
- }
- };
- /**
- * Returns the location as a new object.
- * @type mx.Point
- */
- DrawioFile.prototype.addAllSavedStatus = function(status)
- {
- if (this.ui.statusContainer != null && this.ui.getCurrentFile() == this)
- {
- status = (status != null) ? status : mxUtils.htmlEntities(mxResources.get(this.allChangesSavedKey));
- this.ui.editor.setStatus('<div title="'+ status + '">' + status + '</div>');
- var links = this.ui.statusContainer.getElementsByTagName('div');
-
- if (links.length > 0 && this.isRevisionHistorySupported())
- {
- links[0].style.cursor = 'pointer';
- links[0].style.textDecoration = 'underline';
-
- mxEvent.addListener(links[0], 'click', mxUtils.bind(this, function()
- {
- this.ui.actions.get('revisionHistory').funct();
- }));
- }
- }
- };
- /**
- * Adds the listener for automatically saving the diagram for local changes.
- */
- DrawioFile.prototype.saveDraft = function()
- {
- try
- {
- if (this.draftId == null)
- {
- this.draftId = Editor.guid();
- }
-
- var draft = {type: 'draft',
- created: this.created,
- modified: new Date().getTime(),
- data: this.ui.getFileData(),
- title: this.getTitle(),
- fileObject: this.fileObject,
- aliveCheck: this.ui.draftAliveCheck};
- this.ui.setDatabaseItem('.draft_' + this.draftId,
- JSON.stringify(draft));
-
- EditorUi.debug('draft saved', this.draftId, draft);
- }
- catch (e)
- {
- // Removes any stored draft
- this.removeDraft();
- }
- };
- /**
- * Adds the listener for automatically saving the diagram for local changes.
- */
- DrawioFile.prototype.removeDraft = function()
- {
- try
- {
- if (this.draftId != null)
- {
- this.ui.removeDatabaseItem('.draft_' + this.draftId);
- EditorUi.debug('draft deleted', '.draft_' + this.draftId);
- }
- }
- catch (e)
- {
- // ignore
- }
- };
- /**
- * Adds the listener for automatically saving the diagram for local changes.
- */
- DrawioFile.prototype.addUnsavedStatus = function(err)
- {
- if (!this.inConflictState && this.ui.statusContainer != null && this.ui.getCurrentFile() == this)
- {
- if (err instanceof Error && err.message != null && err.message != '')
- {
- var status = mxUtils.htmlEntities(mxResources.get('unsavedChanges'));
-
- this.ui.editor.setStatus('<div title="'+ status + '" class="geStatusAlert">' +
- status + ' (' + mxUtils.htmlEntities(err.message) + ')</div>');
- // Installs click handler for error message
- var links = this.ui.statusContainer.getElementsByTagName('div');
-
- if (links != null && links.length > 0)
- {
- links[0].style.cursor = 'pointer';
- mxEvent.addListener(links[0], 'click', mxUtils.bind(this, function()
- {
- this.ui.showError(mxResources.get('unsavedChanges'), mxUtils.htmlEntities(err.message));
- }));
- }
- }
- else
- {
- var msg = this.getErrorMessage(err);
- if (msg == null && this.lastSaved != null)
- {
- var str = this.ui.timeSince(new Date(this.lastSaved));
-
- // Only show if more than a minute ago
- if (str != null)
- {
- msg = mxResources.get('lastSaved', [str]);
- }
- }
-
- if (msg != null && msg.length > 60)
- {
- msg = msg.substring(0, 60) + '...';
- }
- var status = mxUtils.htmlEntities(mxResources.get('unsavedChangesClickHereToSave')) +
- ((msg != null && msg != '') ? ' (' + mxUtils.htmlEntities(msg) + ')' : '');
- this.ui.editor.setStatus('<div title="'+ status + '" class="geStatusAlertOrange">' + status +
- ' <img src="' + Editor.saveImage + '"/></div>');
-
- // Installs click handler for saving
- var links = this.ui.statusContainer.getElementsByTagName('div');
-
- if (links != null && links.length > 0)
- {
- links[0].style.cursor = 'pointer';
- mxEvent.addListener(links[0], 'click', mxUtils.bind(this, function()
- {
- this.ui.actions.get((this.ui.mode == null || !this.isEditable()) ?
- 'saveAs' : 'save').funct();
- }));
- }
- else
- {
- var status = mxUtils.htmlEntities(mxResources.get('unsavedChanges'));
-
- this.ui.editor.setStatus('<div title="'+ status + '" class="geStatusAlert">' + status +
- ' (' + mxUtils.htmlEntities(err.message) + ')</div>');
- }
-
- if (EditorUi.enableDrafts && (this.getMode() == null || EditorUi.isElectronApp))
- {
- if (this.saveDraftThread != null)
- {
- window.clearTimeout(this.saveDraftThread);
- }
-
- this.saveDraftThread = window.setTimeout(mxUtils.bind(this, function()
- {
- this.saveDraft();
- }), 0);
- }
- }
- }
- };
- /**
- * Halts all timers and shows a conflict status message. The optional error
- * handler is invoked first.
- */
- DrawioFile.prototype.addConflictStatus = function(fn, message)
- {
- if (this.invalidChecksum && message == null)
- {
- message = mxResources.get('checksum');
- }
- this.setConflictStatus(mxUtils.htmlEntities(mxResources.get('fileChangedSync')) +
- ((message != null && message != '') ? ' (' + mxUtils.htmlEntities(message) + ')' : ''));
- this.ui.spinner.stop();
- this.clearAutosave();
- var links = (this.ui.statusContainer != null) ? this.ui.statusContainer.getElementsByTagName('div') : null;
-
- if (links != null && links.length > 0)
- {
- links[0].style.cursor = 'pointer';
- mxEvent.addListener(links[0], 'click', mxUtils.bind(this, function(evt)
- {
- if (mxEvent.getSource(evt).nodeName != 'IMG')
- {
- fn();
- }
- }));
- }
- else
- {
- this.ui.alert(mxUtils.htmlEntities(mxResources.get('fileChangedSync')), fn);
- }
- };
- /**
- * Halts all timers and shows a conflict status message. The optional error
- * handler is invoked first.
- */
- DrawioFile.prototype.setConflictStatus = function(message)
- {
- this.ui.editor.setStatus('<div title="'+ message + '" class="geStatusAlert">' + message +
- ' <a href="https://www.diagrams.net/doc/faq/synchronize" title="' + mxResources.get('help') +
- '" target="_blank">' + '<img src="' + Editor.helpImage + '"/></a></div>');
- };
- /**
- * Shows a conflict dialog to the user.
- */
- DrawioFile.prototype.showRefreshDialog = function(success, error, message)
- {
- if (message == null)
- {
- message = mxResources.get('checksum');
- }
-
- if (this.ui.editor.isChromelessView() && !this.ui.editor.editable)
- {
- this.ui.alert(mxResources.get('fileChangedSync'), mxUtils.bind(this, function()
- {
- this.reloadFile(success, error);
- }));
- }
- else
- {
- // Allows for escape key to be pressed while dialog is showing
- this.addConflictStatus(mxUtils.bind(this, function()
- {
- this.showRefreshDialog(success, error);
- }), message);
-
- this.ui.showError(mxResources.get('warning') + ' (' + message + ')',
- mxResources.get('fileChangedSyncDialog'),
- mxResources.get('makeCopy'), mxUtils.bind(this, function()
- {
- this.copyFile(success, error);
- }), null, mxResources.get('merge'), mxUtils.bind(this, function()
- {
- this.reloadFile(success, error);
- }), mxResources.get('cancel'), mxUtils.bind(this, function()
- {
- this.ui.hideDialog();
- }), 380, 130);
- }
- };
- /**
- * Shows a dialog with no synchronize option.
- */
- DrawioFile.prototype.showCopyDialog = function(success, error, overwrite)
- {
- this.inConflictState = false;
- this.invalidChecksum = false;
- this.addUnsavedStatus();
-
- this.ui.showError(mxResources.get('externalChanges'),
- mxResources.get('fileChangedOverwriteDialog'),
- mxResources.get('makeCopy'), mxUtils.bind(this, function()
- {
- this.copyFile(success, error);
- }), null, mxResources.get('overwrite'), overwrite,
- mxResources.get('cancel'), mxUtils.bind(this, function()
- {
- this.ui.hideDialog();
- }), 380, 150);
- };
- /**
- * Shows a conflict dialog to the user.
- */
- DrawioFile.prototype.showConflictDialog = function(overwrite, synchronize)
- {
- this.ui.showError(mxResources.get('externalChanges'),
- mxResources.get('fileChangedSyncDialog'),
- mxResources.get('overwrite'), overwrite, null,
- mxResources.get('merge'), synchronize,
- mxResources.get('cancel'), mxUtils.bind(this, function()
- {
- this.ui.hideDialog();
- this.handleFileError(null, false);
- }), 380, 130);
- };
- /**
- * Checks if the client is authorized and calls the next step.
- */
- DrawioFile.prototype.redirectToNewApp = function(error, details)
- {
- this.ui.spinner.stop();
-
- if (!this.redirectDialogShowing)
- {
- this.redirectDialogShowing = true;
-
- var url = window.location.protocol + '//' + window.location.host + '/' + this.ui.getSearch(
- ['create', 'title', 'mode', 'url', 'drive', 'splash', 'state']) + '#' + this.getHash();
- var msg = mxResources.get('redirectToNewApp');
-
- if (details != null)
- {
- msg += ' (' + details + ')';
- }
-
- var redirect = mxUtils.bind(this, function()
- {
- var fn = mxUtils.bind(this, function()
- {
- this.redirectDialogShowing = false;
-
- if (window.location.href == url)
- {
- window.location.reload();
- }
- else
- {
- window.location.href = url;
- }
- });
-
- if (error == null && this.isModified())
- {
- this.ui.confirm(mxResources.get('allChangesLost'), mxUtils.bind(this, function()
- {
- this.redirectDialogShowing = false;
- }), fn, mxResources.get('cancel'), mxResources.get('discardChanges'));
- }
- else
- {
- fn();
- }
- });
-
- if (error != null)
- {
- if (this.isModified())
- {
- this.ui.confirm(msg, mxUtils.bind(this, function()
- {
- this.redirectDialogShowing = false;
- error();
- }), redirect, mxResources.get('cancel'), mxResources.get('discardChanges'));
- }
- else
- {
- this.ui.confirm(msg, redirect, mxUtils.bind(this, function()
- {
- this.redirectDialogShowing = false;
- error();
- }));
- }
- }
- else
- {
- this.ui.alert(mxResources.get('redirectToNewApp'), redirect);
- }
- }
- };
- /**
- * Adds the listener for automatically saving the diagram for local changes.
- */
- DrawioFile.prototype.handleFileSuccess = function(saved)
- {
- this.ui.spinner.stop();
-
- if (this.ui.getCurrentFile() == this)
- {
- if (this.isModified())
- {
- this.fileChanged();
- }
- else if (saved)
- {
- if (this.isTrashed())
- {
- this.addAllSavedStatus(mxUtils.htmlEntities(mxResources.get(this.allChangesSavedKey)) + ' (' +
- mxUtils.htmlEntities(mxResources.get('fileMovedToTrash')) + ')');
- }
- else
- {
- this.addAllSavedStatus();
- }
- if (this.sync != null)
- {
- this.sync.resetUpdateStatusThread();
-
- if (this.sync.remoteFileChanged)
- {
- this.sync.remoteFileChanged = false;
- this.sync.fileChangedNotify();
- }
- }
- }
- else
- {
- this.ui.editor.setStatus('');
- }
- }
- };
- /**
- * Adds the listener for automatically saving the diagram for local changes.
- */
- DrawioFile.prototype.handleFileError = function(err, manual)
- {
- this.ui.spinner.stop();
-
- if (this.ui.getCurrentFile() == this)
- {
- if (this.inConflictState)
- {
- this.handleConflictError(err, manual);
- }
- else
- {
- if (this.isModified())
- {
- this.addUnsavedStatus(err);
- }
-
- if (manual)
- {
- this.ui.handleError(err, (err != null) ? mxResources.get('errorSavingFile') : null);
- }
- else if (!this.isModified())
- {
- var msg = this.getErrorMessage(err);
-
- if (msg != null && msg.length > 60)
- {
- msg = msg.substring(0, 60) + '...';
- }
-
- this.ui.editor.setStatus('<div class="geStatusAlert">' +
- mxUtils.htmlEntities(mxResources.get('error')) + ((msg != null) ?
- ' (' + mxUtils.htmlEntities(msg) + ')' : '') + '</div>');
- }
- }
- }
- };
- /**
- * Adds the listener for automatically saving the diagram for local changes.
- */
- DrawioFile.prototype.handleConflictError = function(err, manual)
- {
- var success = mxUtils.bind(this, function()
- {
- this.handleFileSuccess(true);
- });
-
- var error = mxUtils.bind(this, function(err2)
- {
- this.handleFileError(err2, true);
- });
-
- var overwrite = mxUtils.bind(this, function()
- {
- if (this.ui.spinner.spin(document.body, mxResources.get(this.savingSpinnerKey)))
- {
- this.ui.editor.setStatus('');
- var isRepoFile = (this.constructor == GitHubFile) || (this.constructor == GitLabFile);
- this.save(true, success, error, null, true, (isRepoFile &&
- err != null) ? err.commitMessage : null);
- }
- });
- var synchronize = mxUtils.bind(this, function()
- {
- if (this.ui.spinner.spin(document.body, mxResources.get('updatingDocument')))
- {
- this.synchronizeFile(mxUtils.bind(this, function()
- {
- this.ui.spinner.stop();
-
- if (this.ui.spinner.spin(document.body, mxResources.get(this.savingSpinnerKey)))
- {
- var isRepoFile = (this.constructor == GitHubFile) || (this.constructor == GitLabFile);
- this.save(true, success, error, null, null, (isRepoFile &&
- err != null) ? err.commitMessage : null);
- }
- }), error);
- }
- })
- if (DrawioFile.SYNC == 'none')
- {
- this.showCopyDialog(success, error, overwrite);
- }
- else if (this.invalidChecksum)
- {
- this.showRefreshDialog(success, error, this.getErrorMessage(err));
- }
- else if (manual)
- {
- this.showConflictDialog(overwrite, synchronize);
- }
- else
- {
- this.addConflictStatus(mxUtils.bind(this, function()
- {
- this.ui.editor.setStatus(mxUtils.htmlEntities(
- mxResources.get('updatingDocument')));
- this.synchronizeFile(success, error);
- }), this.getErrorMessage(err));
- }
- };
- /**
- * Adds the listener for automatically saving the diagram for local changes.
- */
- DrawioFile.prototype.getErrorMessage = function(err)
- {
- var msg = (err != null) ? ((err.error != null) ? err.error.message : err.message) : null;
-
- if (msg == null && err != null && err.code == App.ERROR_TIMEOUT)
- {
- msg = mxResources.get('timeout');
- }
-
- return msg;
- };
- /**
- * Returns true if the oldest unsaved change is older than <EditorUi.warnInterval>.
- */
- DrawioFile.prototype.isOverdue = function()
- {
- return this.ageStart != null && (Date.now() - this.ageStart.getTime()) >= this.ui.warnInterval;
- };
- /**
- * Adds the listener for automatically saving the diagram for local changes.
- */
- DrawioFile.prototype.fileChanged = function()
- {
- this.lastChanged = new Date();
- this.setModified(true);
- if (this.isAutosave())
- {
- if (this.savingStatusKey != null)
- {
- this.addAllSavedStatus(mxUtils.htmlEntities(mxResources.get(this.savingStatusKey)) + '...');
- }
-
- this.ui.scheduleSanityCheck();
-
- if (this.ageStart == null)
- {
- this.ageStart = new Date();
- }
-
- this.autosave(this.autosaveDelay, this.maxAutosaveDelay, mxUtils.bind(this, function(resp)
- {
- this.ui.stopSanityCheck();
- // Does not update status if another autosave was scheduled
- if (this.autosaveThread == null)
- {
- this.handleFileSuccess(true);
- this.ageStart = null;
- }
- else if (this.isModified())
- {
- this.ui.scheduleSanityCheck();
- this.ageStart = this.lastChanged;
- }
- }), mxUtils.bind(this, function(err)
- {
- this.handleFileError(err);
- }));
- }
- else
- {
- this.ageStart = null;
-
- if ((!this.isAutosaveOptional() || !this.ui.editor.autosave) &&
- !this.inConflictState)
- {
- this.addUnsavedStatus();
- }
- }
- if (this.sync != null)
- {
- this.sync.localFileChanged();
- }
- };
- /**
- * Creates a secret and token pair for writing a patch to the cache.
- */
- DrawioFile.prototype.createSecret = function(success)
- {
- var secret = Editor.guid(32);
-
- if (this.sync != null && !this.isOptimisticSync())
- {
- this.sync.createToken(secret, mxUtils.bind(this, function(token)
- {
- success(secret, token);
- }), mxUtils.bind(this, function()
- {
- success(secret);
- }));
- }
- else
- {
- success(secret);
- }
- };
- /**
- * Invokes sync and updates shadow document.
- */
- DrawioFile.prototype.fileSaving = function()
- {
- if (this.sync != null && this.isOptimisticSync())
- {
- this.sync.fileSaving();
- }
-
- if (urlParams['test'] == '1')
- {
- EditorUi.debug('DrawioFile.fileSaving', [this]);
- }
- };
- /**
- * Invokes sync and updates shadow document.
- */
- DrawioFile.prototype.fileSaved = function(savedData, lastDesc, success, error, token)
- {
- this.lastSaved = new Date();
- this.ageStart = null;
-
- try
- {
- this.stats.saved++;
- this.inConflictState = false;
- this.invalidChecksum = false;
- if (this.sync == null || this.isOptimisticSync())
- {
- this.shadowData = savedData;
- this.shadowPages = null;
-
- if (this.sync != null)
- {
- this.sync.lastModified = this.getLastModifiedDate();
- this.sync.resetUpdateStatusThread();
- }
-
- if (success != null)
- {
- success();
- }
- }
- else
- {
- this.sync.fileSaved(this.ui.getPagesForNode(
- mxUtils.parseXml(savedData).documentElement),
- lastDesc, success, error, token);
- }
- }
- catch (e)
- {
- this.inConflictState = true;
- this.invalidChecksum = true;
- this.descriptorChanged();
-
- if (error != null)
- {
- error(e);
- }
- try
- {
- if (this.errorReportsEnabled)
- {
- this.sendErrorReport('Error in fileSaved', null, e);
- }
- else
- {
- var user = this.getCurrentUser();
- var uid = (user != null) ? user.id : 'unknown';
-
- EditorUi.logError('Error in fileSaved', null,
- this.getMode() + '.' + this.getId(),
- uid, e);
- }
- }
- catch (e2)
- {
- // ignore
- }
- }
-
- if (urlParams['test'] == '1')
- {
- EditorUi.debug('DrawioFile.fileSaved', [this]);
- }
- };
- /**
- * Adds the listener for automatically saving the diagram for local changes.
- */
- DrawioFile.prototype.autosave = function(delay, maxDelay, success, error)
- {
- if (this.lastAutosave == null)
- {
- this.lastAutosave = Date.now();
- }
-
- var tmp = (Date.now() - this.lastAutosave < maxDelay) ? delay : 0;
- this.clearAutosave();
-
- // Starts new timer or executes immediately if not unsaved for maxDelay
- var thread = window.setTimeout(mxUtils.bind(this, function()
- {
- this.lastAutosave = null;
-
- if (this.autosaveThread == thread)
- {
- this.autosaveThread = null;
- }
-
- // Workaround for duplicate save if UI is blocking
- // after save while pending autosave triggers
- if (this.isModified() && this.isAutosaveNow())
- {
- var rev = this.isAutosaveRevision();
-
- if (rev)
- {
- this.lastAutosaveRevision = new Date().getTime();
- }
-
- this.save(rev, mxUtils.bind(this, function(resp)
- {
- this.autosaveCompleted();
-
- if (success != null)
- {
- success(resp);
- }
- }), mxUtils.bind(this, function(resp)
- {
- if (error != null)
- {
- error(resp);
- }
- }));
- }
- else
- {
- if (!this.isModified())
- {
- this.ui.editor.setStatus('');
- }
-
- if (success != null)
- {
- success(null);
- }
- }
- }), tmp);
- this.autosaveThread = thread;
- };
- /**
- * Returns true if an autosave is required at the time of execution.
- * This implementation returns true.
- */
- DrawioFile.prototype.isAutosaveNow = function()
- {
- return true;
- };
- /**
- * Hooks for subclassers after the autosave has completed.
- */
- DrawioFile.prototype.autosaveCompleted = function() { };
- /**
- * Adds the listener for automatically saving the diagram for local changes.
- */
- DrawioFile.prototype.clearAutosave = function()
- {
- if (this.autosaveThread != null)
- {
- window.clearTimeout(this.autosaveThread);
- this.autosaveThread = null;
- }
- };
- /**
- * Returns the location as a new object.
- * @type mx.Point
- */
- DrawioFile.prototype.isAutosaveRevision = function()
- {
- var now = new Date().getTime();
-
- return (this.lastAutosaveRevision == null) || (now - this.lastAutosaveRevision) > this.maxAutosaveRevisionDelay;
- };
- /**
- * Translates this point by the given vector.
- *
- * @param {number} dx X-coordinate of the translation.
- * @param {number} dy Y-coordinate of the translation.
- */
- DrawioFile.prototype.descriptorChanged = function()
- {
- this.fireEvent(new mxEventObject('descriptorChanged'));
- };
- /**
- * Translates this point by the given vector.
- *
- * @param {number} dx X-coordinate of the translation.
- * @param {number} dy Y-coordinate of the translation.
- */
- DrawioFile.prototype.contentChanged = function()
- {
- this.fireEvent(new mxEventObject('contentChanged'));
- };
- /**
- * Returns the location as a new object.
- */
- DrawioFile.prototype.close = function(unloading)
- {
- this.updateFileData();
- this.stats.closed++;
-
- if (this.isAutosave() && this.isModified())
- {
- this.save(this.isAutosaveRevision(), null, null, unloading);
- }
- this.destroy();
- };
- /**
- * Returns the location as a new object.
- */
- DrawioFile.prototype.hasSameExtension = function(title, newTitle)
- {
- if (title != null && newTitle != null)
- {
- var dot = title.lastIndexOf('.');
- var ext = (dot > 0) ? title.substring(dot) : '';
- dot = newTitle.lastIndexOf('.');
- return ext === ((dot > 0) ? newTitle.substring(dot) : '');
- }
-
- return title == newTitle;
- };
- /**
- * Removes the change listener.
- */
- DrawioFile.prototype.removeListeners = function()
- {
- if (this.changeListener != null)
- {
- this.ui.editor.graph.model.removeListener(this.changeListener);
- this.ui.editor.graph.removeListener(this.changeListener);
- this.ui.removeListener(this.changeListener);
- this.changeListener = null;
- }
- };
- /**
- * Stops any pending autosaves and removes all listeners.
- */
- DrawioFile.prototype.destroy = function()
- {
- this.clearAutosave();
- this.removeListeners();
- this.stats.destroyed++;
- if (this.sync != null)
- {
- this.sync.destroy();
- this.sync = null;
- }
- };
- /**
- * Are comments supported
- */
- DrawioFile.prototype.commentsSupported = function()
- {
- return false; //The default is false and files that support it must explicitly state that
- };
- /**
- * Show refresh button?
- */
- DrawioFile.prototype.commentsRefreshNeeded = function()
- {
- return true;
- };
- /**
- * Show save button?
- */
- DrawioFile.prototype.commentsSaveNeeded = function()
- {
- return false;
- };
- /**
- * Get comments of the file
- */
- DrawioFile.prototype.getComments = function(success, error)
- {
- success([]); //placeholder
- };
- /**
- * Add a comment to the file
- */
- DrawioFile.prototype.addComment = function(comment, success, error)
- {
- success(Date.now()); //placeholder
- };
- /**
- * Can add a reply to a reply
- */
- DrawioFile.prototype.canReplyToReplies = function()
- {
- return true;
- };
- /**
- * Can add comments (The permission to comment to this file)
- */
- DrawioFile.prototype.canComment = function()
- {
- return true;
- };
- /**
- * Get a new comment object
- */
- DrawioFile.prototype.newComment = function(content, user)
- {
- return new DrawioComment(this, null, content, Date.now(), Date.now(), false, user);
- };
|