because it might help us (and especially StatusNet sites) to recognize
profiles that have migrated from HTTP to HTTPS!
class WebFingerPlugin extends Plugin
{
+ public $http_alias = true;
+
+ public function initialize()
+ {
+ common_config_set('webfinger', 'http_alias', $this->http_alias);
+ }
+
public function onRouterInitialized($m)
{
$m->connect('.well-known/host-meta', array('action' => 'hostmeta'));
$aliases = array();
// Add the URI as an identity, this is _not_ necessarily an HTTP url
- $aliases[] = $this->object->getUri();
+ $uri = $this->object->getUri();
+ $aliases[] = $uri;
+ if (common_config('webfinger', 'http_alias')
+ && strtolower(parse_url($uri, PHP_URL_SCHEME)) === 'https') {
+ $aliases[] = preg_replace('/^https:/', 'http:', $uri, 1);
+ }
try {
$aliases[] = $this->object->getUrl();