3 var noop = function() {
10 * Return absolute reverse path of given named view. (at least he have it
11 * hard-coded in one place)
13 * TODO: think of a way, not to hard-code it here ;)
17 var vname = arguments[0];
18 var base_path = "/editor";
20 if (vname == "ajax_document_text") {
21 var path = "/text/" + arguments[1] + '/';
23 if (arguments[2] !== undefined)
24 path += arguments[2] + '/';
26 return base_path + path;
29 if (vname == "ajax_document_revert") {
30 return base_path + "/revert/" + arguments[1] + '/';
34 if (vname == "ajax_document_history") {
36 return base_path + "/history/" + arguments[1] + '/';
39 if (vname == "ajax_document_gallery") {
41 return base_path + "/gallery/" + arguments[1] + '/';
44 if (vname == "ajax_document_diff")
45 return base_path + "/diff/" + arguments[1] + '/';
47 if (vname == "ajax_document_rev")
48 return base_path + "/rev/" + arguments[1] + '/';
50 if (vname == "ajax_document_pubmark")
51 return base_path + "/pubmark/" + arguments[1] + '/';
53 if (vname == "ajax_cover_preview")
54 return "/cover/preview/";
56 console.log("Couldn't reverse match:", vname);
61 * Document Abstraction
63 function WikiDocument(element_id) {
64 var meta = $('#' + element_id);
65 this.id = meta.attr('data-chunk-id');
67 this.revision = $("*[data-key='revision']", meta).text();
68 this.readonly = !!$("*[data-key='readonly']", meta).text();
70 this.galleryLink = $("*[data-key='gallery']", meta).text();
71 this.galleryStart = parseInt($("*[data-key='gallery-start']", meta).text());
73 var diff = $("*[data-key='diff']", meta).text();
75 diff = diff.split(',');
76 if (diff.length == 2 && diff[0] < diff[1])
78 else if (diff.length == 1) {
79 diff = parseInt(diff);
81 this.diff = [diff - 1, diff];
85 this.galleryImages = [];
87 this.has_local_changes = false;
89 this._context_lock = -1;
93 WikiDocument.prototype.triggerDocumentChanged = function() {
94 $(document).trigger('wlapi_document_changed', this);
97 * Fetch text of this document.
99 WikiDocument.prototype.fetch = function(params) {
100 params = $.extend({}, noops, params);
104 url: reverse("ajax_document_text", self.id),
105 data: {"revision": self.revision},
107 success: function(data) {
110 if (self.text === null || self.revision !== data.revision) {
111 self.text = data.text;
112 self.revision = data.revision;
113 self.gallery = data.gallery;
115 self.triggerDocumentChanged();
118 self.has_local_changes = false;
119 params['success'](self, changed);
122 params['failure'](self, "Nie udało się wczytać treści dokumentu.");
127 * Fetch history of this document.
129 * from - First revision to fetch (default = 0) upto - Last revision to
130 * fetch (default = tip)
133 WikiDocument.prototype.fetchHistory = function(params) {
134 /* this doesn't modify anything, so no locks */
135 params = $.extend({}, noops, params);
139 url: reverse("ajax_document_history", self.id),
142 "from": params['from'],
143 "upto": params['upto']
145 success: function(data) {
146 params['success'](self, data);
149 params['failure'](self, "Nie udało się wczytać historii dokumentu.");
153 WikiDocument.prototype.fetchDiff = function(params) {
154 /* this doesn't modify anything, so no locks */
157 'from': self.revision,
162 url: reverse("ajax_document_diff", self.id),
165 "from": params['from'],
168 success: function(data) {
169 params['success'](self, data);
172 params['failure'](self, "Nie udało się wczytać porównania wersji.");
177 WikiDocument.prototype.checkRevision = function(params) {
178 /* this doesn't modify anything, so no locks */
182 url: reverse("ajax_document_rev", self.id),
184 success: function(data) {
189 else if (data != self.revision)
198 WikiDocument.prototype.refreshGallery = function(params) {
199 params = $.extend({}, noops, params);
203 url: reverse("ajax_document_gallery", self.galleryLink),
206 success: function(data) {
207 self.galleryImages = data;
208 params['success'](self, data);
210 error: function(xhr) {
211 switch (xhr.status) {
213 var msg = 'Galerie dostępne tylko dla zalogowanych użytkowników.';
216 var msg = "Nie znaleziono galerii o nazwie: '" + self.galleryLink + "'.";
218 var msg = "Nie udało się wczytać galerii o nazwie: '" + self.galleryLink + "'.";
220 self.galleryImages = [];
221 params['failure'](self, "<p>" + msg + "</p>");
227 * Set document's text
229 WikiDocument.prototype.setText = function(text) {
230 return this.setDocumentProperty('text', text);
234 * Set document's gallery link
236 WikiDocument.prototype.setGalleryLink = function(gallery) {
237 return this.setDocumentProperty('galleryLink', gallery);
241 * Set document's property
243 WikiDocument.prototype.setDocumentProperty = function(property, value) {
244 if(this[property] !== value) {
245 this[property] = value;
246 this.has_local_changes = true;
251 * Save text back to the server
253 WikiDocument.prototype.save = function(params) {
254 params = $.extend({}, noops, params);
257 if (!self.has_local_changes) {
258 console.log("Abort: no changes.");
259 return params['success'](self, false, "Nie ma zmian do zapisania.");
262 // Serialize form to dictionary
264 $.each(params['form'].serializeArray(), function() {
265 data[this.name] = this.value;
268 data['textsave-text'] = self.text;
271 url: reverse("ajax_document_text", self.id),
275 success: function(data) {
278 $('#header').removeClass('saving');
281 self.text = data.text;
282 self.revision = data.revision;
283 self.gallery = data.gallery;
285 self.triggerDocumentChanged();
288 params['success'](self, changed, ((changed && "Udało się zapisać :)") || "Twoja wersja i serwera jest identyczna"));
290 error: function(xhr) {
291 if ($('#header').hasClass('saving')) {
292 $('#header').removeClass('saving');
294 message: "<p>Nie udało się zapisać zmian. <br/><button onclick='$.unblockUI()'>OK</button></p>"
299 params['failure'](self, $.parseJSON(xhr.responseText));
302 params['failure'](self, {
303 "__message": "<p>Nie udało się zapisać - błąd serwera.</p>"
311 $('#save-hide').click(function(){
312 $('#header').addClass('saving');
314 $.wiki.blocking.unblock();
316 }; /* end of save() */
318 WikiDocument.prototype.revertToVersion = function(params) {
320 params = $.extend({}, noops, params);
322 if (params.revision >= this.revision) {
323 params.failure(self, 'Proszę wybrać rewizję starszą niż aktualna.');
327 // Serialize form to dictionary
329 $.each(params['form'].serializeArray(), function() {
330 data[this.name] = this.value;
334 url: reverse("ajax_document_revert", self.id),
338 success: function(data) {
340 self.text = data.text;
341 self.revision = data.revision;
342 self.gallery = data.gallery;
343 self.triggerDocumentChanged();
345 params.success(self, "Udało się przywrócić wersję :)");
348 params.failure(self, "Przywracana wersja identyczna z aktualną. Anulowano przywracanie.");
351 error: function(xhr) {
352 params.failure(self, "Nie udało się przywrócić wersji - błąd serwera.");
357 WikiDocument.prototype.pubmark = function(params) {
358 params = $.extend({}, noops, params);
361 "pubmark-id": self.id,
365 $.each(params.form.serializeArray(), function() {
366 data[this.name] = this.value;
370 url: reverse("ajax_document_pubmark", self.id),
374 success: function(data) {
375 params.success(self, data.message);
377 error: function(xhr) {
378 if (xhr.status == 403 || xhr.status == 401) {
379 params.failure(self, {
380 "__all__": ["Nie masz uprawnień lub nie jesteś zalogowany."]
385 params.failure(self, $.parseJSON(xhr.responseText));
388 params.failure(self, {
389 "__all__": ["Nie udało się - błąd serwera."]
397 WikiDocument.prototype.refreshCover = function(params) {
400 xml: self.text // TODO: send just DC
403 url: reverse("ajax_cover_preview"),
406 success: function(data) {
407 params.success(data);
409 error: function(xhr) {
410 // params.failure("Nie udało się odświeżyć okładki - błąd serwera.");
416 WikiDocument.prototype.getLength = function(params) {
417 params = $.extend({}, noops, params);
418 var xml = this.text.replace(/\/(\s+)/g, '<br />$1');
419 var parser = new DOMParser();
420 var doc = parser.parseFromString(xml, 'text/xml');
421 var error = $('parsererror', doc);
423 if (error.length > 0) {
424 throw "Not an XML document.";
426 $.xmlns["rdf"] = "http://www.w3.org/1999/02/22-rdf-syntax-ns#";
427 $('rdf|RDF', doc).remove();
428 if (params.noFootnotes) {
429 $('pa, pe, pr, pt', doc).remove();
431 if (params.noThemes) {
432 $('motyw', doc).remove();
434 var text = $(doc).text();
435 text = $.trim(text.replace(/\s{2,}/g, ' '));
440 $.wikiapi.WikiDocument = WikiDocument;