123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426 |
- <?php
-
- namespace Illuminate\View;
-
- use Exception;
- use Throwable;
- use ArrayAccess;
- use BadMethodCallException;
- use Illuminate\Support\Str;
- use Illuminate\Support\MessageBag;
- use Illuminate\Contracts\View\Engine;
- use Illuminate\Support\Traits\Macroable;
- use Illuminate\Contracts\Support\Arrayable;
- use Illuminate\Contracts\Support\Renderable;
- use Illuminate\Contracts\Support\MessageProvider;
- use Illuminate\Contracts\View\View as ViewContract;
-
- class View implements ArrayAccess, ViewContract
- {
- use Macroable {
- __call as macroCall;
- }
-
- /**
- * The view factory instance.
- *
- * @var \Illuminate\View\Factory
- */
- protected $factory;
-
- /**
- * The engine implementation.
- *
- * @var \Illuminate\Contracts\View\Engine
- */
- protected $engine;
-
- /**
- * The name of the view.
- *
- * @var string
- */
- protected $view;
-
- /**
- * The array of view data.
- *
- * @var array
- */
- protected $data;
-
- /**
- * The path to the view file.
- *
- * @var string
- */
- protected $path;
-
- /**
- * Create a new view instance.
- *
- * @param \Illuminate\View\Factory $factory
- * @param \Illuminate\Contracts\View\Engine $engine
- * @param string $view
- * @param string $path
- * @param mixed $data
- * @return void
- */
- public function __construct(Factory $factory, Engine $engine, $view, $path, $data = [])
- {
- $this->view = $view;
- $this->path = $path;
- $this->engine = $engine;
- $this->factory = $factory;
-
- $this->data = $data instanceof Arrayable ? $data->toArray() : (array) $data;
- }
-
- /**
- * Get the string contents of the view.
- *
- * @param callable|null $callback
- * @return string
- *
- * @throws \Throwable
- */
- public function render(callable $callback = null)
- {
- try {
- $contents = $this->renderContents();
-
- $response = isset($callback) ? call_user_func($callback, $this, $contents) : null;
-
- // Once we have the contents of the view, we will flush the sections if we are
- // done rendering all views so that there is nothing left hanging over when
- // another view gets rendered in the future by the application developer.
- $this->factory->flushStateIfDoneRendering();
-
- return ! is_null($response) ? $response : $contents;
- } catch (Exception $e) {
- $this->factory->flushState();
-
- throw $e;
- } catch (Throwable $e) {
- $this->factory->flushState();
-
- throw $e;
- }
- }
-
- /**
- * Get the contents of the view instance.
- *
- * @return string
- */
- protected function renderContents()
- {
- // We will keep track of the amount of views being rendered so we can flush
- // the section after the complete rendering operation is done. This will
- // clear out the sections for any separate views that may be rendered.
- $this->factory->incrementRender();
-
- $this->factory->callComposer($this);
-
- $contents = $this->getContents();
-
- // Once we've finished rendering the view, we'll decrement the render count
- // so that each sections get flushed out next time a view is created and
- // no old sections are staying around in the memory of an environment.
- $this->factory->decrementRender();
-
- return $contents;
- }
-
- /**
- * Get the evaluated contents of the view.
- *
- * @return string
- */
- protected function getContents()
- {
- return $this->engine->get($this->path, $this->gatherData());
- }
-
- /**
- * Get the data bound to the view instance.
- *
- * @return array
- */
- protected function gatherData()
- {
- $data = array_merge($this->factory->getShared(), $this->data);
-
- foreach ($data as $key => $value) {
- if ($value instanceof Renderable) {
- $data[$key] = $value->render();
- }
- }
-
- return $data;
- }
-
- /**
- * Get the sections of the rendered view.
- *
- * @return string
- */
- public function renderSections()
- {
- return $this->render(function () {
- return $this->factory->getSections();
- });
- }
-
- /**
- * Add a piece of data to the view.
- *
- * @param string|array $key
- * @param mixed $value
- * @return $this
- */
- public function with($key, $value = null)
- {
- if (is_array($key)) {
- $this->data = array_merge($this->data, $key);
- } else {
- $this->data[$key] = $value;
- }
-
- return $this;
- }
-
- /**
- * Add a view instance to the view data.
- *
- * @param string $key
- * @param string $view
- * @param array $data
- * @return $this
- */
- public function nest($key, $view, array $data = [])
- {
- return $this->with($key, $this->factory->make($view, $data));
- }
-
- /**
- * Add validation errors to the view.
- *
- * @param \Illuminate\Contracts\Support\MessageProvider|array $provider
- * @return $this
- */
- public function withErrors($provider)
- {
- $this->with('errors', $this->formatErrors($provider));
-
- return $this;
- }
-
- /**
- * Format the given message provider into a MessageBag.
- *
- * @param \Illuminate\Contracts\Support\MessageProvider|array $provider
- * @return \Illuminate\Support\MessageBag
- */
- protected function formatErrors($provider)
- {
- return $provider instanceof MessageProvider
- ? $provider->getMessageBag() : new MessageBag((array) $provider);
- }
-
- /**
- * Get the name of the view.
- *
- * @return string
- */
- public function name()
- {
- return $this->getName();
- }
-
- /**
- * Get the name of the view.
- *
- * @return string
- */
- public function getName()
- {
- return $this->view;
- }
-
- /**
- * Get the array of view data.
- *
- * @return array
- */
- public function getData()
- {
- return $this->data;
- }
-
- /**
- * Get the path to the view file.
- *
- * @return string
- */
- public function getPath()
- {
- return $this->path;
- }
-
- /**
- * Set the path to the view.
- *
- * @param string $path
- * @return void
- */
- public function setPath($path)
- {
- $this->path = $path;
- }
-
- /**
- * Get the view factory instance.
- *
- * @return \Illuminate\View\Factory
- */
- public function getFactory()
- {
- return $this->factory;
- }
-
- /**
- * Get the view's rendering engine.
- *
- * @return \Illuminate\Contracts\View\Engine
- */
- public function getEngine()
- {
- return $this->engine;
- }
-
- /**
- * Determine if a piece of data is bound.
- *
- * @param string $key
- * @return bool
- */
- public function offsetExists($key)
- {
- return array_key_exists($key, $this->data);
- }
-
- /**
- * Get a piece of bound data to the view.
- *
- * @param string $key
- * @return mixed
- */
- public function offsetGet($key)
- {
- return $this->data[$key];
- }
-
- /**
- * Set a piece of data on the view.
- *
- * @param string $key
- * @param mixed $value
- * @return void
- */
- public function offsetSet($key, $value)
- {
- $this->with($key, $value);
- }
-
- /**
- * Unset a piece of data from the view.
- *
- * @param string $key
- * @return void
- */
- public function offsetUnset($key)
- {
- unset($this->data[$key]);
- }
-
- /**
- * Get a piece of data from the view.
- *
- * @param string $key
- * @return mixed
- */
- public function &__get($key)
- {
- return $this->data[$key];
- }
-
- /**
- * Set a piece of data on the view.
- *
- * @param string $key
- * @param mixed $value
- * @return void
- */
- public function __set($key, $value)
- {
- $this->with($key, $value);
- }
-
- /**
- * Check if a piece of data is bound to the view.
- *
- * @param string $key
- * @return bool
- */
- public function __isset($key)
- {
- return isset($this->data[$key]);
- }
-
- /**
- * Remove a piece of bound data from the view.
- *
- * @param string $key
- * @return bool
- */
- public function __unset($key)
- {
- unset($this->data[$key]);
- }
-
- /**
- * Dynamically bind parameters to the view.
- *
- * @param string $method
- * @param array $parameters
- * @return \Illuminate\View\View
- *
- * @throws \BadMethodCallException
- */
- public function __call($method, $parameters)
- {
- if (static::hasMacro($method)) {
- return $this->macroCall($method, $parameters);
- }
-
- if (! Str::startsWith($method, 'with')) {
- throw new BadMethodCallException(sprintf(
- 'Method %s::%s does not exist.', static::class, $method
- ));
- }
-
- return $this->with(Str::camel(substr($method, 4)), $parameters[0]);
- }
-
- /**
- * Get the string contents of the view.
- *
- * @return string
- */
- public function __toString()
- {
- return $this->render();
- }
- }
|