summaryrefslogtreecommitdiff
path: root/lib/facebookaction.php
blob: 3a00c71dd0108e72faf569edb23c98978d111786 (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
<?php
/*
 * Laconica - a distributed open-source microblogging tool
 * Copyright (C) 2008, Controlez-Vous, 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/>.
 */

if (!defined('LACONICA')) { exit(1); }

require_once(INSTALLDIR.'/lib/facebookutil.php');

class FacebookAction extends Action
{

    function handle($args)
    {
        parent::handle($args);
    }

    function show_header($selected = 'Home', $msg = null, $success = false)
    {

        start_fbml();

        # Add a timestamp to the CSS file so Facebook cache wont ignore our changes
        $ts = filemtime(theme_file('facebookapp.css'));
        $cssurl = theme_path('facebookapp.css') . "?ts=$ts";

        common_element('link', array('rel' => 'stylesheet',
                                     'type' => 'text/css',
                                     'href' => $cssurl));

        common_element('fb:dashboard');

        common_element_start('fb:tabs');
        common_element('fb:tab-item', array('title' => 'Home',
                                            'href' => 'index.php',
                                            'selected' => ($selected == 'Home')));
        common_element('fb:tab-item', array('title' => 'Invite',
                                            'href' => 'invite.php',
                                            'selected' => ($selected == 'Invite')));
        common_element('fb:tab-item', array('title' => 'Settings',
                                            'href' => 'settings.php',
                                            'selected' => ($selected == 'Settings')));
        common_element_end('fb:tabs');


        if ($msg) {
            if ($success) {
                common_element('fb:success', array('message' => $msg));
            } else {
                // XXX do an error message here
            }
        }

        common_element_start('div', 'main_body');

    }

    function show_footer()
    {
        common_element_end('div');
        common_end_xml();
    }

    function showLoginForm($msg = null)
    {
        start_fbml();

        common_element_start('a', array('href' => 'http://identi.ca'));
        common_element('img', array('src' => 'http://theme.identi.ca/identica/logo.png',
                                    'alt' => 'Identi.ca',
                                    'id' => 'logo'));
        common_element_end('a');

        if ($msg) {
             common_element('fb:error', array('message' => $msg));
        }

        common_element("h2", null,
            _('To add the Identi.ca application, you need to log into your Identi.ca account.'));


        common_element_start('div', array('class' => 'instructions'));
        common_element_start('p');
        common_raw('Login with your username and password. Don\'t have a username yet?'
        .' <a href="http://identi.ca/main/register">Register</a> a new account.');
        common_element_end('p');
        common_element_end('div');

        common_element_start('div', array('id' => 'content'));
        common_element_start('form', array('method' => 'post',
                                               'id' => 'login',
                                               'action' => 'index.php'));
        common_input('nickname', _('Nickname'));
        common_password('password', _('Password'));

        common_submit('submit', _('Login'));
        common_element_end('form');

        common_element_start('p');
        common_element('a', array('href' => common_local_url('recoverpassword')),
                       _('Lost or forgotten password?'));
        common_element_end('p');
        common_element_end('div');

        common_end_xml();

    }


}