Files
firefly-iii/app/Models/InvitedUser.php

101 lines
3.1 KiB
PHP
Raw Normal View History

2022-10-01 12:21:42 +02:00
<?php
2022-10-16 19:29:53 +02:00
2022-10-01 12:21:42 +02:00
/*
* InvitedUser.php
* Copyright (c) 2022 james@firefly-iii.org
*
* This file is part of Firefly III (https://github.com/firefly-iii).
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
2022-10-16 19:29:53 +02:00
declare(strict_types=1);
2022-10-01 12:21:42 +02:00
namespace FireflyIII\Models;
2023-02-22 18:14:14 +01:00
use Carbon\Carbon;
2022-12-29 19:42:26 +01:00
use Eloquent;
2023-12-10 06:51:59 +01:00
use FireflyIII\Support\Models\ReturnsIntegerIdTrait;
2023-11-05 19:41:37 +01:00
use FireflyIII\Support\Models\ReturnsIntegerUserIdTrait;
2022-10-01 12:21:42 +02:00
use FireflyIII\User;
2022-12-29 19:42:26 +01:00
use Illuminate\Database\Eloquent\Builder;
2022-10-01 12:21:42 +02:00
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
2023-03-09 06:33:23 +01:00
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
2023-12-10 06:51:59 +01:00
2022-10-01 12:21:42 +02:00
/**
* Class InvitedUser
2022-12-11 10:32:25 +01:00
*
2023-12-20 19:35:52 +01:00
* @property User $user
*
2022-12-29 19:42:26 +01:00
* @method static Builder|InvitedUser newModelQuery()
* @method static Builder|InvitedUser newQuery()
* @method static Builder|InvitedUser query()
2023-12-20 19:35:52 +01:00
*
2023-11-05 19:41:37 +01:00
* @property int $id
2023-12-20 19:35:52 +01:00
* @property null|Carbon $created_at
* @property null|Carbon $updated_at
2023-12-10 06:51:59 +01:00
* @property int $user_id
2023-06-21 12:34:58 +02:00
* @property string $email
* @property string $invite_code
* @property Carbon $expires
* @property bool $redeemed
2023-12-20 19:35:52 +01:00
*
2022-12-29 19:42:26 +01:00
* @method static Builder|InvitedUser whereCreatedAt($value)
* @method static Builder|InvitedUser whereEmail($value)
* @method static Builder|InvitedUser whereExpires($value)
* @method static Builder|InvitedUser whereId($value)
* @method static Builder|InvitedUser whereInviteCode($value)
* @method static Builder|InvitedUser whereRedeemed($value)
* @method static Builder|InvitedUser whereUpdatedAt($value)
* @method static Builder|InvitedUser whereUserId($value)
2023-12-20 19:35:52 +01:00
*
2023-03-09 06:33:23 +01:00
* @mixin Eloquent
2022-10-01 12:21:42 +02:00
*/
class InvitedUser extends Model
{
2023-11-05 19:41:37 +01:00
use ReturnsIntegerIdTrait;
use ReturnsIntegerUserIdTrait;
2022-10-01 12:21:42 +02:00
protected $casts
2023-02-22 18:14:14 +01:00
= [
2023-12-20 19:35:52 +01:00
'expires' => 'datetime',
'redeemed' => 'boolean',
];
2022-12-29 19:42:26 +01:00
protected $fillable = ['user_id', 'email', 'invite_code', 'expires', 'redeemed'];
2022-10-01 12:21:42 +02:00
2023-03-09 06:33:23 +01:00
/**
* Route binder. Converts the key in the URL to the specified object (or throw 404).
*/
2023-11-04 14:18:49 +01:00
public static function routeBinder(string $value): self
2023-03-09 06:33:23 +01:00
{
if (auth()->check()) {
$attemptId = (int)$value;
2023-12-20 19:35:52 +01:00
/** @var null|InvitedUser $attempt */
$attempt = self::find($attemptId);
2023-03-09 06:33:23 +01:00
if (null !== $attempt) {
return $attempt;
}
}
2023-12-20 19:35:52 +01:00
2023-03-09 06:33:23 +01:00
throw new NotFoundHttpException();
}
2023-05-29 13:56:55 +02:00
public function user(): BelongsTo
{
return $this->belongsTo(User::class);
}
2022-10-01 12:21:42 +02:00
}