Merge branch 'bookmarks' into next. This fixes #103.
[Sone.git] / src / main / resources / static / javascript / sone.js
1 /* Sone JavaScript functions. */
2
3 /* jQuery overrides. */
4 oldGetJson = jQuery.prototype.getJSON;
5 jQuery.prototype.getJSON = function(url, data, successCallback, errorCallback) {
6         if (typeof errorCallback == "undefined") {
7                 return oldGetJson(url, data, successCallback);
8         }
9         if (jQuery.isFunction(data)) {
10                 errorCallback = successCallback;
11                 successCallback = data;
12                 data = null;
13         }
14         return jQuery.ajax({
15                 data: data,
16                 error: errorCallback,
17                 success: successCallback,
18                 url: url
19         });
20 }
21
22 function isOnline() {
23         return $("#sone").hasClass("online");
24 }
25
26 function registerInputTextareaSwap(inputElement, defaultText, inputFieldName, optional, dontUseTextarea) {
27         $(inputElement).each(function() {
28                 textarea = $(dontUseTextarea ? "<input type=\"text\" name=\"" + inputFieldName + "\">" : "<textarea name=\"" + inputFieldName + "\"></textarea>").blur(function() {
29                         if ($(this).val() == "") {
30                                 $(this).hide();
31                                 inputField = $(this).data("inputField");
32                                 inputField.show().removeAttr("disabled").addClass("default");
33                                 inputField.val(defaultText);
34                         }
35                 }).hide().data("inputField", $(this)).val($(this).val());
36                 $(this).after(textarea);
37                 (function(inputField, textarea) {
38                         inputField.focus(function() {
39                                 $(this).hide().attr("disabled", "disabled");
40                                 textarea.show().focus();
41                         });
42                         if (inputField.val() == "") {
43                                 inputField.addClass("default");
44                                 inputField.val(defaultText);
45                         } else {
46                                 inputField.hide().attr("disabled", "disabled");
47                                 textarea.show();
48                         }
49                         $(inputField.get(0).form).submit(function() {
50                                 inputField.attr("disabled", "disabled");
51                                 if (!optional && (textarea.val() == "")) {
52                                         return false;
53                                 }
54                         });
55                 })($(this), textarea);
56         });
57 }
58
59 /**
60  * Adds a “comment” link to all status lines contained in the given element.
61  *
62  * @param postId
63  *            The ID of the post
64  * @param element
65  *            The element to add a “comment” link to
66  */
67 function addCommentLink(postId, element, insertAfterThisElement) {
68         if (($(element).find(".show-reply-form").length > 0) || (getPostElement(element).find(".create-reply").length == 0)) {
69                 return;
70         }
71         commentElement = (function(postId) {
72                 separator = $("<span> · </span>").addClass("separator");
73                 var commentElement = $("<div><span>Comment</span></div>").addClass("show-reply-form").click(function() {
74                         replyElement = $("#sone .post#" + postId + " .create-reply");
75                         replyElement.removeClass("hidden");
76                         replyElement.removeClass("light");
77                         (function(replyElement) {
78                                 replyElement.find("input.reply-input").blur(function() {
79                                         if ($(this).hasClass("default")) {
80                                                 replyElement.addClass("light");
81                                         }
82                                 }).focus(function() {
83                                         replyElement.removeClass("light");
84                                 });
85                         })(replyElement);
86                         replyElement.find("input.reply-input").focus();
87                 });
88                 return commentElement;
89         })(postId);
90         $(insertAfterThisElement).after(commentElement.clone(true));
91         $(insertAfterThisElement).after(separator);
92 }
93
94 var translations = {};
95
96 /**
97  * Retrieves the translation for the given key and calls the callback function.
98  * The callback function takes a single parameter, the translated string.
99  *
100  * @param key
101  *            The key of the translation string
102  * @param callback
103  *            The callback function
104  */
105 function getTranslation(key, callback) {
106         if (key in translations) {
107                 callback(translations[key]);
108                 return;
109         }
110         $.getJSON("getTranslation.ajax", {"key": key}, function(data, textStatus) {
111                 if ((data != null) && data.success) {
112                         translations[key] = data.value;
113                         callback(data.value);
114                 }
115         }, function(xmlHttpRequest, textStatus, error) {
116                 /* ignore error. */
117         });
118 }
119
120 /**
121  * Filters the given Sone ID, replacing all “~” characters by an underscore.
122  *
123  * @param soneId
124  *            The Sone ID to filter
125  * @returns The filtered Sone ID
126  */
127 function filterSoneId(soneId) {
128         return soneId.replace(/[^a-zA-Z0-9-]/g, "_");
129 }
130
131 /**
132  * Updates the status of the given Sone.
133  *
134  * @param soneId
135  *            The ID of the Sone to update
136  * @param status
137  *            The status of the Sone (“idle”, “unknown”, “inserting”,
138  *            “downloading”)
139  * @param modified
140  *            Whether the Sone is modified
141  * @param locked
142  *            Whether the Sone is locked
143  * @param lastUpdated
144  *            The date and time of the last update (formatted for display)
145  */
146 function updateSoneStatus(soneId, name, status, modified, locked, lastUpdated) {
147         $("#sone .sone." + filterSoneId(soneId)).
148                 toggleClass("unknown", status == "unknown").
149                 toggleClass("idle", status == "idle").
150                 toggleClass("inserting", status == "inserting").
151                 toggleClass("downloading", status == "downloading").
152                 toggleClass("modified", modified);
153         $("#sone .sone." + filterSoneId(soneId) + " .lock").toggleClass("hidden", locked);
154         $("#sone .sone." + filterSoneId(soneId) + " .unlock").toggleClass("hidden", !locked);
155         if (lastUpdated != null) {
156                 $("#sone .sone." + filterSoneId(soneId) + " .last-update span.time").text(lastUpdated);
157         } else {
158                 getTranslation("View.Sone.Text.UnknownDate", function(unknown) {
159                         $("#sone .sone." + filterSoneId(soneId) + " .last-update span.time").text(unknown);
160                 });
161         }
162         $("#sone .sone." + filterSoneId(soneId) + " .profile-link a").text(name);
163 }
164
165 /**
166  * Enhances a “delete” button so that the confirmation is done on the same page.
167  *
168  * @param button
169  *            The button element
170  * @param text
171  *            The text to show on the button
172  * @param deleteCallback
173  *            The callback that actually deletes something
174  */
175 function enhanceDeleteButton(button, text, deleteCallback) {
176         (function(button) {
177                 newButton = $("<button></button>").addClass("confirm").hide().text(text).click(function() {
178                         $(this).fadeOut("slow");
179                         deleteCallback();
180                         return false;
181                 }).insertAfter(button);
182                 (function(button, newButton) {
183                         button.click(function() {
184                                 button.fadeOut("slow", function() {
185                                         newButton.fadeIn("slow");
186                                         $(document).one("click", function() {
187                                                 if (this != newButton.get(0)) {
188                                                         newButton.fadeOut(function() {
189                                                                 button.fadeIn();
190                                                         });
191                                                 }
192                                         });
193                                 });
194                                 return false;
195                         });
196                 })(button, newButton);
197         })($(button));
198 }
199
200 /**
201  * Enhances a post’s “delete” button.
202  *
203  * @param button
204  *            The button element
205  * @param postId
206  *            The ID of the post to delete
207  * @param text
208  *            The text to replace the button with
209  */
210 function enhanceDeletePostButton(button, postId, text) {
211         enhanceDeleteButton(button, text, function() {
212                 $.getJSON("deletePost.ajax", { "post": postId, "formPassword": getFormPassword() }, function(data, textStatus) {
213                         if (data == null) {
214                                 return;
215                         }
216                         if (data.success) {
217                                 $("#sone .post#" + postId).slideUp();
218                         } else if (data.error == "invalid-post-id") {
219                                 alert("Invalid post ID given!");
220                         } else if (data.error == "auth-required") {
221                                 alert("You need to be logged in.");
222                         } else if (data.error == "not-authorized") {
223                                 alert("You are not allowed to delete this post.");
224                         }
225                 }, function(xmlHttpRequest, textStatus, error) {
226                         /* ignore error. */
227                 });
228         });
229 }
230
231 /**
232  * Enhances a reply’s “delete” button.
233  *
234  * @param button
235  *            The button element
236  * @param replyId
237  *            The ID of the reply to delete
238  * @param text
239  *            The text to replace the button with
240  */
241 function enhanceDeleteReplyButton(button, replyId, text) {
242         enhanceDeleteButton(button, text, function() {
243                 $.getJSON("deleteReply.ajax", { "reply": replyId, "formPassword": $("#sone #formPassword").text() }, function(data, textStatus) {
244                         if (data == null) {
245                                 return;
246                         }
247                         if (data.success) {
248                                 $("#sone .reply#" + replyId).slideUp();
249                         } else if (data.error == "invalid-reply-id") {
250                                 alert("Invalid reply ID given!");
251                         } else if (data.error == "auth-required") {
252                                 alert("You need to be logged in.");
253                         } else if (data.error == "not-authorized") {
254                                 alert("You are not allowed to delete this reply.");
255                         }
256                 }, function(xmlHttpRequest, textStatus, error) {
257                         /* ignore error. */
258                 });
259         });
260 }
261
262 function getFormPassword() {
263         return $("#sone #formPassword").text();
264 }
265
266 function getSoneElement(element) {
267         return $(element).closest(".sone");
268 }
269
270 /**
271  * Generates a list of Sones by concatening the names of the given sones with a
272  * new line character (“\n”).
273  *
274  * @param sones
275  *            The sones to format
276  * @returns {String} The created string
277  */
278 function generateSoneList(sones) {
279         var soneList = "";
280         $.each(sones, function() {
281                 if (soneList != "") {
282                         soneList += ", ";
283                 }
284                 soneList += this.name;
285         });
286         return soneList;
287 }
288
289 /**
290  * Returns the ID of the Sone that this element belongs to.
291  *
292  * @param element
293  *            The element to locate the matching Sone ID for
294  * @returns The ID of the Sone, or undefined
295  */
296 function getSoneId(element) {
297         return getSoneElement(element).find(".id").text();
298 }
299
300 /**
301  * Returns the element of the post with the given ID.
302  *
303  * @param postId
304  *            The ID of the post
305  * @returns The element of the post
306  */
307 function getPost(postId) {
308         return $("#sone .post#" + postId);
309 }
310
311 function getPostElement(element) {
312         return $(element).closest(".post");
313 }
314
315 function getPostId(element) {
316         return getPostElement(element).attr("id");
317 }
318
319 function getPostTime(element) {
320         return getPostElement(element).find(".post-time").text();
321 }
322
323 /**
324  * Returns the author of the post the given element belongs to.
325  *
326  * @param element
327  *            The element whose post to get the author for
328  * @returns The ID of the authoring Sone
329  */
330 function getPostAuthor(element) {
331         return getPostElement(element).find(".post-author").text();
332 }
333
334 function getReplyElement(element) {
335         return $(element).closest(".reply");
336 }
337
338 function getReplyId(element) {
339         return getReplyElement(element).attr("id");
340 }
341
342 function getReplyTime(element) {
343         return getReplyElement(element).find(".reply-time").text();
344 }
345
346 /**
347  * Returns the author of the reply the given element belongs to.
348  *
349  * @param element
350  *            The element whose reply to get the author for
351  * @returns The ID of the authoring Sone
352  */
353 function getReplyAuthor(element) {
354         return getReplyElement(element).find(".reply-author").text();
355 }
356
357 function likePost(postId) {
358         $.getJSON("like.ajax", { "type": "post", "post" : postId, "formPassword": getFormPassword() }, function(data, textStatus) {
359                 if ((data == null) || !data.success) {
360                         return;
361                 }
362                 $("#sone .post#" + postId + " > .inner-part > .status-line .like").addClass("hidden");
363                 $("#sone .post#" + postId + " > .inner-part > .status-line .unlike").removeClass("hidden");
364                 updatePostLikes(postId);
365         }, function(xmlHttpRequest, textStatus, error) {
366                 /* ignore error. */
367         });
368 }
369
370 function unlikePost(postId) {
371         $.getJSON("unlike.ajax", { "type": "post", "post" : postId, "formPassword": getFormPassword() }, function(data, textStatus) {
372                 if ((data == null) || !data.success) {
373                         return;
374                 }
375                 $("#sone .post#" + postId + " > .inner-part > .status-line .unlike").addClass("hidden");
376                 $("#sone .post#" + postId + " > .inner-part > .status-line .like").removeClass("hidden");
377                 updatePostLikes(postId);
378         }, function(xmlHttpRequest, textStatus, error) {
379                 /* ignore error. */
380         });
381 }
382
383 function updatePostLikes(postId) {
384         $.getJSON("getLikes.ajax", { "type": "post", "post": postId }, function(data, textStatus) {
385                 if ((data != null) && data.success) {
386                         $("#sone .post#" + postId + " > .inner-part > .status-line .likes").toggleClass("hidden", data.likes == 0)
387                         $("#sone .post#" + postId + " > .inner-part > .status-line .likes span.like-count").text(data.likes);
388                         $("#sone .post#" + postId + " > .inner-part > .status-line .likes > span").attr("title", generateSoneList(data.sones));
389                 }
390         }, function(xmlHttpRequest, textStatus, error) {
391                 /* ignore error. */
392         });
393 }
394
395 function likeReply(replyId) {
396         $.getJSON("like.ajax", { "type": "reply", "reply" : replyId, "formPassword": getFormPassword() }, function(data, textStatus) {
397                 if ((data == null) || !data.success) {
398                         return;
399                 }
400                 $("#sone .reply#" + replyId + " .status-line .like").addClass("hidden");
401                 $("#sone .reply#" + replyId + " .status-line .unlike").removeClass("hidden");
402                 updateReplyLikes(replyId);
403         }, function(xmlHttpRequest, textStatus, error) {
404                 /* ignore error. */
405         });
406 }
407
408 function unlikeReply(replyId) {
409         $.getJSON("unlike.ajax", { "type": "reply", "reply" : replyId, "formPassword": getFormPassword() }, function(data, textStatus) {
410                 if ((data == null) || !data.success) {
411                         return;
412                 }
413                 $("#sone .reply#" + replyId + " .status-line .unlike").addClass("hidden");
414                 $("#sone .reply#" + replyId + " .status-line .like").removeClass("hidden");
415                 updateReplyLikes(replyId);
416         }, function(xmlHttpRequest, textStatus, error) {
417                 /* ignore error. */
418         });
419 }
420
421 /**
422  * Trusts the Sone with the given ID.
423  *
424  * @param soneId
425  *            The ID of the Sone to trust
426  */
427 function trustSone(soneId) {
428         $.getJSON("trustSone.ajax", { "formPassword" : getFormPassword(), "sone" : soneId }, function(data, textStatus) {
429                 if ((data != null) && data.success) {
430                         updateTrustControls(soneId, data.trustValue);
431                 }
432         });
433 }
434
435 /**
436  * Distrusts the Sone with the given ID, i.e. assigns a negative trust value.
437  *
438  * @param soneId
439  *            The ID of the Sone to distrust
440  */
441 function distrustSone(soneId) {
442         $.getJSON("distrustSone.ajax", { "formPassword" : getFormPassword(), "sone" : soneId }, function(data, textStatus) {
443                 if ((data != null) && data.success) {
444                         updateTrustControls(soneId, data.trustValue);
445                 }
446         });
447 }
448
449 /**
450  * Untrusts the Sone with the given ID, i.e. removes any trust assignment.
451  *
452  * @param soneId
453  *            The ID of the Sone to untrust
454  */
455 function untrustSone(soneId) {
456         $.getJSON("untrustSone.ajax", { "formPassword" : getFormPassword(), "sone" : soneId }, function(data, textStatus) {
457                 if ((data != null) && data.success) {
458                         updateTrustControls(soneId, data.trustValue);
459                 }
460         });
461 }
462
463 /**
464  * Updates the trust controls for all posts and replies of the given Sone,
465  * according to the given trust value.
466  *
467  * @param soneId
468  *            The ID of the Sone to update all trust controls for
469  * @param trustValue
470  *            The trust value for the Sone
471  */
472 function updateTrustControls(soneId, trustValue) {
473         $("#sone .post").each(function() {
474                 if (getPostAuthor(this) == soneId) {
475                         getPostElement(this).find(".post-trust").toggleClass("hidden", trustValue != null);
476                         getPostElement(this).find(".post-distrust").toggleClass("hidden", trustValue != null);
477                         getPostElement(this).find(".post-untrust").toggleClass("hidden", trustValue == null);
478                 }
479         });
480         $("#sone .reply").each(function() {
481                 if (getReplyAuthor(this) == soneId) {
482                         getReplyElement(this).find(".reply-trust").toggleClass("hidden", trustValue != null);
483                         getReplyElement(this).find(".reply-distrust").toggleClass("hidden", trustValue != null);
484                         getReplyElement(this).find(".reply-untrust").toggleClass("hidden", trustValue == null);
485                 }
486         });
487 }
488
489 /**
490  * Bookmarks the post with the given ID.
491  *
492  * @param postId
493  *            The ID of the post to bookmark
494  */
495 function bookmarkPost(postId) {
496         (function(postId) {
497                 $.getJSON("bookmark.ajax", {"formPassword": getFormPassword(), "type": "post", "post": postId}, function(data, textStatus) {
498                         if ((data != null) && data.success) {
499                                 getPost(postId).find(".bookmark").toggleClass("hidden", true);
500                                 getPost(postId).find(".unbookmark").toggleClass("hidden", false);
501                         }
502                 });
503         })(postId);
504 }
505
506 /**
507  * Unbookmarks the post with the given ID.
508  *
509  * @param postId
510  *            The ID of the post to unbookmark
511  */
512 function unbookmarkPost(postId) {
513         $.getJSON("unbookmark.ajax", {"formPassword": getFormPassword(), "type": "post", "post": postId}, function(data, textStatus) {
514                 if ((data != null) && data.success) {
515                         getPost(postId).find(".bookmark").toggleClass("hidden", false);
516                         getPost(postId).find(".unbookmark").toggleClass("hidden", true);
517                 }
518         });
519 }
520
521 function updateReplyLikes(replyId) {
522         $.getJSON("getLikes.ajax", { "type": "reply", "reply": replyId }, function(data, textStatus) {
523                 if ((data != null) && data.success) {
524                         $("#sone .reply#" + replyId + " .status-line .likes").toggleClass("hidden", data.likes == 0)
525                         $("#sone .reply#" + replyId + " .status-line .likes span.like-count").text(data.likes);
526                         $("#sone .reply#" + replyId + " .status-line .likes > span").attr("title", generateSoneList(data.sones));
527                 }
528         }, function(xmlHttpRequest, textStatus, error) {
529                 /* ignore error. */
530         });
531 }
532
533 /**
534  * Posts a reply and calls the given callback when the request finishes.
535  *
536  * @param sender
537  *            The ID of the sender
538  * @param postId
539  *            The ID of the post the reply refers to
540  * @param text
541  *            The text to post
542  * @param callbackFunction
543  *            The callback function to call when the request finishes (takes 3
544  *            parameters: success, error, replyId)
545  */
546 function postReply(sender, postId, text, callbackFunction) {
547         $.getJSON("createReply.ajax", { "formPassword" : getFormPassword(), "sender": sender, "post" : postId, "text": text }, function(data, textStatus) {
548                 if (data == null) {
549                         /* TODO - show error */
550                         return;
551                 }
552                 if (data.success) {
553                         callbackFunction(true, null, data.reply, data.sone);
554                 } else {
555                         callbackFunction(false, data.error);
556                 }
557         }, function(xmlHttpRequest, textStatus, error) {
558                 /* ignore error. */
559         });
560 }
561
562 /**
563  * Requests information about the reply with the given ID.
564  *
565  * @param replyId
566  *            The ID of the reply
567  * @param callbackFunction
568  *            A callback function (parameters soneId, soneName, replyTime,
569  *            replyDisplayTime, text, html)
570  */
571 function getReply(replyId, callbackFunction) {
572         $.getJSON("getReply.ajax", { "reply" : replyId }, function(data, textStatus) {
573                 if ((data != null) && data.success) {
574                         callbackFunction(data.soneId, data.soneName, data.time, data.displayTime, data.text, data.html);
575                 }
576         }, function(xmlHttpRequest, textStatus, error) {
577                 /* ignore error. */
578         });
579 }
580
581 /**
582  * Ajaxifies the given Sone by enhancing all eligible elements with AJAX.
583  *
584  * @param soneElement
585  *            The Sone to ajaxify
586  */
587 function ajaxifySone(soneElement) {
588         /*
589          * convert all “follow”, “unfollow”, “lock”, and “unlock” links to something
590          * nicer.
591          */
592         $(".follow", soneElement).submit(function() {
593                 var followElement = this;
594                 $.getJSON("followSone.ajax", { "sone": getSoneId(this), "formPassword": getFormPassword() }, function() {
595                         $(followElement).addClass("hidden");
596                         $(followElement).parent().find(".unfollow").removeClass("hidden");
597                 });
598                 return false;
599         });
600         $(".unfollow", soneElement).submit(function() {
601                 var unfollowElement = this;
602                 $.getJSON("unfollowSone.ajax", { "sone": getSoneId(this), "formPassword": getFormPassword() }, function() {
603                         $(unfollowElement).addClass("hidden");
604                         $(unfollowElement).parent().find(".follow").removeClass("hidden");
605                 });
606                 return false;
607         });
608         $(".lock", soneElement).submit(function() {
609                 var lockElement = this;
610                 $.getJSON("lockSone.ajax", { "sone" : getSoneId(this), "formPassword" : getFormPassword() }, function() {
611                         $(lockElement).addClass("hidden");
612                         $(lockElement).parent().find(".unlock").removeClass("hidden");
613                 });
614                 return false;
615         });
616         $(".unlock", soneElement).submit(function() {
617                 var unlockElement = this;
618                 $.getJSON("unlockSone.ajax", { "sone" : getSoneId(this), "formPassword" : getFormPassword() }, function() {
619                         $(unlockElement).addClass("hidden");
620                         $(unlockElement).parent().find(".lock").removeClass("hidden");
621                 });
622                 return false;
623         });
624
625         /* mark Sone as known when clicking it. */
626         $(soneElement).click(function() {
627                 markSoneAsKnown(soneElement);
628         });
629 }
630
631 /**
632  * Ajaxifies the given post by enhancing all eligible elements with AJAX.
633  *
634  * @param postElement
635  *            The post element to ajaxify
636  */
637 function ajaxifyPost(postElement) {
638         $(postElement).find("form").submit(function() {
639                 return false;
640         });
641         $(postElement).find(".create-reply button:submit").click(function() {
642                 sender = $(this.form).find(":input[name=sender]").val();
643                 inputField = $(this.form).find(":input[name=text]:enabled").get(0);
644                 postId = getPostId(this);
645                 text = $(inputField).val();
646                 (function(sender, postId, text, inputField) {
647                         postReply(sender, postId, text, function(success, error, replyId, soneId) {
648                                 if (success) {
649                                         $(inputField).val("");
650                                         loadNewReply(replyId, soneId, postId);
651                                         $("#sone .post#" + postId + " .create-reply").addClass("hidden");
652                                         $("#sone .post#" + postId + " .create-reply .sender").hide();
653                                         $("#sone .post#" + postId + " .create-reply .select-sender").show();
654                                         $("#sone .post#" + postId + " .create-reply :input[name=sender]").val(getCurrentSoneId());
655                                 } else {
656                                         alert(error);
657                                 }
658                         });
659                 })(sender, postId, text, inputField);
660                 return false;
661         });
662
663         /* replace all “delete” buttons with javascript. */
664         (function(postElement) {
665                 getTranslation("WebInterface.Confirmation.DeletePostButton", function(deletePostText) {
666                         postId = getPostId(postElement);
667                         enhanceDeletePostButton($(postElement).find(".delete-post button"), postId, deletePostText);
668                 });
669         })(postElement);
670
671         /* convert all “like” buttons to javascript functions. */
672         $(postElement).find(".like-post").submit(function() {
673                 likePost(getPostId(this));
674                 return false;
675         });
676         $(postElement).find(".unlike-post").submit(function() {
677                 unlikePost(getPostId(this));
678                 return false;
679         });
680
681         /* convert trust control buttons to javascript functions. */
682         $(postElement).find(".post-trust").submit(function() {
683                 trustSone(getPostAuthor(this));
684                 return false;
685         });
686         $(postElement).find(".post-distrust").submit(function() {
687                 distrustSone(getPostAuthor(this));
688                 return false;
689         });
690         $(postElement).find(".post-untrust").submit(function() {
691                 untrustSone(getPostAuthor(this));
692                 return false;
693         });
694
695         /* convert bookmark/unbookmark buttons to javascript functions. */
696         $(postElement).find(".bookmark").submit(function() {
697                 bookmarkPost(getPostId(this));
698                 return false;
699         });
700         $(postElement).find(".unbookmark").submit(function() {
701                 unbookmarkPost(getPostId(this));
702                 return false;
703         });
704
705         /* add “comment” link. */
706         addCommentLink(getPostId(postElement), postElement, $(postElement).find(".post-status-line .time"));
707
708         /* process all replies. */
709         $(postElement).find(".reply").each(function() {
710                 ajaxifyReply(this);
711         });
712
713         /* process reply input fields. */
714         getTranslation("WebInterface.DefaultText.Reply", function(text) {
715                 $(postElement).find("input.reply-input").each(function() {
716                         registerInputTextareaSwap(this, text, "text", false, false);
717                 });
718         });
719
720         /* process sender selection. */
721         $(".select-sender", postElement).css("display", "inline");
722         $(".sender", postElement).hide();
723         $(".select-sender button", postElement).click(function() {
724                 $(".sender", postElement).show();
725                 $(".select-sender", postElement).hide();
726                 return false;
727         });
728
729         /* mark everything as known on click. */
730         $(postElement).click(function(event) {
731                 if ($(event.target).hasClass("click-to-show")) {
732                         return false;
733                 }
734                 markPostAsKnown(this);
735         });
736
737         /* hide reply input field. */
738         $(postElement).find(".create-reply").addClass("hidden");
739 }
740
741 /**
742  * Ajaxifies the given reply element.
743  *
744  * @param replyElement
745  *            The reply element to ajaxify
746  */
747 function ajaxifyReply(replyElement) {
748         $(replyElement).find(".like-reply").submit(function() {
749                 likeReply(getReplyId(this));
750                 return false;
751         });
752         $(replyElement).find(".unlike-reply").submit(function() {
753                 unlikeReply(getReplyId(this));
754                 return false;
755         });
756         (function(replyElement) {
757                 getTranslation("WebInterface.Confirmation.DeleteReplyButton", function(deleteReplyText) {
758                         $(replyElement).find(".delete-reply button").each(function() {
759                                 enhanceDeleteReplyButton(this, getReplyId(replyElement), deleteReplyText);
760                         });
761                 });
762         })(replyElement);
763         addCommentLink(getPostId(replyElement), replyElement, $(replyElement).find(".reply-status-line .time"));
764
765         /* convert trust control buttons to javascript functions. */
766         $(replyElement).find(".reply-trust").submit(function() {
767                 trustSone(getReplyAuthor(this));
768                 return false;
769         });
770         $(replyElement).find(".reply-distrust").submit(function() {
771                 distrustSone(getReplyAuthor(this));
772                 return false;
773         });
774         $(replyElement).find(".reply-untrust").submit(function() {
775                 untrustSone(getReplyAuthor(this));
776                 return false;
777         });
778 }
779
780 /**
781  * Ajaxifies the given notification by replacing the form with AJAX.
782  *
783  * @param notification
784  *            jQuery object representing the notification.
785  */
786 function ajaxifyNotification(notification) {
787         notification.find("form").submit(function() {
788                 return false;
789         });
790         notification.find("input[name=returnPage]").val($.url.attr("relative"));
791         if (notification.find(".short-text").length > 0) {
792                 notification.find(".short-text").removeClass("hidden");
793                 notification.find(".text").addClass("hidden");
794         }
795         notification.find("form.mark-as-read button").click(function() {
796                 $.getJSON("markAsKnown.ajax", {"formPassword": getFormPassword(), "type": $(":input[name=type]", this.form).val(), "id": $(":input[name=id]", this.form).val()});
797         });
798         notification.find("a[class^='link-']").each(function() {
799                 linkElement = $(this);
800                 if (linkElement.is("[href^='viewPost']")) {
801                         id = linkElement.attr("class").substr(5);
802                         if (hasPost(id)) {
803                                 linkElement.attr("href", "#post-" + id);
804                         }
805                 }
806         });
807         notification.find("form.dismiss button").click(function() {
808                 $.getJSON("dismissNotification.ajax", { "formPassword" : getFormPassword(), "notification" : notification.attr("id") }, function(data, textStatus) {
809                         /* dismiss in case of error, too. */
810                         notification.slideUp();
811                 }, function(xmlHttpRequest, textStatus, error) {
812                         /* ignore error. */
813                 });
814         });
815         return notification;
816 }
817
818 function getStatus() {
819         $.getJSON("getStatus.ajax", {"loadAllSones": isKnownSonesPage()}, function(data, textStatus) {
820                 if ((data != null) && data.success) {
821                         /* process Sone information. */
822                         $.each(data.sones, function(index, value) {
823                                 updateSoneStatus(value.id, value.name, value.status, value.modified, value.locked, value.lastUpdatedUnknown ? null : value.lastUpdated);
824                         });
825                         /* process notifications. */
826                         $.each(data.notifications, function(index, value) {
827                                 oldNotification = $("#sone #notification-area .notification#" + value.id);
828                                 notification = ajaxifyNotification(createNotification(value.id, value.text, value.dismissable)).hide();
829                                 if (oldNotification.length != 0) {
830                                         if ((oldNotification.find(".short-text").length > 0) && (notification.find(".short-text").length > 0)) {
831                                                 opened = oldNotification.is(":visible") && oldNotification.find(".short-text").hasClass("hidden");
832                                                 notification.find(".short-text").toggleClass("hidden", opened);
833                                                 notification.find(".text").toggleClass("hidden", !opened);
834                                         }
835                                         oldNotification.replaceWith(notification.show());
836                                 } else {
837                                         $("#sone #notification-area").append(notification);
838                                         notification.slideDown();
839                                 }
840                                 setActivity();
841                         });
842                         $.each(data.removedNotifications, function(index, value) {
843                                 $("#sone #notification-area .notification#" + value.id).slideUp();
844                         });
845                         /* process new posts. */
846                         $.each(data.newPosts, function(index, value) {
847                                 loadNewPost(value.id, value.sone, value.recipient, value.time);
848                         });
849                         /* process new replies. */
850                         $.each(data.newReplies, function(index, value) {
851                                 loadNewReply(value.id, value.sone, value.post, value.postSone);
852                         });
853                         /* do it again in 5 seconds. */
854                         setTimeout(getStatus, 5000);
855                 } else {
856                         /* data.success was false, wait 30 seconds. */
857                         setTimeout(getStatus, 30000);
858                 }
859         }, function(xmlHttpRequest, textStatus, error) {
860                 /* something really bad happend, wait a minute. */
861                 setTimeout(getStatus, 60000);
862         })
863 }
864
865 /**
866  * Returns the ID of the currently logged in Sone.
867  *
868  * @return The ID of the current Sone, or an empty string if no Sone is logged
869  *         in
870  */
871 function getCurrentSoneId() {
872         return $("#currentSoneId").text();
873 }
874
875 /**
876  * Returns the content of the page-id attribute.
877  *
878  * @returns The page ID
879  */
880 function getPageId() {
881         return $("#sone .page-id").text();
882 }
883
884 /**
885  * Returns whether the current page is the index page.
886  *
887  * @returns {Boolean} <code>true</code> if the current page is the index page,
888  *          <code>false</code> otherwise
889  */
890 function isIndexPage() {
891         return getPageId() == "index";
892 }
893
894 /**
895  * Returns whether the current page is a “view Sone” page.
896  *
897  * @returns {Boolean} <code>true</code> if the current page is a “view Sone”
898  *          page, <code>false</code> otherwise
899  */
900 function isViewSonePage() {
901         return getPageId() == "view-sone";
902 }
903
904 /**
905  * Returns the ID of the currently shown Sone. This will only return a sensible
906  * value if isViewSonePage() returns <code>true</code>.
907  *
908  * @returns The ID of the currently shown Sone
909  */
910 function getShownSoneId() {
911         return $("#sone .sone-id").text();
912 }
913
914 /**
915  * Returns whether the current page is a “view post” page.
916  *
917  * @returns {Boolean} <code>true</code> if the current page is a “view post”
918  *          page, <code>false</code> otherwise
919  */
920 function isViewPostPage() {
921         return getPageId() == "view-post";
922 }
923
924 /**
925  * Returns the ID of the currently shown post. This will only return a sensible
926  * value if isViewPostPage() returns <code>true</code>.
927  *
928  * @returns The ID of the currently shown post
929  */
930 function getShownPostId() {
931         return $("#sone .post-id").text();
932 }
933
934 /**
935  * Returns whether the current page is the “known Sones” page.
936  *
937  * @returns {Boolean} <code>true</code> if the current page is the “known
938  *          Sones” page, <code>false</code> otherwise
939  */
940 function isKnownSonesPage() {
941         return getPageId() == "known-sones";
942 }
943
944 /**
945  * Returns whether a post with the given ID exists on the current page.
946  *
947  * @param postId
948  *            The post ID to check for
949  * @returns {Boolean} <code>true</code> if a post with the given ID already
950  *          exists on the page, <code>false</code> otherwise
951  */
952 function hasPost(postId) {
953         return $(".post#" + postId).length > 0;
954 }
955
956 /**
957  * Returns whether a reply with the given ID exists on the current page.
958  *
959  * @param replyId
960  *            The reply ID to check for
961  * @returns {Boolean} <code>true</code> if a reply with the given ID already
962  *          exists on the page, <code>false</code> otherwise
963  */
964 function hasReply(replyId) {
965         return $("#sone .reply#" + replyId).length > 0;
966 }
967
968 function loadNewPost(postId, soneId, recipientId, time) {
969         if (hasPost(postId)) {
970                 return;
971         }
972         if (!isIndexPage()) {
973                 if (!isViewPostPage() || (getShownPostId() != postId)) {
974                         if (!isViewSonePage() || ((getShownSoneId() != soneId) && (getShownSoneId() != recipientId))) {
975                                 return;
976                         }
977                 }
978         }
979         if (getPostTime($("#sone .post").last()) > time) {
980                 return;
981         }
982         $.getJSON("getPost.ajax", { "post" : postId }, function(data, textStatus) {
983                 if ((data != null) && data.success) {
984                         if (hasPost(data.post.id)) {
985                                 return;
986                         }
987                         if (!isIndexPage() && !(isViewSonePage() && ((getShownSoneId() == data.post.sone) || (getShownSoneId() == data.post.recipient)))) {
988                                 return;
989                         }
990                         var firstOlderPost = null;
991                         $("#sone .post").each(function() {
992                                 if (getPostTime(this) < data.post.time) {
993                                         firstOlderPost = $(this);
994                                         return false;
995                                 }
996                         });
997                         newPost = $(data.post.html).addClass("hidden");
998                         if (firstOlderPost != null) {
999                                 newPost.insertBefore(firstOlderPost);
1000                         }
1001                         ajaxifyPost(newPost);
1002                         newPost.slideDown();
1003                         setActivity();
1004                 }
1005         });
1006 }
1007
1008 function loadNewReply(replyId, soneId, postId, postSoneId) {
1009         if (hasReply(replyId)) {
1010                 return;
1011         }
1012         if (!hasPost(postId)) {
1013                 return;
1014         }
1015         $.getJSON("getReply.ajax", { "reply": replyId }, function(data, textStatus) {
1016                 /* find post. */
1017                 if ((data != null) && data.success) {
1018                         if (hasReply(data.reply.id)) {
1019                                 return;
1020                         }
1021                         $("#sone .post#" + data.reply.postId).each(function() {
1022                                 var firstNewerReply = null;
1023                                 $(this).find(".replies .reply").each(function() {
1024                                         if (getReplyTime(this) > data.reply.time) {
1025                                                 firstNewerReply = $(this);
1026                                                 return false;
1027                                         }
1028                                 });
1029                                 newReply = $(data.reply.html).addClass("hidden");
1030                                 if (firstNewerReply != null) {
1031                                         newReply.insertBefore(firstNewerReply);
1032                                 } else {
1033                                         if ($(this).find(".replies .create-reply")) {
1034                                                 $(this).find(".replies .create-reply").before(newReply);
1035                                         } else {
1036                                                 $(this).find(".replies").append(newReply);
1037                                         }
1038                                 }
1039                                 ajaxifyReply(newReply);
1040                                 newReply.slideDown();
1041                                 setActivity();
1042                                 return false;
1043                         });
1044                 }
1045         });
1046 }
1047
1048 /**
1049  * Marks the given Sone as known if it is still new.
1050  *
1051  * @param soneElement
1052  *            The Sone to mark as known
1053  */
1054 function markSoneAsKnown(soneElement) {
1055         if ($(".new", soneElement).length > 0) {
1056                 $.getJSON("maskAsKnown.ajax", {"formPassword": getFormPassword(), "type": "sone", "id": getSoneId(soneElement)}, function(data, textStatus) {
1057                         $(soneElement).removeClass("new");
1058                 });
1059         }
1060 }
1061
1062 function markPostAsKnown(postElements) {
1063         $(postElements).each(function() {
1064                 postElement = this;
1065                 if ($(postElement).hasClass("new")) {
1066                         (function(postElement) {
1067                                 $(postElement).removeClass("new");
1068                                 $(".click-to-show", postElement).removeClass("new");
1069                                 $.getJSON("markAsKnown.ajax", {"formPassword": getFormPassword(), "type": "post", "id": getPostId(postElement)});
1070                         })(postElement);
1071                 }
1072         });
1073         markReplyAsKnown($(postElements).find(".reply"));
1074 }
1075
1076 function markReplyAsKnown(replyElements) {
1077         $(replyElements).each(function() {
1078                 replyElement = this;
1079                 if ($(replyElement).hasClass("new")) {
1080                         (function(replyElement) {
1081                                 $(replyElement).removeClass("new");
1082                                 $.getJSON("markAsKnown.ajax", {"formPassword": getFormPassword(), "type": "reply", "id": getReplyId(replyElement)});
1083                         })(replyElement);
1084                 }
1085         });
1086 }
1087
1088 function resetActivity() {
1089         title = document.title;
1090         if (title.indexOf('(') == 0) {
1091                 setTitle(title.substr(title.indexOf(' ') + 1));
1092         }
1093 }
1094
1095 function setActivity() {
1096         if (!focus) {
1097                 title = document.title;
1098                 if (title.indexOf('(') != 0) {
1099                         setTitle("(!) " + title);
1100                 }
1101                 if (!iconBlinking) {
1102                         setTimeout(toggleIcon, 1500);
1103                         iconBlinking = true;
1104                 }
1105         }
1106 }
1107
1108 /**
1109  * Sets the window title after a small delay to prevent race-condition issues.
1110  *
1111  * @param title
1112  *            The title to set
1113  */
1114 function setTitle(title) {
1115         setTimeout(function() {
1116                 document.title = title;
1117         }, 50);
1118 }
1119
1120 /** Whether the icon is currently showing activity. */
1121 var iconActive = false;
1122
1123 /** Whether the icon is currently supposed to blink. */
1124 var iconBlinking = false;
1125
1126 /**
1127  * Toggles the icon. If the window has gained focus and the icon is still
1128  * showing the activity state, it is returned to normal.
1129  */
1130 function toggleIcon() {
1131         if (focus) {
1132                 if (iconActive) {
1133                         changeIcon("images/icon.png");
1134                         iconActive = false;
1135                 }
1136                 iconBlinking = false;
1137         } else {
1138                 iconActive = !iconActive;
1139                 console.log("showing icon: " + iconActive);
1140                 changeIcon(iconActive ? "images/icon-activity.png" : "images/icon.png");
1141                 setTimeout(toggleIcon, 1500);
1142         }
1143 }
1144
1145 /**
1146  * Changes the icon of the page.
1147  *
1148  * @param iconUrl
1149  *            The new URL of the icon
1150  */
1151 function changeIcon(iconUrl) {
1152         $("link[rel=icon]").remove();
1153         $("head").append($("<link>").attr("rel", "icon").attr("type", "image/png").attr("href", iconUrl));
1154         $("iframe[id=icon-update]")[0].src += "";
1155 }
1156
1157 /**
1158  * Creates a new notification.
1159  *
1160  * @param id
1161  *            The ID of the notificaiton
1162  * @param text
1163  *            The text of the notification
1164  * @param dismissable
1165  *            <code>true</code> if the notification can be dismissed by the
1166  *            user
1167  */
1168 function createNotification(id, text, dismissable) {
1169         notification = $("<div></div>").addClass("notification").attr("id", id);
1170         if (dismissable) {
1171                 dismissForm = $("#sone #notification-area #notification-dismiss-template").clone().removeClass("hidden").removeAttr("id")
1172                 dismissForm.find("input[name=notification]").val(id);
1173                 notification.append(dismissForm);
1174         }
1175         notification.append(text);
1176         return notification;
1177 }
1178
1179 /**
1180  * Shows the details of the notification with the given ID.
1181  *
1182  * @param notificationId
1183  *            The ID of the notification
1184  */
1185 function showNotificationDetails(notificationId) {
1186         $("#sone .notification#" + notificationId + " .text").removeClass("hidden");
1187         $("#sone .notification#" + notificationId + " .short-text").addClass("hidden");
1188 }
1189
1190 /**
1191  * Deletes the field with the given ID from the profile.
1192  *
1193  * @param fieldId
1194  *            The ID of the field to delete
1195  */
1196 function deleteProfileField(fieldId) {
1197         $.getJSON("deleteProfileField.ajax", {"formPassword": getFormPassword(), "field": fieldId}, function(data, textStatus) {
1198                 if (data && data.success) {
1199                         $("#sone .profile-field#" + data.field.id).slideUp();
1200                 }
1201         });
1202 }
1203
1204 /**
1205  * Renames a profile field.
1206  *
1207  * @param fieldId
1208  *            The ID of the field to rename
1209  * @param newName
1210  *            The new name of the field
1211  * @param successFunction
1212  *            Called when the renaming was successful
1213  */
1214 function editProfileField(fieldId, newName, successFunction) {
1215         $.getJSON("editProfileField.ajax", {"formPassword": getFormPassword(), "field": fieldId, "name": newName}, function(data, textStatus) {
1216                 if (data && data.success) {
1217                         successFunction();
1218                 }
1219         });
1220 }
1221
1222 /**
1223  * Moves the profile field with the given ID one slot in the given direction.
1224  *
1225  * @param fieldId
1226  *            The ID of the field to move
1227  * @param direction
1228  *            The direction to move in (“up” or “down”)
1229  * @param successFunction
1230  *            Function to call on success
1231  */
1232 function moveProfileField(fieldId, direction, successFunction) {
1233         $.getJSON("moveProfileField.ajax", {"formPassword": getFormPassword(), "field": fieldId, "direction": direction}, function(data, textStatus) {
1234                 if (data && data.success) {
1235                         successFunction();
1236                 }
1237         });
1238 }
1239
1240 /**
1241  * Moves the profile field with the given ID up one slot.
1242  *
1243  * @param fieldId
1244  *            The ID of the field to move
1245  * @param successFunction
1246  *            Function to call on success
1247  */
1248 function moveProfileFieldUp(fieldId, successFunction) {
1249         moveProfileField(fieldId, "up", successFunction);
1250 }
1251
1252 /**
1253  * Moves the profile field with the given ID down one slot.
1254  *
1255  * @param fieldId
1256  *            The ID of the field to move
1257  * @param successFunction
1258  *            Function to call on success
1259  */
1260 function moveProfileFieldDown(fieldId, successFunction) {
1261         moveProfileField(fieldId, "down", successFunction);
1262 }
1263
1264 //
1265 // EVERYTHING BELOW HERE IS EXECUTED AFTER LOADING THE PAGE
1266 //
1267
1268 var focus = true;
1269
1270 $(document).ready(function() {
1271
1272         /* this initializes the status update input field. */
1273         getTranslation("WebInterface.DefaultText.StatusUpdate", function(defaultText) {
1274                 registerInputTextareaSwap("#sone #update-status .status-input", defaultText, "text", false, false);
1275                 $("#sone #update-status .select-sender").css("display", "inline");
1276                 $("#sone #update-status .sender").hide();
1277                 $("#sone #update-status .select-sender button").click(function() {
1278                         $("#sone #update-status .sender").show();
1279                         $("#sone #update-status .select-sender").hide();
1280                         return false;
1281                 });
1282                 $("#sone #update-status").submit(function() {
1283                         if ($(this).find(":input.default:enabled").length > 0) {
1284                                 return false;
1285                         }
1286                         sender = $(this).find(":input[name=sender]").val();
1287                         text = $(this).find(":input[name=text]:enabled").val();
1288                         $.getJSON("createPost.ajax", { "formPassword": getFormPassword(), "sender": sender, "text": text }, function(data, textStatus) {
1289                                 if ((data != null) && data.success) {
1290                                         loadNewPost(data.postId, data.sone, data.recipient);
1291                                 }
1292                         });
1293                         $(this).find(":input[name=sender]").val(getCurrentSoneId());
1294                         $(this).find(":input[name=text]:enabled").val("").blur();
1295                         $(this).find(".sender").hide();
1296                         $(this).find(".select-sender").show();
1297                         return false;
1298                 });
1299         });
1300
1301         /* ajaxify input field on “view Sone” page. */
1302         getTranslation("WebInterface.DefaultText.Message", function(defaultText) {
1303                 registerInputTextareaSwap("#sone #post-message input[name=text]", defaultText, "text", false, false);
1304                 $("#sone #post-message .select-sender").css("display", "inline");
1305                 $("#sone #post-message .sender").hide();
1306                 $("#sone #post-message .select-sender button").click(function() {
1307                         $("#sone #post-message .sender").show();
1308                         $("#sone #post-message .select-sender").hide();
1309                         return false;
1310                 });
1311                 $("#sone #post-message").submit(function() {
1312                         sender = $(this).find(":input[name=sender]").val();
1313                         text = $(this).find(":input[name=text]:enabled").val();
1314                         $.getJSON("createPost.ajax", { "formPassword": getFormPassword(), "recipient": getShownSoneId(), "sender": sender, "text": text }, function(data, textStatus) {
1315                                 if ((data != null) && data.success) {
1316                                         loadNewPost(data.postId, getCurrentSoneId());
1317                                 }
1318                         });
1319                         $(this).find(":input[name=sender]").val(getCurrentSoneId());
1320                         $(this).find(":input[name=text]:enabled").val("").blur();
1321                         $(this).find(".sender").hide();
1322                         $(this).find(".select-sender").show();
1323                         return false;
1324                 });
1325         });
1326
1327         /* Ajaxifies all posts. */
1328         /* calling getTranslation here will cache the necessary values. */
1329         getTranslation("WebInterface.Confirmation.DeletePostButton", function(text) {
1330                 getTranslation("WebInterface.Confirmation.DeleteReplyButton", function(text) {
1331                         getTranslation("WebInterface.DefaultText.Reply", function(text) {
1332                                 $("#sone .post").each(function() {
1333                                         ajaxifyPost(this);
1334                                 });
1335                         });
1336                 });
1337         });
1338
1339         /* hides all replies but the latest two. */
1340         if (!isViewPostPage()) {
1341                 getTranslation("WebInterface.ClickToShow.Replies", function(text) {
1342                         $("#sone .post .replies").each(function() {
1343                                 allReplies = $(this).find(".reply");
1344                                 if (allReplies.length > 2) {
1345                                         newHidden = false;
1346                                         for (replyIndex = 0; replyIndex < (allReplies.length - 2); ++replyIndex) {
1347                                                 $(allReplies[replyIndex]).addClass("hidden");
1348                                                 newHidden |= $(allReplies[replyIndex]).hasClass("new");
1349                                         }
1350                                         clickToShowElement = $("<div></div>").addClass("click-to-show");
1351                                         if (newHidden) {
1352                                                 clickToShowElement.addClass("new");
1353                                         }
1354                                         (function(clickToShowElement, allReplies, text) {
1355                                                 clickToShowElement.text(text);
1356                                                 clickToShowElement.click(function() {
1357                                                         allReplies.removeClass("hidden");
1358                                                         clickToShowElement.addClass("hidden");
1359                                                 });
1360                                         })(clickToShowElement, allReplies, text);
1361                                         $(allReplies[0]).before(clickToShowElement);
1362                                 }
1363                         });
1364                 });
1365         }
1366
1367         $("#sone .sone").each(function() {
1368                 ajaxifySone($(this));
1369         });
1370
1371         /* process all existing notifications, ajaxify dismiss buttons. */
1372         $("#sone #notification-area .notification").each(function() {
1373                 ajaxifyNotification($(this));
1374         });
1375
1376         /* activate status polling. */
1377         setTimeout(getStatus, 5000);
1378
1379         /* reset activity counter when the page has focus. */
1380         $(window).focus(function() {
1381                 focus = true;
1382                 resetActivity();
1383         }).blur(function() {
1384                 focus = false;
1385         })
1386
1387 });