����JFIF��x�x����'
Server IP : 66.29.137.217 / Your IP : 3.22.242.110 Web Server : LiteSpeed System : Linux premium294.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : gltevjme ( 1095) PHP Version : 7.0.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/./gltevjme/cbt.bofirm.com/vendor/bavix/laravel-wallet/src/Services/ |
Upload File : |
<?php namespace Bavix\Wallet\Services; use Bavix\Wallet\Objects\EmptyLock; use Illuminate\Contracts\Cache\Lock; use Illuminate\Contracts\Cache\LockProvider; use Illuminate\Contracts\Cache\Store; use Illuminate\Database\Eloquent\Model; use Illuminate\Support\Facades\Cache; use Illuminate\Support\Str; class LockService { /** * @var string */ protected $uniqId; /** * LockService constructor. */ public function __construct() { $this->uniqId = Str::random(); } /** * @param object $self * @param string $name * @param \Closure $closure * * @return mixed */ public function lock($self, string $name, \Closure $closure) { return $this->lockProvider($self, $name, (int) config('wallet.lock.seconds', 1)) ->get($this->bindTo($self, $closure)); } /** * @param object $self * @param \Closure $closure * @return \Closure * * @throws */ protected function bindTo($self, \Closure $closure): \Closure { $reflect = new \ReflectionFunction($closure); if (strpos((string) $reflect, 'static') === false) { return $closure->bindTo($self); } return $closure; } /** * @return Store|null * * @codeCoverageIgnore */ protected function cache(): ?Store { try { return Cache::store(config('wallet.lock.cache')) ->getStore(); } catch (\Throwable $throwable) { return null; } } /** * @param object $self * @param string $name * @param int $seconds * * @return Lock */ protected function lockProvider($self, string $name, int $seconds): Lock { $store = $this->cache(); $enabled = $store && config('wallet.lock.enabled', false); // fixme: CodeClimate // @codeCoverageIgnoreStart if ($enabled && $store instanceof LockProvider) { $class = \get_class($self); $uniqId = $class.$this->uniqId; if ($self instanceof Model) { $uniqId = $class.$self->getKey(); } return $store->lock("$name.$uniqId", $seconds); } // @codeCoverageIgnoreEnd return app(EmptyLock::class); } }