/var/www/natumbe.kz/bff/vendor/illuminate/container/Container.php
*
* @param \Closure|string $concrete
* @return mixed
*
* @throws \Illuminate\Contracts\Container\BindingResolutionException
* @throws \Illuminate\Contracts\Container\CircularDependencyException
*/
public function build($concrete)
{
// If the concrete type is actually a Closure, we will just execute it and
// hand back the results of the functions, which allows functions to be
// used as resolvers for more fine-tuned resolution of these objects.
if ($concrete instanceof Closure) {
return $concrete($this, $this->getLastParameterOverride());
}
try {
$reflector = new ReflectionClass($concrete);
} catch (ReflectionException $e) {
throw new BindingResolutionException("Target class [$concrete] does not exist.", 0, $e);
}
// If the type is not instantiable, the developer is attempting to resolve
// an abstract type such as an Interface or Abstract Class and there is
// no binding registered for the abstractions so we need to bail out.
if (! $reflector->isInstantiable()) {
return $this->notInstantiable($concrete);
}
$this->buildStack[] = $concrete;
$constructor = $reflector->getConstructor();
// If there are no constructors, that means there are no dependencies then
// we can just resolve the instances of the objects right away, without
// resolving any other types or dependencies out of these containers.
if (is_null($constructor)) {
array_pop($this->buildStack);
return new $concrete;
/var/www/natumbe.kz/bff/middleware/Offline.php
<?php //ICB0 71:0 81:1468 ?><?php //00091
// Copyright Tamaranga. 2014-2022
// All Rights Reserved
echo('No IonCube Loader is installed. Please contact support.');exit(199);
?>
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
/var/www/natumbe.kz/bff/vendor/illuminate/container/Container.php
/**
* Instantiate a concrete instance of the given type.
*
* @param \Closure|string $concrete
* @return mixed
*
* @throws \Illuminate\Contracts\Container\BindingResolutionException
* @throws \Illuminate\Contracts\Container\CircularDependencyException
*/
public function build($concrete)
{
// If the concrete type is actually a Closure, we will just execute it and
// hand back the results of the functions, which allows functions to be
// used as resolvers for more fine-tuned resolution of these objects.
if ($concrete instanceof Closure) {
return $concrete($this, $this->getLastParameterOverride());
}
try {
$reflector = new ReflectionClass($concrete);
} catch (ReflectionException $e) {
throw new BindingResolutionException("Target class [$concrete] does not exist.", 0, $e);
}
// If the type is not instantiable, the developer is attempting to resolve
// an abstract type such as an Interface or Abstract Class and there is
// no binding registered for the abstractions so we need to bail out.
if (! $reflector->isInstantiable()) {
return $this->notInstantiable($concrete);
}
$this->buildStack[] = $concrete;
$constructor = $reflector->getConstructor();
// If there are no constructors, that means there are no dependencies then
// we can just resolve the instances of the objects right away, without
// resolving any other types or dependencies out of these containers.
if (is_null($constructor)) {
array_pop($this->buildStack);
/var/www/natumbe.kz/bff/vendor/illuminate/container/Container.php
/**
* Instantiate a concrete instance of the given type.
*
* @param \Closure|string $concrete
* @return mixed
*
* @throws \Illuminate\Contracts\Container\BindingResolutionException
* @throws \Illuminate\Contracts\Container\CircularDependencyException
*/
public function build($concrete)
{
// If the concrete type is actually a Closure, we will just execute it and
// hand back the results of the functions, which allows functions to be
// used as resolvers for more fine-tuned resolution of these objects.
if ($concrete instanceof Closure) {
return $concrete($this, $this->getLastParameterOverride());
}
try {
$reflector = new ReflectionClass($concrete);
} catch (ReflectionException $e) {
throw new BindingResolutionException("Target class [$concrete] does not exist.", 0, $e);
}
// If the type is not instantiable, the developer is attempting to resolve
// an abstract type such as an Interface or Abstract Class and there is
// no binding registered for the abstractions so we need to bail out.
if (! $reflector->isInstantiable()) {
return $this->notInstantiable($concrete);
}
$this->buildStack[] = $concrete;
$constructor = $reflector->getConstructor();
// If there are no constructors, that means there are no dependencies then
// we can just resolve the instances of the objects right away, without
// resolving any other types or dependencies out of these containers.
if (is_null($constructor)) {
array_pop($this->buildStack);
/var/www/natumbe.kz/bff/vendor/illuminate/container/Container.php
$needsContextualBuild = ! empty($parameters) || ! is_null($concrete);
// If an instance of the type is currently being managed as a singleton we'll
// just return an existing instance instead of instantiating new instances
// so the developer can keep using the same objects instance every time.
if (isset($this->instances[$abstract]) && ! $needsContextualBuild) {
return $this->instances[$abstract];
}
$this->with[] = $parameters;
if (is_null($concrete)) {
$concrete = $this->getConcrete($abstract);
}
// We're ready to instantiate an instance of the concrete type registered for
// the binding. This will instantiate the types, as well as resolve any of
// its "nested" dependencies recursively until all have gotten resolved.
if ($this->isBuildable($concrete, $abstract)) {
$object = $this->build($concrete);
} else {
$object = $this->make($concrete);
}
// If we defined any extenders for this type, we'll need to spin through them
// and apply them to the object being built. This allows for the extension
// of services, such as changing configuration or decorating the object.
foreach ($this->getExtenders($abstract) as $extender) {
$object = $extender($object, $this);
}
// If the requested type is registered as a singleton we'll want to cache off
// the instances in "memory" so we can return it later without creating an
// entirely new instance of an object on each subsequent request for it.
if ($this->isShared($abstract) && ! $needsContextualBuild) {
$this->instances[$abstract] = $object;
}
if ($raiseEvents) {
$this->fireResolvingCallbacks($abstract, $object);
/var/www/natumbe.kz/bff/base/Container.php
class Container extends IlluminateContainer
{
/**
* {@inheritdoc}
*
* @return mixed
*/
protected function resolve($abstract, $parameters = [], $raiseEvents = true)
{
try {
return parent::resolve($abstract, $parameters, $raiseEvents);
} catch (BindingResolutionException $e) {
/**
* Resolve views contract to default view implementation
*/
if (Str::contains($abstract, 'views\contracts')) {
$abstract = Str::replace('views\contracts', 'views', $abstract);
}
return parent::resolve($abstract, $parameters, $raiseEvents);
}
}
}
/var/www/natumbe.kz/bff/vendor/illuminate/container/Container.php
$this->rebound($abstract);
}
}
/**
* Get the Closure to be used when building a type.
*
* @param string $abstract
* @param string $concrete
* @return \Closure
*/
protected function getClosure($abstract, $concrete)
{
return function ($container, $parameters = []) use ($abstract, $concrete) {
if ($abstract == $concrete) {
return $container->build($concrete);
}
return $container->resolve(
$concrete, $parameters, $raiseEvents = false
);
};
}
/**
* Determine if the container has a method binding.
*
* @param string $method
* @return bool
*/
public function hasMethodBinding($method)
{
return isset($this->methodBindings[$method]);
}
/**
* Bind a callback to resolve with Container::call.
*
* @param array|string $method
* @param \Closure $callback
/var/www/natumbe.kz/bff/vendor/illuminate/container/Container.php
{
return $concrete === $abstract || $concrete instanceof Closure;
}
/**
* Instantiate a concrete instance of the given type.
*
* @param \Closure|string $concrete
* @return mixed
*
* @throws \Illuminate\Contracts\Container\BindingResolutionException
* @throws \Illuminate\Contracts\Container\CircularDependencyException
*/
public function build($concrete)
{
// If the concrete type is actually a Closure, we will just execute it and
// hand back the results of the functions, which allows functions to be
// used as resolvers for more fine-tuned resolution of these objects.
if ($concrete instanceof Closure) {
return $concrete($this, $this->getLastParameterOverride());
}
try {
$reflector = new ReflectionClass($concrete);
} catch (ReflectionException $e) {
throw new BindingResolutionException("Target class [$concrete] does not exist.", 0, $e);
}
// If the type is not instantiable, the developer is attempting to resolve
// an abstract type such as an Interface or Abstract Class and there is
// no binding registered for the abstractions so we need to bail out.
if (! $reflector->isInstantiable()) {
return $this->notInstantiable($concrete);
}
$this->buildStack[] = $concrete;
$constructor = $reflector->getConstructor();
// If there are no constructors, that means there are no dependencies then
/var/www/natumbe.kz/bff/vendor/illuminate/container/Container.php
$needsContextualBuild = ! empty($parameters) || ! is_null($concrete);
// If an instance of the type is currently being managed as a singleton we'll
// just return an existing instance instead of instantiating new instances
// so the developer can keep using the same objects instance every time.
if (isset($this->instances[$abstract]) && ! $needsContextualBuild) {
return $this->instances[$abstract];
}
$this->with[] = $parameters;
if (is_null($concrete)) {
$concrete = $this->getConcrete($abstract);
}
// We're ready to instantiate an instance of the concrete type registered for
// the binding. This will instantiate the types, as well as resolve any of
// its "nested" dependencies recursively until all have gotten resolved.
if ($this->isBuildable($concrete, $abstract)) {
$object = $this->build($concrete);
} else {
$object = $this->make($concrete);
}
// If we defined any extenders for this type, we'll need to spin through them
// and apply them to the object being built. This allows for the extension
// of services, such as changing configuration or decorating the object.
foreach ($this->getExtenders($abstract) as $extender) {
$object = $extender($object, $this);
}
// If the requested type is registered as a singleton we'll want to cache off
// the instances in "memory" so we can return it later without creating an
// entirely new instance of an object on each subsequent request for it.
if ($this->isShared($abstract) && ! $needsContextualBuild) {
$this->instances[$abstract] = $object;
}
if ($raiseEvents) {
$this->fireResolvingCallbacks($abstract, $object);
/var/www/natumbe.kz/bff/base/Container.php
class Container extends IlluminateContainer
{
/**
* {@inheritdoc}
*
* @return mixed
*/
protected function resolve($abstract, $parameters = [], $raiseEvents = true)
{
try {
return parent::resolve($abstract, $parameters, $raiseEvents);
} catch (BindingResolutionException $e) {
/**
* Resolve views contract to default view implementation
*/
if (Str::contains($abstract, 'views\contracts')) {
$abstract = Str::replace('views\contracts', 'views', $abstract);
}
return parent::resolve($abstract, $parameters, $raiseEvents);
}
}
}
/var/www/natumbe.kz/bff/vendor/illuminate/container/Container.php
*
* @throws \Illuminate\Contracts\Container\BindingResolutionException
*/
public function makeWith($abstract, array $parameters = [])
{
return $this->make($abstract, $parameters);
}
/**
* Resolve the given type from the container.
*
* @param string|callable $abstract
* @param array $parameters
* @return mixed
*
* @throws \Illuminate\Contracts\Container\BindingResolutionException
*/
public function make($abstract, array $parameters = [])
{
return $this->resolve($abstract, $parameters);
}
/**
* {@inheritdoc}
*
* @return mixed
*/
public function get($id)
{
try {
return $this->resolve($id);
} catch (Exception $e) {
if ($this->has($id) || $e instanceof CircularDependencyException) {
throw $e;
}
throw new EntryNotFoundException($id, $e->getCode(), $e);
}
}
/var/www/natumbe.kz/bff/vendor/illuminate/container/Container.php
*
* @param string $key
* @return bool
*/
#[\ReturnTypeWillChange]
public function offsetExists($key)
{
return $this->bound($key);
}
/**
* Get the value at a given offset.
*
* @param string $key
* @return mixed
*/
#[\ReturnTypeWillChange]
public function offsetGet($key)
{
return $this->make($key);
}
/**
* Set the value at a given offset.
*
* @param string $key
* @param mixed $value
* @return void
*/
#[\ReturnTypeWillChange]
public function offsetSet($key, $value)
{
$this->bind($key, $value instanceof Closure ? $value : function () use ($value) {
return $value;
});
}
/**
* Unset the value at a given offset.
*
/var/www/natumbe.kz/bff/vendor/illuminate/support/Facades/Facade.php
}
/**
* Resolve the facade root instance from the container.
*
* @param object|string $name
* @return mixed
*/
protected static function resolveFacadeInstance($name)
{
if (is_object($name)) {
return $name;
}
if (isset(static::$resolvedInstance[$name])) {
return static::$resolvedInstance[$name];
}
if (static::$app) {
return static::$resolvedInstance[$name] = static::$app[$name];
}
}
/**
* Clear a resolved facade instance.
*
* @param string $name
* @return void
*/
public static function clearResolvedInstance($name)
{
unset(static::$resolvedInstance[$name]);
}
/**
* Clear all of the resolved instances.
*
* @return void
*/
public static function clearResolvedInstances()
/var/www/natumbe.kz/bff/vendor/illuminate/support/Facades/Facade.php
* @param mixed $instance
* @return void
*/
public static function swap($instance)
{
static::$resolvedInstance[static::getFacadeAccessor()] = $instance;
if (isset(static::$app)) {
static::$app->instance(static::getFacadeAccessor(), $instance);
}
}
/**
* Get the root object behind the facade.
*
* @return mixed
*/
public static function getFacadeRoot()
{
return static::resolveFacadeInstance(static::getFacadeAccessor());
}
/**
* Get the registered name of the component.
*
* @return string
*
* @throws \RuntimeException
*/
protected static function getFacadeAccessor()
{
throw new RuntimeException('Facade does not implement getFacadeAccessor method.');
}
/**
* Resolve the facade root instance from the container.
*
* @param object|string $name
* @return mixed
*/
/var/www/natumbe.kz/bff/vendor/illuminate/support/Facades/Facade.php
* @param \Illuminate\Contracts\Foundation\Application $app
* @return void
*/
public static function setFacadeApplication($app)
{
static::$app = $app;
}
/**
* Handle dynamic, static calls to the object.
*
* @param string $method
* @param array $args
* @return mixed
*
* @throws \RuntimeException
*/
public static function __callStatic($method, $args)
{
$instance = static::getFacadeRoot();
if (! $instance) {
throw new RuntimeException('A facade root has not been set.');
}
return $instance->$method(...$args);
}
}
/var/www/natumbe.kz/modules/users/base.php
* @return int
*/
public function filterCurrency($default = null, $opts = [])
{
if (! Users::userCurrencyPrices()) {
return $default ?? Currency::id();
}
$curr = null;
if (isset($opts['currency_id'])) {
$curr = $opts['currency_id'];
} else if (User::id()) {
$curr = User::data('currency_id');
}
if (! $curr) {
$country = Geo::regionDataExtra(Geo::filter('id-country'));
$curr = $country['extra']['currency_id'] ?? null;
}
if ($curr) {
$list = Currency::list();
if (! isset($list[$curr])) {
$curr = $default ?? Currency::id();
}
} else {
$curr = $default ?? Currency::id();
}
return $curr;
}
}
/var/www/natumbe.kz/bff/vendor/illuminate/support/Facades/Facade.php
}
/**
* Handle dynamic, static calls to the object.
*
* @param string $method
* @param array $args
* @return mixed
*
* @throws \RuntimeException
*/
public static function __callStatic($method, $args)
{
$instance = static::getFacadeRoot();
if (! $instance) {
throw new RuntimeException('A facade root has not been set.');
}
return $instance->$method(...$args);
}
}
/var/www/natumbe.kz/modules/listings/views/search/FilterBlock.php
$this->listView = array_key_first($views);
}
# Mark active view
foreach ($views as $key => $view) {
$views[$key]['active'] = ($key === $this->listView);
$views[$key]['filtered'] = ($this->originalFilter('listView') === $key);
}
return ($this->listViews = $views);
}
/**
* Init currency
*/
public function initCurrency()
{
# Default currency
$currency = $this->currency ?? $this->currencyId;
$defaultCurrency = Users::filterCurrency();
if ($this->useCategoryCurrency && empty($this->categoryData['price']['curr'])) {
if (! $this->categoryData['price']) {
$this->categoryData['price'] = [];
}
$this->categoryData['price']['curr'] = $defaultCurrency;
}
if (! $currency) {
$currency = $this->categoryData['price']['curr'] ?? 0;
}
if (! $currency) {
$currency = $defaultCurrency;
}
$this->currencyId = $currency;
# Currencies list
if (! $this->listCurrencies) {
$this->listCurrencies = Currency::list();
}
}
/var/www/natumbe.kz/modules/listings/views/search/FilterBlock.php
$this->catFields = [
'id', 'pid', 'numlevel', 'numleft', 'numright',
'settings', 'keyword', 'landing_url', 'title', 'title_filter',
'enabled', 'subs', 'subs_filter_title', 'virtual_ptr',
'type_offer_search', 'type_seek_search', 'type_filter_title',
'icon_b', 'icon_s', 'owner_private_search', 'owner_business_search',
];
$this->catFieldsVirtual = [
'id', 'pid', 'subs', 'numleft', 'numright', 'numlevel', 'enabled', 'title', 'title_filter',
'keyword', 'landing_url',
];
}
protected function onSettingsFilled()
{
$this->sortTypes();
$this->listViews();
$this->initCurrency();
}
public function fillFilters($data = [])
{
# Fix the presence of filters in the GET request
if ($this->isGET() && empty($data)) {
$this->request->forget('c');
}
if ($this->isGET() && ! $this->anyGetFilters) {
foreach ($this->requestMap as $to => $from) {
$this->anyGetFilters += ($this->request->has($from['key']) ? 1 : 0);
}
$this->anyGetFilters += ($this->request->has('p') ? 1 : 0);
}
foreach ($this->requestMap as $to => $from) {
if (isset($data[$from['key']])) {
$this->$to = $this->input->clean($data[$from['key']], $from['type']);
} else {
$this->$to = $this->$to ?? $this->input->postget($from['key'], $from['type']);
/var/www/natumbe.kz/bff/view/HasSettings.php
if ($this->settingsFilled && ! $force) {
return;
}
$parent = $this->getParentPage();
if (! $parent) {
return;
}
if (! $parent->settingsFillAllowed()) {
return;
}
$this->settingsFilled = true;
$settings = $parent->getBlockSettings($this->getKey());
if ($settings) {
$this->setSettings($settings);
}
$this->onSettingsFilled();
}
/**
* Handle settings fill event
*/
protected function onSettingsFilled()
{
}
/**
* Hide/show block settings
* @param bool|null $hide
* @return bool
*/
public function noSettings(?bool $hide = true)
{
if (! is_null($hide)) {
$this->noSettings = $hide;
}
/var/www/natumbe.kz/bff/view/Block.php
* Get sub block by key
* @param string $key
* @param array $opts
* @return Block|null
*/
public function getBlock(string $key, array $opts = [])
{
if (! isset($this->blocks[$key])) {
return null;
}
if (is_callable($this->blocks[$key])) {
$this->blocks[$key] = $this->blocks[$key]();
}
if ($this->withoutBlocks && $this->blocks[$key] instanceof self) {
$this->blocks[$key]->withoutBlock($this->withoutBlocks);
}
if ($this->blocks[$key]) {
$this->blocks[$key]->fillSettings();
} else {
$this->log('Can\'t create block ' . $key . ' for block ' . get_class($this));
}
return $this->blocks[$key];
}
/**
* Set sub block settings and return block instance
* @param string $key
* @param array $settings
* @return Block|null
*/
public function setBlockSettings(string $key, array $settings)
{
$block = $this->getBlock($key);
if ($block) {
$block->setSettings($settings);
return $block;
}
/var/www/natumbe.kz/modules/listings/views/SearchPage.php
{
$this->addBlock('filterBlock', $this->filter);
$this->rotateBlock('filterBlock', false);
$this->addBlock('sortBlock', function () {
return $this->filter->getSortBlock();
});
$this->rotateBlock('sortBlock', false);
$this->addBlock('categoriesBlock', CategoriesBlock::class, function (CategoriesBlock $block) {
$block->filter = $this->filter;
$block->categoryId = $this->filter->categoryId;
});
$this->addBlock('listBlock', function () {
$view = $this->app->filter('listings.search.list.view', [
ListFactory::LIST => ListBlock::class,
ListFactory::GALLERY => GalleryListBlock::class,
ListFactory::MAP => MapListBlock::class,
])[$this->getBlock('filterBlock')->listView ?: ListFactory::GALLERY];
return $this->createBlock($view, ['filter' => $this->filter]);
});
$this->addBlock('relinkBlock', RelinkBlock::class, function (RelinkBlock $block) {
$block->filter = $this->filter;
});
}
/**
* List block
* @return ListBlock|mixed
*/
public function getList()
{
return $this->getBlock('listBlock');
}
public function seo()
{
if ($this->isGET()) {
/var/www/natumbe.kz/bff/view/Block.php
* @param string|Block|Closure $block
* @param Closure|null|array $callback
* @param array $opts
* rotatable options - @see HasBlocksRotation::rotatableSettingsDefault
* @return static
*/
public function addBlock(string $key, $block, $callback = null, array $opts = [])
{
if ($block instanceof self) {
$block->setParent($this);
if ($callback instanceof Closure) {
$callback($block, $key);
}
$this->blocks[$key] = $block;
$this->setRotatableBlockOptions($key, $opts);
return $this;
}
$this->blocks[$key] = function () use ($key, $block, $callback, $opts) {
if ($block instanceof Closure) {
$block = $block($this);
}
if (is_string($block) && static::isValidBlockClass($block)) {
$block = $this->createBlock($block, is_array($callback) ? $callback : []);
}
if ($block instanceof self) {
$this->addBlock($key, $block, $callback, $opts);
return $block;
}
return null;
};
return $this;
}
/**
* Add template block
* @param string $key
* @param string $template
* @param Module|string|null $controller
* @param Closure|null $callback
/var/www/natumbe.kz/bff/view/Block.php
} else {
$this->withoutBlocks[] = $key;
}
return $this;
}
/**
* Get sub block by key
* @param string $key
* @param array $opts
* @return Block|null
*/
public function getBlock(string $key, array $opts = [])
{
if (! isset($this->blocks[$key])) {
return null;
}
if (is_callable($this->blocks[$key])) {
$this->blocks[$key] = $this->blocks[$key]();
}
if ($this->withoutBlocks && $this->blocks[$key] instanceof self) {
$this->blocks[$key]->withoutBlock($this->withoutBlocks);
}
if ($this->blocks[$key]) {
$this->blocks[$key]->fillSettings();
} else {
$this->log('Can\'t create block ' . $key . ' for block ' . get_class($this));
}
return $this->blocks[$key];
}
/**
* Set sub block settings and return block instance
* @param string $key
* @param array $settings
* @return Block|null
/var/www/natumbe.kz/modules/listings/views/SearchPage.php
$view = $this->app->filter('listings.search.list.view', [
ListFactory::LIST => ListBlock::class,
ListFactory::GALLERY => GalleryListBlock::class,
ListFactory::MAP => MapListBlock::class,
])[$this->getBlock('filterBlock')->listView ?: ListFactory::GALLERY];
return $this->createBlock($view, ['filter' => $this->filter]);
});
$this->addBlock('relinkBlock', RelinkBlock::class, function (RelinkBlock $block) {
$block->filter = $this->filter;
});
}
/**
* List block
* @return ListBlock|mixed
*/
public function getList()
{
return $this->getBlock('listBlock');
}
public function seo()
{
if ($this->isGET()) {
$this->seoCorrectUrlEndSlash();
}
$catID = $this->filter->categoryId;
$catData = &$this->filter->categoryData;
$region = $this->filter->region;
$total = $this->filter->total;
$this->seo->with([
'page' => $this->filter->page,
'total' => $total,
'total.text' => tpl::declension($total, _t('listings', 'listing;listings;listings')),
'query' => $this->filter->query,
]);
$geoData = $this->seoMacrosRegionsData($region);
/var/www/natumbe.kz/modules/listings/views/SearchPage.php
$filter->categoryId &&
$filter->categoryData['numlevel'] == 1 &&
$filter->categoryData['settings']['subcats_view'] &&
! $filter->anyGetFilters
) {
return bff(contracts\CategoryPage::class, ['settings' => ['filter' => $filter]]);
}
if ($filter->categoryId && $filter->categoryId !== $categoryRootId) {
return bff(contracts\SearchCategoryPage::class, ['settings' => ['filter' => $filter]]);
}
return bff(contracts\SearchPage::class, ['settings' => ['filter' => $filter]]);
}
public function data()
{
$data = parent::data();
$this->getList()->loadList();
# Banners + query
if ($this->filter->hasSearchQuery()) {
Banners::viewQuery($this->filter->query);
}
# Category crumbs
$this->filter->categoryData['crumbs'] = Listings::categoryCrumbs($this->filter->categoryId, 'search');
$data['category'] = &$this->filter->categoryData;
# Page number
$data['page'] = $this->filter->page;
return $this->app->filter('listings.search.page.data', $data, ['searchPage' => $this]);
}
public function blocks()
{
$this->addBlock('filterBlock', $this->filter);
$this->rotateBlock('filterBlock', false);
/var/www/natumbe.kz/bff/view/Block.php
foreach ($this->fillable as $key) {
# Do not override data keys
if (array_key_exists($key, $this->data)) {
continue;
}
$this->data[$key] = &$this->$key;
}
}
/**
* Gather data before render
* @return void
*/
protected function gatherData()
{
$this->fillSettings();
$this->fillableToData();
$this->data = $this->data();
$this->app->hook('view.block.data', $this, ['data' => & $this->data]);
if (is_array($this->data)) {
$this->blocksIterator(function ($block, $key) {
$this->data[$key] = $block;
});
}
}
/**
* Get block (and sub blocks) data without rendering
* @return array|mixed
*/
public function getData()
{
$this->gatherData();
if (is_array($this->data)) {
foreach ($this->data as $key => $value) {
/var/www/natumbe.kz/bff/view/Block.php
$wrapper['renderOptions'] ?? $this->renderOptions
);
continue;
}
if (is_callable($wrapper['template'])) {
$content = call_user_func($wrapper['template'], $content, $this->data);
}
}
}
return $content;
}
/**
* Render block content
* @return string|mixed
*/
protected function renderContent()
{
$this->gatherData();
# Try to return data
if (! is_array($this->data)) {
if ($this->data instanceof self) {
return $this->data->render();
}
# cancel render
if ($this->beforeRender() === false) {
return '';
}
# string is a render goal
if (is_string($this->data)) {
return $this->data;
}
# throw response
if ($this->data instanceof Response) {
$this->data->throw();
}
if ($this->data instanceof Closure) {
$callback = $this->data;
/var/www/natumbe.kz/bff/view/Page.php
$this->fillSettings();
}
if ($this->isSubmitAction()) {
if ($response = $this->handleActionRequest('submit')) {
if (is_array($response)) {
return $this->getActionResponse($response);
}
return $response;
}
} else {
if ($response = $this->handleActionRequest()) {
if (is_array($response)) {
return $this->getActionResponse($response);
}
return $response;
}
}
return parent::renderContent();
}
/**
* Init before render to fill seo data used in template (titleh1, breadcrumbs ...)
* @return bool|void
*/
protected function beforeRender()
{
if (parent::beforeRender() === false) {
return false;
}
if ($this->skipSeo) {
return;
}
if (is_array($this->data)) {
$this->seoSettings();
$this->seo();
/var/www/natumbe.kz/bff/view/Block.php
return parent::config($key, $default, $opts);
}
/**
* Before render
* @return bool|void
*/
protected function beforeRender()
{
$this->beforeRenderRotation();
}
/**
* Render block
* @return string|mixed
*/
public function render()
{
$content = $this->renderContent();
if (! is_string($content)) {
return $content;
}
$content = $this->applyWrappers($content);
return $this->app->filter('view.block.render', $content, $this);
}
/**
* Apply content wrappers
* @param string $content
* @return false|mixed|\Psr\Http\Message\ResponseInterface|string
*/
protected function applyWrappers($content)
{
if (! empty($this->wrappers)) {
foreach (array_reverse($this->wrappers) as $wrapper) {
if (empty($wrapper['template'])) {
continue;
/var/www/natumbe.kz/bff/base/Router.php
if ($controller && $action) {
return $this->get(static::DIRECT_ROUTE, '', $controller . '/' . $action . '/');
}
return null;
}
/**
* Gather route middleware
* @param \bff\http\Request $request
* @param \bff\base\Route $route
* @return \bff\http\Response|mixed
*/
public function runRoute(Request $request, Route $route)
{
try {
# Run
$response = $route->run($request);
if ($response instanceof Block) {
$response = $response->render();
}
} catch (ResponseException $e) {
# Special type of exception in cases where unable to implement proper "return Response"
return $e->getResponse();
} catch (ModelRecordNotFoundException $e) {
if (Errors::no()) {
Errors::unknownRecord();
}
if ($request->isAJAX()) {
return Response::json(['data' => [], 'errors' => Errors::get()]);
}
} catch (NotFoundException $e) {
return Response::notFound($e->getResponse());
} catch (Throwable $e) {
if (! bff()->isDebug()) {
Errors::logException($e);
return Errors::error404();
}
return Errors::handleException($e);
}
/var/www/natumbe.kz/bff/base/Application.php
if (is_string($middleware) && array_key_exists($middleware, $this->middlewareGroups)) {
foreach ($this->middlewareGroups[$middleware] as $key => $value) {
if (is_string($key)) {
$stack[$key] = $value;
} else {
$stack[] = $value;
}
}
} else {
$stack[] = $middleware;
}
}
if ($this->adminPanel()) {
# Admin
$stack[] = ['callback' => \bff\middleware\AdminPanel::class, 'priority' => 100];
} else {
# Frontend ...
$stack[] = ['callback' => function (Request $request, $next) use ($route) {
# Run
$response = $this->router()->runRoute($request, $route);
# Html + Layout
if (is_string($response)) {
return $this->view()->layoutResponse([
'centerblock' => $this->view()->vueRender(
$this->tags()->process($response)
),
]);
}
# Other response types
return Response::responsify($response);
}, 'priority' => 100];
}
} else {
if ($this->adminPanel()) {
# Admin
$stack[] = ['callback' => \bff\middleware\StartSession::class, 'priority' => 50];
$stack[] = ['callback' => \bff\middleware\AdminPanel::class, 'priority' => 100];
} else {
# Not found: Frontend ...
$stack[] = function () {
/var/www/natumbe.kz/bff/vendor/illuminate/pipeline/Pipeline.php
return $this->handleException($passable, $e);
}
};
}
/**
* Get a Closure that represents a slice of the application onion.
*
* @return \Closure
*/
protected function carry()
{
return function ($stack, $pipe) {
return function ($passable) use ($stack, $pipe) {
try {
if (is_callable($pipe)) {
// If the pipe is a callable, then we will call it directly, but otherwise we
// will resolve the pipes out of the dependency container and call it with
// the appropriate method and arguments, returning the results back out.
return $pipe($passable, $stack);
} elseif (! is_object($pipe)) {
[$name, $parameters] = $this->parsePipeString($pipe);
// If the pipe is a string we will parse the string and resolve the class out
// of the dependency injection container. We can then build a callable and
// execute the pipe function giving in the parameters that are required.
$pipe = $this->getContainer()->make($name);
$parameters = array_merge([$passable, $stack], $parameters);
} else {
// If the pipe is already an object we'll just make a callable and pass it to
// the pipe as-is. There is no need to do any extra parsing and formatting
// since the object we're given was already a fully instantiated object.
$parameters = [$passable, $stack];
}
$carry = method_exists($pipe, $this->method)
? $pipe->{$this->method}(...$parameters)
: $pipe(...$parameters);
/var/www/natumbe.kz/bff/middleware/StartSession.php
/**
* Handle the given request within session state.
*
* @param \bff\http\Request $request
* @param \Illuminate\Contracts\Session\Session $session
* @param \Closure $next
* @return mixed
*/
protected function handleStatefulRequest(Request $request, $session, Closure $next)
{
// If a session driver has been configured, we will need to start the session here
// so that the data is ready for an application. Note that the Laravel sessions
// do not make use of PHP "native" sessions in any way since they are crappy.
$request->setSession(
$this->startSession($request, $session)
);
$this->collectGarbage($session);
$response = $next($request);
$this->storeCurrentUrl($request, $session);
if ($this->isSecureRequest($request, $session)) {
$response = $this->addCookieToResponse($response, $session);
// Again, if the session has been configured we will need to close out the session
// so that the attributes may be persisted to some storage medium. We will also
// add the session identifier cookie to the application response headers now.
$this->saveSession($request);
}
return $response;
}
/**
* Start the session for the given request.
*
* @param \bff\http\Request $request
* @param \Illuminate\Contracts\Session\Session $session
/var/www/natumbe.kz/bff/middleware/StartSession.php
*/
public function handle($request, Closure $next)
{
if (! $this->sessionConfigured()) {
return $next($request);
}
# No session for robots
if ($request->isRobot()) {
config::temp('session.driver', 'array');
}
$session = $this->getSession($request);
if (
$this->manager->shouldBlock() ||
($request->route() instanceof Route && $request->route()->locksFor())
) {
return $this->handleRequestWhileBlocking($request, $session, $next);
} else {
return $this->handleStatefulRequest($request, $session, $next);
}
}
/**
* Handle the given request within session state.
*
* @param \bff\http\Request $request
* @param \Illuminate\Contracts\Session\Session $session
* @param \Closure $next
* @return mixed
*/
protected function handleRequestWhileBlocking(Request $request, $session, Closure $next)
{
if (! $request->route() instanceof Route) {
return;
}
$lockFor = $request->route() && $request->route()->locksFor()
? $request->route()->locksFor()
: 10;
/var/www/natumbe.kz/bff/vendor/illuminate/pipeline/Pipeline.php
// the appropriate method and arguments, returning the results back out.
return $pipe($passable, $stack);
} elseif (! is_object($pipe)) {
[$name, $parameters] = $this->parsePipeString($pipe);
// If the pipe is a string we will parse the string and resolve the class out
// of the dependency injection container. We can then build a callable and
// execute the pipe function giving in the parameters that are required.
$pipe = $this->getContainer()->make($name);
$parameters = array_merge([$passable, $stack], $parameters);
} else {
// If the pipe is already an object we'll just make a callable and pass it to
// the pipe as-is. There is no need to do any extra parsing and formatting
// since the object we're given was already a fully instantiated object.
$parameters = [$passable, $stack];
}
$carry = method_exists($pipe, $this->method)
? $pipe->{$this->method}(...$parameters)
: $pipe(...$parameters);
return $this->handleCarry($carry);
} catch (Throwable $e) {
return $this->handleException($passable, $e);
}
};
};
}
/**
* Parse full pipe string to get name and parameters.
*
* @param string $pipe
* @return array
*/
protected function parsePipeString($pipe)
{
[$name, $parameters] = array_pad(explode(':', $pipe, 2), 2, []);
/var/www/natumbe.kz/bff/middleware/UserLastActivity.php
use User;
use Users;
use bff\http\Request;
/**
* Помечаем последнюю активность пользователя
* @copyright Tamaranga
*/
class UserLastActivity
{
public function __invoke(Request $request, $next)
{
if (User::logined()) {
$userID = User::id();
# Update last activity
Users::updateUserLastActivity($userID);
}
return $next($request);
}
}
/var/www/natumbe.kz/bff/vendor/illuminate/pipeline/Pipeline.php
return $pipe($passable, $stack);
} elseif (! is_object($pipe)) {
[$name, $parameters] = $this->parsePipeString($pipe);
// If the pipe is a string we will parse the string and resolve the class out
// of the dependency injection container. We can then build a callable and
// execute the pipe function giving in the parameters that are required.
$pipe = $this->getContainer()->make($name);
$parameters = array_merge([$passable, $stack], $parameters);
} else {
// If the pipe is already an object we'll just make a callable and pass it to
// the pipe as-is. There is no need to do any extra parsing and formatting
// since the object we're given was already a fully instantiated object.
$parameters = [$passable, $stack];
}
$carry = method_exists($pipe, $this->method)
? $pipe->{$this->method}(...$parameters)
: $pipe(...$parameters);
return $this->handleCarry($carry);
} catch (Throwable $e) {
return $this->handleException($passable, $e);
}
};
};
}
/**
* Parse full pipe string to get name and parameters.
*
* @param string $pipe
* @return array
*/
protected function parsePipeString($pipe)
{
[$name, $parameters] = array_pad(explode(':', $pipe, 2), 2, []);
if (is_string($parameters)) {
/var/www/natumbe.kz/bff/middleware/LoginAuto.php
$userData = Users::model()->userData($userID, ['user_id', 'user_id_ex', 'last_login']);
if (empty($userData)) {
break;
}
if (Users::model()->userIsAdministrator($userID)) {
break;
}
if ($hashFull !== Users::loginAutoHash($userData)) {
break;
}
if (Users::i()->authById($userID) === true) {
break;
}
return Redirect::route('users-login', [
'ref' => $request->url(true),
]);
} while (false);
return $next($request);
}
}
/var/www/natumbe.kz/bff/vendor/illuminate/pipeline/Pipeline.php
return $pipe($passable, $stack);
} elseif (! is_object($pipe)) {
[$name, $parameters] = $this->parsePipeString($pipe);
// If the pipe is a string we will parse the string and resolve the class out
// of the dependency injection container. We can then build a callable and
// execute the pipe function giving in the parameters that are required.
$pipe = $this->getContainer()->make($name);
$parameters = array_merge([$passable, $stack], $parameters);
} else {
// If the pipe is already an object we'll just make a callable and pass it to
// the pipe as-is. There is no need to do any extra parsing and formatting
// since the object we're given was already a fully instantiated object.
$parameters = [$passable, $stack];
}
$carry = method_exists($pipe, $this->method)
? $pipe->{$this->method}(...$parameters)
: $pipe(...$parameters);
return $this->handleCarry($carry);
} catch (Throwable $e) {
return $this->handleException($passable, $e);
}
};
};
}
/**
* Parse full pipe string to get name and parameters.
*
* @param string $pipe
* @return array
*/
protected function parsePipeString($pipe)
{
[$name, $parameters] = array_pad(explode(':', $pipe, 2), 2, []);
if (is_string($parameters)) {
/var/www/natumbe.kz/bff/middleware/Offline.php
<?php //ICB0 71:0 81:1468 ?><?php //00091
// Copyright Tamaranga. 2014-2022
// All Rights Reserved
echo('No IonCube Loader is installed. Please contact support.');exit(199);
?>
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
/var/www/natumbe.kz/bff/vendor/illuminate/pipeline/Pipeline.php
return $pipe($passable, $stack);
} elseif (! is_object($pipe)) {
[$name, $parameters] = $this->parsePipeString($pipe);
// If the pipe is a string we will parse the string and resolve the class out
// of the dependency injection container. We can then build a callable and
// execute the pipe function giving in the parameters that are required.
$pipe = $this->getContainer()->make($name);
$parameters = array_merge([$passable, $stack], $parameters);
} else {
// If the pipe is already an object we'll just make a callable and pass it to
// the pipe as-is. There is no need to do any extra parsing and formatting
// since the object we're given was already a fully instantiated object.
$parameters = [$passable, $stack];
}
$carry = method_exists($pipe, $this->method)
? $pipe->{$this->method}(...$parameters)
: $pipe(...$parameters);
return $this->handleCarry($carry);
} catch (Throwable $e) {
return $this->handleException($passable, $e);
}
};
};
}
/**
* Parse full pipe string to get name and parameters.
*
* @param string $pipe
* @return array
*/
protected function parsePipeString($pipe)
{
[$name, $parameters] = array_pad(explode(':', $pipe, 2), 2, []);
if (is_string($parameters)) {
/var/www/natumbe.kz/app/middleware/SubdomainsValidation.php
break;
}
if (preg_match('/(.*)\.' . preg_quote(SITEHOST) . '/', $host, $matches) <= 0) {
break;
}
if (empty($matches[1])) {
break;
}
if (Geo::urlType() !== Geo::URL_SUBDOMAIN) {
return Errors::error404();
};
$region = Geo::regionDataByKeyword($matches[1]);
if (empty($region)) {
# Could not find region by keyword
return Errors::error404();
}
} while (false);
return $next($request);
}
}
/var/www/natumbe.kz/bff/vendor/illuminate/pipeline/Pipeline.php
return $pipe($passable, $stack);
} elseif (! is_object($pipe)) {
[$name, $parameters] = $this->parsePipeString($pipe);
// If the pipe is a string we will parse the string and resolve the class out
// of the dependency injection container. We can then build a callable and
// execute the pipe function giving in the parameters that are required.
$pipe = $this->getContainer()->make($name);
$parameters = array_merge([$passable, $stack], $parameters);
} else {
// If the pipe is already an object we'll just make a callable and pass it to
// the pipe as-is. There is no need to do any extra parsing and formatting
// since the object we're given was already a fully instantiated object.
$parameters = [$passable, $stack];
}
$carry = method_exists($pipe, $this->method)
? $pipe->{$this->method}(...$parameters)
: $pipe(...$parameters);
return $this->handleCarry($carry);
} catch (Throwable $e) {
return $this->handleException($passable, $e);
}
};
};
}
/**
* Parse full pipe string to get name and parameters.
*
* @param string $pipe
* @return array
*/
protected function parsePipeString($pipe)
{
[$name, $parameters] = array_pad(explode(':', $pipe, 2), 2, []);
if (is_string($parameters)) {
/var/www/natumbe.kz/bff/middleware/Cors.php
* @param mixed $next
* @return ResponseInterface
*/
public function __invoke(RequestInterface $request, $next)
{
return $this->handle($request, $next);
}
/**
* Handle request
* @param RequestInterface $request
* @param mixed $next
* @return ResponseInterface
*/
public function handle(RequestInterface $request, $next)
{
# Skip requests without Origin header
if (! $request->hasHeader('Origin')) {
# Not an access control request
return $next($request);
}
# Preflight Request
if ($this->isPreflightRequest($request)) {
return $this->setCorsHeaders($request, ResponseFactory::empty(), true);
}
# Strict request validation
if ($this->strict() && ! $this->isAllowedRequest($request)) {
return ResponseFactory::createResponse(403, $this->options['forbidden_message'] ?? '');
}
return $this->setCorsHeaders($request, $next($request));
}
/**
* Is preflight request
* @param RequestInterface $request
* @return bool
*/
/var/www/natumbe.kz/bff/vendor/illuminate/pipeline/Pipeline.php
// the appropriate method and arguments, returning the results back out.
return $pipe($passable, $stack);
} elseif (! is_object($pipe)) {
[$name, $parameters] = $this->parsePipeString($pipe);
// If the pipe is a string we will parse the string and resolve the class out
// of the dependency injection container. We can then build a callable and
// execute the pipe function giving in the parameters that are required.
$pipe = $this->getContainer()->make($name);
$parameters = array_merge([$passable, $stack], $parameters);
} else {
// If the pipe is already an object we'll just make a callable and pass it to
// the pipe as-is. There is no need to do any extra parsing and formatting
// since the object we're given was already a fully instantiated object.
$parameters = [$passable, $stack];
}
$carry = method_exists($pipe, $this->method)
? $pipe->{$this->method}(...$parameters)
: $pipe(...$parameters);
return $this->handleCarry($carry);
} catch (Throwable $e) {
return $this->handleException($passable, $e);
}
};
};
}
/**
* Parse full pipe string to get name and parameters.
*
* @param string $pipe
* @return array
*/
protected function parsePipeString($pipe)
{
[$name, $parameters] = array_pad(explode(':', $pipe, 2), 2, []);
/var/www/natumbe.kz/bff/middleware/FrameGuard.php
<?php
namespace bff\middleware;
use Security;
use bff\http\Request;
/**
* X-Frame-Options
* @copyright Tamaranga
*/
class FrameGuard
{
public function __invoke(Request $request, $next)
{
if (! $request->isPOST()) {
Security::setIframeOptions();
}
return $next($request);
}
}
/var/www/natumbe.kz/bff/vendor/illuminate/pipeline/Pipeline.php
return $pipe($passable, $stack);
} elseif (! is_object($pipe)) {
[$name, $parameters] = $this->parsePipeString($pipe);
// If the pipe is a string we will parse the string and resolve the class out
// of the dependency injection container. We can then build a callable and
// execute the pipe function giving in the parameters that are required.
$pipe = $this->getContainer()->make($name);
$parameters = array_merge([$passable, $stack], $parameters);
} else {
// If the pipe is already an object we'll just make a callable and pass it to
// the pipe as-is. There is no need to do any extra parsing and formatting
// since the object we're given was already a fully instantiated object.
$parameters = [$passable, $stack];
}
$carry = method_exists($pipe, $this->method)
? $pipe->{$this->method}(...$parameters)
: $pipe(...$parameters);
return $this->handleCarry($carry);
} catch (Throwable $e) {
return $this->handleException($passable, $e);
}
};
};
}
/**
* Parse full pipe string to get name and parameters.
*
* @param string $pipe
* @return array
*/
protected function parsePipeString($pipe)
{
[$name, $parameters] = array_pad(explode(':', $pipe, 2), 2, []);
if (is_string($parameters)) {
/var/www/natumbe.kz/bff/middleware/TrustedProxies.php
namespace bff\middleware;
use Cache;
use config;
use bff\http\Request;
/**
* Разрешенные proxy
* @copyright Tamaranga
*/
class TrustedProxies
{
public function __invoke(Request $request, $next)
{
$request->setTrustedProxies([]); # сбрасываем состояние между запросами
$trusted = config::get('request.trusted.proxies');
if (is_null($trusted) || $trusted === '') {
return $next($request);
}
if (is_string($trusted)) {
if ($trusted === '*') {
$trusted = [
$request->remoteAddress(false, false) # текущий IP
];
} else {
$trusted = array_map('trim', explode(',', $trusted));
}
}
if (is_array($trusted)) {
$request->setTrustedProxies(
$this->mixinCloudFlareIps($trusted)
);
}
return $next($request);
}
/var/www/natumbe.kz/bff/vendor/illuminate/pipeline/Pipeline.php
return $pipe($passable, $stack);
} elseif (! is_object($pipe)) {
[$name, $parameters] = $this->parsePipeString($pipe);
// If the pipe is a string we will parse the string and resolve the class out
// of the dependency injection container. We can then build a callable and
// execute the pipe function giving in the parameters that are required.
$pipe = $this->getContainer()->make($name);
$parameters = array_merge([$passable, $stack], $parameters);
} else {
// If the pipe is already an object we'll just make a callable and pass it to
// the pipe as-is. There is no need to do any extra parsing and formatting
// since the object we're given was already a fully instantiated object.
$parameters = [$passable, $stack];
}
$carry = method_exists($pipe, $this->method)
? $pipe->{$this->method}(...$parameters)
: $pipe(...$parameters);
return $this->handleCarry($carry);
} catch (Throwable $e) {
return $this->handleException($passable, $e);
}
};
};
}
/**
* Parse full pipe string to get name and parameters.
*
* @param string $pipe
* @return array
*/
protected function parsePipeString($pipe)
{
[$name, $parameters] = array_pad(explode(':', $pipe, 2), 2, []);
if (is_string($parameters)) {
/var/www/natumbe.kz/bff/vendor/illuminate/pipeline/Pipeline.php
public function via($method)
{
$this->method = $method;
return $this;
}
/**
* Run the pipeline with a final destination callback.
*
* @param \Closure $destination
* @return mixed
*/
public function then(Closure $destination)
{
$pipeline = array_reduce(
array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
);
return $pipeline($this->passable);
}
/**
* Run the pipeline and return the result.
*
* @return mixed
*/
public function thenReturn()
{
return $this->then(function ($passable) {
return $passable;
});
}
/**
* Get the final piece of the Closure onion.
*
* @param \Closure $destination
* @return \Closure
*/
/var/www/natumbe.kz/bff/base/Application.php
}
return $result;
}
/**
* Run middleware stack
* @param array $pipes
* @param mixed $passable
* @param Closure|null $destination
* @return mixed|\bff\http\Response
*/
public function middlewareRun(array $pipes, $passable, ?Closure $destination = null)
{
return (new Pipeline($this))
->send($passable)
->through($pipes)
->then($destination ?? function ($passable) {
return $passable;
});
}
/**
* @param string $method
* @param array $parameters
* @return mixed
*/
public function __call($method, $parameters)
{
# Call macro method
if (static::hasMacro($method)) {
return $this->callMacro($method, $parameters);
}
return null;
}
/**
* Handle dynamic static method calls into the method.
* @param string $method
/var/www/natumbe.kz/bff/base/Application.php
'dynamic' => true,
]);
}
} catch (Throwable $e) {
$route = null;
}
# Handle route
if ($route) {
# Controller/action fallback
bff::$class = $route->getControllerName();
bff::$event = $route->getControllerMethod();
# Set request route
$request->setRouteResolver(function () use ($route) {
return $route;
});
}
# Call middleware stack
$response = $this->middlewareRun($this->finalizeMiddleware(
$this->filter('app.middleware', $this->middlewares),
$route
), $request);
# Fix http protocol mismatch
if ($response->getProtocolVersion() !== ($requestProtocol = $request->getProtocolVersion())) {
if ($requestProtocol === '2.0') {
$requestProtocol = '2';
}
$response = $response->withProtocolVersion($requestProtocol);
}
# Respond
if ($respond) {
$this->respond($response);
}
return $response;
}
/var/www/natumbe.kz/public_html/index.php
<?php
$_SERVER["DOCUMENT_ROOT"] = __DIR__;
require_once($_SERVER['DOCUMENT_ROOT'].'/protect192/code/include.php');
require __DIR__ . '/../bff/bootstrap.php';
bff()->run();