logger($contact['name'] . ' ' . $sec, LOGGER_DEBUG);
$dest = ($url ? '&destination_url=' . $url : '');
- $app = get_app();
- $app->redirect(
+ System::externalRedirect((
$contact['poll'] . '?dfrn_id=' . $dfrn_id
. '&dfrn_version=' . DFRN_PROTOCOL_VERSION
. '&type=profile&sec=' . $sec . $dest
if (!DBA::isResult($item)) {
notice(L10n::t('Item not found.') . EOL);
- $a->redirect('network');
+ $a->internalRedirect('network');
}
if ($item['deleted']) {
}
// Now check how the user responded to the confirmation query
if (!empty($_REQUEST['canceled'])) {
- $a->redirect('display/' . $item['guid']);
+ $a->internalRedirect('display/' . $item['guid']);
}
// delete the item
Item::deleteForUser(['id' => $item['id']], local_user());
- $a->redirect('network');
+ $a->internalRedirect('network');
//NOTREACHED
} else {
notice(L10n::t('Permission denied.') . EOL);
- $a->redirect('display/' . $item['guid']);
+ $a->internalRedirect('display/' . $item['guid']);
//NOTREACHED
}
}
if ($a->isAjax()) {
return;
}
- $a->redirect('admin/');
+ $a->internalRedirect('admin/');
return;
}
}
}
- $a->redirect($return_path);
+ $a->internalRedirect($return_path);
return; // NOTREACHED
}
Config::set('system', 'tosprivstatement', $displayprivstatement);
Config::set('system', 'tostext', $tostext);
- $a->redirect('admin/tos');
+ $a->internalRedirect('admin/tos');
return; // NOTREACHED
}
Config::set('system', 'blocklist', $blocklist);
info(L10n::t('Site blocklist updated.') . EOL);
}
- $a->redirect('admin/blocklist');
+ $a->internalRedirect('admin/blocklist');
return; // NOTREACHED
}
}
notice(L10n::tt("%s contact unblocked", "%s contacts unblocked", count($contacts)));
}
- $a->redirect('admin/contactblock');
+ $a->internalRedirect('admin/contactblock');
return; // NOTREACHED
}
}
info(L10n::t('Item marked for deletion.') . EOL);
- $a->redirect('admin/deleteitem');
+ $a->internalRedirect('admin/deleteitem');
return; // NOTREACHED
}
$parsed = @parse_url($new_url);
if (!is_array($parsed) || !x($parsed, 'host') || !x($parsed, 'scheme')) {
notice(L10n::t("Can not parse base url. Must have at least <scheme>://<domain>"));
- $a->redirect('admin/site');
+ $a->internalRedirect('admin/site');
}
/* steps:
* send relocate for every local user
* */
- $old_url = System::baseUrl(true);
+ $old_url = $a->getBaseURL(true);
// Generate host names for relocation the addresses in the format user@address.tld
$new_host = str_replace("http://", "@", normalise_link($new_url));
$old_host = str_replace("http://", "@", normalise_link($old_url));
- function update_table($table_name, $fields, $old_url, $new_url)
+ function update_table(App $a, $table_name, $fields, $old_url, $new_url)
{
$dbold = DBA::escape($old_url);
$dbnew = DBA::escape($new_url);
if (!DBA::isResult($r)) {
notice("Failed updating '$table_name': " . DBA::errorMessage());
- $a->redirect('admin/site');
+ $a->internalRedirect('admin/site');
}
}
// update tables
// update profile links in the format "http://server.tld"
- update_table("profile", ['photo', 'thumb'], $old_url, $new_url);
- update_table("term", ['url'], $old_url, $new_url);
- update_table("contact", ['photo', 'thumb', 'micro', 'url', 'nurl', 'alias', 'request', 'notify', 'poll', 'confirm', 'poco', 'avatar'], $old_url, $new_url);
- update_table("gcontact", ['url', 'nurl', 'photo', 'server_url', 'notify', 'alias'], $old_url, $new_url);
- update_table("item", ['owner-link', 'author-link', 'body', 'plink', 'tag'], $old_url, $new_url);
+ update_table($a, "profile", ['photo', 'thumb'], $old_url, $new_url);
+ update_table($a, "term", ['url'], $old_url, $new_url);
+ update_table($a, "contact", ['photo', 'thumb', 'micro', 'url', 'nurl', 'alias', 'request', 'notify', 'poll', 'confirm', 'poco', 'avatar'], $old_url, $new_url);
+ update_table($a, "gcontact", ['url', 'nurl', 'photo', 'server_url', 'notify', 'alias'], $old_url, $new_url);
+ update_table($a, "item", ['owner-link', 'author-link', 'body', 'plink', 'tag'], $old_url, $new_url);
// update profile addresses in the format "user@server.tld"
- update_table("contact", ['addr'], $old_host, $new_host);
- update_table("gcontact", ['connect', 'addr'], $old_host, $new_host);
+ update_table($a, "contact", ['addr'], $old_host, $new_host);
+ update_table($a, "gcontact", ['connect', 'addr'], $old_host, $new_host);
// update config
Config::set('system', 'hostname', parse_url($new_url, PHP_URL_HOST));
info("Relocation started. Could take a while to complete.");
- $a->redirect('admin/site');
+ $a->internalRedirect('admin/site');
}
// end relocate
Config::set('system', 'rino_encrypt', $rino);
info(L10n::t('Site settings updated.') . EOL);
- $a->redirect('admin/site');
+ $a->internalRedirect('admin/site');
return; // NOTREACHED
}
Config::set('system', 'build', intval($curr) + 1);
}
info(L10n::t('Update has been marked successful') . EOL);
- $a->redirect('admin/dbsync');
+ $a->internalRedirect('admin/dbsync');
}
if (($a->argc > 2) && (intval($a->argv[2]) || ($a->argv[2] === 'check'))) {
user_deny($hash);
}
}
- $a->redirect('admin/users');
+ $a->internalRedirect('admin/users');
return; // NOTREACHED
}
$user = DBA::selectFirst('user', ['username', 'blocked'], ['uid' => $uid]);
if (!DBA::isResult($user)) {
notice('User not found' . EOL);
- $a->redirect('admin/users');
+ $a->internalRedirect('admin/users');
return ''; // NOTREACHED
}
switch ($a->argv[2]) {
notice(sprintf(($user['blocked'] ? L10n::t("User '%s' unblocked") : L10n::t("User '%s' blocked")), $user['username']) . EOL);
break;
}
- $a->redirect('admin/users');
+ $a->internalRedirect('admin/users');
return ''; // NOTREACHED
}
info(L10n::t("Addon %s enabled.", $addon));
}
Config::set("system", "addon", implode(", ", $a->addons));
- $a->redirect('admin/addons');
+ $a->internalRedirect('admin/addons');
return ''; // NOTREACHED
}
BaseModule::checkFormSecurityTokenRedirectOnError($a->getBaseURL() . '/admin/addons', 'admin_themes', 't');
Addon::reload();
info("Addons reloaded");
- $a->redirect('admin/addons');
+ $a->internalRedirect('admin/addons');
}
$addons = [];
}
Config::set('system', 'allowed_themes', $s);
- $a->redirect('admin/themes');
+ $a->internalRedirect('admin/themes');
return ''; // NOTREACHED
}
}
}
info("Themes reloaded");
- $a->redirect('admin/themes');
+ $a->internalRedirect('admin/themes');
}
/*
}
info(L10n::t("Log settings updated."));
- $a->redirect('admin/logs');
+ $a->internalRedirect('admin/logs');
return; // NOTREACHED
}
}
}
- $a->redirect('admin/features');
+ $a->internalRedirect('admin/features');
return; // NOTREACHED
}
if (strstr($consumer->callback_url, $glue)) {
$glue = "?";
}
- $a->redirect($consumer->callback_url . $glue . 'oauth_token=' . OAuthUtil::urlencode_rfc3986($params['oauth_token']) . '&oauth_verifier=' . OAuthUtil::urlencode_rfc3986($verifier));
+ $a->internalRedirect($consumer->callback_url . $glue . 'oauth_token=' . OAuthUtil::urlencode_rfc3986($params['oauth_token']) . '&oauth_verifier=' . OAuthUtil::urlencode_rfc3986($verifier));
killme();
}
// Respect the export feature setting for all other /cal pages if it's not the own profile
if ((local_user() !== intval($owner_uid)) && !Feature::isEnabled($owner_uid, "export_calendar")) {
notice(L10n::t('Permission denied.') . EOL);
- $a->redirect('cal/' . $nick);
+ $a->internalRedirect('cal/' . $nick);
}
// Get the export data by uid
$return_path = "cal/" . $nick;
}
- $a->redirect($return_path);
+ $a->internalRedirect($return_path);
}
// If nothing went wrong we can echo the export content
if ($a->argc > 2 && $a->argv[1] === 'add' && intval($a->argv[2])) {
// delegated admins can view but not change delegation permissions
if (x($_SESSION, 'submanage')) {
- $a->redirect('delegate');
+ $a->internalRedirect('delegate');
}
$user_id = $a->argv[2];
DBA::insert('manage', ['uid' => $user_id, 'mid' => local_user()]);
}
}
- $a->redirect('delegate');
+ $a->internalRedirect('delegate');
}
if ($a->argc > 2 && $a->argv[1] === 'remove' && intval($a->argv[2])) {
// delegated admins can view but not change delegation permissions
if (x($_SESSION, 'submanage')) {
- $a->redirect('delegate');
+ $a->internalRedirect('delegate');
}
DBA::delete('manage', ['uid' => $a->argv[2], 'mid' => local_user()]);
- $a->redirect('delegate');
+ $a->internalRedirect('delegate');
}
// find everybody that currently has delegated management to this account/page
// Let's send our user to the contact editor in case they want to
// do anything special with this new friend.
if ($handsfree === null) {
- $a->redirect('contact/' . intval($contact_id));
+ $a->internalRedirect('contact/' . intval($contact_id));
} else {
return;
}
}
// somebody arrived here by mistake or they are fishing. Send them to the homepage.
- $a->redirect();
+ $a->internalRedirect();
// NOTREACHED
}
$my_id = '0:' . $dfrn_id;
break;
default:
- $a->redirect();
+ $a->internalRedirect();
break; // NOTREACHED
}
if (strlen($s)) {
$xml = XML::parseString($s);
- if ((int) $xml->status === 1) {
+ if ((int)$xml->status === 1) {
$_SESSION['authenticated'] = 1;
if (!x($_SESSION, 'remote')) {
$_SESSION['remote'] = [];
);
}
}
- $profile = $r[0]['nickname'];
- $a->redirect((strlen($destination_url)) ? $destination_url : 'profile/' . $profile);
+
+ $profile = (count($r) > 0 && isset($r[0]['nickname']) ? $r[0]['nickname'] : '');
+ if (!empty($destination_url)) {
+ System::externalRedirect($destination_url);
+ } else {
+ $a->internalRedirect('profile/' . $profile);
+ }
}
- $a->redirect();
+ $a->internalRedirect();
}
if ($type === 'profile-check' && $dfrn_version < 2.2) {
$my_id = '0:' . $dfrn_id;
break;
default:
- $a->redirect();
+ $a->internalRedirect();
break; // NOTREACHED
}
$my_id = '0:' . $dfrn_id;
break;
default:
- $a->redirect();
+ $a->internalRedirect();
break; // NOTREACHED
}
])->getBody();
}
- $profile = ((DBA::isResult($r) && $r[0]['nickname']) ? $r[0]['nickname'] : $nickname);
-
- switch ($destination_url) {
- case 'profile':
- $dest = 'profile/' . $profile . '?f=&tab=profile';
- break;
- case 'photos':
- $dest = 'photos/' . $profile;
- break;
- case 'status':
- case '':
- $dest = 'profile/' . $profile;
- break;
- default:
- $appendix = (strstr($destination_url, '?') ? '&f=&redir=1' : '?f=&redir=1');
- $dest = $destination_url . $appendix;
- break;
- }
-
logger("dfrn_poll: sec profile: " . $s, LOGGER_DATA);
if (strlen($s) && strstr($s, '<?xml')) {
DBA::escape($session_id)
);
}
+ }
+
+ $profile = ((DBA::isResult($r) && $r[0]['nickname']) ? $r[0]['nickname'] : $nickname);
- $a->redirect($dest);
+ switch ($destination_url) {
+ case 'profile':
+ $a->internalRedirect('profile/' . $profile . '?f=&tab=profile';
+ break;
+ case 'photos':
+ $a->internalRedirect('photos/' . $profile;
+ break;
+ case 'status':
+ case '':
+ $a->internalRedirect('profile/' . $profile;
+ break;
+ default:
+ $appendix = (strstr($destination_url, '?') ? '&f=&redir=1' : '?f=&redir=1');
+ System::externalRedirect($destination_url . $appendix);
+ break;
}
- $a->redirect($dest);
// NOTREACHED
} else {
// XML reply
}
if (x($_POST, 'cancel')) {
- $a->redirect();
+ $a->internalRedirect();
}
/*
}
// (ignore reply, nothing we can do it failed)
- $a->redirect($forwardurl);
+ $a->internalRedirect($forwardurl);
return; // NOTREACHED
}
}
// invalid/bogus request
notice(L10n::t('Unrecoverable protocol error.') . EOL);
- $a->redirect();
+ $a->internalRedirect();
return; // NOTREACHED
}
$url = Network::isUrlValid($url);
if (!$url) {
notice(L10n::t('Invalid profile URL.') . EOL);
- $a->redirect($a->cmd);
+ $a->internalRedirect($a->cmd);
return; // NOTREACHED
}
if (!Network::isUrlAllowed($url)) {
notice(L10n::t('Disallowed profile URL.') . EOL);
- $a->redirect($a->cmd);
+ $a->internalRedirect($a->cmd);
return; // NOTREACHED
}
if (Network::isUrlBlocked($url)) {
notice(L10n::t('Blocked domain') . EOL);
- $a->redirect($a->cmd);
+ $a->internalRedirect($a->cmd);
return; // NOTREACHED
}
if (!count($parms)) {
notice(L10n::t('Profile location is not valid or does not contain profile information.') . EOL);
- $a->redirect($a->cmd);
+ $a->internalRedirect($a->cmd);
} else {
if (!x($parms, 'fn')) {
notice(L10n::t('Warning: profile location has no identifiable owner name.') . EOL);
}
// "Homecoming" - send the requestor back to their site to record the introduction.
- $dfrn_url = bin2hex(System::baseUrl() . '/profile/' . $nickname);
+ $dfrn_url = bin2hex($a->getBaseURL() . '/profile/' . $nickname);
$aes_allow = ((function_exists('openssl_encrypt')) ? 1 : 0);
- $a->redirect($parms['dfrn-request'] . "?dfrn_url=$dfrn_url"
+ System::externalRedirect($parms['dfrn-request'] . "?dfrn_url=$dfrn_url"
. '&dfrn_version=' . DFRN_PROTOCOL_VERSION
. '&confirm_key=' . $hash
. (($aes_allow) ? "&aes_allow=1" : "")
}
$url = str_replace('{uri}', $uri, $url);
- $a->redirect($url);
+ System::externalRedirect($url);
// NOTREACHED
// END $network != Protocol::PHANTOM
} else {
}
if (ActivityPub::isRequest()) {
- $a->redirect(str_replace('display/', 'objects/', $a->query_string));
+ $a->internalRedirect(str_replace('display/', 'objects/', $a->query_string));
}
if ($item["id"] != $item["parent"]) {
echo L10n::t('Event can not end before it has started.');
killme();
}
- $a->redirect($onerror_url);
+ $a->internalRedirect($onerror_url);
}
if (!$summary || ($start === NULL_DATE)) {
echo L10n::t('Event title and start time are required.');
killme();
}
- $a->redirect($onerror_url);
+ $a->internalRedirect($onerror_url);
}
$share = intval(defaults($_POST, 'share', 0));
Worker::add(PRIORITY_HIGH, "Notifier", "event", $item_id);
}
- $a->redirect('events');
+ $a->internalRedirect('events');
}
function events_content(App $a)
info(L10n::t('Event removed') . EOL);
}
- $a->redirect('events');
+ $a->internalRedirect('events');
}
}
file_tag_unsave_file(local_user(),$item_id,$term, $category);
}
- //$a->redirect('network');
+ //$a->internalRedirect('network');
killme();
}
}
if (isset($_REQUEST['cancel'])) {
- $a->redirect('contacts');
+ $a->internalRedirect('contacts');
}
$uid = local_user();
if ($result['message']) {
notice($result['message']);
}
- $a->redirect($return_url);
+ $a->internalRedirect($return_url);
} elseif ($result['cid']) {
- $a->redirect('contact/' . $result['cid']);
+ $a->internalRedirect('contact/' . $result['cid']);
}
info(L10n::t('The contact could not be added.'));
- $a->redirect($return_url);
+ $a->internalRedirect($return_url);
// NOTREACHED
}
if (!local_user()) {
notice(L10n::t('Permission denied.'));
- $a->redirect($return_url);
+ $a->internalRedirect($return_url);
// NOTREACHED
}
if ($r[0]['pending']) {
notice(L10n::t('You already added this contact.'));
$submit = '';
- //$a->redirect($_SESSION['return_url']);
+ //$a->internalRedirect($_SESSION['return_url']);
// NOTREACHED
}
}
if (($ret['network'] == Protocol::DIASPORA) && !Config::get('system', 'diaspora_enabled')) {
notice(L10n::t("Diaspora support isn't enabled. Contact can't be added."));
$submit = '';
- //$a->redirect($_SESSION['return_url']);
+ //$a->internalRedirect($_SESSION['return_url']);
// NOTREACHED
}
if (($ret['network'] == Protocol::OSTATUS) && Config::get('system', 'ostatus_disabled')) {
notice(L10n::t("OStatus support is disabled. Contact can't be added."));
$submit = '';
- //$a->redirect($_SESSION['return_url']);
+ //$a->internalRedirect($_SESSION['return_url']);
// NOTREACHED
}
if ($ret['network'] == Protocol::PHANTOM) {
notice(L10n::t("The network type couldn't be detected. Contact can't be added."));
$submit = '';
- //$a->redirect($_SESSION['return_url']);
+ //$a->internalRedirect($_SESSION['return_url']);
// NOTREACHED
}
if (!$r) {
notice(L10n::t('Permission denied.'));
- $a->redirect($return_url);
+ $a->internalRedirect($return_url);
// NOTREACHED
}
info(L10n::t('Group created.') . EOL);
$r = Model\Group::getIdByName(local_user(), $name);
if ($r) {
- $a->redirect('group/' . $r);
+ $a->internalRedirect('group/' . $r);
}
} else {
notice(L10n::t('Could not create group.') . EOL);
}
- $a->redirect('group');
+ $a->internalRedirect('group');
return; // NOTREACHED
}
);
if (!DBA::isResult($r)) {
notice(L10n::t('Group not found.') . EOL);
- $a->redirect('contact');
+ $a->internalRedirect('contact');
return; // NOTREACHED
}
$group = $r[0];
// With no group number provided we jump to the unassigned contacts as a starting point
if ($a->argc == 1) {
- $a->redirect('group/none');
+ $a->internalRedirect('group/none');
}
// Switch to text mode interface if we have more than 'n' contacts or group members
notice(L10n::t('Unable to remove group.') . EOL);
}
}
- $a->redirect('group');
+ $a->internalRedirect('group');
// NOTREACHED
}
if (!DBA::isResult($r)) {
notice(L10n::t('Group not found.') . EOL);
- $a->redirect('contact');
+ $a->internalRedirect('contact');
}
$group = $r[0];
Addon::callHooks('home_init',$ret);
if (local_user() && ($a->user['nickname'])) {
- $a->redirect('network');
+ $a->internalRedirect('network');
}
if (strlen(Config::get('system','singleuser'))) {
- $a->redirect('profile/' . Config::get('system','singleuser'));
+ $a->internalRedirect('profile/' . Config::get('system','singleuser'));
}
}}
$rand = "?$rand";
}
- $a->redirect($return_path . $rand);
+ $a->internalRedirect($return_path . $rand);
}
// the json doesn't really matter, it will either be 0 or 1
if (!DBA::isResult($parent_item)) {
notice(L10n::t('Unable to locate original post.') . EOL);
if (!empty($_REQUEST['return'])) {
- $a->redirect($return_path);
+ $a->internalRedirect($return_path);
}
killme();
}
notice(L10n::t('Permission denied.') . EOL) ;
if (!empty($_REQUEST['return'])) {
- $a->redirect($return_path);
+ $a->internalRedirect($return_path);
}
killme();
}
info(L10n::t('Empty post discarded.') . EOL);
if (!empty($_REQUEST['return'])) {
- $a->redirect($return_path);
+ $a->internalRedirect($return_path);
}
killme();
}
if (!empty($datarray['cancel'])) {
logger('mod_item: post cancelled by addon.');
if ($return_path) {
- $a->redirect($return_path);
+ $a->internalRedirect($return_path);
}
$json = ['cancel' => 1];
if (!empty($_REQUEST['return']) && strlen($return_path)) {
logger('return: ' . $return_path);
- $a->redirect($return_path);
+ $a->internalRedirect($return_path);
}
killme();
} else {
if (!$post_id) {
logger("Item wasn't stored.");
- $a->redirect($return_path);
+ $a->internalRedirect($return_path);
}
$datarray = Item::selectFirst(Item::ITEM_FIELDLIST, ['id' => $post_id]);
if (!DBA::isResult($datarray)) {
logger("Item with id ".$post_id." couldn't be fetched.");
- $a->redirect($return_path);
+ $a->internalRedirect($return_path);
}
// update filetags in pconfig
}
if ($return_path) {
- $a->redirect($return_path);
+ $a->internalRedirect($return_path);
}
$json = ['success' => 1];
$rand = "?$rand";
}
- $a->redirect($return_path . $rand);
+ $a->internalRedirect($return_path . $rand);
}
killme();
{
$loginame = notags(trim($_POST['login-name']));
if (!$loginame) {
- $a->redirect();
+ $a->internalRedirect();
}
$condition = ['(`email` = ? OR `nickname` = ?) AND `verified` = 1 AND `blocked` = 0', $loginame, $loginame];
$user = DBA::selectFirst('user', ['uid', 'username', 'email', 'language'], $condition);
if (!DBA::isResult($user)) {
notice(L10n::t('No valid account found.') . EOL);
- $a->redirect();
+ $a->internalRedirect();
}
$pwdreset_token = autoname(12) . mt_rand(1000, 9999);
'body' => $body
]);
- $a->redirect();
+ $a->internalRedirect();
}
function lostpass_content(App $a)
$ret = [];
Addon::callHooks('home_init',$ret);
- $a->redirect('profile/' . $a->user['nickname'] );
+ $a->internalRedirect('profile/' . $a->user['nickname'] );
// NOTREACHED
}
$a->argc = 2;
$a->argv[1] = 'new';
} else {
- $a->redirect($a->cmd . '/' . $ret);
+ $a->internalRedirect($a->cmd . '/' . $ret);
}
}
// Now check how the user responded to the confirmation query
if (!empty($_REQUEST['canceled'])) {
- $a->redirect('message');
+ $a->internalRedirect('message');
}
$cmd = $a->argv[1];
$message = DBA::selectFirst('mail', ['convid'], ['id' => $a->argv[2], 'uid' => local_user()]);
if(!DBA::isResult($message)){
info(L10n::t('Conversation not found.') . EOL);
- $a->redirect('message');
+ $a->internalRedirect('message');
}
if (DBA::delete('mail', ['id' => $a->argv[2], 'uid' => local_user()])) {
$conversation = DBA::selectFirst('mail', ['id'], ['convid' => $message['convid'], 'uid' => local_user()]);
if(!DBA::isResult($conversation)){
info(L10n::t('Conversation removed.') . EOL);
- $a->redirect('message');
+ $a->internalRedirect('message');
}
- $a->redirect('message/' . $conversation['id'] );
+ $a->internalRedirect('message/' . $conversation['id'] );
} else {
$r = q("SELECT `parent-uri`,`convid` FROM `mail` WHERE `id` = %d AND `uid` = %d LIMIT 1",
intval($a->argv[2]),
info(L10n::t('Conversation removed.') . EOL);
}
}
- $a->redirect('message');
+ $a->internalRedirect('message');
}
}
$search = (x($_GET, 'search') ? escape_tags($_GET['search']) : '');
if (($search != '') && !empty($_GET['submit'])) {
- $a->redirect('search?search=' . urlencode($search));
+ $a->internalRedirect('search?search=' . urlencode($search));
}
if (x($_GET, 'save')) {
$redir_url = ($net_queries ? $net_baseurl . '?' . $net_queries : $net_baseurl);
- $a->redirect($redir_url);
+ $a->internalRedirect($redir_url);
}
}
killme();
}
notice(L10n::t('No such group') . EOL);
- $a->redirect('network/0');
+ $a->internalRedirect('network/0');
// NOTREACHED
}
}
} else {
notice(L10n::t('Invalid contact.') . EOL);
- $a->redirect('network');
+ $a->internalRedirect('network');
// NOTREACHED
}
}
return '';
}
- $a->redirect('group/none');
+ $a->internalRedirect('group/none');
}
$r = q("SELECT `user`.`nickname` FROM `user` LEFT JOIN `item` ON `item`.`uid` = `user`.`uid` WHERE `item`.`id` = %d", intval($id));
if (DBA::isResult($r)) {
$nick = $r[0]['nickname'];
- $a->redirect('display/' . $nick . '/' . $id);
+ $a->internalRedirect('display/' . $nick . '/' . $id);
} else {
$a->error = 404;
notice(L10n::t('Item not found.') . EOL);
function notifications_post(App $a)
{
if (!local_user()) {
- $a->redirect();
+ $a->internalRedirect();
}
$request_id = (($a->argc > 1) ? $a->argv[1] : 0);
'self' => false, 'blocked' => true, 'pending' => true];
DBA::delete('contact', $condition);
}
- $a->redirect('notifications/intros');
+ $a->internalRedirect('notifications/intros');
}
if ($_POST['submit'] == L10n::t('Ignore')) {
DBA::update('intro', ['ignore' => true], ['id' => $intro_id]);
- $a->redirect('notifications/intros');
+ $a->internalRedirect('notifications/intros');
}
}
}
}
}
- $a->redirect($note['link']);
+ System::externalRedirect($note['link']);
}
- $a->redirect();
+ $a->internalRedirect();
}
if ($a->argc > 2 && $a->argv[1] === 'mark' && $a->argv[2] === 'all') {
$noid = Config::get('system','no_openid');
if($noid)
- $a->redirect();
+ $a->internalRedirect();
logger('mod_openid ' . print_r($_REQUEST,true), LOGGER_DATA);
if(! strlen($authid)) {
logger(L10n::t('OpenID protocol error. No ID returned.') . EOL);
- $a->redirect();
+ $a->internalRedirect();
}
// NOTE: we search both for normalised and non-normalised form of $authid
// just in case there was no return url set
// and we fell through
- $a->redirect();
+ $a->internalRedirect();
}
// Successful OpenID login - but we can't match it to an existing account.
if (intval(Config::get('config', 'register_policy')) === REGISTER_CLOSED) {
notice(L10n::t('Account not found and OpenID registration is not permitted on this site.') . EOL);
- $a->redirect();
+ $a->internalRedirect();
}
unset($_SESSION['register']);
$args .= '&openid_url=' . urlencode(notags(trim($authid)));
- $a->redirect('register?' . $args);
+ $a->internalRedirect('register?' . $args);
// NOTREACHED
}
}
notice(L10n::t('Login failed.') . EOL);
- $a->redirect();
+ $a->internalRedirect();
// NOTREACHED
}
if (! local_user()) {
notice(L10n::t('Permission denied.') . EOL);
- $a->redirect('ostatus_subscribe');
+ $a->internalRedirect('ostatus_subscribe');
// NOTREACHED
}
$album = hex2bin($a->argv[3]);
if ($album === L10n::t('Profile Photos') || $album === 'Contact Photos' || $album === L10n::t('Contact Photos')) {
- $a->redirect($_SESSION['photo_return']);
+ $a->internalRedirect($_SESSION['photo_return']);
return; // NOTREACHED
}
if (!DBA::isResult($r)) {
notice(L10n::t('Album not found.') . EOL);
- $a->redirect($_SESSION['photo_return']);
+ $a->internalRedirect($_SESSION['photo_return']);
return; // NOTREACHED
}
// Check if the user has responded to a delete confirmation query
if (!empty($_REQUEST['canceled'])) {
- $a->redirect($_SESSION['photo_return']);
+ $a->internalRedirect($_SESSION['photo_return']);
}
// RENAME photo album
// Update the photo albums cache
Photo::clearAlbumCache($page_owner_uid);
- $a->redirect('photos/' . $a->user['nickname'] . '/album/' . bin2hex($newalbum));
+ $a->internalRedirect('photos/' . $a->user['nickname'] . '/album/' . bin2hex($newalbum));
return; // NOTREACHED
}
$res[] = "'" . DBA::escape($rr['rid']) . "'" ;
}
} else {
- $a->redirect($_SESSION['photo_return']);
+ $a->internalRedirect($_SESSION['photo_return']);
return; // NOTREACHED
}
Photo::clearAlbumCache($page_owner_uid);
}
- $a->redirect('photos/' . $a->data['user']['nickname']);
+ $a->internalRedirect('photos/' . $a->data['user']['nickname']);
return; // NOTREACHED
}
// Check if the user has responded to a delete confirmation query for a single photo
if ($a->argc > 2 && !empty($_REQUEST['canceled'])) {
- $a->redirect($_SESSION['photo_return']);
+ $a->internalRedirect($_SESSION['photo_return']);
}
if ($a->argc > 2 && defaults($_POST, 'delete', '') === L10n::t('Delete Photo')) {
Photo::clearAlbumCache($page_owner_uid);
}
- $a->redirect('photos/' . $a->data['user']['nickname']);
+ $a->internalRedirect('photos/' . $a->data['user']['nickname']);
return; // NOTREACHED
}
}
}
}
- $a->redirect($_SESSION['photo_return']);
+ $a->internalRedirect($_SESSION['photo_return']);
return; // NOTREACHED
}
// addon uploaders should call "killme()" [e.g. exit] within the photo_post_end hook
// if they do not wish to be redirected
- $a->redirect($_SESSION['photo_return']);
+ $a->internalRedirect($_SESSION['photo_return']);
// NOTREACHED
}
} else {
$r = q("SELECT `nickname` FROM `user` WHERE `blocked` = 0 AND `account_expired` = 0 AND `account_removed` = 0 AND `verified` = 1 ORDER BY RAND() LIMIT 1");
if (DBA::isResult($r)) {
- $a->redirect('profile/' . $r[0]['nickname']);
+ $a->internalRedirect('profile/' . $r[0]['nickname']);
} else {
logger('profile error: mod_profile ' . $a->query_string, LOGGER_DEBUG);
notice(L10n::t('Requested profile is not available.') . EOL);
$r = q("SELECT * FROM `photo` WHERE `resource-id` = '%s' AND `uid` = %d AND `scale` = %d LIMIT 1", DBA::escape($image_id),
DBA::escape(local_user()), intval($scale));
- $url = System::baseUrl() . '/profile/' . $a->user['nickname'];
+ $url = 'profile/' . $a->user['nickname'];
if (DBA::isResult($r)) {
$base_image = $r[0];
}
}
- $a->redirect($url);
+ $a->internalRedirect($url);
return; // NOTREACHED
}
@unlink($src);
$imagecrop = profile_photo_crop_ui_head($a, $ph);
- $a->redirect('profile_photo/use/' . $imagecrop['hash']);
+ $a->internalRedirect('profile_photo/use/' . $imagecrop['hash']);
}
function profile_photo_content(App $a)
Worker::add(PRIORITY_LOW, "Directory", $url);
}
- $a->redirect('profile/' . $a->user['nickname']);
+ $a->internalRedirect('profile/' . $a->user['nickname']);
return; // NOTREACHED
}
$ph = new Image($r[0]['data'], $r[0]['type']);
);
if (! DBA::isResult($r)) {
notice(L10n::t('Profile not found.') . EOL);
- $a->redirect('profiles');
+ $a->internalRedirect('profiles');
return; // NOTREACHED
}
info(L10n::t('Profile deleted.').EOL);
}
- $a->redirect('profiles');
+ $a->internalRedirect('profiles');
return; // NOTREACHED
}
info(L10n::t('New profile created.') . EOL);
if (DBA::isResult($r3) && count($r3) == 1) {
- $a->redirect('profiles/' . $r3[0]['id']);
+ $a->internalRedirect('profiles/' . $r3[0]['id']);
}
- $a->redirect('profiles');
+ $a->internalRedirect('profiles');
}
if (($a->argc > 2) && ($a->argv[1] === 'clone')) {
);
info(L10n::t('New profile created.') . EOL);
if ((DBA::isResult($r3)) && (count($r3) == 1)) {
- $a->redirect('profiles/'.$r3[0]['id']);
+ $a->internalRedirect('profiles/'.$r3[0]['id']);
}
- $a->redirect('profiles');
+ $a->internalRedirect('profiles');
return; // NOTREACHED
}
);
if (DBA::isResult($r)) {
//Go to the default profile.
- $a->redirect('profiles/' . $r[0]['id']);
+ $a->internalRedirect('profiles/' . $r[0]['id']);
}
}
$x = GContact::getRandomUrl();
if ($x) {
- $a->redirect(Contact::magicLink($x));
+ $a->internalRedirect(Contact::magicLink($x));
}
- $a->redirect('profile');
+ $a->internalRedirect('profile');
}
$contact = DBA::selectFirst('contact', $fields, ['id' => $cid, 'uid' => [0, local_user()]]);
if (!DBA::isResult($contact)) {
notice(L10n::t('Contact not found.'));
- $a->redirect();
+ $a->internalRedirect();
}
$contact_url = $contact['url'];
|| (!local_user() && !remote_user()) // Visitors (not logged in or not remotes) can't authenticate.
|| (!empty($a->contact['id']) && $a->contact['id'] == $cid)) // Local user is already authenticated.
{
- $a->redirect($url != '' ? $url : $contact_url);
+ System::externalRedirect($url != '' ? $url : $contact_url);
}
if ($contact['uid'] == 0 && local_user()) {
// Local user is already authenticated.
$target_url = $url != '' ? $url : $contact_url;
logger($contact['name'] . " is already authenticated. Redirecting to " . $target_url, LOGGER_DEBUG);
- $a->redirect($target_url);
+ System::externalRedirect($target_url);
}
}
if (remote_user()) {
- $host = substr(System::baseUrl() . ($a->getURLPath() ? '/' . $a->getURLPath() : ''), strpos(System::baseUrl(), '://') + 3);
+ $host = substr($a->getBaseURL() . ($a->getURLPath() ? '/' . $a->getURLPath() : ''), strpos($a->getBaseURL(), '://') + 3);
$remotehost = substr($contact['addr'], strpos($contact['addr'], '@') + 1);
// On a local instance we have to check if the local user has already authenticated
// Remote user is already authenticated.
$target_url = $url != '' ? $url : $contact_url;
logger($contact['name'] . " is already authenticated. Redirecting to " . $target_url, LOGGER_DEBUG);
- $a->redirect($target_url);
+ System::externalRedirect($target_url);
}
}
}
$dest = (!empty($url) ? '&destination_url=' . $url : '');
- $a->redirect($contact['poll'] . '?dfrn_id=' . $dfrn_id
+ System::externalRedirect($contact['poll'] . '?dfrn_id=' . $dfrn_id
. '&dfrn_version=' . DFRN_PROTOCOL_VERSION . '&type=profile&sec=' . $sec . $dest . $quiet);
}
}
logger('redirecting to ' . $url, LOGGER_DEBUG);
- $a->redirect($url);
+ $a->internalRedirect($url);
}
notice(L10n::t('Contact not found.'));
- $a->redirect();
+ $a->internalRedirect();
}
if ($res) {
info(L10n::t('Registration successful. Please check your email for further instructions.') . EOL);
- $a->redirect();
+ $a->internalRedirect();
} else {
notice(
L10n::t('Failed to send email message. Here your accout details:<br> login: %s<br> password: %s<br><br>You can change your password after login.',
}
} else {
info(L10n::t('Registration successful.') . EOL);
- $a->redirect();
+ $a->internalRedirect();
}
} elseif (intval(Config::get('config', 'register_policy')) === REGISTER_APPROVE) {
if (!strlen(Config::get('config', 'admin_email'))) {
notice(L10n::t('Your registration can not be processed.') . EOL);
- $a->redirect();
+ $a->internalRedirect();
}
Model\Register::createForApproval($user['uid'], Config::get('system', 'language'), $_POST['permonlybox']);
);
info(L10n::t('Your registration is pending approval by the site owner.') . EOL);
- $a->redirect();
+ $a->internalRedirect();
}
return;
if ($cmd === 'deny') {
user_deny($hash);
- $a->redirect('admin/users/');
+ $a->internalRedirect('admin/users/');
}
if ($cmd === 'allow') {
user_allow($hash);
- $a->redirect('admin/users/');
+ $a->internalRedirect('admin/users/');
}
}
function removeme_content(App $a)
{
if (!local_user()) {
- $a->redirect();
+ $a->internalRedirect();
}
$hash = random_string();
if (! local_user()) {
notice(L10n::t('Permission denied.') . EOL);
- $a->redirect('ostatus_repair');
+ $a->internalRedirect('ostatus_repair');
// NOTREACHED
}
$key = $_POST['remove'];
DBA::delete('tokens', ['id' => $key, 'uid' => local_user()]);
- $a->redirect('settings/oauth/', true);
+ $a->internalRedirect('settings/oauth/', true);
return;
}
);
}
}
- $a->redirect('settings/oauth/', true);
+ $a->internalRedirect('settings/oauth/', true);
return;
}
);
Addon::callHooks('display_settings_post', $_POST);
- $a->redirect('settings/display');
+ $a->internalRedirect('settings/display');
return; // NOTREACHED
}
if (x($_POST,'resend_relocate')) {
Worker::add(PRIORITY_HIGH, 'Notifier', 'relocate', local_user());
info(L10n::t("Relocate message has been send to your contacts"));
- $a->redirect('settings');
+ $a->internalRedirect('settings');
}
Addon::callHooks('settings_post', $_POST);
// Update the global contact for the user
GContact::updateForUser(local_user());
- $a->redirect('settings');
+ $a->internalRedirect('settings');
return; // NOTREACHED
}
BaseModule::checkFormSecurityTokenRedirectOnError('/settings/oauth', 'settings_oauth', 't');
DBA::delete('clients', ['client_id' => $a->argv[3], 'uid' => local_user()]);
- $a->redirect('settings/oauth/', true);
+ $a->internalRedirect('settings/oauth/', true);
return;
}
$legacy_contact = PConfig::get(local_user(), 'ostatus', 'legacy_contact');
if (x($legacy_contact)) {
- /// @todo Isn't it supposed to be a $a->redirect() call?
+ /// @todo Isn't it supposed to be a $a->internalRedirect() call?
$a->page['htmlhead'] = '<meta http-equiv="refresh" content="0; URL=' . System::baseUrl().'/ostatus_subscribe?url=' . urlencode($legacy_contact) . '">';
}
$rand = "?$rand";
}
- $a->redirect($return_path . $rand);
+ $a->internalRedirect($return_path . $rand);
}
// the json doesn't really matter, it will either be 0 or 1
function tagrm_post(App $a)
{
if (!local_user()) {
- $a->redirect($_SESSION['photo_return']);
+ $a->internalRedirect($_SESSION['photo_return']);
}
if (x($_POST,'submit') && ($_POST['submit'] === L10n::t('Cancel'))) {
- $a->redirect($_SESSION['photo_return']);
+ $a->internalRedirect($_SESSION['photo_return']);
}
$tag = (x($_POST,'tag') ? hex2bin(notags(trim($_POST['tag']))) : '');
$item = Item::selectFirst(['tag'], ['id' => $item_id, 'uid' => local_user()]);
if (!DBA::isResult($item)) {
- $a->redirect($_SESSION['photo_return']);
+ $a->internalRedirect($_SESSION['photo_return']);
}
$arr = explode(',', $item['tag']);
Item::update(['tag' => $tag_str], ['id' => $item_id]);
info(L10n::t('Tag removed') . EOL );
- $a->redirect($_SESSION['photo_return']);
+ $a->internalRedirect($_SESSION['photo_return']);
// NOTREACHED
}
$o = '';
if (!local_user()) {
- $a->redirect($_SESSION['photo_return']);
+ $a->internalRedirect($_SESSION['photo_return']);
// NOTREACHED
}
$item_id = (($a->argc > 1) ? intval($a->argv[1]) : 0);
if (!$item_id) {
- $a->redirect($_SESSION['photo_return']);
+ $a->internalRedirect($_SESSION['photo_return']);
// NOTREACHED
}
$item = Item::selectFirst(['tag'], ['id' => $item_id, 'uid' => local_user()]);
if (!DBA::isResult($item)) {
- $a->redirect($_SESSION['photo_return']);
+ $a->internalRedirect($_SESSION['photo_return']);
}
$arr = explode(',', $item['tag']);
if (!count($arr)) {
- $a->redirect($_SESSION['photo_return']);
+ $a->internalRedirect($_SESSION['photo_return']);
}
$o .= '<h3>' . L10n::t('Remove Item Tag') . '</h3>';
$address = '';
}
- $a->redirect($address);
+ $a->internalRedirect($address);
}
if (!local_user()) {
notice(L10n::t('Permission denied.'));
- $a->redirect('login');
+ $a->internalRedirect('login');
// NOTREACHED
}
if (!DBA::isResult($contact)) {
notice(L10n::t("You aren't following this contact."));
- $a->redirect($return_url);
+ $a->internalRedirect($return_url);
// NOTREACHED
}
if (!empty($_REQUEST['cancel'])) {
- $a->redirect($return_url . '/' . $contact['id']);
+ $a->internalRedirect($return_url . '/' . $contact['id']);
}
if (!in_array($contact['network'], Protocol::NATIVE_SUPPORT)) {
notice(L10n::t('Unfollowing is currently not supported by your network.'));
- $a->redirect($return_url . '/' . $contact['id']);
+ $a->internalRedirect($return_url . '/' . $contact['id']);
// NOTREACHED
}
}
info(L10n::t('Contact unfollowed'));
- $a->redirect($return_path);
+ $a->internalRedirect($return_path);
// NOTREACHED
}
if (!local_user()) {
notice(L10n::t('Permission denied.'));
- $a->redirect('login');
+ $a->internalRedirect('login');
// NOTREACHED
}
if (!DBA::isResult($contact)) {
notice(L10n::t("You aren't following this contact."));
- $a->redirect($return_url);
+ $a->internalRedirect($return_url);
// NOTREACHED
}
if (!in_array($contact['network'], Protocol::NATIVE_SUPPORT)) {
notice(L10n::t('Unfollowing is currently not supported by your network.'));
- $a->redirect('contact/' . $contact['id']);
+ $a->internalRedirect('contact/' . $contact['id']);
// NOTREACHED
}
if (!DBA::isResult($self)) {
notice(L10n::t('Permission denied.'));
- $a->redirect($return_url);
+ $a->internalRedirect($return_url);
// NOTREACHED
}
$owner_uid = $a->data['user']['uid'];
if (local_user() != $owner_uid) {
- $a->redirect('videos/' . $a->data['user']['nickname']);
+ $a->internalRedirect('videos/' . $a->data['user']['nickname']);
}
if (($a->argc == 2) && !empty($_POST['delete']) && !empty($_POST['id'])) {
// Check if we should do HTML-based delete confirmation
if (empty($_REQUEST['confirm'])) {
if (!empty($_REQUEST['canceled'])) {
- $a->redirect('videos/' . $a->data['user']['nickname']);
+ $a->internalRedirect('videos/' . $a->data['user']['nickname']);
}
$drop_url = $a->query_string;
}
}
- $a->redirect('videos/' . $a->data['user']['nickname']);
+ $a->internalRedirect('videos/' . $a->data['user']['nickname']);
return; // NOTREACHED
}
- $a->redirect('videos/' . $a->data['user']['nickname']);
+ $a->internalRedirect('videos/' . $a->data['user']['nickname']);
}
function videos_content(App $a)
info(L10n::t('Message sent.') . EOL);
}
- $a->redirect('profile/'.$user['nickname']);
+ $a->internalRedirect('profile/'.$user['nickname']);
}
}
/**
- * Redirects to another URL and exits this process.
+ * Redirects to another service relative to the current Friendica base.
+ * If you want to redirect to a external URL, use System::externalRedirectTo()
*
* @param string $toUrl The destination URL (Default is empty, which is the default page of the Friendica node)
* @param bool $ssl if true, base URL will try to get called with https:// (works just for relative paths)
+ *
+ * @throws InternalServerErrorException In Case the given URL is not relative to the Friendica node
*/
- public function redirect($toUrl = '', $ssl = false)
+ public function internalRedirect($toUrl = '', $ssl = false)
{
- if (strstr(normalise_link($toUrl), 'http://')) {
- $redirectTo = $toUrl;
- } else {
- $redirectTo = self::getApp()->getBaseURL($ssl) . '/' . ltrim($toUrl, '/');
+ if (filter_var($toUrl, FILTER_VALIDATE_URL)) {
+ throw new InternalServerErrorException('URL is not a relative path, please use System::externalRedirectTo');
}
- header("Location: $redirectTo");
- exit();
+ $redirectTo = $this->getBaseURL($ssl) . '/' . ltrim($toUrl, '/');
+ System::externalRedirect($redirectTo);
}
}
public static function post()
{
// $a = self::getApp();
- // $a->redirect('module');
+ // $a->internalRedirect('module');
}
/**
logger('checkFormSecurityToken failed: user ' . $a->user['guid'] . ' - form element ' . $typename);
logger('checkFormSecurityToken failed: _REQUEST data: ' . print_r($_REQUEST, true), LOGGER_DATA);
notice(self::getFormSecurityStandardErrorMessage());
- goaway(System::baseUrl() . $err_redirect);
+ $a->internalRedirect($err_redirect);
}
}
Addon::callHooks('logged_in', $a->user);
if (($a->module !== 'home') && isset($_SESSION['return_url'])) {
- goaway($a->getbaseUrl() . '/' . $_SESSION['return_url']);
+ $a->internalRedirect($_SESSION['return_url']);
}
}
}
namespace Friendica\Core;
use Friendica\BaseObject;
+use Friendica\Network\HTTPException\InternalServerErrorException;
use Friendica\Util\XML;
/**
return max($load_arr[0], $load_arr[1]);
}
+ /**
+ * Redirects to an external URL (fully qualified URL)
+ * If you want to route relative to the current Friendica base, use App->internalRedirect()
+ *
+ * @param string $url The new Location to redirect
+ * @throws InternalServerErrorException If the URL is not fully qualified
+ */
+ public static function externalRedirect($url)
+ {
+ if (!filter_var($url, FILTER_VALIDATE_URL)) {
+ throw new InternalServerErrorException('URL is not a fully qualified URL, please use App->internalRedirect() instead');
+ }
+
+ header("Location: $url");
+ exit();
+ }
+
/// @todo Move the following functions from boot.php
/*
function killme()
Worker::add(PRIORITY_HIGH, 'Notifier', 'relocate', $newuid);
info(L10n::t("Done. You can now login with your username and password"));
- $a->redirect('login');
+ $a->internalRedirect('login');
}
}
$myaddr = bin2hex($a->user['nickname'] . '@' . $a->getHostName());
}
- $a->redirect($ret['request'] . "&addr=$myaddr");
+ $a->internalRedirect($ret['request'] . "&addr=$myaddr");
// NOTREACHED
}
* @brief Returns a magic link to authenticate remote visitors
*
* @param string $contact_url The address of the target contact profile
- * @param integer $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
*
* @return string with "redir" link
*/
* @brief Returns a magic link to authenticate remote visitors
*
* @param array $contact The contact array with "uid", "network" and "url"
- * @param integer $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
*
* @return string with "redir" link
*/
$serverret = Network::curl($basepath . '/magic');
if ($serverret->isSuccess()) {
logger('Doing magic auth for visitor ' . $my_url . ' to ' . $magic_path, LOGGER_DEBUG);
- $a->redirect($magic_path);
+ System::externalRedirect($magic_path);
}
}
}
} catch (Exception $e) {
throw new Exception(L10n::t('We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID.') . EOL . EOL . L10n::t('The error message was:') . $e->getMessage(), 0, $e);
}
- $a->redirect($authurl);
+ System::externalRedirect($authurl);
// NOTREACHED
}
if ($uid == local_user()) {
unset($_SESSION['authenticated']);
unset($_SESSION['uid']);
- $a->redirect();
+ $a->internalRedirect();
}
}
}
use Friendica\BaseModule;
use Friendica\Network\Probe;
+use Friendica\Core\System;
/**
* Redirects to another URL based on the parameter 'addr'
$url = defaults(Probe::uri(trim($addr)), 'url', false);
if ($url) {
- self::getApp()->redirect($url);
+ System::externalRedirect($url);
exit();
}
}
if (DBA::isResult($contact)) {
if ($contact['self']) {
if (($a->argc == 3) && intval($a->argv[1]) && in_array($a->argv[2], ['posts', 'conversations'])) {
- $a->redirect('profile/' . $contact['nick']);
+ $a->internalRedirect('profile/' . $contact['nick']);
} else {
- $a->redirect('profile/' . $contact['nick'] . '?tab=profile');
+ $a->internalRedirect('profile/' . $contact['nick'] . '?tab=profile');
}
}
info(L10n::tt('%d contact edited.', '%d contacts edited.', $count_actions));
}
- $a->redirect('contact');
+ $a->internalRedirect('contact');
}
public static function post()
if (!DBA::exists('contact', ['id' => $contact_id, 'uid' => local_user()])) {
notice(L10n::t('Could not access contact record.') . EOL);
- $a->redirect('contact');
+ $a->internalRedirect('contact');
return; // NOTREACHED
}
$orig_record = DBA::selectFirst('contact', [], ['id' => $contact_id, 'uid' => [0, local_user()], 'self' => false]);
if (!DBA::isResult($orig_record)) {
notice(L10n::t('Could not access contact record.') . EOL);
- $a->redirect('contact');
+ $a->internalRedirect('contact');
return; // NOTREACHED
}
if ($cmd === 'update' && ($orig_record['uid'] != 0)) {
self::updateContactFromPoll($contact_id);
- $a->redirect('contact/' . $contact_id);
+ $a->internalRedirect('contact/' . $contact_id);
// NOTREACHED
}
if ($cmd === 'updateprofile' && ($orig_record['uid'] != 0)) {
self::updateContactFromProbe($contact_id);
- $a->redirect('crepair/' . $contact_id);
+ $a->internalRedirect('crepair/' . $contact_id);
// NOTREACHED
}
$blocked = Model\Contact::isBlockedByUser($contact_id, local_user());
info(($blocked ? L10n::t('Contact has been blocked') : L10n::t('Contact has been unblocked')) . EOL);
- $a->redirect('contact/' . $contact_id);
+ $a->internalRedirect('contact/' . $contact_id);
return; // NOTREACHED
}
$ignored = Model\Contact::isIgnoredByUser($contact_id, local_user());
info(($ignored ? L10n::t('Contact has been ignored') : L10n::t('Contact has been unignored')) . EOL);
- $a->redirect('contact/' . $contact_id);
+ $a->internalRedirect('contact/' . $contact_id);
return; // NOTREACHED
}
info((($archived) ? L10n::t('Contact has been archived') : L10n::t('Contact has been unarchived')) . EOL);
}
- $a->redirect('contact/' . $contact_id);
+ $a->internalRedirect('contact/' . $contact_id);
return; // NOTREACHED
}
}
// Now check how the user responded to the confirmation query
if (!empty($_REQUEST['canceled'])) {
- $a->redirect('contact');
+ $a->internalRedirect('contact');
}
self::dropContact($orig_record);
info(L10n::t('Contact has been removed.') . EOL);
- $a->redirect('contact');
+ $a->internalRedirect('contact');
return; // NOTREACHED
}
if ($cmd === 'posts') {
}
if (local_user()) {
- $a->redirect();
+ $a->internalRedirect();
}
return self::form($_SESSION['return_url'], intval(Config::get('config', 'register_policy')) !== REGISTER_CLOSED);
// if it's an email address or doesn't resolve to a URL, fail.
if ($noid || strpos($openid_url, '@') || !Network::isUrlValid($openid_url)) {
notice(L10n::t('Login failed.') . EOL);
- $a->redirect();
+ $a->internalRedirect();
// NOTREACHED
}
// Otherwise it's probably an openid.
try {
- $a = get_app();
$openid = new LightOpenID($a->getHostName());
$openid->identity = $openid_url;
$_SESSION['openid'] = $openid_url;
$_SESSION['remember'] = $remember;
- $openid->returnUrl = self::getApp()->getBaseURL(true) . '/openid';
- $a->redirect($openid->authUrl());
+ $openid->returnUrl = $a->getBaseURL(true) . '/openid';
+ System::externalRedirect($openid->authUrl());
} catch (Exception $e) {
notice(L10n::t('We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID.') . '<br /><br >' . L10n::t('The error message was:') . ' ' . $e->getMessage());
}
} catch (Exception $e) {
logger('authenticate: failed login attempt: ' . notags($username) . ' from IP ' . $_SERVER['REMOTE_ADDR']);
info('Login failed. Please check your credentials.' . EOL);
- $a->redirect();
+ $a->internalRedirect();
}
if (!$remember) {
$return_url = '';
}
- $a->redirect($return_url);
+ $a->internalRedirect($return_url);
}
/**
if ($data->hash != Authentication::getCookieHashForUser($user)) {
logger("Hash for user " . $data->uid . " doesn't fit.");
Authentication::deleteSession();
- $a->redirect();
+ $a->internalRedirect();
}
// Renew the cookie
logger('Session address changed. Paranoid setting in effect, blocking session. ' .
$_SESSION['addr'] . ' != ' . $_SERVER['REMOTE_ADDR']);
Authentication::deleteSession();
- $a->redirect();
+ $a->internalRedirect();
}
$user = DBA::selectFirst('user', [],
);
if (!DBA::isResult($user)) {
Authentication::deleteSession();
- $a->redirect();
+ $a->internalRedirect();
}
// Make sure to refresh the last login time for the user if the user
Addon::callHooks("logging_out");
Authentication::deleteSession();
info(L10n::t('Logged out.') . EOL);
- self::getApp()->redirect();
+ self::getApp()->internalRedirect();
}
}
if (!$cid) {
logger('No contact record found: ' . print_r($_REQUEST, true), LOGGER_DEBUG);
- $a->redirect($dest);
+ $a->internalRedirect($dest);
}
$contact = DBA::selectFirst('contact', ['id', 'nurl', 'url'], ['id' => $cid]);
}
logger('Contact is already authenticated', LOGGER_DEBUG);
- $a->redirect($dest);
+ $a->internalRedirect($dest);
}
if (local_user()) {
$x = strpbrk($dest, '?&');
$args = (($x) ? '&owt=' . $token : '?f=&owt=' . $token);
- $a->redirect($dest . $args);
+ $a->internalRedirect($dest . $args);
}
}
- $a->redirect($dest);
+ $a->internalRedirect($dest);
}
}
return $ret;
}
- $a->redirect($dest);
+ $a->internalRedirect($dest);
}
}
}
if (!ActivityPub::isRequest()) {
- $a->redirect(str_replace('objects/', 'display/', $a->query_string));
+ $a->internalRedirect(str_replace('objects/', 'display/', $a->query_string));
}
$item = Item::selectFirst(['id'], ['guid' => $a->argv[1], 'wall' => true, 'private' => false]);
public static function init()
{
if (strlen(Config::get('system','singleuser'))) {
- self::getApp()->redirect('profile/' . Config::get('system','singleuser'));
+ self::getApp()->internalRedirect('profile/' . Config::get('system','singleuser'));
}
}
/**
logger('auto_redir: ' . $r[0]['name'] . ' ' . $sec, LOGGER_DEBUG);
$dest = (($url) ? '&destination_url=' . $url : '');
- $a->redirect($r[0]['poll'] . '?dfrn_id=' . $dfrn_id
+ System::externalRedirect($r[0]['poll'] . '?dfrn_id=' . $dfrn_id
. '&dfrn_version=' . DFRN_PROTOCOL_VERSION . '&type=profile&sec=' . $sec . $dest);
}