mirror of
https://github.com/HolgerHatGarKeineNode/einundzwanzig-nostr.git
synced 2025-12-28 22:40:15 +00:00
🚀 feat(dependencies): add spatie/laravel-ciphersweet package for encryption support
✨ feat(profile): integrate email and fax fields in association profile 🆕 feat(migrations): create blind_indexes table for encrypted data 🔧 feat(model): implement CipherSweet in EinundzwanzigPleb for email encryption 🔧 config: add ciphersweet configuration file for encryption settings 🗄️ migration: add email field to einundzwanzig_plebs table for user data
This commit is contained in:
@@ -4,9 +4,14 @@ 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
|
||||
class EinundzwanzigPleb extends Model implements CipherSweetEncrypted
|
||||
{
|
||||
use UsesCipherSweet;
|
||||
|
||||
protected $guarded = [];
|
||||
|
||||
@@ -17,6 +22,13 @@ class EinundzwanzigPleb extends Model
|
||||
];
|
||||
}
|
||||
|
||||
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');
|
||||
|
||||
Reference in New Issue
Block a user