JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr{ gilour

File "AnalyticsCredentialsValidator-20260314141316.php"

Full Path: /home/markqprx/iniasli.pro/Validators/AnalyticsCredentialsValidator-20260314141316.php
File size: 963 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Common\Settings\Validators;

use Common\Admin\Analytics\Actions\BuildGoogleAnalyticsReport;
use Exception;
use Illuminate\Support\Arr;
use Illuminate\Support\Facades\Config;

class AnalyticsCredentialsValidator
{
    const KEYS = [
        'analytics_property_id',
        'analytics.tracking_code',
        'certificate',
    ];

    public function fails($settings): array|false
    {
        $this->setConfigDynamically($settings);

        try {
            app(BuildGoogleAnalyticsReport::class)->execute([]);
        } catch (Exception $e) {
            return [
                'analytics_group' => "Invalid credentials: {$e->getMessage()}",
            ];
        }

        return false;
    }

    private function setConfigDynamically(array $settings): void
    {
        if ($propertyId = Arr::get($settings, 'analytics_property_id')) {
            Config::set('services.google.analytics_property_id', $propertyId);
        }
    }
}