Passed
Push — master ( f75c84...6aec09 )
by Anton
02:54
created

src/Reacter/Models/Reacter.php (1 issue)

Labels
Severity
1
<?php
2
3
/*
4
 * This file is part of Laravel Love.
5
 *
6
 * (c) Anton Komarev <[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
declare(strict_types=1);
13
14
namespace Cog\Laravel\Love\Reacter\Models;
15
16
use Cog\Contracts\Love\Reactant\Exceptions\ReactantInvalid;
17
use Cog\Contracts\Love\Reactant\Models\Reactant as ReactantContract;
18
use Cog\Contracts\Love\Reacter\Exceptions\NotAssignedToReacterable;
19
use Cog\Contracts\Love\Reacter\Models\Reacter as ReacterContract;
20
use Cog\Contracts\Love\Reacterable\Models\Reacterable as ReacterableContract;
21
use Cog\Contracts\Love\Reaction\Exceptions\ReactionAlreadyExists;
22
use Cog\Contracts\Love\Reaction\Exceptions\ReactionNotExists;
23
use Cog\Contracts\Love\Reaction\Models\Reaction as ReactionContract;
24
use Cog\Contracts\Love\ReactionType\Models\ReactionType as ReactionTypeContract;
25
use Cog\Laravel\Love\Reaction\Models\Reaction;
26
use Cog\Laravel\Love\Support\Database\Eloquent\Model;
27
use Illuminate\Database\Eloquent\Relations\HasMany;
28
use Illuminate\Database\Eloquent\Relations\MorphTo;
29
30
final class Reacter extends Model implements
31
    ReacterContract
32
{
33
    protected $table = 'love_reacters';
34
35
    protected $fillable = [
36
        'type',
37
    ];
38
39
    protected $casts = [
40
        'id' => 'string',
41
    ];
42
43
    public function reacterable(): MorphTo
44
    {
45
        return $this->morphTo('reacterable', 'type', 'id', 'love_reacter_id');
46
    }
47
48
    public function reactions(): HasMany
49
    {
50
        return $this->hasMany(Reaction::class, 'reacter_id');
51
    }
52
53
    public function getId(): string
54
    {
55
        return $this->getAttributeValue('id');
56
    }
57
58
    public function getReacterable(): ReacterableContract
59
    {
60
        $reacterable = $this->getAttribute('reacterable');
0 ignored issues
show
The attribute reacterable does not seem to exist on Cog\Laravel\Love\Reacter\Models\Reacter. Are you maybe missing a database migration?

If used attribute cannot be found there are two main reasons: 1. there is a creating database migration missing or 2. there is a major typo in either the declaration or the usage.

Loading history...
61
62
        if (is_null($reacterable)) {
63
            throw new NotAssignedToReacterable();
64
        }
65
66
        return $reacterable;
67
    }
68
69
    public function getReactions(): iterable
70
    {
71
        return $this->getAttribute('reactions');
72
    }
73
74
    public function reactTo(
75
        ReactantContract $reactant,
76
        ReactionTypeContract $reactionType,
77
        ?float $rate = null
78
    ): void {
79
        if ($reactant->isNull()) {
80
            throw ReactantInvalid::notExists();
81
        }
82
83
        $reaction = $this->findReaction($reactant, $reactionType);
84
85
        if (is_null($reaction)) {
86
            $this->createReaction($reactant, $reactionType, $rate);
87
88
            return;
89
        }
90
91
        if (is_null($rate)) {
92
            throw new ReactionAlreadyExists(sprintf(
93
                'Reaction of type `%s` already exists.',
94
                $reactionType->getName()
95
            ));
96
        }
97
98
        $reaction->changeRate($rate);
99
    }
100
101
    public function unreactTo(
102
        ReactantContract $reactant,
103
        ReactionTypeContract $reactionType
104
    ): void {
105
        if ($reactant->isNull()) {
106
            throw ReactantInvalid::notExists();
107
        }
108
109
        $reaction = $this->findReaction($reactant, $reactionType);
110
111
        if (is_null($reaction)) {
112
            throw new ReactionNotExists(sprintf(
113
                'Reaction of type `%s` not exists.',
114
                $reactionType->getName()
115
            ));
116
        }
117
118
        $reaction->delete();
119
    }
120
121
    public function hasReactedTo(
122
        ReactantContract $reactant,
123
        ?ReactionTypeContract $reactionType = null,
124
        ?float $rate = null
125
    ): bool {
126
        if ($reactant->isNull()) {
127
            return false;
128
        }
129
130
        return $reactant->isReactedBy($this, $reactionType, $rate);
131
    }
132
133
    public function hasNotReactedTo(
134
        ReactantContract $reactant,
135
        ?ReactionTypeContract $reactionType = null,
136
        ?float $rate = null
137
    ): bool {
138
        return $reactant->isNotReactedBy($this, $reactionType, $rate);
139
    }
140
141
    public function isEqualTo(
142
        ReacterContract $that
143
    ): bool {
144
        return $that->isNotNull()
145
            && $this->getId() === $that->getId();
146
    }
147
148
    public function isNotEqualTo(
149
        ReacterContract $that
150
    ): bool {
151
        return !$this->isEqualTo($that);
152
    }
153
154
    public function isNull(): bool
155
    {
156
        return !$this->exists;
157
    }
158
159
    public function isNotNull(): bool
160
    {
161
        return $this->exists;
162
    }
163
164
    private function createReaction(
165
        ReactantContract $reactant,
166
        ReactionTypeContract $reactionType,
167
        ?float $rate = null
168
    ): void {
169
        $this->reactions()->create([
170
            'reaction_type_id' => $reactionType->getId(),
171
            'reactant_id' => $reactant->getId(),
172
            'rate' => $rate,
173
        ]);
174
    }
175
176
    /**
177
     * @param \Cog\Contracts\Love\Reactant\Models\Reactant $reactant
178
     * @param \Cog\Contracts\Love\ReactionType\Models\ReactionType $reactionType
179
     * @return null|\Cog\Contracts\Love\Reaction\Models\Reaction|\Illuminate\Database\Eloquent\Model
180
     */
181
    private function findReaction(
182
        ReactantContract $reactant,
183
        ReactionTypeContract $reactionType
184
    ): ?ReactionContract {
185
        return $this
186
            ->reactions()
187
            ->where('reactant_id', $reactant->getId())
188
            ->where('reaction_type_id', $reactionType->getId())
189
            ->first();
190
    }
191
}
192