]> git.mxchange.org Git - friendica.git/blob - mod/nodeinfo.php
Nodeinfo: Include the sitename
[friendica.git] / mod / nodeinfo.php
1 <?php
2 /*
3 Documentation: http://nodeinfo.diaspora.software/schema.html
4 */
5
6 function nodeinfo_wellknown(&$a) {
7         if (!get_config("system", "nodeinfo")) {
8                 http_status_exit(404);
9                 killme();
10         }
11         $nodeinfo = array("links" => array("rel" => "http://nodeinfo.diaspora.software/ns/schema/1.0",
12                                         "href" => $a->get_baseurl()."/nodeinfo/1.0"));
13
14         header('Content-type: application/json; charset=utf-8');
15         echo json_encode($nodeinfo, JSON_PRETTY_PRINT|JSON_UNESCAPED_SLASHES);
16         exit;
17 }
18
19 function nodeinfo_init(&$a){
20         if (!get_config("system", "nodeinfo")) {
21                 http_status_exit(404);
22                 killme();
23         }
24
25         if (($a->argc != 2) OR ($a->argv[1] != "1.0")) {
26                 http_status_exit(404);
27                 killme();
28         }
29
30         $smtp = (function_exists("imap_open") AND !get_config("system","imap_disabled") AND !get_config("system","dfrn_only"));
31
32         $nodeinfo = array();
33         $nodeinfo["version"] = "1.0";
34         $nodeinfo["software"] = array("name" => "friendica", "version" => FRIENDICA_VERSION."-".DB_UPDATE_VERSION);
35
36         $nodeinfo["protocols"] = array();
37         $nodeinfo["protocols"]["inbound"] = array();
38         $nodeinfo["protocols"]["outbound"] = array();
39
40         if (get_config("system","diaspora_enabled")) {
41                 $nodeinfo["protocols"]["inbound"][] = "diaspora";
42                 $nodeinfo["protocols"]["outbound"][] = "diaspora";
43         }
44
45         $nodeinfo["protocols"]["inbound"][] = "friendica";
46         $nodeinfo["protocols"]["outbound"][] = "friendica";
47
48         if (!get_config("system","ostatus_disabled")) {
49                 $nodeinfo["protocols"]["inbound"][] = "gnusocial";
50                 $nodeinfo["protocols"]["outbound"][] = "gnusocial";
51         }
52
53         //if ($smtp) {
54         //      $nodeinfo["protocols"]["inbound"][] = "smtp";
55         //      $nodeinfo["protocols"]["outbound"][] = "smtp";
56         //}
57
58
59         $nodeinfo["services"] = array();
60
61         if (nodeinfo_plugin_enabled("appnet") OR nodeinfo_plugin_enabled("buffer"))
62                 $nodeinfo["services"][] = "appnet";
63
64         if (nodeinfo_plugin_enabled("blogger"))
65                 $nodeinfo["services"][] = "blogger";
66
67         //if (get_config("system","diaspora_enabled"))
68         //      $nodeinfo["services"][] = "diaspora";
69
70         if (nodeinfo_plugin_enabled("dwpost"))
71                 $nodeinfo["services"][] = "dreamwidth";
72
73         if (nodeinfo_plugin_enabled("fbpost") OR nodeinfo_plugin_enabled("buffer"))
74                 $nodeinfo["services"][] = "facebook";
75
76         //$nodeinfo["services"][] = "friendica";
77
78         //if (nodeinfo_plugin_enabled("statusnet") OR !get_config("system","ostatus_disabled"))
79         if (nodeinfo_plugin_enabled("statusnet"))
80                 $nodeinfo["services"][] = "gnusocial";
81
82         if (nodeinfo_plugin_enabled("gpluspost") OR nodeinfo_plugin_enabled("buffer"))
83                 $nodeinfo["services"][] = "google";
84
85         if (nodeinfo_plugin_enabled("ijpost"))
86                 $nodeinfo["services"][] = "insanejournal";
87
88         if (nodeinfo_plugin_enabled("libertree"))
89                 $nodeinfo["services"][] = "libertree";
90
91         if (nodeinfo_plugin_enabled("buffer"))
92                 $nodeinfo["services"][] = "linkedin";
93
94         if (nodeinfo_plugin_enabled("ljpost"))
95                 $nodeinfo["services"][] = "livejournal";
96
97         if (nodeinfo_plugin_enabled("buffer"))
98                 $nodeinfo["services"][] = "pinterest";
99
100         if (nodeinfo_plugin_enabled("posterous"))
101                 $nodeinfo["services"][] = "posterous";
102
103         if (nodeinfo_plugin_enabled("pumpio"))
104                 $nodeinfo["services"][] = "pumpio";
105
106         // redmatrix
107
108         if ($smtp)
109                 $nodeinfo["services"][] = "smtp";
110
111         if (nodeinfo_plugin_enabled("tumblr"))
112                 $nodeinfo["services"][] = "tumblr";
113
114         if (nodeinfo_plugin_enabled("twitter"))
115                 $nodeinfo["services"][] = "twitter";
116
117         if (nodeinfo_plugin_enabled("wppost"))
118                 $nodeinfo["services"][] = "wordpress";
119
120         $nodeinfo["openRegistrations"] = ($a->config['register_policy'] != 0);
121
122         $nodeinfo["usage"] = array();
123         $nodeinfo["usage"]["users"] = array("total" => (int)get_config("nodeinfo","total_users"),
124                                 "activeHalfyear" => (int)get_config("nodeinfo","active_users_halfyear"),
125                                 "activeMonth" => (int)get_config("nodeinfo","active_users_monthly"));
126         $nodeinfo["usage"]["localPosts"] = (int)get_config("nodeinfo","local_posts");
127         $nodeinfo["usage"]["localComments"] = (int)get_config("nodeinfo","local_comments");
128
129         //$nodeinfo["metadata"] = new stdClass();
130         $nodeinfo["metadata"] = array("nodeName" => $a->config["sitename"]);
131
132         header('Content-type: application/json; charset=utf-8');
133         echo json_encode($nodeinfo, JSON_PRETTY_PRINT|JSON_UNESCAPED_SLASHES);
134         exit;
135 }
136
137 function nodeinfo_plugin_enabled($plugin) {
138         $r = q("SELECT * FROM `addon` WHERE `installed` = 1 AND `name` = '%s'", $plugin);
139         return((bool)(count($r) > 0));
140 }
141
142 function nodeinfo_cron() {
143         if (!get_config("system", "nodeinfo"))
144                 return;
145
146         $last = get_config('nodeinfo','last_calucation');
147
148         if($last) {
149                 // Calculate every 24 hours
150                 $next = $last + (24 * 60 * 60);
151                 if($next > time()) {
152                         logger("calculation intervall not reached");
153                         return;
154                 }
155         }
156         logger("cron_start");
157
158         $users = q("SELECT profile.*, `user`.`login_date`, `lastitem`.`lastitem_date`
159                         FROM (SELECT MAX(`item`.`changed`) as `lastitem_date`, `item`.`uid`
160                                 FROM `item`
161                                         WHERE `item`.`type` = 'wall'
162                                                 GROUP BY `item`.`uid`) AS `lastitem`
163                                                 RIGHT OUTER JOIN `user` ON `user`.`uid` = `lastitem`.`uid`, `contact`, `profile`
164                                 WHERE
165                                         `user`.`uid` = `contact`.`uid` AND `profile`.`uid` = `user`.`uid`
166                                         AND `profile`.`is-default` AND (`profile`.`publish` OR `profile`.`net-publish`)
167                                         AND `user`.`verified` AND `contact`.`self`
168                                         AND NOT `user`.`blocked`
169                                         AND NOT `user`.`account_removed`
170                                         AND NOT `user`.`account_expired`");
171
172         if (is_array($users)) {
173                         $total_users = count($users);
174                         $active_users_halfyear = 0;
175                         $active_users_monthly = 0;
176
177                         $halfyear = time() - (180 * 24 * 60 * 60);
178                         $month = time() - (30 * 24 * 60 * 60);
179
180                         foreach ($users AS $user) {
181                                 if ((strtotime($user['login_date']) > $halfyear) OR
182                                         (strtotime($user['lastitem_date']) > $halfyear))
183                                         ++$active_users_halfyear;
184
185                                 if ((strtotime($user['login_date']) > $month) OR
186                                         (strtotime($user['lastitem_date']) > $month))
187                                         ++$active_users_monthly;
188
189                         }
190                         set_config('nodeinfo','total_users', $total_users);
191                         logger("total_users: ".$total_users, LOGGER_DEBUG);
192
193                         set_config('nodeinfo','active_users_halfyear', $active_users_halfyear);
194                         set_config('nodeinfo','active_users_monthly', $active_users_monthly);
195         }
196
197         //$posts = q("SELECT COUNT(*) AS local_posts FROM `item` WHERE `wall` AND `uid` != 0 AND `id` = `parent` AND left(body, 6) != '[share'");
198         $posts = q("SELECT COUNT(*) AS `local_posts` FROM `item`
199                         INNER JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
200                         WHERE `contact`.`self` and `item`.`id` = `item`.`parent` AND left(body, 6) != '[share' AND `item`.`network` IN ('%s', '%s', '%s')",
201                         dbesc(NETWORK_OSTATUS), dbesc(NETWORK_DIASPORA), dbesc(NETWORK_DFRN));
202
203         if (!is_array($posts))
204                 $local_posts = -1;
205         else
206                 $local_posts = $posts[0]["local_posts"];
207
208         set_config('nodeinfo','local_posts', $local_posts);
209
210         logger("local_posts: ".$local_posts, LOGGER_DEBUG);
211
212         $posts = q("SELECT COUNT(*) AS `local_comments` FROM `item`
213                         INNER JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
214                         WHERE `contact`.`self` and `item`.`id` != `item`.`parent` AND `item`.`network` IN ('%s', '%s', '%s')",
215                         dbesc(NETWORK_OSTATUS), dbesc(NETWORK_DIASPORA), dbesc(NETWORK_DFRN));
216
217         if (!is_array($posts))
218                 $local_comments = -1;
219         else
220                 $local_comments = $posts[0]["local_comments"];
221
222         set_config('nodeinfo','local_comments', $local_comments);
223
224         // Now trying to register
225         $url = "http://the-federation.info/register/".$a->get_hostname();
226         logger('registering url: '.$url, LOGGER_DEBUG);
227         $ret = fetch_url($url);
228         logger('registering answer: '.$ret, LOGGER_DEBUG);
229
230         logger("cron_end");
231         set_config('nodeinfo','last_calucation', time());
232 }
233
234 ?>