1
|
|
|
<?php |
2
|
|
|
/** |
3
|
|
|
* Pterodactyl - Panel |
4
|
|
|
* Copyright (c) 2015 - 2017 Dane Everitt <[email protected]>. |
5
|
|
|
* |
6
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy |
7
|
|
|
* of this software and associated documentation files (the "Software"), to deal |
8
|
|
|
* in the Software without restriction, including without limitation the rights |
9
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
10
|
|
|
* copies of the Software, and to permit persons to whom the Software is |
11
|
|
|
* furnished to do so, subject to the following conditions: |
12
|
|
|
* |
13
|
|
|
* The above copyright notice and this permission notice shall be included in all |
14
|
|
|
* copies or substantial portions of the Software. |
15
|
|
|
* |
16
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
17
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
18
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
19
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
20
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
21
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
22
|
|
|
* SOFTWARE. |
23
|
|
|
*/ |
24
|
|
|
|
25
|
|
|
namespace Pterodactyl\Models; |
26
|
|
|
|
27
|
|
|
use Auth; |
28
|
|
|
use Illuminate\Database\Eloquent\Model; |
29
|
|
|
|
30
|
|
View Code Duplication |
class Subuser extends Model |
|
|
|
|
31
|
|
|
{ |
32
|
|
|
/** |
33
|
|
|
* The table associated with the model. |
34
|
|
|
* |
35
|
|
|
* @var string |
36
|
|
|
*/ |
37
|
|
|
protected $table = 'subusers'; |
38
|
|
|
|
39
|
|
|
/** |
40
|
|
|
* The attributes excluded from the model's JSON form. |
41
|
|
|
* |
42
|
|
|
* @var array |
43
|
|
|
*/ |
44
|
|
|
protected $hidden = ['daemonSecret']; |
45
|
|
|
|
46
|
|
|
/** |
47
|
|
|
* Fields that are not mass assignable. |
48
|
|
|
* |
49
|
|
|
* @var array |
50
|
|
|
*/ |
51
|
|
|
protected $guarded = ['id', 'created_at', 'updated_at']; |
52
|
|
|
|
53
|
|
|
/** |
54
|
|
|
* Cast values to correct type. |
55
|
|
|
* |
56
|
|
|
* @var array |
57
|
|
|
*/ |
58
|
|
|
protected $casts = [ |
59
|
|
|
'user_id' => 'integer', |
60
|
|
|
'server_id' => 'integer', |
61
|
|
|
]; |
62
|
|
|
|
63
|
|
|
/** |
64
|
|
|
* Gets the server associated with a subuser. |
65
|
|
|
* |
66
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo |
67
|
|
|
*/ |
68
|
|
|
public function server() |
69
|
|
|
{ |
70
|
|
|
return $this->belongsTo(Server::class); |
71
|
|
|
} |
72
|
|
|
|
73
|
|
|
/** |
74
|
|
|
* Gets the user associated with a subuser. |
75
|
|
|
* |
76
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo |
77
|
|
|
*/ |
78
|
|
|
public function user() |
79
|
|
|
{ |
80
|
|
|
return $this->belongsTo(User::class); |
81
|
|
|
} |
82
|
|
|
|
83
|
|
|
/** |
84
|
|
|
* Gets the permissions associated with a subuser. |
85
|
|
|
* |
86
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\HasMany |
87
|
|
|
*/ |
88
|
|
|
public function permissions() |
89
|
|
|
{ |
90
|
|
|
return $this->hasMany(Permission::class); |
91
|
|
|
} |
92
|
|
|
} |
93
|
|
|
|
Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.
You can also find more detailed suggestions in the “Code” section of your repository.