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);
201 if (!self.galleryLink) {
202 params['failure'](self, 'Brak galerii.');
207 url: reverse("ajax_document_gallery", self.galleryLink),
210 success: function(data) {
211 self.galleryImages = data;
212 params['success'](self, data);
214 error: function(xhr) {
215 switch (xhr.status) {
217 var msg = 'Galerie dostępne tylko dla zalogowanych użytkowników.';
220 var msg = "Nie znaleziono galerii o nazwie: '" + self.galleryLink + "'.";
222 var msg = "Nie udało się wczytać galerii o nazwie: '" + self.galleryLink + "'.";
224 self.galleryImages = [];
225 params['failure'](self, msg);
231 * Set document's text
233 WikiDocument.prototype.setText = function(text) {
234 return this.setDocumentProperty('text', text);
238 * Set document's gallery link
240 WikiDocument.prototype.setGalleryLink = function(gallery) {
241 return this.setDocumentProperty('galleryLink', gallery);
245 * Set document's property
247 WikiDocument.prototype.setDocumentProperty = function(property, value) {
248 if(this[property] !== value) {
249 this[property] = value;
250 this.has_local_changes = true;
255 * Save text back to the server
257 WikiDocument.prototype.save = function(params) {
258 params = $.extend({}, noops, params);
261 if (!self.has_local_changes) {
262 console.log("Abort: no changes.");
263 return params['success'](self, false, "Nie ma zmian do zapisania.");
266 // Serialize form to dictionary
268 $.each(params['form'].serializeArray(), function() {
269 data[this.name] = this.value;
272 data['textsave-text'] = self.text;
275 url: reverse("ajax_document_text", self.id),
279 success: function(data) {
282 $('#header').removeClass('saving');
285 self.text = data.text;
286 self.revision = data.revision;
287 self.gallery = data.gallery;
289 self.triggerDocumentChanged();
292 params['success'](self, changed, ((changed && "Udało się zapisać :)") || "Twoja wersja i serwera jest identyczna"));
294 error: function(xhr) {
295 if ($('#header').hasClass('saving')) {
296 $('#header').removeClass('saving');
298 message: "<p>Nie udało się zapisać zmian. <br/><button onclick='$.unblockUI()'>OK</button></p>"
303 params['failure'](self, $.parseJSON(xhr.responseText));
306 params['failure'](self, {
307 "__message": "<p>Nie udało się zapisać - błąd serwera.</p>"
315 $('#save-hide').click(function(){
316 $('#header').addClass('saving');
318 $.wiki.blocking.unblock();
320 }; /* end of save() */
322 WikiDocument.prototype.revertToVersion = function(params) {
324 params = $.extend({}, noops, params);
326 if (params.revision >= this.revision) {
327 params.failure(self, 'Proszę wybrać rewizję starszą niż aktualna.');
331 // Serialize form to dictionary
333 $.each(params['form'].serializeArray(), function() {
334 data[this.name] = this.value;
338 url: reverse("ajax_document_revert", self.id),
342 success: function(data) {
344 self.text = data.text;
345 self.revision = data.revision;
346 self.gallery = data.gallery;
347 self.triggerDocumentChanged();
349 params.success(self, "Udało się przywrócić wersję :)");
352 params.failure(self, "Przywracana wersja identyczna z aktualną. Anulowano przywracanie.");
355 error: function(xhr) {
356 params.failure(self, "Nie udało się przywrócić wersji - błąd serwera.");
361 WikiDocument.prototype.pubmark = function(params) {
362 params = $.extend({}, noops, params);
365 "pubmark-id": self.id,
369 $.each(params.form.serializeArray(), function() {
370 data[this.name] = this.value;
374 url: reverse("ajax_document_pubmark", self.id),
378 success: function(data) {
379 params.success(self, data.message);
381 error: function(xhr) {
382 if (xhr.status == 403 || xhr.status == 401) {
383 params.failure(self, {
384 "__all__": ["Nie masz uprawnień lub nie jesteś zalogowany."]
389 params.failure(self, $.parseJSON(xhr.responseText));
392 params.failure(self, {
393 "__all__": ["Nie udało się - błąd serwera."]
401 WikiDocument.prototype.refreshCover = function(params) {
404 xml: self.text // TODO: send just DC
407 url: reverse("ajax_cover_preview"),
410 success: function(data) {
411 params.success(data);
413 error: function(xhr) {
414 // params.failure("Nie udało się odświeżyć okładki - błąd serwera.");
420 WikiDocument.prototype.getLength = function(params) {
421 params = $.extend({}, noops, params);
422 var xml = this.text.replace(/\/(\s+)/g, '<br />$1');
423 var parser = new DOMParser();
424 var doc = parser.parseFromString(xml, 'text/xml');
425 var error = $('parsererror', doc);
427 if (error.length > 0) {
428 throw "Not an XML document.";
430 $.xmlns["rdf"] = "http://www.w3.org/1999/02/22-rdf-syntax-ns#";
431 $('rdf|RDF', doc).remove();
432 if (params.noFootnotes) {
433 $('pa, pe, pr, pt', doc).remove();
435 if (params.noThemes) {
436 $('motyw', doc).remove();
438 var text = $(doc).text();
439 text = $.trim(text.replace(/\s{2,}/g, ' '));
443 /* Temporary workaround for relative images. */
444 WikiDocument.prototype.getBase = function() {
445 return '/media/dynamic/images/' + this.galleryLink + '/';
448 $.wikiapi.WikiDocument = WikiDocument;