summaryrefslogtreecommitdiffstats
path: root/system/post
diff options
context:
space:
mode:
authorThomas Lange <code@nerdmind.de>2017-02-24 21:27:59 +0100
committerThomas Lange <code@nerdmind.de>2017-02-24 21:27:59 +0100
commit52b077a48c743ba4d08ac00520a0bf1ef6deef5f (patch)
treeb4205c194167e0e03e273957cdd0aab3be9fdf01 /system/post
downloadblog-6442789bf36c04639bf5f104ea963937717a39b5.tar.gz
blog-6442789bf36c04639bf5f104ea963937717a39b5.tar.xz
blog-6442789bf36c04639bf5f104ea963937717a39b5.zip
Initial commit.v1.0
Diffstat (limited to 'system/post')
-rw-r--r--system/post/list.php64
-rw-r--r--system/post/main.php89
2 files changed, 153 insertions, 0 deletions
diff --git a/system/post/list.php b/system/post/list.php
new file mode 100644
index 0000000..a7d6ce7
--- /dev/null
+++ b/system/post/list.php
@@ -0,0 +1,64 @@
+<?php
+#===============================================================================
+# INCLUDE: Main configuration
+#===============================================================================
+require_once '../../core/application.php';
+
+$site_size = Application::get('POST.LIST_SIZE');
+$site_sort = Application::get('POST.LIST_SORT');
+
+$lastSite = ceil($Database->query(sprintf('SELECT COUNT(id) FROM %s', Post\Attribute::TABLE))->fetchColumn() / $site_size);
+
+$currentSite = HTTP::GET('site') ?? 1;
+$currentSite = abs(intval($currentSite));
+
+if($currentSite < 1 OR ($currentSite > $lastSite AND $lastSite > 0)) {
+ Application::exit(404);
+}
+
+#===============================================================================
+# TRY: Template\Exception
+#===============================================================================
+try {
+ $execSQL = "SELECT id FROM %s ORDER BY {$site_sort} LIMIT ".(($currentSite-1) * $site_size).", {$site_size}";
+ $postIDs = $Database->query(sprintf($execSQL, Post\Attribute::TABLE))->fetchAll($Database::FETCH_COLUMN);
+
+ foreach($postIDs as $postID) {
+ try {
+ $Post = Post\Factory::build($postID);
+ $User = User\Factory::build($Post->attr('user'));
+
+ $ItemTemplate = generatePostItemTemplate($Post, $User);
+
+ $posts[] = $ItemTemplate;
+ }
+ catch(Post\Exception $Exception){}
+ catch(User\Exception $Exception){}
+ }
+
+ $ListTemplate = Template\Factory::build('post/list');
+ $ListTemplate->set('PAGINATION', [
+ 'THIS' => $currentSite,
+ 'LAST' => $lastSite,
+ 'HTML' => generatePostNaviTemplate($currentSite)
+ ]);
+ $ListTemplate->set('LIST', [
+ 'POSTS' => $posts ?? []
+ ]);
+
+ $MainTemplate = Template\Factory::build('main');
+ $MainTemplate->set('HTML', $ListTemplate);
+ $MainTemplate->set('HEAD', [
+ 'NAME' => $Language->text('title_post_overview', $currentSite)
+ ]);
+
+ echo $MainTemplate;
+}
+
+#===============================================================================
+# CATCH: Template\Exception
+#===============================================================================
+catch(Template\Exception $Exception) {
+ $Exception->defaultHandler();
+}
+?> \ No newline at end of file
diff --git a/system/post/main.php b/system/post/main.php
new file mode 100644
index 0000000..4322f53
--- /dev/null
+++ b/system/post/main.php
@@ -0,0 +1,89 @@
+<?php
+#===============================================================================
+# INCLUDE: Main configuration
+#===============================================================================
+require_once '../../core/application.php';
+
+#===============================================================================
+# TRY: Post\Exception, User\Exception
+#===============================================================================
+try {
+ if(Application::get('POST.SLUG_URLS')) {
+ $Post = Post\Factory::buildBySlug(HTTP::GET('param'));
+ }
+
+ else {
+ $Post = Post\Factory::build(HTTP::GET('param'));
+ }
+
+ $User = User\Factory::build($Post->attr('user'));
+
+ $post_data = generatePostItemData($Post);
+ $user_data = generateUserItemData($User);
+
+ #===============================================================================
+ # Add post data for previous and next post if exists
+ #===============================================================================
+ 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) {
+ $Exception->defaultHandler();
+ }
+}
+
+#===============================================================================
+# CATCH: Post\Exception
+#===============================================================================
+catch(Post\Exception $Exception) {
+ try {
+ if(Application::get('POST.SLUG_URLS') === FALSE) {
+ $Post = Post\Factory::buildBySlug(HTTP::GET('param'));
+ } else {
+ $Post = Post\Factory::build(HTTP::GET('param'));
+ }
+
+ HTTP::redirect($Post->getURL());
+ }
+
+ catch(Post\Exception $Exception) {
+ Application::exit(404);
+ }
+}
+
+#===============================================================================
+# CATCH: User\Exception
+#===============================================================================
+catch(User\Exception $Exception) {
+ exit($Exception->getMessage());
+} \ No newline at end of file