]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - socialfy-another-domain/dot-well-known/webfinger/index.php
socialfy-your-domain made people think you needed manual interaction
[quix0rs-gnu-social.git] / socialfy-another-domain / dot-well-known / webfinger / index.php
1 <?php
2
3 /*
4  * GNU social
5  * Copyright (C) 2010, Free Software Foundation, Inc
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as published by
9  * the Free Software Foundation, either version 3 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
19  */
20
21
22 // basename should make sure we can't escape this directory
23 $u = basename($_GET['resource']);
24
25 if (!strpos($u, '@')) {
26     throw new Exception('Bad resource');
27     exit(1);
28 }
29
30 if (mb_strpos($u, 'acct:')===0) {
31     $u = substr($u, 5);
32 }
33
34 // Just to be a little bit safer, you know, with all the unicode stuff going on
35 $u = filter_var($u, FILTER_SANITIZE_EMAIL);
36
37 $f = $u . ".xml";
38
39 if (file_exists($f)) {
40   header('Content-Disposition: attachment; filename="'.urlencode($f).'"');
41   header('Content-type: application/xrd+xml');
42   echo file_get_contents($f);
43 }