summaryrefslogtreecommitdiff
path: root/plugins/OStatus/js/ostatus.js
blob: 148a05f6f642586ed1702fd6d3751be52615e42d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
/*
 * StatusNet - a distributed open-source microblogging tool
 * Copyright (C) 2010, StatusNet, Inc.
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 *
 * @category  OStatus UI interaction
 * @package   StatusNet
 * @author    Sarven Capadisli <csarven@status.net>
 * @copyright 2010 StatusNet, Inc.
 * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
 * @link      http://status.net/
 * @note      Everything in here should eventually migrate over to /js/util.js's SN.
 */

SN.C.S.StatusNetInstance = 'StatusNetInstance';

SN.U.StatusNetInstance = {
    Set: function(value) {
        $.cookie(
            SN.C.S.StatusNetInstance,
            JSON.stringify(value),
            {
                path: '/',
                expires: SN.U.GetFullYear(2029, 0, 1)
            });
    },

    Get: function() {
        var cookieValue = $.cookie(SN.C.S.StatusNetInstance);
        if (cookieValue !== null) {
            return JSON.parse(cookieValue);
        }
        return null;
    },

    Delete: function() {
        $.cookie(SN.C.S.StatusNetInstance, null);
    }
};

SN.Init.OStatusCookie = function() {
    if (SN.U.StatusNetInstance.Get() === null) {
        SN.U.StatusNetInstance.Set({profile: null});
    }
};

SN.U.DialogBox = {
    Subscribe: function(a) {
        var f = a.parent().find('.form_settings');
        if (f.length > 0) {
            f.show();
        }
        else {
            a[0].href = (a[0].href.match(/[\\?]/) === null) ? a[0].href+'?' : a[0].href+'&';
            $.ajax({
                type: 'GET',
                dataType: 'xml',
                url: a[0].href+'ajax=1',
                beforeSend: function(formData) {
                    a.addClass('processing');
                },
                error: function (xhr, textStatus, errorThrown) {
                    alert(errorThrown || textStatus);
                },
                success: function(data, textStatus, xhr) {
                    if (typeof($('form', data)[0]) != 'undefined') {
                        a.after(document._importNode($('form', data)[0], true));

                        var form = a.parent().find('.form_settings');

                        form
                            .addClass('dialogbox')
                            .append('<button class="close">&#215;</button>');

                        form
                            .find('.submit')
                                .addClass('submit_dialogbox')
                                .removeClass('submit')
                                .bind('click', function() {
                                    form.addClass('processing');
                                });

                        form.find('button.close').click(function(){
                            form.hide();

                            return false;
                        });

                        form.find('#profile').focus();

                        if (form.attr('id') == 'form_ostatus_connect') {
                            SN.Init.OStatusCookie();
                            form.find('#profile').val(SN.U.StatusNetInstance.Get().profile);

                            form.find("[type=submit]").bind('click', function() {
                                SN.U.StatusNetInstance.Set({profile: form.find('#profile').val()});
                                return true;
                            });
                        }
                    }

                    a.removeClass('processing');
                }
            });
        }
    }
};

SN.Init.Subscribe = function() {
    $('.entity_subscribe .entity_remote_subscribe').live('click', function() { SN.U.DialogBox.Subscribe($(this)); return false; });
};

$(document).ready(function() {
    SN.Init.Subscribe();
});