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/post/main.php | 90 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 90 insertions(+) create mode 100644 core/include/post/main.php (limited to 'core/include/post/main.php') diff --git a/core/include/post/main.php b/core/include/post/main.php new file mode 100644 index 0000000..46937f3 --- /dev/null +++ b/core/include/post/main.php @@ -0,0 +1,90 @@ +attr('user')); + + $post_data = generatePostItemData($Post); + $user_data = generateUserItemData($User); + + #=============================================================================== + # Add post data for previous and next post + #=============================================================================== + try { + $PrevPost = Post\Factory::build($Post->getPrevID()); + $post_data['PREV'] = generatePostItemData($PrevPost); + } catch(Post\Exception $Exception){} + + try { + $NextPost = Post\Factory::build($Post->getNextID()); + $post_data['NEXT'] = generatePostItemData($NextPost); + } catch(Post\Exception $Exception){} + + #=============================================================================== + # TRY: Template\Exception + #=============================================================================== + try { + $PostTemplate = Template\Factory::build('post/main'); + $PostTemplate->set('POST', $post_data); + $PostTemplate->set('USER', $user_data); + + $MainTemplate = Template\Factory::build('main'); + $MainTemplate->set('HTML', $PostTemplate); + $MainTemplate->set('HEAD', [ + 'NAME' => $post_data['ATTR']['NAME'], + 'DESC' => cut(removeLineBreaksAndTabs(removeHTML($post_data['BODY']['HTML']), ' '), Application::get('POST.DESCRIPTION_SIZE')), + 'PERM' => $post_data['URL'], + 'OG_IMAGES' => $post_data['FILE']['LIST'] + ]); + + echo $MainTemplate; + } + + #=============================================================================== + # CATCH: Template\Exception + #=============================================================================== + catch(Template\Exception $Exception) { + Application::exit($Exception->getMessage()); + } +} + +#=============================================================================== +# CATCH: Post\Exception +#=============================================================================== +catch(Post\Exception $Exception) { + try { + if(Application::get('POST.SLUG_URLS') === FALSE) { + $Post = Post\Factory::buildBySlug($param); + } else { + $Post = Post\Factory::build($param); + } + + HTTP::redirect($Post->getURL()); + } + + catch(Post\Exception $Exception) { + Application::error404(); + } +} + +#=============================================================================== +# CATCH: User\Exception +#=============================================================================== +catch(User\Exception $Exception) { + Application::exit($Exception->getMessage()); +} \ No newline at end of file -- cgit v1.2.3