forked from DallasMuseumArt/OctoberFriends
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBookmark.php
82 lines (69 loc) · 1.93 KB
/
Bookmark.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<?php namespace DMA\Friends\Models;
use DateTime;
use Model;
use RainLab\User\Models\User;
use DMA\Friends\Models\Bookmark;
/**
* Bookmark Model
*/
class Bookmark extends Model
{
/**
* @var string The database table used by the model.
*/
public $table = 'dma_friends_bookmarks';
public $timestamps = false;
protected $dates = ['created_at'];
/**
* @var array Guarded fields
*/
protected $guarded = ['*'];
/**
* @var array Fillable fields
*/
protected $fillable = ['user', 'object'];
/**
* @var array Relations
*/
public $belongsTo = [
'user' => ['\RainLab\User\Models\User']
];
public $morphTo = [
'object' => ['id' => 'object_id'],
];
public function setCreatedAtAttribute($value)
{
return new DateTime('now');
}
public static function findBookmark($user, $object)
{
$bookmark = self::where('user_id', '=', $user->id)
->where('object_id', '=', $object->id)
->where('object_type', '=', get_class($object))
->first();
return $bookmark;
}
public static function saveBookmark(User $user, $object)
{
if(is_null($bookmark = static::findBookmark($user, $object)))
{
$bookmark = new Bookmark();
$object->bookmarks()->save($bookmark);
$user->bookmarks()->save($bookmark);
// Silly hack to tell if is a new bookmark
$bookmark->isNew = true;
}else{
// Mark as old bookmark
$bookmark->isNew = false;
}
return $bookmark;
}
public static function removeBookmark(User $user, $object)
{
$affectedRows = self::where('user_id', '=', $user->id)
->where('object_id', '=', $object->id)
->where('object_type', '=', get_class($object))
->delete();
return $affectedRows > 0;
}
}