first commit
Some checks failed
Build / run (push) Has been cancelled

This commit is contained in:
maher
2025-10-29 11:42:25 +01:00
commit 703f50a09d
4595 changed files with 385164 additions and 0 deletions

View File

@@ -0,0 +1,213 @@
<?php namespace Common\Core\Bootstrap;
use App\Models\User;
use Common\Admin\Appearance\Themes\CssTheme;
use Common\Auth\Jobs\LogActiveSessionJob;
use Common\Auth\Roles\Role;
use Common\Billing\Gateways\Stripe\FormatsMoney;
use Common\Core\AppUrl;
use Common\Localizations\LocalizationsRepository;
use Common\Settings\Settings;
use Illuminate\Http\Request;
use Illuminate\Support\Arr;
use Jenssegers\Agent\Agent;
use Laravel\Sanctum\PersonalAccessToken;
class BaseBootstrapData implements BootstrapData
{
use FormatsMoney;
protected array $data = [];
public function __construct(
protected Settings $settings,
protected Request $request,
protected Role $role,
protected LocalizationsRepository $localizationsRepository,
) {
}
public function getEncoded(): string
{
if ($this->data['user']) {
$this->data['user'] = $this->data['user']->toArray();
}
return json_encode($this->data);
}
public function set(string $key, mixed $value): static
{
Arr::set($this->data, $key, $value);
return $this;
}
public function get($key = null)
{
return $key ? Arr::get($this->data, $key) : $this->data;
}
public function getSelectedTheme($key = null)
{
$themeId = $this->get('themes.selectedThemeId');
$theme = Arr::first(
$this->data['themes']['all'],
fn($theme) => $theme['id'] === (int) $themeId,
);
if (!$theme) {
$theme = $this->data['themes']['all'][0];
}
$value = $key ? Arr::get($theme, $key) : $theme;
return $key === 'name' ? strtolower($value) : $value;
}
public function init(): self
{
$this->data['settings'] = settings()->getUnflattened();
$this->data['csrf_token'] = csrf_token();
$this->data['is_mobile_device'] = app(Agent::class)->isMobile();
$this->data['settings']['base_url'] = config('app.url');
$this->data['settings']['asset_url'] = config('app.asset_url');
$this->data['settings']['html_base_uri'] = app(
AppUrl::class,
)->htmlBaseUri;
$this->data['settings']['version'] = config('common.site.version');
$this->data['sentry_release'] = config('sentry.release');
$this->data['default_meta_tags'] = $this->getDefaultMetaTags();
$this->data['user'] = $this->getCurrentUser();
$this->data['guest_role'] = app('guestRole')?->load('permissions');
$this->data['i18n'] =
$this->localizationsRepository->getByNameOrCode(
app()->getLocale(),
settings('i18n.enable', true),
) ?:
null;
$this->data['themes'] = $this->getThemes();
$this->data['language'] = $this->data['i18n']
? $this->data['i18n']['language']
: 'en';
if (
config('common.site.notifications_integrated') &&
$this->data['user']
) {
$this->data['user']->loadCount('unreadNotifications');
}
$alreadyAccepted =
!settings('cookie_notice.enable') ||
(bool) Arr::get($_COOKIE, 'cookie_notice', false);
$this->data['show_cookie_notice'] =
!$alreadyAccepted && $this->isCookieLawCountry();
$this->logActiveSession();
return $this;
}
public function getThemes(): array
{
$themes = CssTheme::where('default_dark', true)
->orWhere('default_light', true)
->get();
if ($themes->isEmpty()) {
$themes = CssTheme::limit(2)->get();
}
$selectedTheme = null;
// first, get theme from cookie or url param, if theme change by user is enabled
if (settings('themes.user_change')) {
if ($themeFromUrl = $this->request->get('beThemeId')) {
$selectedTheme = $themes->find($themeFromUrl);
} else {
$selectedTheme = $themes->find(
Arr::get($_COOKIE, 'be-active-theme'),
);
}
}
// if no theme was selected, get default theme specified by admin
if (!$selectedTheme && ($defaultId = settings('themes.default_id'))) {
$selectedTheme = $themes->find($defaultId);
}
// finally, fallback to default light theme
if (!$selectedTheme) {
$selectedTheme = $themes->where('default_light', true)->first();
}
return [
'all' => $themes,
'selectedThemeId' => $selectedTheme?->id,
];
}
/**
* Load current user and his roles.
*/
public function getCurrentUser(): ?User
{
$user = $this->request->user();
if ($user) {
// load user subscriptions, if billing is enabled
if (
settings('billing.enable') &&
!$user->relationLoaded('subscriptions')
) {
$user->load('subscriptions.price');
}
// load user roles, if not already loaded
if (!$user->relationLoaded('roles')) {
$user->load('roles');
}
if (!$user->relationLoaded('permissions')) {
$user->loadPermissions();
}
}
return $user;
}
protected function getDefaultMetaTags(): string
{
$pageName = 'landing-page';
$customPath = storage_path(
"app/editable-views/seo-tags/$pageName.blade.php",
);
if (file_exists($customPath)) {
return view("editable-views::seo-tags.$pageName")->render();
} else {
return view("seo.$pageName.seo-tags")->render();
}
}
protected function isCookieLawCountry(): bool
{
$isoCode = geoip(getIp())['iso_code'];
// prettier-ignore
return in_array($isoCode, ['AT', 'BE', 'BG', 'BR', 'CY', 'CZ', 'DE', 'DK', 'EE', 'EL', 'ES', 'FI', 'FR', 'GB', 'HR', 'HU', 'IE', 'IT','LT', 'LU', 'LV', 'MT', 'NL', 'NO', 'PL', 'PT', 'RO', 'SE', 'SI', 'SK',
]);
}
protected function logActiveSession(): void
{
if ($this->data['user']) {
$token = $this->data['user']->currentAccessToken();
LogActiveSessionJob::dispatch([
'user_id' => $this->data['user']->id,
'ip_address' => getIp(),
'user_agent' => $this->request->userAgent(),
'session_id' => session()->getId(),
'token' =>
$token instanceof PersonalAccessToken
? $token->token
: null,
]);
}
}
}

