diff options
Diffstat (limited to 'core/include/page')
-rw-r--r-- | core/include/page/list.php | 65 | ||||
-rw-r--r-- | core/include/page/main.php | 90 |
2 files changed, 155 insertions, 0 deletions
diff --git a/core/include/page/list.php b/core/include/page/list.php new file mode 100644 index 0000000..25409e5 --- /dev/null +++ b/core/include/page/list.php @@ -0,0 +1,65 @@ +<?php +#=============================================================================== +# Get instances +#=============================================================================== +$Database = Application::getDatabase(); +$Language = Application::getLanguage(); + +$site_size = Application::get('PAGE.LIST_SIZE'); +$site_sort = Application::get('PAGE.LIST_SORT'); + +$lastSite = ceil($Database->query(sprintf('SELECT COUNT(id) FROM %s', Page\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}"; + $pageIDs = $Database->query(sprintf($execSQL, Page\Attribute::TABLE))->fetchAll($Database::FETCH_COLUMN); + + foreach($pageIDs as $pageID) { + try { + $Page = Page\Factory::build($pageID); + $User = User\Factory::build($Page->attr('user')); + + $ItemTemplate = generatePageItemTemplate($Page, $User); + + $pages[] = $ItemTemplate; + } + catch(Page\Exception $Exception){} + catch(User\Exception $Exception){} + } + + $ListTemplate = Template\Factory::build('page/list'); + $ListTemplate->set('PAGINATION', [ + 'THIS' => $currentSite, + 'LAST' => $lastSite, + 'HTML' => generatePageNaviTemplate($currentSite) + ]); + $ListTemplate->set('LIST', [ + 'PAGES' => $pages ?? [] + ]); + + $MainTemplate = Template\Factory::build('main'); + $MainTemplate->set('HTML', $ListTemplate); + $MainTemplate->set('HEAD', [ + 'NAME' => $Language->text('title_page_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/page/main.php b/core/include/page/main.php new file mode 100644 index 0000000..925d5d9 --- /dev/null +++ b/core/include/page/main.php @@ -0,0 +1,90 @@ +<?php +#=============================================================================== +# Get instances +#=============================================================================== +$Database = Application::getDatabase(); +$Language = Application::getLanguage(); + +#=============================================================================== +# TRY: Page\Exception, User\Exception +#=============================================================================== +try { + if(Application::get('PAGE.SLUG_URLS')) { + $Page = Page\Factory::buildBySlug($param); + } + + else { + $Page = Page\Factory::build($param); + } + + $User = User\Factory::build($Page->attr('user')); + + $page_data = generatePageItemData($Page); + $user_data = generateUserItemData($User); + + #=============================================================================== + # Add page data for previous and next page + #=============================================================================== + try { + $PrevPage = Page\Factory::build($Page->getPrevID()); + $page_data['PREV'] = generatePageItemData($PrevPage); + } catch(Page\Exception $Exception){} + + try { + $NextPage = Page\Factory::build($Page->getNextID()); + $page_data['NEXT'] = generatePageItemData($NextPage); + } catch(Page\Exception $Exception){} + + #=============================================================================== + # TRY: Template\Exception + #=============================================================================== + try { + $PageTemplate = Template\Factory::build('page/main'); + $PageTemplate->set('PAGE', $page_data); + $PageTemplate->set('USER', $user_data); + + $MainTemplate = Template\Factory::build('main'); + $MainTemplate->set('HTML', $PageTemplate); + $MainTemplate->set('HEAD', [ + 'NAME' => $page_data['ATTR']['NAME'], + 'DESC' => cut(removeLineBreaksAndTabs(removeHTML($page_data['BODY']['HTML']), ' '), Application::get('PAGE.DESCRIPTION_SIZE')), + 'PERM' => $page_data['URL'], + 'OG_IMAGES' => $page_data['FILE']['LIST'] + ]); + + echo $MainTemplate; + } + + #=============================================================================== + # CATCH: Template\Exception + #=============================================================================== + catch(Template\Exception $Exception) { + Application::exit($Exception->getMessage()); + } +} + +#=============================================================================== +# CATCH: Page\Exception +#=============================================================================== +catch(Page\Exception $Exception) { + try { + if(Application::get('PAGE.SLUG_URLS') === FALSE) { + $Page = Page\Factory::buildBySlug($param); + } else { + $Page = Page\Factory::build($param); + } + + HTTP::redirect($Page->getURL()); + } + + catch(Page\Exception $Exception) { + Application::error404(); + } +} + +#=============================================================================== +# CATCH: User\Exception +#=============================================================================== +catch(User\Exception $Exception) { + Application::exit($Exception->getMessage()); +}
\ No newline at end of file |