2012-02-21 15:37:15 -03:00
|
|
|
/*
|
2012-10-04 20:48:01 -03:00
|
|
|
* Copyright [2012] [wisemapping]
|
2012-02-21 15:37:15 -03:00
|
|
|
*
|
|
|
|
* Licensed under WiseMapping Public License, Version 1.0 (the "License").
|
|
|
|
* It is basically the Apache License, Version 2.0 (the "License") plus the
|
|
|
|
* "powered by wisemapping" text requirement on every single page;
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the license at
|
|
|
|
*
|
|
|
|
* http://www.wisemapping.org/license
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
mindplot.RESTPersistenceManager = new Class({
|
|
|
|
Extends:mindplot.PersistenceManager,
|
2012-10-04 20:28:59 -03:00
|
|
|
initialize:function (options) {
|
2012-02-21 15:37:15 -03:00
|
|
|
this.parent();
|
2012-10-04 20:28:59 -03:00
|
|
|
$assert(options.saveUrl, "saveUrl can not be null");
|
|
|
|
$assert(options.revertUrl, "revertUrl can not be null");
|
|
|
|
$assert(options.lockUrl, "lockUrl can not be null");
|
|
|
|
$assert(options.session, "session can not be null");
|
|
|
|
$assert(options.timestamp, "timestamp can not be null");
|
|
|
|
|
|
|
|
this.saveUrl = options.saveUrl;
|
|
|
|
this.revertUrl = options.revertUrl;
|
|
|
|
this.lockUrl = options.lockUrl;
|
|
|
|
this.timestamp = options.timestamp;
|
|
|
|
this.session = options.session;
|
2012-02-21 15:37:15 -03:00
|
|
|
},
|
|
|
|
|
2012-09-30 17:15:01 -03:00
|
|
|
saveMapXml:function (mapId, mapXml, pref, saveHistory, events, sync) {
|
2012-02-21 15:37:15 -03:00
|
|
|
|
|
|
|
var data = {
|
|
|
|
id:mapId,
|
2012-07-04 02:15:55 -03:00
|
|
|
xml:mapXml,
|
|
|
|
properties:pref
|
2012-02-21 15:37:15 -03:00
|
|
|
};
|
|
|
|
|
2012-09-30 17:15:01 -03:00
|
|
|
var persistence = this;
|
|
|
|
var query = "minor=" + !saveHistory;
|
|
|
|
query = query + (this.timestamp ? "×tamp=" + this.timestamp : "");
|
2012-10-04 20:28:59 -03:00
|
|
|
query = query + (this.session ? "&session=" + this.session : "");
|
2012-09-30 17:15:01 -03:00
|
|
|
|
2012-02-21 15:37:15 -03:00
|
|
|
var request = new Request({
|
2012-09-30 17:15:01 -03:00
|
|
|
url:this.saveUrl.replace("{id}", mapId) + "?" + query,
|
2012-07-04 02:15:55 -03:00
|
|
|
method:'put',
|
2012-09-30 17:15:01 -03:00
|
|
|
async:!sync,
|
2012-11-10 17:19:28 -03:00
|
|
|
|
2012-07-04 02:15:55 -03:00
|
|
|
onSuccess:function (responseText, responseXML) {
|
2012-02-21 15:37:15 -03:00
|
|
|
events.onSuccess();
|
2012-09-30 17:15:01 -03:00
|
|
|
persistence.timestamp = responseText;
|
2012-02-21 15:37:15 -03:00
|
|
|
},
|
2012-11-10 17:19:28 -03:00
|
|
|
|
2012-07-04 02:15:55 -03:00
|
|
|
onException:function (headerName, value) {
|
2012-11-10 17:19:28 -03:00
|
|
|
console.log("onException....");
|
|
|
|
|
2012-10-05 20:05:33 -03:00
|
|
|
events.onError(persistence._buildError());
|
2012-02-21 15:37:15 -03:00
|
|
|
},
|
2012-11-10 17:19:28 -03:00
|
|
|
|
2012-07-04 02:15:55 -03:00
|
|
|
onFailure:function (xhr) {
|
2012-11-10 17:19:28 -03:00
|
|
|
console.log("onFailure....");
|
2012-09-06 23:52:53 -03:00
|
|
|
var responseText = xhr.responseText;
|
2012-09-16 21:08:35 -03:00
|
|
|
var error = null;
|
2012-09-17 21:28:27 -03:00
|
|
|
|
|
|
|
var contentType = this.getHeader("Content-Type");
|
|
|
|
if (contentType != null && contentType.indexOf("application/json") != -1) {
|
|
|
|
try {
|
|
|
|
error = JSON.decode(responseText);
|
2012-10-05 20:05:33 -03:00
|
|
|
events.onError(persistence._buildError(error));
|
2012-09-17 21:28:27 -03:00
|
|
|
} catch (e) {
|
2012-10-05 20:05:33 -03:00
|
|
|
events.onError(persistence._buildError());
|
|
|
|
throw new Error("Unexpected error saving. Error response is not json object:" + responseText);
|
2012-09-17 21:28:27 -03:00
|
|
|
}
|
2012-11-10 17:19:28 -03:00
|
|
|
} else {
|
|
|
|
var msg = {severity:"ERROR", message:$msg('SAVE_COULD_NOT_BE_COMPLETED')};
|
|
|
|
if (this.status == 405) {
|
|
|
|
msg = {severity:"ERROR", message:$msg('SESSION_EXPIRED')};
|
|
|
|
}
|
|
|
|
events.onError(msg);
|
2012-09-16 21:08:35 -03:00
|
|
|
}
|
2012-11-10 17:19:28 -03:00
|
|
|
|
2012-02-21 15:37:15 -03:00
|
|
|
},
|
2012-11-10 17:19:28 -03:00
|
|
|
|
2012-07-04 02:15:55 -03:00
|
|
|
headers:{"Content-Type":"application/json", "Accept":"application/json"},
|
2012-02-21 15:37:15 -03:00
|
|
|
emulation:false,
|
|
|
|
urlEncoded:false
|
|
|
|
});
|
|
|
|
request.put(JSON.encode(data));
|
2012-07-04 02:15:55 -03:00
|
|
|
},
|
|
|
|
|
|
|
|
discardChanges:function (mapId) {
|
|
|
|
var request = new Request({
|
|
|
|
url:this.revertUrl.replace("{id}", mapId),
|
|
|
|
async:false,
|
|
|
|
method:'post',
|
|
|
|
onSuccess:function () {
|
|
|
|
},
|
|
|
|
onException:function () {
|
|
|
|
},
|
|
|
|
onFailure:function () {
|
|
|
|
},
|
|
|
|
headers:{"Content-Type":"application/json", "Accept":"application/json"},
|
|
|
|
emulation:false,
|
|
|
|
urlEncoded:false
|
|
|
|
});
|
|
|
|
request.post();
|
2012-09-30 17:15:01 -03:00
|
|
|
},
|
|
|
|
|
|
|
|
unlockMap:function (mindmap) {
|
|
|
|
var mapId = mindmap.getId();
|
|
|
|
var request = new Request({
|
|
|
|
url:this.lockUrl.replace("{id}", mapId),
|
|
|
|
async:false,
|
|
|
|
method:'put',
|
|
|
|
onSuccess:function () {
|
2012-07-04 02:15:55 -03:00
|
|
|
|
2012-09-30 17:15:01 -03:00
|
|
|
},
|
|
|
|
onException:function () {
|
|
|
|
},
|
|
|
|
onFailure:function () {
|
|
|
|
},
|
|
|
|
headers:{"Content-Type":"text/plain"},
|
|
|
|
emulation:false,
|
|
|
|
urlEncoded:false
|
|
|
|
});
|
|
|
|
request.put("false");
|
2012-10-05 20:05:33 -03:00
|
|
|
},
|
|
|
|
|
|
|
|
_buildError:function (jsonSeverResponse) {
|
|
|
|
var message = jsonSeverResponse ? jsonSeverResponse.globalErrors[0] : null;
|
|
|
|
var severity = jsonSeverResponse ? jsonSeverResponse.globalSeverity : null;
|
|
|
|
|
|
|
|
if (!message) {
|
|
|
|
message = $msg('SAVE_COULD_NOT_BE_COMPLETED');
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!severity) {
|
|
|
|
severity = "INFO";
|
|
|
|
}
|
|
|
|
return {severity:severity, message:message};
|
2012-09-30 17:15:01 -03:00
|
|
|
}
|
2012-02-21 15:37:15 -03:00
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
|