wisemapping-open-source/mindplot/src/main/javascript/RestPersistenceManager.js

90 lines
3.2 KiB
JavaScript
Raw Normal View History

2012-02-21 15:37:15 -03:00
/*
* Copyright [2011] [wisemapping]
*
* 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-07-04 02:15:55 -03:00
initialize:function (saveUrl, revertUrl) {
2012-02-21 15:37:15 -03:00
this.parent();
$assert(saveUrl, "saveUrl can not be null");
2012-07-04 02:15:55 -03:00
$assert(revertUrl, "revertUrl can not be null");
2012-02-21 15:37:15 -03:00
this.saveUrl = saveUrl;
2012-07-04 02:15:55 -03:00
this.revertUrl = revertUrl;
2012-02-21 15:37:15 -03:00
},
2012-07-04 02:15:55 -03:00
saveMapXml:function (mapId, mapXml, pref, saveHistory, events) {
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
};
var request = new Request({
2012-05-23 20:05:16 -03:00
url:this.saveUrl.replace("{id}", mapId) + "?minor=" + !saveHistory,
2012-07-04 02:15:55 -03:00
method:'put',
onSuccess:function (responseText, responseXML) {
2012-02-21 15:37:15 -03:00
events.onSuccess();
},
2012-07-04 02:15:55 -03:00
onException:function (headerName, value) {
2012-02-21 15:37:15 -03:00
events.onError();
},
2012-07-04 02:15:55 -03:00
onFailure:function (xhr) {
var responseText = xhr.responseText;
var error = null;
var contentType = this.getHeader("Content-Type");
if (contentType != null && contentType.indexOf("application/json") != -1) {
try {
error = JSON.decode(responseText);
} catch (e) {
throw "Unexpected error saving. Error response is not json object:" + responseText;
}
}
events.onError(error);
2012-02-21 15:37:15 -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-02-21 15:37:15 -03:00
}
2012-07-04 02:15:55 -03:00
2012-02-21 15:37:15 -03:00
}
);