mirror of
https://github.com/projectsend/projectsend.git
synced 2026-09-16 08:35:07 +00:00
6e47d76ba6
Client file sharing, rebuilt from the ground up: a private area per client, resumable uploads, folders, groups and categories, sharing with expiry dates and download limits, comments, file versions, an activity log, a REST API, and sixteen languages. This repository begins here. ProjectSend 2 was developed privately, and that development history is not published — the previous generation remains available, with its own history, at projectsend/legacy. Free software under the GNU General Public License v2, or (at your option) any later version.
64 lines
1.5 KiB
PHP
64 lines
1.5 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Modules\Notifications;
|
|
|
|
use App\Models\User;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
use Illuminate\Database\Eloquent\Relations\MorphTo;
|
|
use Illuminate\Support\Carbon;
|
|
|
|
/**
|
|
* Deliberately not named "Notification" — every existing mail-only
|
|
* notification class in this app (App\Modules\{Files,Groups,Clients,
|
|
* Identity,Platform}\Notifications\*) already extends
|
|
* Illuminate\Notifications\Notification, and the two must never be
|
|
* confused in a `use` statement.
|
|
*
|
|
* @property int $id
|
|
* @property int $user_id
|
|
* @property string $type
|
|
* @property string|null $subject_type
|
|
* @property int|null $subject_id
|
|
* @property array<string, mixed>|null $data
|
|
* @property Carbon|null $read_at
|
|
* @property Carbon $created_at
|
|
*/
|
|
class InAppNotification extends Model
|
|
{
|
|
protected $table = 'notifications';
|
|
|
|
// Immutable except read_at: created_at only, written explicitly by
|
|
// Notifier — same convention as ActivityLog.
|
|
public $timestamps = false;
|
|
|
|
protected $guarded = [];
|
|
|
|
protected function casts(): array
|
|
{
|
|
return [
|
|
'data' => 'json',
|
|
'read_at' => 'datetime',
|
|
'created_at' => 'datetime',
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @return BelongsTo<User, $this>
|
|
*/
|
|
public function user(): BelongsTo
|
|
{
|
|
return $this->belongsTo(User::class);
|
|
}
|
|
|
|
/**
|
|
* @return MorphTo<Model, $this>
|
|
*/
|
|
public function subject(): MorphTo
|
|
{
|
|
return $this->morphTo();
|
|
}
|
|
}
|