mirror of
https://github.com/HolgerHatGarKeineNode/einundzwanzig-nostr.git
synced 2026-01-25 04:13:17 +00:00
42 lines
1010 B
PHP
42 lines
1010 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use App\Enums\AssociationStatus;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use ParagonIE\CipherSweet\BlindIndex;
|
|
use ParagonIE\CipherSweet\EncryptedRow;
|
|
use Spatie\LaravelCipherSweet\Concerns\UsesCipherSweet;
|
|
use Spatie\LaravelCipherSweet\Contracts\CipherSweetEncrypted;
|
|
|
|
class EinundzwanzigPleb extends Model implements CipherSweetEncrypted
|
|
{
|
|
use UsesCipherSweet;
|
|
|
|
protected $guarded = [];
|
|
|
|
protected function casts(): array
|
|
{
|
|
return [
|
|
'association_status' => AssociationStatus::class,
|
|
];
|
|
}
|
|
|
|
public static function configureCipherSweet(EncryptedRow $encryptedRow): void
|
|
{
|
|
$encryptedRow
|
|
->addOptionalTextField('email')
|
|
->addBlindIndex('email', new BlindIndex('email_index'));
|
|
}
|
|
|
|
public function profile()
|
|
{
|
|
return $this->hasOne(Profile::class, 'pubkey', 'pubkey');
|
|
}
|
|
|
|
public function paymentEvents()
|
|
{
|
|
return $this->hasMany(PaymentEvent::class);
|
|
}
|
|
}
|