Adding $a->getBaseURL for Worker in profile_photo
Adding a TODO for Contact::magicLink
This commit is contained in:
parent
34989480e1
commit
363d00cc45
|
@ -126,7 +126,7 @@ function profile_photo_post(App $a)
|
||||||
info(L10n::t('Shift-reload the page or clear browser cache if the new photo does not display immediately.') . EOL);
|
info(L10n::t('Shift-reload the page or clear browser cache if the new photo does not display immediately.') . EOL);
|
||||||
// Update global directory in background
|
// Update global directory in background
|
||||||
if ($path && strlen(Config::get('system', 'directory'))) {
|
if ($path && strlen(Config::get('system', 'directory'))) {
|
||||||
Worker::add(PRIORITY_LOW, "Directory", $path);
|
Worker::add(PRIORITY_LOW, "Directory", $a->getBaseURL() . '/' . $path);
|
||||||
}
|
}
|
||||||
|
|
||||||
Worker::add(PRIORITY_LOW, 'ProfileUpdate', local_user());
|
Worker::add(PRIORITY_LOW, 'ProfileUpdate', local_user());
|
||||||
|
|
|
@ -13,7 +13,13 @@ function randprof_init(App $a)
|
||||||
$x = GContact::getRandomUrl();
|
$x = GContact::getRandomUrl();
|
||||||
|
|
||||||
if ($x) {
|
if ($x) {
|
||||||
$a->internalRedirect(Contact::magicLink($x));
|
$link = Contact::magicLink($x);
|
||||||
|
// @TODO making the return of magicLink save to use either externalRedirect or internalRedirect
|
||||||
|
if (filter_var($link, FILTER_VALIDATE_URL)) {
|
||||||
|
System::externalRedirect($link);
|
||||||
|
} else {
|
||||||
|
$a->internalRedirect($link);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$a->internalRedirect('profile');
|
$a->internalRedirect('profile');
|
||||||
|
|
|
@ -2024,6 +2024,8 @@ class Contact extends BaseObject
|
||||||
/**
|
/**
|
||||||
* @brief Returns a magic link to authenticate remote visitors
|
* @brief Returns a magic link to authenticate remote visitors
|
||||||
*
|
*
|
||||||
|
* @todo check if the return is either a fully qualified URL or a relative path to Friendica basedir
|
||||||
|
*
|
||||||
* @param string $contact_url The address of the target contact profile
|
* @param string $contact_url The address of the target contact profile
|
||||||
* @param string $url An url that we will be redirected to after the authentication
|
* @param string $url An url that we will be redirected to after the authentication
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in a new issue