mirror of
https://github.com/HolgerHatGarKeineNode/einundzwanzig-app.git
synced 2025-12-14 12:06:46 +00:00
🛠️ Add services index and landing page components with dynamic links and new Polish translations
This commit is contained in:
@@ -160,6 +160,26 @@ class SeoDataAttribute
|
||||
description: __('Finde alle Veranstaltungsorte für Bitcoin Meetups und Events.'),
|
||||
image: $domainImage,
|
||||
),
|
||||
'services_create' => new SEOData(
|
||||
title: __('Neuen Service erstellen'),
|
||||
description: __('Füge einen neuen Self-Hosted Service zur Bitcoin Community hinzu.'),
|
||||
image: $domainImage,
|
||||
),
|
||||
'services_edit' => new SEOData(
|
||||
title: __('Service bearbeiten'),
|
||||
description: __('Aktualisiere die Details deines Self-Hosted Service.'),
|
||||
image: $domainImage,
|
||||
),
|
||||
'services_index' => new SEOData(
|
||||
title: __('Self-Hosted Services - Übersicht'),
|
||||
description: __('Entdecke Bitcoin Self-Hosted Services und dezentrale Angebote der Community.'),
|
||||
image: $domainImage,
|
||||
),
|
||||
'services_landingpage' => new SEOData(
|
||||
title: __('Service Details'),
|
||||
description: __('Erfahre mehr über diesen Self-Hosted Service aus der Bitcoin Community.'),
|
||||
image: $domainImage,
|
||||
),
|
||||
// Add more as needed
|
||||
'default' => new SEOData(
|
||||
title: __('Willkommen'),
|
||||
|
||||
11
app/Enums/SelfHostedServiceType.php
Normal file
11
app/Enums/SelfHostedServiceType.php
Normal file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace App\Enums;
|
||||
|
||||
enum SelfHostedServiceType: string
|
||||
{
|
||||
case Mempool = 'mempool';
|
||||
case LNbits = 'lnbits';
|
||||
case Alby = 'alby';
|
||||
case Other = 'other';
|
||||
}
|
||||
76
app/Models/SelfHostedService.php
Normal file
76
app/Models/SelfHostedService.php
Normal file
@@ -0,0 +1,76 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use App\Enums\SelfHostedServiceType;
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
||||
use Illuminate\Support\Facades\Cookie;
|
||||
use Spatie\Image\Enums\Fit;
|
||||
use Spatie\MediaLibrary\HasMedia;
|
||||
use Spatie\MediaLibrary\InteractsWithMedia;
|
||||
use Spatie\MediaLibrary\MediaCollections\Models\Media;
|
||||
use Spatie\Sluggable\HasSlug;
|
||||
use Spatie\Sluggable\SlugOptions;
|
||||
use Spatie\Tags\HasTags;
|
||||
|
||||
class SelfHostedService extends Model implements HasMedia
|
||||
{
|
||||
use HasFactory;
|
||||
use InteractsWithMedia;
|
||||
use HasSlug;
|
||||
use HasTags;
|
||||
|
||||
protected $guarded = [];
|
||||
|
||||
protected $casts = [
|
||||
'id' => 'integer',
|
||||
'created_by' => 'integer',
|
||||
'type' => SelfHostedServiceType::class,
|
||||
];
|
||||
|
||||
protected static function booted(): void
|
||||
{
|
||||
static::creating(function ($model): void {
|
||||
// Only set created_by if user is authenticated and not explicitly set as anonymous
|
||||
if (auth()->check() && !isset($model->created_by)) {
|
||||
$model->created_by = auth()->id();
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
public function getSlugOptions(): SlugOptions
|
||||
{
|
||||
return SlugOptions::create()
|
||||
->generateSlugsFrom(['name'])
|
||||
->saveSlugsTo('slug')
|
||||
->usingLanguage(Cookie::get('lang', config('app.locale')));
|
||||
}
|
||||
|
||||
public function registerMediaConversions(Media $media = null): void
|
||||
{
|
||||
$this
|
||||
->addMediaConversion('preview')
|
||||
->fit(Fit::Crop, 300, 300)
|
||||
->nonQueued();
|
||||
$this
|
||||
->addMediaConversion('thumb')
|
||||
->fit(Fit::Crop, 130, 130)
|
||||
->width(130)
|
||||
->height(130);
|
||||
}
|
||||
|
||||
public function registerMediaCollections(): void
|
||||
{
|
||||
$this
|
||||
->addMediaCollection('logo')
|
||||
->singleFile()
|
||||
->useFallbackUrl(asset('img/einundzwanzig.png'));
|
||||
}
|
||||
|
||||
public function createdBy(): BelongsTo
|
||||
{
|
||||
return $this->belongsTo(User::class, 'created_by');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user