Subversion Repository Public Repository

Nextrek

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<?php namespace Illuminate\Foundation\Console;

use Boris\Boris;
use Illuminate\Console\Command;

class TinkerCommand extends Command {

	/**
	 * The console command name.
	 *
	 * @var string
	 */
	protected $name = 'tinker';

	/**
	 * The console command description.
	 *
	 * @var string
	 */
	protected $description = "Interact with your application";

	/**
	 * Execute the console command.
	 *
	 * @return void
	 */
	public function fire()
	{
		if ($this->supportsBoris())
		{
			$this->runBorisShell();
		}
		else
		{
			$this->comment('Full REPL not supported. Falling back to simple shell.');

			$this->runPlainShell();
		}
	}

	/**
	 * Run the Boris REPL with the current context.
	 *
	 * @return void
	 */
	protected function runBorisShell()
	{
		$this->setupBorisErrorHandling();

		(new Boris('> '))->start();
	}

	/**
	 * Setup the Boris exception handling.
	 *
	 * @return void
	 */
	protected function setupBorisErrorHandling()
	{
		restore_error_handler(); restore_exception_handler();

		$this->laravel->make('artisan')->setCatchExceptions(false);

		$this->laravel->error(function() { return ''; });
	}

	/**
	 * Run the plain Artisan tinker shell.
	 *
	 * @return void
	 */
	protected function runPlainShell()
	{
		$input = $this->prompt();

		while ($input != 'quit')
		{
			// We will wrap the execution of the command in a try / catch block so we
			// can easily display the errors in a convenient way instead of having
			// them bubble back out to the CLI and stop the entire command loop.
			try
			{
				if (starts_with($input, 'dump '))
				{
					$input = 'var_dump('.substr($input, 5).');';
				}

				eval($input);
			}

			// If an exception occurs, we will just display the message and keep this
			// loop going so we can keep executing commands. However, when a fatal
			// error occurs, we have no choice but to bail out of this routines.
			catch (\Exception $e)
			{
				$this->error($e->getMessage());
			}

			$input = $this->prompt();
		}
	}

	/**
	 * Prompt the developer for a command.
	 *
	 * @return string
	 */
	protected function prompt()
	{
		$dialog = $this->getHelperSet()->get('dialog');

		return $dialog->ask($this->output, "<info>></info>", null);
	}

	/**
	 * Determine if the current environment supports Boris.
	 *
	 * @return bool
	 */
	protected function supportsBoris()
	{
		return extension_loaded('readline') && extension_loaded('posix') && extension_loaded('pcntl');
	}

}

Commits for Nextrek/Aiba_backup/vendor/laravel/framework/src/Illuminate/Foundation/Console/TinkerCommand.php

Diff revisions: vs.
Revision Author Commited Message
1464 MOliva picture MOliva Tue 13 Oct, 2020 11:16:56 +0000