separate parameter values for different functionalities

This commit is contained in:
Michael 2021-10-04 18:04:41 +00:00
parent 9eba41598d
commit b2c2283817
2 changed files with 31 additions and 24 deletions

View File

@ -82,16 +82,21 @@ class Photo extends BaseModule
$square_resize = !in_array($parameters['type'], ['media', 'preview']);
}
if (!empty($parameters['nickname_ext'])) {
if (in_array($parameters['type'], ['contact', 'header'])) {
$guid = pathinfo($parameters['nickname_ext'], PATHINFO_FILENAME);
if (!empty($parameters['guid'])) {
$guid = pathinfo($parameters['guid'], PATHINFO_FILENAME);
$account = DBA::selectFirst('account-user-view', ['id'], ['guid' => $guid], ['order' => ['uid' => true]]);
if (empty($account)) {
throw new HTTPException\NotFoundException();
}
$id = $account['id'];
} else {
}
if (!empty($parameters['contact_id'])) {
$id = intval(pathinfo($parameters['contact_id'], PATHINFO_FILENAME));
}
if (!empty($parameters['nickname_ext'])) {
$nickname = pathinfo($parameters['nickname_ext'], PATHINFO_FILENAME);
$user = User::getByNickname($nickname, ['uid']);
if (empty($user)) {
@ -100,7 +105,6 @@ class Photo extends BaseModule
$id = $user['uid'];
}
}
// User Id Fallback, to remove after version 2021.12
if (!empty($parameters['uid_ext'])) {

View File

@ -378,10 +378,13 @@ return [
// User Id Fallback, to remove after version 2021.12
'/{type}/{uid_ext:\d+\..*}' => [Module\Photo::class, [R::GET]],
'/{type}/{nickname_ext}' => [Module\Photo::class, [R::GET]],
'/{type}/{customsize}/{id:\d+}' => [Module\Photo::class, [R::GET]],
// Contact Id Fallback, to remove after version 2021.12
'/{type:contact|header}/{customsize:\d+}/{contact_id:\d+}' => [Module\Photo::class, [R::GET]],
'/{type:contact|header}/{customsize:\d+}/{guid}' => [Module\Photo::class, [R::GET]],
'/{type}/{customsize:\d+}/{id:\d+}' => [Module\Photo::class, [R::GET]],
// User Id Fallback, to remove after version 2021.12
'/{type}/{customsize}/{uid_ext:\d+\..*}' => [Module\Photo::class, [R::GET]],
'/{type}/{customsize}/{nickname_ext}' => [Module\Photo::class, [R::GET]],
'/{type}/{customsize:\d+}/{uid_ext:\d+\..*}' => [Module\Photo::class, [R::GET]],
'/{type}/{customsize:\d+}/{nickname_ext}' => [Module\Photo::class, [R::GET]],
],
'/pretheme' => [Module\ThemeDetails::class, [R::GET]],