From 85e48b669f65933d5376f9214219c7e5eb10a9e7 Mon Sep 17 00:00:00 2001 From: Thomas Lange Date: Tue, 11 Apr 2017 07:13:13 +0200 Subject: The system directory has been moved to a non-public directory. After the commit e33c245d910e55b8cab407a03e669470509a705d, it is no longer necessary that the directory is publicly accessible via HTTP because all requests are running through the router. --- core/include/user/list.php | 61 +++++++++++++++++++++++++++++ core/include/user/main.php | 98 ++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 159 insertions(+) create mode 100644 core/include/user/list.php create mode 100644 core/include/user/main.php (limited to 'core/include/user') diff --git a/core/include/user/list.php b/core/include/user/list.php new file mode 100644 index 0000000..692bba6 --- /dev/null +++ b/core/include/user/list.php @@ -0,0 +1,61 @@ +query(sprintf('SELECT COUNT(id) FROM %s', User\Attribute::TABLE))->fetchColumn() / $site_size); + +$currentSite = HTTP::GET('site') ?? 1; +$currentSite = abs(intval($currentSite)); + +if($currentSite < 1 OR ($currentSite > $lastSite AND $lastSite > 0)) { + Application::error404(); +} + +#=============================================================================== +# TRY: Template\Exception +#=============================================================================== +try { + $execSQL = "SELECT id FROM %s ORDER BY {$site_sort} LIMIT ".(($currentSite-1) * $site_size).", {$site_size}"; + $userIDs = $Database->query(sprintf($execSQL, User\Attribute::TABLE))->fetchAll($Database::FETCH_COLUMN); + + foreach($userIDs as $userID) { + try { + $User = User\Factory::build($userID); + $ItemTemplate = generateUserItemTemplate($User); + + $users[] = $ItemTemplate; + } catch(User\Exception $Exception){} + } + + $ListTemplate = Template\Factory::build('user/list'); + $ListTemplate->set('PAGINATION', [ + 'THIS' => $currentSite, + 'LAST' => $lastSite, + 'HTML' => generateUserNaviTemplate($currentSite) + ]); + $ListTemplate->set('LIST', [ + 'USERS' => $users ?? [] + ]); + + $MainTemplate = Template\Factory::build('main'); + $MainTemplate->set('HTML', $ListTemplate); + $MainTemplate->set('HEAD', [ + 'NAME' => $Language->text('title_user_overview', $currentSite) + ]); + + echo $MainTemplate; +} + +#=============================================================================== +# CATCH: Template\Exception +#=============================================================================== +catch(Template\Exception $Exception) { + Application::exit($Exception->getMessage()); +} +?> \ No newline at end of file diff --git a/core/include/user/main.php b/core/include/user/main.php new file mode 100644 index 0000000..7944f1f --- /dev/null +++ b/core/include/user/main.php @@ -0,0 +1,98 @@ +getPrevID()); + $user_data['PREV'] = generateUserItemData($PrevUser); + } catch(User\Exception $Exception){} + + try { + $NextUser = User\Factory::build($User->getNextID()); + $user_data['NEXT'] = generateUserItemData($NextUser); + } catch(User\Exception $Exception){} + + #=============================================================================== + # TRY: Template\Exception + #=============================================================================== + try { + #=============================================================================== + # TRY: PDOException + #=============================================================================== + try { + $PostCountStatement = $Database->query(sprintf('SELECT COUNT(*) FROM %s WHERE user = %d', Post\Attribute::TABLE, $User->getID())); + $PageCountStatement = $Database->query(sprintf('SELECT COUNT(*) FROM %s WHERE user = %d', Page\Attribute::TABLE, $User->getID())); + } + + #=============================================================================== + # CATCH: PDOException + #=============================================================================== + catch(PDOException $Exception) { + exit($Exception->getMessage()); + } + + $UserTemplate = Template\Factory::build('user/main'); + $UserTemplate->set('USER', $user_data); + $UserTemplate->set('COUNT', [ + 'POST' => $PostCountStatement->fetchColumn(), + 'PAGE' => $PageCountStatement->fetchColumn() + ]); + + $MainTemplate = Template\Factory::build('main'); + $MainTemplate->set('HTML', $UserTemplate); + $MainTemplate->set('HEAD', [ + 'NAME' => $user_data['ATTR']['FULLNAME'], + 'DESC' => cut(removeLineBreaksAndTabs(removeHTML($user_data['BODY']['HTML']), ' '), Application::get('USER.DESCRIPTION_SIZE')), + 'PERM' => $User->getURL(), + 'OG_IMAGES' => $User->getFiles() + ]); + + echo $MainTemplate; + } + + #=============================================================================== + # CATCH: Template\Exception + #=============================================================================== + catch(Template\Exception $Exception) { + Application::exit($Exception->getMessage()); + } +} + +#=============================================================================== +# CATCH: User\Exception +#=============================================================================== +catch(User\Exception $Exception) { + try { + if(Application::get('USER.SLUG_URLS') === FALSE) { + $User = User\Factory::buildBySlug($param); + } else { + $User = User\Factory::build($param); + } + + HTTP::redirect($User->getURL()); + } + + catch(User\Exception $Exception) { + Application::error404(); + } +} \ No newline at end of file -- cgit v1.2.3