View File

@@ -0,0 +1,12 @@
<?php
namespace Common\Core\Bootstrap;
interface BootstrapData
{
public function getEncoded(): string;
public function init(): self;
public function getThemes(): array;
}

View File

@@ -0,0 +1,139 @@
<?php
namespace Common\Core\Bootstrap;
use App\Models\User;
use Common\Localizations\Localization;
use Illuminate\Support\Str;
use Spatie\Color\Hex;
use Spatie\Color\Rgb;
class MobileBootstrapData extends BaseBootstrapData
{
public function init(): self
{
$cssThemes = $this->getThemes()['all'];
$themes = [
'light' => $cssThemes
->where('default_light', true)
->first()
->toArray(),
'dark' => $cssThemes
->where('default_dark', true)
->first()
->toArray(),
];
$themes['light']['values'] = $this->transformValuesForFlutter(
$themes['light']['values'],
);
$themes['dark']['values'] = $this->transformValuesForFlutter(
$themes['dark']['values'],
);
$this->data = [
'themes' => $themes,
'user' => $this->getCurrentUser(),
'menus' => $this->getMobileMenus(),
'settings' => [
'social.google.enable' => (bool) settings(
'social.google.enable',
),
'require_email_confirmation' => (bool) settings(
'require_email_confirmation',
),
'registration.disable' => (bool) settings(
'registration.disable',
),
],
'locales' => Localization::get(),
];
if (settings('i18n.enable')) {
$langCode = request('activeLocale') ?: app()->getLocale();
foreach ($this->data['locales'] as $locale) {
if ($locale->language === $langCode) {
$locale->loadLines();
break;
}
}
}
$this->logActiveSession();
return $this;
}
public function refreshToken(string $deviceName): self
{
$user = $this->data['user'];
if ($user) {
$user['access_token'] = $user->refreshApiToken($deviceName);
$this->loadFcmToken($user);
}
return $this;
}
public function getCurrentUser(): ?User
{
if ($user = $this->request->user()) {
return $this->loadFcmToken($user);
}
return null;
}
private function getMobileMenus(): array
{
return array_values(
array_filter(
settings('menus'),
fn($menu) => collect($menu['positions'])->some(
fn($position) => Str::startsWith($position, 'mobile-app'),
),
),
);
}
private function transformValuesForFlutter(array $colors): array
{
if (!class_exists(Hex::class)) {
return $colors;
}
$radiusValues = [
'--be-button-radius',
'--be-input-radius',
'--be-panel-radius',
];
$valuesToSkip = ['--be-navbar-color'];
return collect($colors)
->map(function ($value, $name) use ($valuesToSkip, $radiusValues) {
if (in_array($name, $radiusValues)) {
if (str_ends_with($value, 'rem')) {
return (float) str_replace('rem', '', $value) * 16;
} else {
return (float) str_replace('px', '', $value);
}
} elseif (in_array($name, $valuesToSkip)) {
return $value;
} elseif (str_ends_with($value, '%')) {
return (int) str_replace('%', '', $value);
} else {
$value = str_replace(' ', ',', $value);
$rgb = Rgb::fromString("rgb($value)");
return [$rgb->red(), $rgb->green(), $rgb->blue(), 1.0];
}
})
->toArray();
}
private function loadFcmToken(User $user): User
{
if (method_exists($user, 'loadFcmToken')) {
$user->loadFcmToken();
}
return $user;
}
}