]> BookStack Code Mirror - bookstack/blobdiff - app/Comment.php
Finished migration of last angular code
[bookstack] / app / Comment.php
index 34abdcf29d7a98a9d583c9bd6af7043db9c2556d..2800ab21ad3d07a3fca32e28f045eccfad71b787 100644 (file)
@@ -1,12 +1,10 @@
-<?php
-
-namespace BookStack;
-use Illuminate\Support\Facades\DB;
+<?php namespace BookStack;
 
 class Comment extends Ownable
 {
     protected $fillable = ['text', 'html', 'parent_id'];
     protected $appends = ['created', 'updated'];
+
     /**
      * Get the entity that this comment belongs to
      * @return \Illuminate\Database\Eloquent\Relations\MorphTo
@@ -17,59 +15,29 @@ class Comment extends Ownable
     }
 
     /**
-     * Get the page that this comment is in.
-     * @return \Illuminate\Database\Eloquent\Relations\BelongsTo
+     * Check if a comment has been updated since creation.
+     * @return bool
      */
-    public function page()
+    public function isUpdated()
     {
-        return $this->belongsTo(Page::class);
+        return $this->updated_at->timestamp > $this->created_at->timestamp;
     }
 
     /**
-     * Get the owner of this comment.
-     * @return \Illuminate\Database\Eloquent\Relations\BelongsTo
+     * Get created date as a relative diff.
+     * @return mixed
      */
-    public function user()
+    public function getCreatedAttribute()
     {
-        return $this->belongsTo(User::class);
-    }
-
-    public function getCommentsByPage($pageId, $commentId, $pageNum = 0, $limit = 0) {
-
-        $query = static::newQuery();
-        $query->join('users AS u', 'comments.created_by', '=', 'u.id');
-        $query->leftJoin('users AS u1', 'comments.updated_by', '=', 'u1.id');
-        $query->leftJoin('images AS i', 'i.id', '=', 'u.image_id');
-        $query->selectRaw('comments.id, text, html, comments.created_by, comments.updated_by, comments.created_at, comments.updated_at, '
-                . 'u.name AS created_by_name, u1.name AS updated_by_name, '
-                . '(SELECT count(c.id) FROM bookstack.comments c WHERE c.parent_id = comments.id AND page_id = ?) AS cnt_sub_comments, i.url AS avatar ',
-                [$pageId]);
-
-        if (empty($commentId)) {
-            $query->whereRaw('page_id = ? AND parent_id IS NULL', [$pageId]);
-        } else {
-            $query->whereRaw('page_id = ? AND parent_id = ?', [$pageId, $commentId]);
-        }
-        $query->orderBy('created_at');
-        return $query;
+        return $this->created_at->diffForHumans();
     }
 
-    public function getCreatedAttribute() {
-        $created = [
-            'day_time_str' => $this->created_at->toDayDateTimeString(),
-            'diff' => $this->created_at->diffForHumans()
-        ];
-        return $created;
-    }
-
-    public function getUpdatedAttribute() {
-        if (empty($this->updated_at)) {
-            return null;
-        }
-        $updated = [
-            'day_time_str' => $this->updated_at->toDayDateTimeString(),
-            'diff' => $this->updated_at->diffForHumans()
-        ];
-        return $updated;
+    /**
+     * Get updated date as a relative diff.
+     * @return mixed
+     */
+    public function getUpdatedAttribute()
+    {
+        return $this->updated_at->diffForHumans();
     }
 }