1 | <?php |
||
14 | class Request extends Model |
||
15 | { |
||
16 | use ValidatingTrait; |
||
17 | use CacheableEloquent; |
||
18 | |||
19 | /** |
||
20 | * {@inheritdoc} |
||
21 | */ |
||
22 | protected $fillable = [ |
||
23 | 'route_id', |
||
24 | 'agent_id', |
||
25 | 'device_id', |
||
26 | 'platform_id', |
||
27 | 'path_id', |
||
28 | 'geoip_id', |
||
29 | 'user_id', |
||
30 | 'user_type', |
||
31 | 'session_id', |
||
32 | 'status_code', |
||
33 | 'protocol_version', |
||
34 | 'referer', |
||
35 | 'language', |
||
36 | 'is_no_cache', |
||
37 | 'wants_json', |
||
38 | 'is_secure', |
||
39 | 'is_json', |
||
40 | 'is_ajax', |
||
41 | 'is_pjax', |
||
42 | 'created_at', |
||
43 | ]; |
||
44 | |||
45 | /** |
||
46 | * {@inheritdoc} |
||
47 | */ |
||
48 | protected $casts = [ |
||
49 | 'route_id' => 'integer', |
||
50 | 'agent_id' => 'integer', |
||
51 | 'device_id' => 'integer', |
||
52 | 'platform_id' => 'integer', |
||
53 | 'path_id' => 'integer', |
||
54 | 'geoip_id' => 'integer', |
||
55 | 'user_id' => 'integer', |
||
56 | 'user_type' => 'string', |
||
57 | 'session_id' => 'string', |
||
58 | 'status_code' => 'integer', |
||
59 | 'protocol_version' => 'string', |
||
60 | 'referer' => 'string', |
||
61 | 'language' => 'string', |
||
62 | 'is_no_cache' => 'boolean', |
||
63 | 'wants_json' => 'boolean', |
||
64 | 'is_secure' => 'boolean', |
||
65 | 'is_json' => 'boolean', |
||
66 | 'is_ajax' => 'boolean', |
||
67 | 'is_pjax' => 'boolean', |
||
68 | 'created_at' => 'datetime', |
||
69 | ]; |
||
70 | |||
71 | /** |
||
72 | * {@inheritdoc} |
||
73 | */ |
||
74 | public $timestamps = false; |
||
75 | |||
76 | /** |
||
77 | * {@inheritdoc} |
||
78 | */ |
||
79 | protected $observables = [ |
||
80 | 'validating', |
||
81 | 'validated', |
||
82 | ]; |
||
83 | |||
84 | /** |
||
85 | * The default rules that the model will validate against. |
||
86 | * |
||
87 | * @var array |
||
88 | */ |
||
89 | protected $rules = [ |
||
90 | 'route_id' => 'required|integer', |
||
91 | 'agent_id' => 'required|integer', |
||
92 | 'device_id' => 'required|integer', |
||
93 | 'platform_id' => 'required|integer', |
||
94 | 'path_id' => 'required|integer', |
||
95 | 'geoip_id' => 'required|integer', |
||
96 | 'user_id' => 'nullable|integer', |
||
97 | 'user_type' => 'nullable|string', |
||
98 | 'session_id' => 'required|string', |
||
99 | 'status_code' => 'required|integer', |
||
100 | 'protocol_version' => 'nullable|string', |
||
101 | 'referer' => 'nullable|string', |
||
102 | 'language' => 'required|string', |
||
103 | 'is_no_cache' => 'sometimes|boolean', |
||
104 | 'wants_json' => 'sometimes|boolean', |
||
105 | 'is_secure' => 'sometimes|boolean', |
||
106 | 'is_json' => 'sometimes|boolean', |
||
107 | 'is_ajax' => 'sometimes|boolean', |
||
108 | 'is_pjax' => 'sometimes|boolean', |
||
109 | 'created_at' => 'required|date', |
||
110 | ]; |
||
111 | |||
112 | /** |
||
113 | * Whether the model should throw a |
||
114 | * ValidationException if it fails validation. |
||
115 | * |
||
116 | * @var bool |
||
117 | */ |
||
118 | protected $throwValidationExceptions = true; |
||
119 | |||
120 | /** |
||
121 | * Create a new Eloquent model instance. |
||
122 | * |
||
123 | * @param array $attributes |
||
124 | */ |
||
125 | public function __construct(array $attributes = []) |
||
131 | |||
132 | /** |
||
133 | * {@inheritdoc} |
||
134 | */ |
||
135 | protected static function boot() |
||
148 | |||
149 | /** |
||
150 | * The request always belongs to a route. |
||
151 | * |
||
152 | * @return \Illuminate\Database\Eloquent\Relations\BelongsTo |
||
153 | */ |
||
154 | public function route(): BelongsTo |
||
158 | |||
159 | /** |
||
160 | * The request always belongs to a path. |
||
161 | * |
||
162 | * @return \Illuminate\Database\Eloquent\Relations\BelongsTo |
||
163 | */ |
||
164 | public function path(): BelongsTo |
||
168 | |||
169 | /** |
||
170 | * The request always belongs to an agent. |
||
171 | * |
||
172 | * @return \Illuminate\Database\Eloquent\Relations\BelongsTo |
||
173 | */ |
||
174 | public function agent(): BelongsTo |
||
178 | |||
179 | /** |
||
180 | * The request always belongs to an geoip. |
||
181 | * |
||
182 | * @return \Illuminate\Database\Eloquent\Relations\BelongsTo |
||
183 | */ |
||
184 | public function geoip(): BelongsTo |
||
188 | |||
189 | /** |
||
190 | * The request always belongs to a device. |
||
191 | * |
||
192 | * @return \Illuminate\Database\Eloquent\Relations\BelongsTo |
||
193 | */ |
||
194 | public function device(): BelongsTo |
||
198 | |||
199 | /** |
||
200 | * The request always belongs to a platform. |
||
201 | * |
||
202 | * @return \Illuminate\Database\Eloquent\Relations\BelongsTo |
||
203 | */ |
||
204 | public function platform(): BelongsTo |
||
208 | |||
209 | /** |
||
210 | * Get the owning user. |
||
211 | * |
||
212 | * @return \Illuminate\Database\Eloquent\Relations\MorphTo |
||
213 | */ |
||
214 | public function user(): MorphTo |
||
218 | |||
219 | /** |
||
220 | * Get bookings of the given user. |
||
221 | * |
||
222 | * @param \Illuminate\Database\Eloquent\Builder $builder |
||
223 | * @param \Illuminate\Database\Eloquent\Model $user |
||
224 | * |
||
225 | * @return \Illuminate\Database\Eloquent\Builder |
||
226 | */ |
||
227 | public function scopeOfUser(Builder $builder, Model $user): Builder |
||
231 | } |
||
232 |