]> git.mxchange.org Git - friendica.git/blob - mod/nodeinfo.php
Merge pull request #6356 from MrPetovan/task/6355-add-password-rules
[friendica.git] / mod / nodeinfo.php
1 <?php
2 /**
3  * @file mod/nodeinfo.php
4  *
5  * Documentation: http://nodeinfo.diaspora.software/schema.html
6 */
7
8 use Friendica\App;
9 use Friendica\Core\Addon;
10 use Friendica\Core\Config;
11 use Friendica\Core\Logger;
12 use Friendica\Core\System;
13 use Friendica\Database\DBA;
14 use Friendica\Util\Network;
15 function nodeinfo_wellknown(App $a) {
16         $nodeinfo = ['links' => [['rel' => 'http://nodeinfo.diaspora.software/ns/schema/1.0',
17                                         'href' => System::baseUrl().'/nodeinfo/1.0']]];
18
19         header('Content-type: application/json; charset=utf-8');
20         echo json_encode($nodeinfo, JSON_PRETTY_PRINT|JSON_UNESCAPED_SLASHES);
21         exit;
22 }
23
24 function nodeinfo_init(App $a) {
25         if (!Config::get('system', 'nodeinfo')) {
26                 System::httpExit(404);
27                 killme();
28         }
29
30         if (($a->argc != 2) || ($a->argv[1] != '1.0')) {
31                 System::httpExit(404);
32                 killme();
33         }
34
35         $smtp = (function_exists('imap_open') && !Config::get('system', 'imap_disabled') && !Config::get('system', 'dfrn_only'));
36
37         $nodeinfo = [];
38         $nodeinfo['version'] = '1.0';
39         $nodeinfo['software'] = ['name' => 'friendica', 'version' => FRIENDICA_VERSION.'-'.DB_UPDATE_VERSION];
40
41         $nodeinfo['protocols'] = [];
42         $nodeinfo['protocols']['inbound'] = [];
43         $nodeinfo['protocols']['outbound'] = [];
44
45         if (Config::get('system', 'diaspora_enabled')) {
46                 $nodeinfo['protocols']['inbound'][] = 'diaspora';
47                 $nodeinfo['protocols']['outbound'][] = 'diaspora';
48         }
49
50         $nodeinfo['protocols']['inbound'][] = 'friendica';
51         $nodeinfo['protocols']['outbound'][] = 'friendica';
52
53         if (!Config::get('system', 'ostatus_disabled')) {
54                 $nodeinfo['protocols']['inbound'][] = 'gnusocial';
55                 $nodeinfo['protocols']['outbound'][] = 'gnusocial';
56         }
57
58         $nodeinfo['services'] = [];
59         $nodeinfo['services']['inbound'] = [];
60         $nodeinfo['services']['outbound'] = [];
61
62         $nodeinfo['usage'] = [];
63
64         $nodeinfo['openRegistrations'] = intval(Config::get('config', 'register_policy')) !== REGISTER_CLOSED;
65
66         $nodeinfo['metadata'] = ['nodeName' => Config::get('config', 'sitename')];
67
68         if (Config::get('system', 'nodeinfo')) {
69
70                 $nodeinfo['usage']['users'] = ['total' => (int)Config::get('nodeinfo', 'total_users'),
71                                         'activeHalfyear' => (int)Config::get('nodeinfo', 'active_users_halfyear'),
72                                         'activeMonth' => (int)Config::get('nodeinfo', 'active_users_monthly')];
73                 $nodeinfo['usage']['localPosts'] = (int)Config::get('nodeinfo', 'local_posts');
74                 $nodeinfo['usage']['localComments'] = (int)Config::get('nodeinfo', 'local_comments');
75
76                 if (Addon::isEnabled('blogger')) {
77                         $nodeinfo['services']['outbound'][] = 'blogger';
78                 }
79                 if (Addon::isEnabled('dwpost')) {
80                         $nodeinfo['services']['outbound'][] = 'dreamwidth';
81                 }
82                 if (Addon::isEnabled('statusnet')) {
83                         $nodeinfo['services']['inbound'][] = 'gnusocial';
84                         $nodeinfo['services']['outbound'][] = 'gnusocial';
85                 }
86
87                 if (Addon::isEnabled('gpluspost') || Addon::isEnabled('buffer')) {
88                         $nodeinfo['services']['outbound'][] = 'google';
89                 }
90                 if (Addon::isEnabled('ijpost')) {
91                         $nodeinfo['services']['outbound'][] = 'insanejournal';
92                 }
93                 if (Addon::isEnabled('libertree')) {
94                         $nodeinfo['services']['outbound'][] = 'libertree';
95                 }
96                 if (Addon::isEnabled('buffer')) {
97                         $nodeinfo['services']['outbound'][] = 'linkedin';
98                 }
99                 if (Addon::isEnabled('ljpost')) {
100                         $nodeinfo['services']['outbound'][] = 'livejournal';
101                 }
102                 if (Addon::isEnabled('buffer')) {
103                         $nodeinfo['services']['outbound'][] = 'pinterest';
104                 }
105                 if (Addon::isEnabled('posterous')) {
106                         $nodeinfo['services']['outbound'][] = 'posterous';
107                 }
108                 if (Addon::isEnabled('pumpio')) {
109                         $nodeinfo['services']['inbound'][] = 'pumpio';
110                         $nodeinfo['services']['outbound'][] = 'pumpio';
111                 }
112
113                 if ($smtp) {
114                         $nodeinfo['services']['outbound'][] = 'smtp';
115                 }
116                 if (Addon::isEnabled('tumblr')) {
117                         $nodeinfo['services']['outbound'][] = 'tumblr';
118                 }
119                 if (Addon::isEnabled('twitter') || Addon::isEnabled('buffer')) {
120                         $nodeinfo['services']['outbound'][] = 'twitter';
121                 }
122                 if (Addon::isEnabled('wppost')) {
123                         $nodeinfo['services']['outbound'][] = 'wordpress';
124                 }
125                 $nodeinfo['metadata']['protocols'] = $nodeinfo['protocols'];
126                 $nodeinfo['metadata']['protocols']['outbound'][] = 'atom1.0';
127                 $nodeinfo['metadata']['protocols']['inbound'][] = 'atom1.0';
128                 $nodeinfo['metadata']['protocols']['inbound'][] = 'rss2.0';
129
130                 $nodeinfo['metadata']['services'] = $nodeinfo['services'];
131
132                 if (Addon::isEnabled('twitter')) {
133                         $nodeinfo['metadata']['services']['inbound'][] = 'twitter';
134                 }
135
136                 $nodeinfo['metadata']['explicitContent'] = Config::get('system', 'explicit_content', false) == true;
137         }
138
139         header('Content-type: application/json; charset=utf-8');
140         echo json_encode($nodeinfo, JSON_PRETTY_PRINT|JSON_UNESCAPED_SLASHES);
141         exit;
142 }
143
144
145
146 function nodeinfo_cron() {
147
148         $a = \get_app();
149
150         // If the addon 'statistics_json' is enabled then disable it and activate nodeinfo.
151         if (Addon::isEnabled('statistics_json')) {
152                 Config::set('system', 'nodeinfo', true);
153
154                 $addon = 'statistics_json';
155                 $addons = Config::get('system', 'addon');
156                 $addons_arr = [];
157
158                 if ($addons) {
159                         $addons_arr = explode(',',str_replace(' ', '',$addons));
160
161                         $idx = array_search($addon, $addons_arr);
162                         if ($idx !== false) {
163                                 unset($addons_arr[$idx]);
164                                 Addon::uninstall($addon);
165                                 Config::set('system', 'addon', implode(', ',$addons_arr));
166                         }
167                 }
168         }
169
170         if (!Config::get('system', 'nodeinfo')) {
171                 return;
172         }
173
174         Logger::log('cron_start');
175
176         $users = q("SELECT `user`.`uid`, `user`.`login_date`, `contact`.`last-item`
177                         FROM `user`
178                         INNER JOIN `profile` ON `profile`.`uid` = `user`.`uid` AND `profile`.`is-default`
179                         INNER JOIN `contact` ON `contact`.`uid` = `user`.`uid` AND `contact`.`self`
180                         WHERE (`profile`.`publish` OR `profile`.`net-publish`) AND `user`.`verified`
181                                 AND NOT `user`.`blocked` AND NOT `user`.`account_removed`
182                                 AND NOT `user`.`account_expired`");
183         if (is_array($users)) {
184                 $total_users = count($users);
185                 $active_users_halfyear = 0;
186                 $active_users_monthly = 0;
187
188                 $halfyear = time() - (180 * 24 * 60 * 60);
189                 $month = time() - (30 * 24 * 60 * 60);
190
191                 foreach ($users AS $user) {
192                         if ((strtotime($user['login_date']) > $halfyear) ||
193                                 (strtotime($user['last-item']) > $halfyear)) {
194                                 ++$active_users_halfyear;
195                         }
196                         if ((strtotime($user['login_date']) > $month) ||
197                                 (strtotime($user['last-item']) > $month)) {
198                                 ++$active_users_monthly;
199                         }
200                 }
201                 Config::set('nodeinfo', 'total_users', $total_users);
202                 Config::set('nodeinfo', 'active_users_halfyear', $active_users_halfyear);
203                 Config::set('nodeinfo', 'active_users_monthly', $active_users_monthly);
204
205                 Logger::log('total_users: ' . $total_users . '/' . $active_users_halfyear. '/' . $active_users_monthly, Logger::DEBUG);
206         }
207
208         $local_posts = DBA::count('thread', ["`wall` AND NOT `deleted` AND `uid` != 0"]);
209         Config::set('nodeinfo', 'local_posts', $local_posts);
210         Logger::log('local_posts: ' . $local_posts, Logger::DEBUG);
211
212         $local_comments = DBA::count('item', ["`origin` AND `id` != `parent` AND NOT `deleted` AND `uid` != 0"]);
213         Config::set('nodeinfo', 'local_comments', $local_comments);
214         Logger::log('local_comments: ' . $local_comments, Logger::DEBUG);
215
216         // Now trying to register
217         $url = 'http://the-federation.info/register/'.$a->getHostName();
218         Logger::log('registering url: '.$url, Logger::DEBUG);
219         $ret = Network::fetchUrl($url);
220         Logger::log('registering answer: '.$ret, Logger::DEBUG);
221
222         Logger::log('cron_end');
223 }