]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/facebooksettings.php
Merge branch '0.7.x' into 0.8.x
[quix0rs-gnu-social.git] / actions / facebooksettings.php
1 <?php
2 /*
3  * Laconica - a distributed open-source microblogging tool
4  * Copyright (C) 2008, Controlez-Vous, Inc.
5  *
6  * This program is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU Affero General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.     See the
14  * GNU Affero General Public License for more details.
15  *
16  * You should have received a copy of the GNU Affero General Public License
17  * along with this program.     If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 if (!defined('LACONICA')) { exit(1); }
21
22 require_once INSTALLDIR.'/lib/facebookaction.php';
23
24 class FacebooksettingsAction extends FacebookAction
25 {
26
27     function handle($args)
28     {
29         parent::handle($args);
30         $this->showPage();
31     }
32
33     /**
34      * Show the page content
35      *
36      * Either shows the registration form or, if registration was successful,
37      * instructions for using the site.
38      *
39      * @return void
40      */
41
42     function showContent()
43     {
44         if ($this->arg('save')) {
45             $this->saveSettings();
46         } else {
47             $this->showForm();
48         }
49     }
50
51     function saveSettings() {
52
53         $noticesync = $this->arg('noticesync');
54         $replysync = $this->arg('replysync');
55         $prefix = $this->trimmed('prefix');
56
57         $original = clone($this->flink);
58         $this->flink->set_flags($noticesync, $replysync, false, false);
59         $result = $this->flink->update($original);
60
61         $this->facebook->api_client->data_setUserPreference(FACEBOOK_NOTICE_PREFIX,
62             substr($prefix, 0, 128));
63
64         if ($result === false) {
65             $this->showForm(_('There was a problem saving your sync preferences!'));
66         } else {
67             $this->showForm(_('Sync preferences saved.'), true);
68         }
69     }
70
71     function showForm($msg = null, $success = false) {
72
73         if ($msg) {
74             if ($success) {
75                 $this->element('fb:success', array('message' => $msg));
76             } else {
77                 $this->element('fb:error', array('message' => $msg));
78             }
79         }
80
81         if ($this->facebook->api_client->users_hasAppPermission('status_update')) {
82
83             $this->elementStart('form', array('method' => 'post',
84                                                'id' => 'facebook_settings'));
85
86             $this->elementStart('ul', 'form_data');
87                                            
88             $this->elementStart('li');
89             
90             $this->checkbox('noticesync', _('Automatically update my Facebook status with my notices.'),
91                                 ($this->flink) ? ($this->flink->noticesync & FOREIGN_NOTICE_SEND) : true);
92
93             $this->elementEnd('li');
94             
95             $this->elementStart('li');
96             
97             $this->checkbox('replysync', _('Send "@" replies to Facebook.'),
98                              ($this->flink) ? ($this->flink->noticesync & FOREIGN_NOTICE_SEND_REPLY) : true);
99
100             $this->elementEnd('li');
101
102             $this->elementStart('li');
103
104             $prefix = $this->facebook->api_client->data_getUserPreference(FACEBOOK_NOTICE_PREFIX);
105
106             $this->input('prefix', _('Prefix'),
107                          ($prefix) ? $prefix : null,
108                          _('A string to prefix notices with.'));
109
110             $this->elementEnd('li');
111             
112             $this->elementStart('li');
113             
114             $this->submit('save', _('Save'));
115
116             $this->elementEnd('li');
117
118             $this->elementEnd('ul');
119         
120             $this->elementEnd('form');
121
122         } else {
123
124             $instructions = sprintf(_('If you would like %s to automatically update ' .
125                 'your Facebook status with your latest notice, you need ' .
126                 'to give it permission.'), $this->app_name);
127
128             $this->elementStart('p');
129             $this->element('span', array('id' => 'permissions_notice'), $instructions);
130             $this->elementEnd('p');
131
132             $this->elementStart('ul', array('id' => 'fb-permissions-list'));
133             $this->elementStart('li', array('id' => 'fb-permissions-item'));
134             $this->elementStart('fb:prompt-permission', array('perms' => 'status_update',
135                 'next_fbjs' => 'document.setLocation(\'' . "$this->app_uri/settings.php" . '\')'));
136             $this->element('span', array('class' => 'facebook-button'),
137                 sprintf(_('Allow %s to update my Facebook status'), common_config('site', 'name')));
138             $this->elementEnd('fb:prompt-permission');
139             $this->elementEnd('li');
140             $this->elementEnd('ul');
141         }
142
143     }
144     
145     function title() 
146     {
147         return _('Sync preferences');
148     }
149
150 }