Completed
Push — develop ( e17ce1...c70dd4 )
by Mohamed
06:57
created

RelationTrait::comments()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 3
CRAP Score 1

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 6
ccs 3
cts 3
cp 1
rs 9.4285
cc 1
eloc 4
nc 1
nop 0
crap 1
1
<?php
2
3
/*
4
 * This file is part of the Tinyissue package.
5
 *
6
 * (c) Mohamed Alsharaf <[email protected]>
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
namespace Tinyissue\Model\Traits\Project\Issue;
13
14
use Illuminate\Database\Eloquent\Relations;
15
use Tinyissue\Model;
16
17
/**
18
 * RelationTrait is trait class containing the relationship methods for the Project\Issue model.
19
 *
20
 * @author Mohamed Alsharaf <[email protected]>
21
 *
22
 * @method Relations\HasMany       hasMany($related, $foreignKey = null, $localKey = null)
23
 * @method Relations\BelongsToMany belongsToMany($related, $table = null, $foreignKey = null, $otherKey = null, $relation = null)
24
 * @method Relations\BelongsTo     belongsTo($related, $foreignKey = null, $otherKey = null, $relation = null)
25
 */
26
trait RelationTrait
27
{
28
    /**
29
     * An issue has one user assigned to (inverse relationship of User::issues).
30
     *
31
     * @return Relations\BelongsTo
32
     */
33 13
    public function assigned()
34
    {
35 13
        return $this->belongsTo('Tinyissue\Model\User', 'assigned_to');
36
    }
37
38
    /**
39
     * An issue has one user updated by (inverse relationship of User::issuesUpdatedBy).
40
     *
41
     * @return Relations\BelongsTo
42
     */
43 6
    public function updatedBy()
44
    {
45 6
        return $this->belongsTo('Tinyissue\Model\User', 'updated_by');
46
    }
47
48
    /**
49
     * An issue has one user closed it (inverse relationship of User::issuesClosedBy).
50
     *
51
     * @return Relations\BelongsTo
52
     */
53
    public function closer()
54
    {
55
        return $this->belongsTo('Tinyissue\Model\User', 'closed_by');
56
    }
57
58
    /**
59
     * An issue has one user created it (inverse relationship of User::issuesCreatedBy).
60
     *
61
     * @return Relations\BelongsTo
62
     */
63 21
    public function user()
64
    {
65 21
        return $this->belongsTo('Tinyissue\Model\User', 'created_by');
66
    }
67
68
    /**
69
     * Issue belong to a project.
70
     *
71
     * @return Relations\BelongsTo
72
     */
73 2
    public function project()
74
    {
75 2
        return $this->belongsTo('Tinyissue\Model\Project');
76
    }
77
78
    /**
79
     * Issue can have many attachments.
80
     *
81
     * @return Relations\HasMany
82
     */
83 18
    public function attachments()
84
    {
85
        return $this
86 18
            ->hasMany('Tinyissue\Model\Project\Issue\Attachment', 'issue_id')
87 18
            ->where('comment_id', '=', 0)
88 18
            ->orWhere('comment_id', '=', null);
89
    }
90
91
    /**
92
     * Issue have many users activities.
93
     *
94
     * @return Relations\HasMany
95
     */
96 28
    public function activities()
97
    {
98
        return $this
99 28
            ->hasMany('Tinyissue\Model\User\Activity', 'item_id')
100 28
            ->orderBy('created_at', 'ASC');
101
    }
102
103
    /**
104
     * Issue have many users activities (all except comments).
105
     *
106
     * @return mixed
107
     */
108 1
    public function generalActivities()
109
    {
110
        return $this
111 1
            ->hasMany('Tinyissue\Model\User\Activity', 'item_id')
112 1
            ->whereNotIn('type_id', [Model\Activity::TYPE_COMMENT])
113 1
            ->orderBy('created_at', 'ASC');
114
    }
115
116
    /**
117
     * Issue have many users activities (comments).
118
     *
119
     * @return mixed
120
     */
121 8
    public function commentActivities()
122
    {
123
        return $this
124 8
            ->hasMany('Tinyissue\Model\User\Activity', 'item_id')
125 8
            ->whereIn('type_id', [Model\Activity::TYPE_COMMENT])
126 8
            ->orderBy('created_at', 'ASC');
127
    }
128
129
    /**
130
     * Issue have many tags.
131
     *
132
     * @return Relations\BelongsToMany
133
     */
134 28
    public function tags()
135
    {
136 28
        return $this->belongsToMany('Tinyissue\Model\Tag', 'projects_issues_tags', 'issue_id', 'tag_id');
137
    }
138
139
    /**
140
     * Issue have many comments.
141
     *
142
     * @return Relations\HasMany
143
     */
144 3
    public function comments()
145
    {
146
        return $this
147 3
            ->hasMany('Tinyissue\Model\Project\Issue\Comment', 'issue_id')
148 3
            ->orderBy('created_at', 'ASC');
149
    }
150
}
151