]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - js/util.js
60eeb418f6f2719b82a6b9d96197a840a3e3de48
[quix0rs-gnu-social.git] / js / util.js
1 /*
2  * StatusNet - a distributed open-source microblogging tool
3  * Copyright (C) 2008, StatusNet, Inc.
4  *
5  * This program is free software: you can redistribute it and/or modify
6  * it under the terms of the GNU Affero General Public License as published by
7  * the Free Software Foundation, either version 3 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU Affero General Public License for more details.
14  *
15  * You should have received a copy of the GNU Affero General Public License
16  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
17  *
18  * @category  UI interaction
19  * @package   StatusNet
20  * @author    Sarven Capadisli <csarven@status.net>
21  * @author    Evan Prodromou <evan@status.net>
22  * @copyright 2009 StatusNet, Inc.
23  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
24  * @link      http://status.net/
25  */
26
27 var SN = { // StatusNet
28     C: { // Config
29         I: { // Init
30             CounterBlackout: false,
31             MaxLength: 140,
32             PatternUsername: /^[0-9a-zA-Z\-_.]*$/,
33             HTTP20x30x: [200, 201, 202, 203, 204, 205, 206, 300, 301, 302, 303, 304, 305, 306, 307]
34         },
35
36         S: { // Selector
37             Disabled: 'disabled',
38             Warning: 'warning',
39             Error: 'error',
40             Success: 'success',
41             Processing: 'processing',
42             CommandResult: 'command_result',
43             FormNotice: 'form_notice',
44             NoticeDataText: 'notice_data-text',
45             NoticeTextCount: 'notice_text-count',
46             NoticeInReplyTo: 'notice_in-reply-to',
47             NoticeDataAttach: 'notice_data-attach',
48             NoticeDataAttachSelected: 'notice_data-attach_selected',
49             NoticeActionSubmit: 'notice_action-submit',
50             NoticeLat: 'notice_data-lat',
51             NoticeLon: 'notice_data-lon',
52             NoticeLocationId: 'notice_data-location_id',
53             NoticeLocationNs: 'notice_data-location_ns',
54             NoticeGeoName: 'notice_data-geo_name',
55             NoticeDataGeo: 'notice_data-geo',
56             NoticeDataGeoCookie: 'NoticeDataGeo',
57             NoticeDataGeoSelected: 'notice_data-geo_selected',
58             StatusNetInstance:'StatusNetInstance'
59         }
60     },
61
62     U: { // Utils
63         FormNoticeEnhancements: function(form) {
64             if (jQuery.data(form[0], 'ElementData') === undefined) {
65                 MaxLength = form.find('#'+SN.C.S.NoticeTextCount).text();
66                 if (typeof(MaxLength) == 'undefined') {
67                      MaxLength = SN.C.I.MaxLength;
68                 }
69                 jQuery.data(form[0], 'ElementData', {MaxLength:MaxLength});
70
71                 SN.U.Counter(form);
72
73                 NDT = form.find('#'+SN.C.S.NoticeDataText);
74
75                 NDT.bind('keyup', function(e) {
76                     SN.U.Counter(form);
77                 });
78
79                 NDT.bind('keydown', function(e) {
80                     SN.U.SubmitOnReturn(e, form);
81                 });
82             }
83             else {
84                 form.find('#'+SN.C.S.NoticeTextCount).text(jQuery.data(form[0], 'ElementData').MaxLength);
85             }
86
87             if ($('body')[0].id != 'conversation' && window.location.hash.length === 0) {
88                 form.find('textarea').focus();
89             }
90         },
91
92         SubmitOnReturn: function(event, el) {
93             if (event.keyCode == 13 || event.keyCode == 10) {
94                 el.submit();
95                 event.preventDefault();
96                 event.stopPropagation();
97                 $('#'+el[0].id+' #'+SN.C.S.NoticeDataText).blur();
98                 $('body').focus();
99                 return false;
100             }
101             return true;
102         },
103
104         Counter: function(form) {
105             SN.C.I.FormNoticeCurrent = form;
106
107             var MaxLength = jQuery.data(form[0], 'ElementData').MaxLength;
108
109             if (MaxLength <= 0) {
110                 return;
111             }
112
113             var remaining = MaxLength - form.find('#'+SN.C.S.NoticeDataText).val().length;
114             var counter = form.find('#'+SN.C.S.NoticeTextCount);
115
116             if (remaining.toString() != counter.text()) {
117                 if (!SN.C.I.CounterBlackout || remaining === 0) {
118                     if (counter.text() != String(remaining)) {
119                         counter.text(remaining);
120                     }
121                     if (remaining < 0) {
122                         form.addClass(SN.C.S.Warning);
123                     } else {
124                         form.removeClass(SN.C.S.Warning);
125                     }
126                     // Skip updates for the next 500ms.
127                     // On slower hardware, updating on every keypress is unpleasant.
128                     if (!SN.C.I.CounterBlackout) {
129                         SN.C.I.CounterBlackout = true;
130                         SN.C.I.FormNoticeCurrent = form;
131                         window.setTimeout("SN.U.ClearCounterBlackout(SN.C.I.FormNoticeCurrent);", 500);
132                     }
133                 }
134             }
135         },
136
137         ClearCounterBlackout: function(form) {
138             // Allow keyup events to poke the counter again
139             SN.C.I.CounterBlackout = false;
140             // Check if the string changed since we last looked
141             SN.U.Counter(form);
142         },
143
144         FormXHR: function(form) {
145             $.ajax({
146                 type: 'POST',
147                 dataType: 'xml',
148                 url: form.attr('action'),
149                 data: form.serialize() + '&ajax=1',
150                 beforeSend: function(xhr) {
151                     form
152                         .addClass(SN.C.S.Processing)
153                         .find('.submit')
154                             .addClass(SN.C.S.Disabled)
155                             .attr(SN.C.S.Disabled, SN.C.S.Disabled);
156                 },
157                 error: function (xhr, textStatus, errorThrown) {
158                     alert(errorThrown || textStatus);
159                 },
160                 success: function(data, textStatus) {
161                     if (typeof($('form', data)[0]) != 'undefined') {
162                         form_new = document._importNode($('form', data)[0], true);
163                         form.replaceWith(form_new);
164                     }
165                     else {
166                         form.replaceWith(document._importNode($('p', data)[0], true));
167                     }
168                 }
169             });
170         },
171
172         FormNoticeXHR: function(form) {
173             SN.C.I.NoticeDataGeo = {};
174             form.append('<input type="hidden" name="ajax" value="1"/>');
175             form.ajaxForm({
176                 dataType: 'xml',
177                 timeout: '60000',
178                 beforeSend: function(formData) {
179                     if (form.find('#'+SN.C.S.NoticeDataText)[0].value.length === 0) {
180                         form.addClass(SN.C.S.Warning);
181                         return false;
182                     }
183                     form
184                         .addClass(SN.C.S.Processing)
185                         .find('#'+SN.C.S.NoticeActionSubmit)
186                             .addClass(SN.C.S.Disabled)
187                             .attr(SN.C.S.Disabled, SN.C.S.Disabled);
188
189                     SN.C.I.NoticeDataGeo.NLat = $('#'+SN.C.S.NoticeLat).val();
190                     SN.C.I.NoticeDataGeo.NLon = $('#'+SN.C.S.NoticeLon).val();
191                     SN.C.I.NoticeDataGeo.NLNS = $('#'+SN.C.S.NoticeLocationNs).val();
192                     SN.C.I.NoticeDataGeo.NLID = $('#'+SN.C.S.NoticeLocationId).val();
193                     SN.C.I.NoticeDataGeo.NDG = $('#'+SN.C.S.NoticeDataGeo).attr('checked');
194
195                     cookieValue = $.cookie(SN.C.S.NoticeDataGeoCookie);
196
197                     if (cookieValue !== null && cookieValue != 'disabled') {
198                         cookieValue = JSON.parse(cookieValue);
199                         SN.C.I.NoticeDataGeo.NLat = $('#'+SN.C.S.NoticeLat).val(cookieValue.NLat).val();
200                         SN.C.I.NoticeDataGeo.NLon = $('#'+SN.C.S.NoticeLon).val(cookieValue.NLon).val();
201                         if ($('#'+SN.C.S.NoticeLocationNs).val(cookieValue.NLNS)) {
202                             SN.C.I.NoticeDataGeo.NLNS = $('#'+SN.C.S.NoticeLocationNs).val(cookieValue.NLNS).val();
203                             SN.C.I.NoticeDataGeo.NLID = $('#'+SN.C.S.NoticeLocationId).val(cookieValue.NLID).val();
204                         }
205                     }
206                     if (cookieValue == 'disabled') {
207                         SN.C.I.NoticeDataGeo.NDG = $('#'+SN.C.S.NoticeDataGeo).attr('checked', false).attr('checked');
208                     }
209                     else {
210                         SN.C.I.NoticeDataGeo.NDG = $('#'+SN.C.S.NoticeDataGeo).attr('checked', true).attr('checked');
211                     }
212
213                     return true;
214                 },
215                 error: function (xhr, textStatus, errorThrown) {
216                     form
217                         .removeClass(SN.C.S.Processing)
218                         .find('#'+SN.C.S.NoticeActionSubmit)
219                             .removeClass(SN.C.S.Disabled)
220                             .removeAttr(SN.C.S.Disabled, SN.C.S.Disabled);
221                     form.find('.form_response').remove();
222                     if (textStatus == 'timeout') {
223                         form.append('<p class="form_response error">Sorry! We had trouble sending your notice. The servers are overloaded. Please try again, and contact the site administrator if this problem persists.</p>');
224                     }
225                     else {
226                         if ($('.'+SN.C.S.Error, xhr.responseXML).length > 0) {
227                             form.append(document._importNode($('.'+SN.C.S.Error, xhr.responseXML)[0], true));
228                         }
229                         else {
230                             if (parseInt(xhr.status) === 0 || jQuery.inArray(parseInt(xhr.status), SN.C.I.HTTP20x30x) >= 0) {
231                                 form
232                                     .resetForm()
233                                     .find('#'+SN.C.S.NoticeDataAttachSelected).remove();
234                                 SN.U.FormNoticeEnhancements(form);
235                             }
236                             else {
237                                 form.append('<p class="form_response error">(Sorry! We had trouble sending your notice ('+xhr.status+' '+xhr.statusText+'). Please report the problem to the site administrator if this happens again.</p>');
238                             }
239                         }
240                     }
241                 },
242                 success: function(data, textStatus) {
243                     form.find('.form_response').remove();
244                     var result;
245                     if ($('#'+SN.C.S.Error, data).length > 0) {
246                         result = document._importNode($('p', data)[0], true);
247                         result = result.textContent || result.innerHTML;
248                         form.append('<p class="form_response error">'+result+'</p>');
249                     }
250                     else {
251                         if($('body')[0].id == 'bookmarklet') {
252                             self.close();
253                         }
254
255                         if ($('#'+SN.C.S.CommandResult, data).length > 0) {
256                             result = document._importNode($('p', data)[0], true);
257                             result = result.textContent || result.innerHTML;
258                             form.append('<p class="form_response success">'+result+'</p>');
259                         }
260                         else {
261                             var notices = $('#notices_primary .notices');
262                             if (notices.length > 0) {
263                                 var notice = document._importNode($('li', data)[0], true);
264                                 if ($('#'+notice.id).length === 0) {
265                                     var notice_irt_value = $('#'+SN.C.S.NoticeInReplyTo).val();
266                                     var notice_irt = '#notices_primary #notice-'+notice_irt_value;
267                                     if($('body')[0].id == 'conversation') {
268                                         if(notice_irt_value.length > 0 && $(notice_irt+' .notices').length < 1) {
269                                             $(notice_irt).append('<ul class="notices"></ul>');
270                                         }
271                                         $($(notice_irt+' .notices')[0]).append(notice);
272                                     }
273                                     else {
274                                         notices.prepend(notice);
275                                     }
276                                     $('#'+notice.id)
277                                         .css({display:'none'})
278                                         .fadeIn(2500);
279                                     SN.U.NoticeWithAttachment($('#'+notice.id));
280                                     SN.U.NoticeReplyTo($('#'+notice.id));
281                                 }
282                             }
283                             else {
284                                 result = document._importNode($('title', data)[0], true);
285                                 result_title = result.textContent || result.innerHTML;
286                                 form.append('<p class="form_response success">'+result_title+'</p>');
287                             }
288                         }
289                         form.resetForm();
290                         form.find('#'+SN.C.S.NoticeInReplyTo).val('');
291                         form.find('#'+SN.C.S.NoticeDataAttachSelected).remove();
292                         SN.U.FormNoticeEnhancements(form);
293                     }
294                 },
295                 complete: function(xhr, textStatus) {
296                     form
297                         .removeClass(SN.C.S.Processing)
298                         .find('#'+SN.C.S.NoticeActionSubmit)
299                             .removeAttr(SN.C.S.Disabled)
300                             .removeClass(SN.C.S.Disabled);
301
302                     $('#'+SN.C.S.NoticeLat).val(SN.C.I.NoticeDataGeo.NLat);
303                     $('#'+SN.C.S.NoticeLon).val(SN.C.I.NoticeDataGeo.NLon);
304                     if ($('#'+SN.C.S.NoticeLocationNs)) {
305                         $('#'+SN.C.S.NoticeLocationNs).val(SN.C.I.NoticeDataGeo.NLNS);
306                         $('#'+SN.C.S.NoticeLocationId).val(SN.C.I.NoticeDataGeo.NLID);
307                     }
308                     $('#'+SN.C.S.NoticeDataGeo).attr('checked', SN.C.I.NoticeDataGeo.NDG);
309                 }
310             });
311         },
312
313         NoticeReply: function() {
314             if ($('#'+SN.C.S.NoticeDataText).length > 0 && $('#content .notice_reply').length > 0) {
315                 $('#content .notice').each(function() { SN.U.NoticeReplyTo($(this)); });
316             }
317         },
318
319         NoticeReplyTo: function(notice) {
320             notice.find('.notice_reply').live('click', function() {
321                 var nickname = ($('.author .nickname', notice).length > 0) ? $($('.author .nickname', notice)[0]) : $('.author .nickname.uid');
322                 SN.U.NoticeReplySet(nickname.text(), $($('.notice_id', notice)[0]).text());
323                 return false;
324             });
325         },
326
327         NoticeReplySet: function(nick,id) {
328             if (nick.match(SN.C.I.PatternUsername)) {
329                 var text = $('#'+SN.C.S.NoticeDataText);
330                 if (text.length > 0) {
331                     replyto = '@' + nick + ' ';
332                     text.val(replyto + text.val().replace(RegExp(replyto, 'i'), ''));
333                     $('#'+SN.C.S.FormNotice+' #'+SN.C.S.NoticeInReplyTo).val(id);
334
335                     text[0].focus();
336                     if (text[0].setSelectionRange) {
337                         var len = text.val().length;
338                         text[0].setSelectionRange(len,len);
339                     }
340                 }
341             }
342         },
343
344         NoticeFavor: function() {
345             $('.form_favor').live('click', function() { SN.U.FormXHR($(this)); return false; });
346             $('.form_disfavor').live('click', function() { SN.U.FormXHR($(this)); return false; });
347         },
348
349         NoticeRepeat: function() {
350             $('.form_repeat').live('click', function(e) {
351                 e.preventDefault();
352
353                 SN.U.NoticeRepeatConfirmation($(this));
354                 return false;
355             });
356         },
357
358         NoticeRepeatConfirmation: function(form) {
359             var submit_i = form.find('.submit');
360
361             var submit = submit_i.clone();
362             submit
363                 .addClass('submit_dialogbox')
364                 .removeClass('submit');
365             form.append(submit);
366             submit.bind('click', function() { SN.U.FormXHR(form); return false; });
367
368             submit_i.hide();
369
370             form
371                 .addClass('dialogbox')
372                 .append('<button class="close">&#215;</button>')
373                 .closest('.notice-options')
374                     .addClass('opaque');
375
376             form.find('button.close').click(function(){
377                 $(this).remove();
378
379                 form
380                     .removeClass('dialogbox')
381                     .closest('.notice-options')
382                         .removeClass('opaque');
383
384                 form.find('.submit_dialogbox').remove();
385                 form.find('.submit').show();
386
387                 return false;
388             });
389         },
390
391         NoticeAttachments: function() {
392             $('.notice a.attachment').each(function() {
393                 SN.U.NoticeWithAttachment($(this).closest('.notice'));
394             });
395         },
396
397         NoticeWithAttachment: function(notice) {
398             if (notice.find('.attachment').length === 0) {
399                 return;
400             }
401
402             var attachment_more = notice.find('.attachment.more');
403             if (attachment_more.length > 0) {
404                 attachment_more.click(function() {
405                     $(this).addClass(SN.C.S.Processing);
406                     $.get($(this).attr('href')+'/ajax', null, function(data) {
407                         notice.find('.entry-title .entry-content').html($(data).find('#attachment_view .entry-content').html());
408                     });
409
410                     return false;
411                 });
412             }
413             else {
414                 $.fn.jOverlay.options = {
415                     method : 'GET',
416                     data : '',
417                     url : '',
418                     color : '#000',
419                     opacity : '0.6',
420                     zIndex : 9999,
421                     center : false,
422                     imgLoading : $('address .url')[0].href+'theme/base/images/illustrations/illu_progress_loading-01.gif',
423                     bgClickToClose : true,
424                     success : function() {
425                         $('#jOverlayContent').append('<button class="close">&#215;</button>');
426                         $('#jOverlayContent button').click($.closeOverlay);
427                     },
428                     timeout : 0,
429                     autoHide : true,
430                     css : {'max-width':'542px', 'top':'5%', 'left':'32.5%'}
431                 };
432
433                 notice.find('a.attachment').click(function() {
434                     var attachId = ($(this).attr('id').substring('attachment'.length + 1));
435                     if (attachId) {
436                         $().jOverlay({url: $('address .url')[0].href+'attachment/' + attachId + '/ajax'});
437                         return false;
438                     }
439                 });
440
441                 if ($('#shownotice').length == 0) {
442                     var t;
443                     notice.find('a.thumbnail').hover(
444                         function() {
445                             var anchor = $(this);
446                             $('a.thumbnail').children('img').hide();
447                             anchor.closest(".entry-title").addClass('ov');
448
449                             if (anchor.children('img').length === 0) {
450                                 t = setTimeout(function() {
451                                     $.get($('address .url')[0].href+'attachment/' + (anchor.attr('id').substring('attachment'.length + 1)) + '/thumbnail', null, function(data) {
452                                         anchor.append(data);
453                                     });
454                                 }, 500);
455                             }
456                             else {
457                                 anchor.children('img').show();
458                             }
459                         },
460                         function() {
461                             clearTimeout(t);
462                             $('a.thumbnail').children('img').hide();
463                             $(this).closest('.entry-title').removeClass('ov');
464                         }
465                     );
466                 }
467             }
468         },
469
470         NoticeDataAttach: function() {
471             NDA = $('#'+SN.C.S.NoticeDataAttach);
472             NDA.change(function() {
473                 S = '<div id="'+SN.C.S.NoticeDataAttachSelected+'" class="'+SN.C.S.Success+'"><code>'+$(this).val()+'</code> <button class="close">&#215;</button></div>';
474                 NDAS = $('#'+SN.C.S.NoticeDataAttachSelected);
475                 if (NDAS.length > 0) {
476                     NDAS.replaceWith(S);
477                 }
478                 else {
479                     $('#'+SN.C.S.FormNotice).append(S);
480                 }
481                 $('#'+SN.C.S.NoticeDataAttachSelected+' button').click(function(){
482                     $('#'+SN.C.S.NoticeDataAttachSelected).remove();
483                     NDA.val('');
484
485                     return false;
486                 });
487             });
488         },
489
490         NoticeLocationAttach: function() {
491             var NLat = $('#'+SN.C.S.NoticeLat).val();
492             var NLon = $('#'+SN.C.S.NoticeLon).val();
493             var NLNS = $('#'+SN.C.S.NoticeLocationNs).val();
494             var NLID = $('#'+SN.C.S.NoticeLocationId).val();
495             var NLN = $('#'+SN.C.S.NoticeGeoName).text();
496             var NDGe = $('#'+SN.C.S.NoticeDataGeo);
497
498             function removeNoticeDataGeo() {
499                 $('label[for='+SN.C.S.NoticeDataGeo+']')
500                     .attr('title', jQuery.trim($('label[for='+SN.C.S.NoticeDataGeo+']').text()))
501                     .removeClass('checked');
502
503                 $('#'+SN.C.S.NoticeLat).val('');
504                 $('#'+SN.C.S.NoticeLon).val('');
505                 $('#'+SN.C.S.NoticeLocationNs).val('');
506                 $('#'+SN.C.S.NoticeLocationId).val('');
507                 $('#'+SN.C.S.NoticeDataGeo).attr('checked', false);
508
509                 $.cookie(SN.C.S.NoticeDataGeoCookie, 'disabled', { path: '/' });
510             }
511
512             function getJSONgeocodeURL(geocodeURL, data) {
513                 $.getJSON(geocodeURL, data, function(location) {
514                     var lns, lid;
515
516                     if (typeof(location.location_ns) != 'undefined') {
517                         $('#'+SN.C.S.NoticeLocationNs).val(location.location_ns);
518                         lns = location.location_ns;
519                     }
520
521                     if (typeof(location.location_id) != 'undefined') {
522                         $('#'+SN.C.S.NoticeLocationId).val(location.location_id);
523                         lid = location.location_id;
524                     }
525
526                     if (typeof(location.name) == 'undefined') {
527                         NLN_text = data.lat + ';' + data.lon;
528                     }
529                     else {
530                         NLN_text = location.name;
531                     }
532
533                     $('label[for='+SN.C.S.NoticeDataGeo+']')
534                         .attr('title', NoticeDataGeo_text.ShareDisable + ' (' + NLN_text + ')');
535
536                     $('#'+SN.C.S.NoticeLat).val(data.lat);
537                     $('#'+SN.C.S.NoticeLon).val(data.lon);
538                     $('#'+SN.C.S.NoticeLocationNs).val(lns);
539                     $('#'+SN.C.S.NoticeLocationId).val(lid);
540                     $('#'+SN.C.S.NoticeDataGeo).attr('checked', true);
541
542                     var cookieValue = {
543                         NLat: data.lat,
544                         NLon: data.lon,
545                         NLNS: lns,
546                         NLID: lid,
547                         NLN: NLN_text,
548                         NLNU: location.url,
549                         NDG: true
550                     };
551
552                     $.cookie(SN.C.S.NoticeDataGeoCookie, JSON.stringify(cookieValue), { path: '/' });
553                 });
554             }
555
556             if (NDGe.length > 0) {
557                 if ($.cookie(SN.C.S.NoticeDataGeoCookie) == 'disabled') {
558                     NDGe.attr('checked', false);
559                 }
560                 else {
561                     NDGe.attr('checked', true);
562                 }
563
564                 var NGW = $('#notice_data-geo_wrap');
565                 var geocodeURL = NGW.attr('title');
566                 NGW.removeAttr('title');
567
568                 $('label[for='+SN.C.S.NoticeDataGeo+']')
569                     .attr('title', jQuery.trim($('label[for='+SN.C.S.NoticeDataGeo+']').text()));
570
571                 NDGe.change(function() {
572                     if ($('#'+SN.C.S.NoticeDataGeo).attr('checked') === true || $.cookie(SN.C.S.NoticeDataGeoCookie) === null) {
573                         $('label[for='+SN.C.S.NoticeDataGeo+']')
574                             .attr('title', NoticeDataGeo_text.ShareDisable)
575                             .addClass('checked');
576
577                         if ($.cookie(SN.C.S.NoticeDataGeoCookie) === null || $.cookie(SN.C.S.NoticeDataGeoCookie) == 'disabled') {
578                             if (navigator.geolocation) {
579                                 navigator.geolocation.getCurrentPosition(
580                                     function(position) {
581                                         $('#'+SN.C.S.NoticeLat).val(position.coords.latitude);
582                                         $('#'+SN.C.S.NoticeLon).val(position.coords.longitude);
583
584                                         var data = {
585                                             lat: position.coords.latitude,
586                                             lon: position.coords.longitude,
587                                             token: $('#token').val()
588                                         };
589
590                                         getJSONgeocodeURL(geocodeURL, data);
591                                     },
592
593                                     function(error) {
594                                         switch(error.code) {
595                                             case error.PERMISSION_DENIED:
596                                                 removeNoticeDataGeo();
597                                                 break;
598                                             case error.TIMEOUT:
599                                                 $('#'+SN.C.S.NoticeDataGeo).attr('checked', false);
600                                                 break;
601                                         }
602                                     },
603
604                                     {
605                                         timeout: 10000
606                                     }
607                                 );
608                             }
609                             else {
610                                 if (NLat.length > 0 && NLon.length > 0) {
611                                     var data = {
612                                         lat: NLat,
613                                         lon: NLon,
614                                         token: $('#token').val()
615                                     };
616
617                                     getJSONgeocodeURL(geocodeURL, data);
618                                 }
619                                 else {
620                                     removeNoticeDataGeo();
621                                     $('#'+SN.C.S.NoticeDataGeo).remove();
622                                     $('label[for='+SN.C.S.NoticeDataGeo+']').remove();
623                                 }
624                             }
625                         }
626                         else {
627                             var cookieValue = JSON.parse($.cookie(SN.C.S.NoticeDataGeoCookie));
628
629                             $('#'+SN.C.S.NoticeLat).val(cookieValue.NLat);
630                             $('#'+SN.C.S.NoticeLon).val(cookieValue.NLon);
631                             $('#'+SN.C.S.NoticeLocationNs).val(cookieValue.NLNS);
632                             $('#'+SN.C.S.NoticeLocationId).val(cookieValue.NLID);
633                             $('#'+SN.C.S.NoticeDataGeo).attr('checked', cookieValue.NDG);
634
635                             $('label[for='+SN.C.S.NoticeDataGeo+']')
636                                 .attr('title', NoticeDataGeo_text.ShareDisable + ' (' + cookieValue.NLN + ')')
637                                 .addClass('checked');
638                         }
639                     }
640                     else {
641                         removeNoticeDataGeo();
642                     }
643                 }).change();
644             }
645         },
646
647         NewDirectMessage: function() {
648             NDM = $('.entity_send-a-message a');
649             NDM.attr({'href':NDM.attr('href')+'&ajax=1'});
650             NDM.bind('click', function() {
651                 var NDMF = $('.entity_send-a-message form');
652                 if (NDMF.length === 0) {
653                     $(this).addClass(SN.C.S.Processing);
654                     $.get(NDM.attr('href'), null, function(data) {
655                         $('.entity_send-a-message').append(document._importNode($('form', data)[0], true));
656                         NDMF = $('.entity_send-a-message .form_notice');
657                         SN.U.FormNoticeXHR(NDMF);
658                         SN.U.FormNoticeEnhancements(NDMF);
659                         NDMF.append('<button class="close">&#215;</button>');
660                         $('.entity_send-a-message button').click(function(){
661                             NDMF.hide();
662                             return false;
663                         });
664                         NDM.removeClass(SN.C.S.Processing);
665                     });
666                 }
667                 else {
668                     NDMF.show();
669                     $('.entity_send-a-message textarea').focus();
670                 }
671                 return false;
672             });
673         },
674
675         GetFullYear: function(year, month, day) {
676             var date = new Date();
677             date.setFullYear(year, month, day);
678
679             return date;
680         },
681
682         StatusNetInstance: {
683             Set: function(value) {
684                 var SNI = SN.U.StatusNetInstance.Get();
685                 if (SNI !== null) {
686                     value = $.extend(SNI, value);
687                 }
688
689                 $.cookie(
690                     SN.C.S.StatusNetInstance,
691                     JSON.stringify(value),
692                     {
693                         path: '/',
694                         expires: SN.U.GetFullYear(2029, 0, 1)
695                     });
696             },
697
698             Get: function() {
699                 var cookieValue = $.cookie(SN.C.S.StatusNetInstance);
700                 if (cookieValue !== null) {
701                     return JSON.parse(cookieValue);
702                 }
703                 return null;
704             },
705
706             Delete: function() {
707                 $.cookie(SN.C.S.StatusNetInstance, null);
708             }
709         }
710     },
711
712     Init: {
713         NoticeForm: function() {
714             if ($('body.user_in').length > 0) {
715                 SN.U.NoticeLocationAttach();
716
717                 $('.'+SN.C.S.FormNotice).each(function() {
718                     SN.U.FormNoticeXHR($(this));
719                     SN.U.FormNoticeEnhancements($(this));
720                 });
721
722                 SN.U.NoticeDataAttach();
723             }
724         },
725
726         Notices: function() {
727             if ($('body.user_in').length > 0) {
728                 SN.U.NoticeFavor();
729                 SN.U.NoticeRepeat();
730                 SN.U.NoticeReply();
731             }
732
733             SN.U.NoticeAttachments();
734         },
735
736         EntityActions: function() {
737             if ($('body.user_in').length > 0) {
738                 $('.form_user_subscribe').live('click', function() { SN.U.FormXHR($(this)); return false; });
739                 $('.form_user_unsubscribe').live('click', function() { SN.U.FormXHR($(this)); return false; });
740                 $('.form_group_join').live('click', function() { SN.U.FormXHR($(this)); return false; });
741                 $('.form_group_leave').live('click', function() { SN.U.FormXHR($(this)); return false; });
742                 $('.form_user_nudge').live('click', function() { SN.U.FormXHR($(this)); return false; });
743
744                 SN.U.NewDirectMessage();
745             }
746         },
747
748         Login: function() {
749             if (SN.U.StatusNetInstance.Get() !== null) {
750                 var nickname = SN.U.StatusNetInstance.Get().Nickname;
751                 if (nickname !== null) {
752                     $('#form_login #nickname').val(nickname);
753                 }
754             }
755
756             $('#form_login').bind('submit', function() {
757                 SN.U.StatusNetInstance.Set({Nickname: $('#form_login #nickname').val()});
758                 return true;
759             });
760         }
761     }
762 };
763
764 $(document).ready(function(){
765     if ($('.'+SN.C.S.FormNotice).length > 0) {
766         SN.Init.NoticeForm();
767     }
768     if ($('#content .notices').length > 0) {
769         SN.Init.Notices();
770     }
771     if ($('#content .entity_actions').length > 0) {
772         SN.Init.EntityActions();
773     }
774     if ($('#form_login').length > 0) {
775         SN.Init.Login();
776     }
777 });
778