webfinger.php 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <?php
  2. // This file is part of GNU social - https://www.gnu.org/software/social
  3. //
  4. // GNU social is free software: you can redistribute it and/or modify
  5. // it under the terms of the GNU Affero General Public License as published by
  6. // the Free Software Foundation, either version 3 of the License, or
  7. // (at your option) any later version.
  8. //
  9. // GNU social is distributed in the hope that it will be useful,
  10. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. // GNU Affero General Public License for more details.
  13. //
  14. // You should have received a copy of the GNU Affero General Public License
  15. // along with GNU social. If not, see <http://www.gnu.org/licenses/>.
  16. /**
  17. * Implementation of WebFinger resource discovery (RFC7033)
  18. *
  19. * @category Discovery
  20. * @package GNUsocial
  21. * @author Mikael Nordfeldth <mmn@hethane.se>
  22. * @copyright 2013 Free Software Foundation, Inc http://www.fsf.org
  23. * @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
  24. */
  25. class LRDDMethod_WebFinger extends LRDDMethod
  26. {
  27. /**
  28. * Simply returns the WebFinger URL over HTTPS at the uri's domain:
  29. * https://{domain}/.well-known/webfinger?resource={uri}
  30. */
  31. public function discover($uri)
  32. {
  33. $scheme = mb_strtolower(parse_url($uri, PHP_URL_SCHEME));
  34. switch ($scheme) {
  35. case 'acct':
  36. // We can't use parse_url data for this, since the 'host'
  37. // entry is only set if the scheme has '://' after it.
  38. $parts = explode('@', parse_url($uri, PHP_URL_PATH), 2);
  39. if (!Discovery::isAcct($uri) || count($parts) != 2) {
  40. throw new Exception('Bad resource URI: ' . $uri);
  41. }
  42. [, $domain] = $parts;
  43. break;
  44. case 'http':
  45. case 'https':
  46. $domain = mb_strtolower(parse_url($uri, PHP_URL_HOST));
  47. break;
  48. default:
  49. throw new Exception('Unable to discover resource descriptor endpoint.');
  50. }
  51. $link = new XML_XRD_Element_Link(
  52. Discovery::LRDD_REL,
  53. 'https://' . $domain . '/.well-known/webfinger?resource={uri}',
  54. Discovery::JRD_MIMETYPE,
  55. true // isTemplate
  56. );
  57. return [$link];
  58. }
  59. }