HEX
Server: LiteSpeed
System: Linux s1049.use1.mysecurecloudhost.com 4.18.0-477.27.2.lve.el8.x86_64 #1 SMP Wed Oct 11 12:32:56 UTC 2023 x86_64
User: xedaptot (3356)
PHP: 8.3.31
Disabled: NONE
Upload Files
File: /home/xedaptot/iphim.naniguide.com/common/Settings/Validators/RealtimeCredentialsValidator.php
<?php

namespace Common\Settings\Validators;

use Config;
use Exception;
use Arr;
use Pusher\Pusher;

class RealtimeCredentialsValidator
{
    const KEYS = ['pusher_key', 'pusher_secret', 'pusher_app_id', 'pusher_cluster'];

    public function fails($settings)
    {
        $this->setConfigDynamically($settings);

       try {
           $config = Config::get('broadcasting.connections.pusher');
           $pusher = new Pusher($config['key'], $config['secret'],
               $config['app_id'], Arr::get($config, 'options', []));
           if ($pusher->get_channels() === false) {
               return $this->getErrorMessage();
           }
       } catch (Exception $e) {
           return $this->getErrorMessage();
       }
    }

    private function setConfigDynamically($settings)
    {
        foreach (self::KEYS as $key) {
            if ( ! Arr::has($settings, $key)) continue;
            if ($key === 'pusher_cluster') {
                Config::set("broadcasting.connections.pusher.options.cluster", $settings[$key]);
            } else {
                $configKey = str_replace('pusher_', '', $key);
                Config::set("broadcasting.connections.pusher.$configKey", $settings[$key]);
            }
        }
    }

    /**
     * @param Exception $e
     * @return array
     */
    private function getErrorMessage($e = null)
    {
        return ['pusher_group' => 'These pusher credentials are not valid.'];
    }
}