-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathPost.php
103 lines (84 loc) · 2.33 KB
/
Post.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<?php
/**
* Created by PhpStorm.
* User: leeovery
* Date: 18/11/2016
* Time: 16:44
*/
namespace LeeOvery\WordpressToLaravel;
use Cartalyst\Tags\TaggableInterface;
use Cartalyst\Tags\TaggableTrait;
use Illuminate\Database\Eloquent\Builder;
use Illuminate\Database\Eloquent\Model;
class Post extends Model implements TaggableInterface
{
use TaggableTrait;
/**
* The attributes that should be mutated to dates.
*
* @var array
*/
protected $casts = [
'created_at' => 'datetime',
'updated_at' => 'datetime',
'published_at' => 'datetime',
];
/**
* The relations to eager load on every query.
*
* @var array
*/
protected $with = ['tags', 'category', 'author'];
/**
* The attributes that aren't mass assignable.
*
* @var array
*/
protected $guarded = ['id'];
public static function scopeWhereCategory(Builder $query, $category, $type = 'slug')
{
$query->whereHas('category', function ($query) use ($type, $category) {
$query->where($type, $category);
});
return $query;
}
/**
* @param \Illuminate\Database\Eloquent\Builder $query
* @param string $slug
* @return \Illuminate\Database\Eloquent\Builder
*/
public function scopeSlug($query, $slug)
{
return $query->where('slug', $slug);
}
public function setCategory(array $categoryData)
{
if (! empty($categoryData)) {
$category = Category::where('wp_id', $categoryData['wp_id'])
->first();
if (is_null($category)) {
$category = Category::create($categoryData);
}
$this->category()->associate($category);
}
}
public function category()
{
return $this->belongsTo(Category::class);
}
public function setAuthor(array $authorData)
{
if (! empty($authorData)) {
$author = Author::where('wp_id', $authorData['wp_id'])
->first();
if (is_null($author)) {
$author = Author::create($authorData);
}
$this->author()->associate($author);
}
}
public function author()
{
return $this->belongsTo(Author::class);
}
}