-
-
Notifications
You must be signed in to change notification settings - Fork 108
Expand file tree
/
Copy pathPluginPayout.php
More file actions
144 lines (123 loc) · 3.51 KB
/
PluginPayout.php
File metadata and controls
144 lines (123 loc) · 3.51 KB
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<?php
namespace App\Models;
use App\Enums\PayoutStatus;
use Illuminate\Database\Eloquent\Attributes\Scope;
use Illuminate\Database\Eloquent\Builder;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
class PluginPayout extends Model
{
use HasFactory;
public const PLATFORM_FEE_PERCENT = 30;
protected $guarded = [];
/**
* @return BelongsTo<PluginLicense, PluginPayout>
*/
public function pluginLicense(): BelongsTo
{
return $this->belongsTo(PluginLicense::class);
}
/**
* @return BelongsTo<DeveloperAccount, PluginPayout>
*/
public function developerAccount(): BelongsTo
{
return $this->belongsTo(DeveloperAccount::class);
}
/**
* @param Builder<PluginPayout> $query
* @return Builder<PluginPayout>
*/
#[Scope]
protected function pending(Builder $query): Builder
{
return $query->where('status', PayoutStatus::Pending);
}
/**
* @param Builder<PluginPayout> $query
* @return Builder<PluginPayout>
*/
#[Scope]
protected function transferred(Builder $query): Builder
{
return $query->where('status', PayoutStatus::Transferred);
}
/**
* @param Builder<PluginPayout> $query
* @return Builder<PluginPayout>
*/
#[Scope]
protected function failed(Builder $query): Builder
{
return $query->where('status', PayoutStatus::Failed);
}
/**
* @param Builder<PluginPayout> $query
* @return Builder<PluginPayout>
*/
#[Scope]
protected function cancelled(Builder $query): Builder
{
return $query->where('status', PayoutStatus::Cancelled);
}
/**
* @return array{platform_fee: int, developer_amount: int}
*/
public static function calculateSplit(int $grossAmount, int $platformFeePercent = self::PLATFORM_FEE_PERCENT): array
{
$platformFee = (int) round($grossAmount * $platformFeePercent / 100);
$developerAmount = $grossAmount - $platformFee;
return [
'platform_fee' => $platformFee,
'developer_amount' => $developerAmount,
];
}
public function isPending(): bool
{
return $this->status === PayoutStatus::Pending;
}
public function isTransferred(): bool
{
return $this->status === PayoutStatus::Transferred;
}
public function isFailed(): bool
{
return $this->status === PayoutStatus::Failed;
}
public function markAsTransferred(string $stripeTransferId): void
{
$this->update([
'status' => PayoutStatus::Transferred,
'stripe_transfer_id' => $stripeTransferId,
'transferred_at' => now(),
]);
}
public function markAsFailed(): void
{
$this->update([
'status' => PayoutStatus::Failed,
]);
}
public function markAsCancelled(): void
{
$this->update([
'status' => PayoutStatus::Cancelled,
]);
}
public function isCancelled(): bool
{
return $this->status === PayoutStatus::Cancelled;
}
protected function casts(): array
{
return [
'gross_amount' => 'integer',
'platform_fee' => 'integer',
'developer_amount' => 'integer',
'status' => PayoutStatus::class,
'transferred_at' => 'datetime',
'eligible_for_payout_at' => 'datetime',
];
}
}