From 5c254cc7ac16d09dfe35ea553206c6217f3534ce Mon Sep 17 00:00:00 2001 From: "stojan.kukrika" Date: Thu, 30 Oct 2014 12:43:05 +0100 Subject: [PATCH] update to laravel 4.2.11, update packages and small fixes in install and other modules and Fixes #2 --- .gitattributes | 2 +- .gitignore | 21 +- .htaccess | 15 - .project | 11 + .travis.yml | 10 - CONTRIBUTING.md | 2 +- LICENSE | 20 - _ide_helper.php | 10400 ---------------- app/config/app.php | 56 +- app/config/compile.php | 2 +- app/config/mail.php | 12 +- app/config/queue.php | 7 +- app/config/remote.php | 2 +- app/config/services.php | 31 + app/config/workbench.php | 2 +- app/controllers/BaseController.php | 71 +- app/controllers/InstallController.php | 672 +- .../admin/AdminNavigationController.php | 2 +- .../admin/AdminTodolistController.php | 2 +- app/controllers/user/UserController.php | 63 +- ...02_05_024934_confide_setup_users_table.php | 7 +- ...48_add_show_in_footer_and_header_blogs.php | 2 +- ..._081145_add_finished_to_todolist_table.php | 4 +- app/models/User.php | 70 +- app/routes.php | 1 + app/tests/blueprints/User.php | 4 +- app/tests/controllers/UserControllerTest.php | 19 +- app/tests/library/BaseControllerTestCase.php | 3 + app/views/admin/layouts/default.blade.php | 2 +- app/views/site/layouts/default.blade.php | 2 +- artisan | 4 +- bootstrap/start.php | 5 +- composer.json | 26 +- phpunit.xml | 2 +- public/.htaccess | 8 +- public/robots.txt | 2 +- 36 files changed, 910 insertions(+), 10654 deletions(-) delete mode 100644 .htaccess create mode 100644 .project delete mode 100644 .travis.yml delete mode 100644 LICENSE delete mode 100644 _ide_helper.php create mode 100644 app/config/services.php diff --git a/.gitattributes b/.gitattributes index 2125666..176a458 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1 +1 @@ -* text=auto \ No newline at end of file +* text=auto diff --git a/.gitignore b/.gitignore index 96f9682..b5363f0 100644 --- a/.gitignore +++ b/.gitignore @@ -1,19 +1,8 @@ -**bootstrap/compiled.php -**vendor +/bootstrap/compiled.php +/vendor composer.phar -.project composer.lock +.env.*.php +.env.php .DS_Store -app/config/app.php -app/config/database.php -app/config/production -app/config/local -app/config/production/app.php -app/config/production/database.php -app/config/local/app.php -app/config/local/database.php -**public/avatar -**public/blog -**public/customform -**public/gallery -**public/page \ No newline at end of file +Thumbs.db diff --git a/.htaccess b/.htaccess deleted file mode 100644 index ea51a31..0000000 --- a/.htaccess +++ /dev/null @@ -1,15 +0,0 @@ - - - Options -MultiViews - - - RewriteEngine On - - # Redirect Trailing Slashes... - RewriteRule ^(.*)/$ /$1 [L,R=301] - - # Handle Front Controller... - RewriteCond %{REQUEST_FILENAME} !-d - RewriteCond %{REQUEST_FILENAME} !-f - RewriteRule ^ index.php [L] - diff --git a/.project b/.project new file mode 100644 index 0000000..7935a29 --- /dev/null +++ b/.project @@ -0,0 +1,11 @@ + + + a2zcms + + + + + + + + diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 5b4271d..0000000 --- a/.travis.yml +++ /dev/null @@ -1,10 +0,0 @@ -language: php - -php: - - 5.4 - -before_script: - - curl -s http://getcomposer.org/installer | php - - php composer.phar install --dev - -script: phpunit \ No newline at end of file diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 015febc..6a780c4 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,3 +1,3 @@ # Contribution Guidelines -Please submit all issues and pull requests to the [laravel/framework](http://github.com/laravel/framework) repository! \ No newline at end of file +Please submit all issues and pull requests to the [laravel/framework](http://github.com/laravel/framework) repository! diff --git a/LICENSE b/LICENSE deleted file mode 100644 index 9934f66..0000000 --- a/LICENSE +++ /dev/null @@ -1,20 +0,0 @@ -The MIT License (MIT) - -Copyright (c) 2013 Eric Barnes - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of -the Software, and to permit persons to whom the Software is furnished to do so, -subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS -FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR -COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER -IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/_ide_helper.php b/_ide_helper.php deleted file mode 100644 index 6e4f768..0000000 --- a/_ide_helper.php +++ /dev/null @@ -1,10400 +0,0 @@ - - */ -namespace { - die('Only to be used as an helper for your IDE'); -} - -namespace { - class App extends Illuminate\Support\Facades\App{ - /** - * Create a new Illuminate application instance. - * - * @param \Illuminate\Http\Request $request - * @return self - * @static - */ - public static function __construct($request = null){ - \Illuminate\Foundation\Application::__construct($request); - } - - /** - * Set the application request for the console environment. - * - * @return void - * @static - */ - public static function setRequestForConsoleEnvironment(){ - \Illuminate\Foundation\Application::setRequestForConsoleEnvironment(); - } - - /** - * Redirect the request if it has a trailing slash. - * - * @return \Symfony\Component\HttpFoundation\RedirectResponse|null - * @static - */ - public static function redirectIfTrailingSlash(){ - return \Illuminate\Foundation\Application::redirectIfTrailingSlash(); - } - - /** - * Bind the installation paths to the application. - * - * @param array $paths - * @return void - * @static - */ - public static function bindInstallPaths($paths){ - \Illuminate\Foundation\Application::bindInstallPaths($paths); - } - - /** - * Get the application bootstrap file. - * - * @return string - * @static - */ - public static function getBootstrapFile(){ - return \Illuminate\Foundation\Application::getBootstrapFile(); - } - - /** - * Start the exception handling for the request. - * - * @return void - * @static - */ - public static function startExceptionHandling(){ - \Illuminate\Foundation\Application::startExceptionHandling(); - } - - /** - * Get the current application environment. - * - * @return string - * @static - */ - public static function environment(){ - return \Illuminate\Foundation\Application::environment(); - } - - /** - * Detect the application's current environment. - * - * @param array|string $environments - * @return string - * @static - */ - public static function detectEnvironment($environments){ - return \Illuminate\Foundation\Application::detectEnvironment($environments); - } - - /** - * Determine if we are running in the console. - * - * @return bool - * @static - */ - public static function runningInConsole(){ - return \Illuminate\Foundation\Application::runningInConsole(); - } - - /** - * Determine if we are running unit tests. - * - * @return bool - * @static - */ - public static function runningUnitTests(){ - return \Illuminate\Foundation\Application::runningUnitTests(); - } - - /** - * Register a service provider with the application. - * - * @param \Illuminate\Support\ServiceProvider|string $provider - * @param array $options - * @return void - * @static - */ - public static function register($provider, $options = array()){ - \Illuminate\Foundation\Application::register($provider, $options); - } - - /** - * Load and boot all of the remaining deferred providers. - * - * @return void - * @static - */ - public static function loadDeferredProviders(){ - \Illuminate\Foundation\Application::loadDeferredProviders(); - } - - /** - * Resolve the given type from the container. - * - * (Overriding Container::make) - * - * @param string $abstract - * @param array $parameters - * @return mixed - * @static - */ - public static function make($abstract, $parameters = array()){ - return \Illuminate\Foundation\Application::make($abstract, $parameters); - } - - /** - * Register a "before" application filter. - * - * @param Closure|string $callback - * @return void - * @static - */ - public static function before($callback){ - \Illuminate\Foundation\Application::before($callback); - } - - /** - * Register an "after" application filter. - * - * @param Closure|string $callback - * @return void - * @static - */ - public static function after($callback){ - \Illuminate\Foundation\Application::after($callback); - } - - /** - * Register a "close" application filter. - * - * @param Closure|string $callback - * @return void - * @static - */ - public static function close($callback){ - \Illuminate\Foundation\Application::close($callback); - } - - /** - * Register a "finish" application filter. - * - * @param Closure|string $callback - * @return void - * @static - */ - public static function finish($callback){ - \Illuminate\Foundation\Application::finish($callback); - } - - /** - * Register a "shutdown" callback. - * - * @param callable $callback - * @return void - * @static - */ - public static function shutdown($callback = null){ - \Illuminate\Foundation\Application::shutdown($callback); - } - - /** - * Handles the given request and delivers the response. - * - * @return void - * @static - */ - public static function run(){ - \Illuminate\Foundation\Application::run(); - } - - /** - * Handle the given request and get the response. - * - * @param \Illuminate\Http\Request $request - * @return \Symfony\Component\HttpFoundation\Response - * @static - */ - public static function dispatch($request){ - return \Illuminate\Foundation\Application::dispatch($request); - } - - /** - * Handle the given request and get the response. - * - * Provides compatibility with BrowserKit functional testing. - * - * @implements HttpKernelInterface::handle - * @param \Illuminate\Http\Request $request - * @param int $type - * @param bool $catch - * @return \Symfony\Component\HttpFoundation\Response - * @static - */ - public static function handle($request, $type = 1, $catch = true){ - return \Illuminate\Foundation\Application::handle($request, $type, $catch); - } - - /** - * Boot the application's service providers. - * - * @return void - * @static - */ - public static function boot(){ - \Illuminate\Foundation\Application::boot(); - } - - /** - * Register a new boot listener. - * - * @param mixed $callback - * @return void - * @static - */ - public static function booting($callback){ - \Illuminate\Foundation\Application::booting($callback); - } - - /** - * Register a new "booted" listener. - * - * @param mixed $callback - * @return void - * @static - */ - public static function booted($callback){ - \Illuminate\Foundation\Application::booted($callback); - } - - /** - * Prepare the request by injecting any services. - * - * @param \Illuminate\Http\Request $request - * @return \Illuminate\Http\Request - * @static - */ - public static function prepareRequest($request){ - return \Illuminate\Foundation\Application::prepareRequest($request); - } - - /** - * Prepare the given value as a Response object. - * - * @param mixed $value - * @return \Symfony\Component\HttpFoundation\Response - * @static - */ - public static function prepareResponse($value){ - return \Illuminate\Foundation\Application::prepareResponse($value); - } - - /** - * Determine if the application is currently down for maintenance. - * - * @return bool - * @static - */ - public static function isDownForMaintenance(){ - return \Illuminate\Foundation\Application::isDownForMaintenance(); - } - - /** - * Register a maintenance mode event listener. - * - * @param \Closure $callback - * @return void - * @static - */ - public static function down($callback){ - \Illuminate\Foundation\Application::down($callback); - } - - /** - * Throw an HttpException with the given data. - * - * @param int $code - * @param string $message - * @param array $headers - * @return void - * @static - */ - public static function abort($code, $message = '', $headers = array()){ - \Illuminate\Foundation\Application::abort($code, $message, $headers); - } - - /** - * Register a 404 error handler. - * - * @param Closure $callback - * @return void - * @static - */ - public static function missing($callback){ - \Illuminate\Foundation\Application::missing($callback); - } - - /** - * Register an application error handler. - * - * @param \Closure $callback - * @return void - * @static - */ - public static function error($callback){ - \Illuminate\Foundation\Application::error($callback); - } - - /** - * Register an error handler at the bottom of the stack. - * - * @param \Closure $callback - * @return void - * @static - */ - public static function pushError($callback){ - \Illuminate\Foundation\Application::pushError($callback); - } - - /** - * Register an error handler for fatal errors. - * - * @param Closure $callback - * @return void - * @static - */ - public static function fatal($callback){ - \Illuminate\Foundation\Application::fatal($callback); - } - - /** - * Get the configuration loader instance. - * - * @return \Illuminate\Config\LoaderInterface - * @static - */ - public static function getConfigLoader(){ - return \Illuminate\Foundation\Application::getConfigLoader(); - } - - /** - * Get the service provider repository instance. - * - * @return \Illuminate\Foundation\ProviderRepository - * @static - */ - public static function getProviderRepository(){ - return \Illuminate\Foundation\Application::getProviderRepository(); - } - - /** - * Set the current application locale. - * - * @param string $locale - * @return void - * @static - */ - public static function setLocale($locale){ - \Illuminate\Foundation\Application::setLocale($locale); - } - - /** - * Get the service providers that have been loaded. - * - * @return array - * @static - */ - public static function getLoadedProviders(){ - return \Illuminate\Foundation\Application::getLoadedProviders(); - } - - /** - * Set the application's deferred services. - * - * @param array $services - * @return void - * @static - */ - public static function setDeferredServices($services){ - \Illuminate\Foundation\Application::setDeferredServices($services); - } - - /** - * Dynamically access application services. - * - * @param string $key - * @return mixed - * @static - */ - public static function __get($key){ - return \Illuminate\Foundation\Application::__get($key); - } - - /** - * Dynamically set application services. - * - * @param string $key - * @param mixed $value - * @return void - * @static - */ - public static function __set($key, $value){ - \Illuminate\Foundation\Application::__set($key, $value); - } - - /** - * Determine if the given abstract type has been bound. - * - * @param string $abstract - * @return bool - * @static - */ - public static function bound($abstract){ - return \Illuminate\Container\Container::bound($abstract); - } - - /** - * Register a binding with the container. - * - * @param string $abstract - * @param Closure|string|null $concrete - * @param bool $shared - * @return void - * @static - */ - public static function bind($abstract, $concrete = null, $shared = false){ - \Illuminate\Container\Container::bind($abstract, $concrete, $shared); - } - - /** - * Register a binding if it hasn't already been registered. - * - * @param string $abstract - * @param Closure|string|null $concrete - * @param bool $shared - * @return bool - * @static - */ - public static function bindIf($abstract, $concrete = null, $shared = false){ - return \Illuminate\Container\Container::bindIf($abstract, $concrete, $shared); - } - - /** - * Register a shared binding in the container. - * - * @param string $abstract - * @param Closure|string|null $concrete - * @return void - * @static - */ - public static function singleton($abstract, $concrete = null){ - \Illuminate\Container\Container::singleton($abstract, $concrete); - } - - /** - * Wrap a Closure such that it is shared. - * - * @param Closure $closure - * @return Closure - * @static - */ - public static function share($closure){ - return \Illuminate\Container\Container::share($closure); - } - - /** - * "Extend" an abstract type in the container. - * - * @param string $abstract - * @param Closure $closure - * @return void - * @static - */ - public static function extend($abstract, $closure){ - \Illuminate\Container\Container::extend($abstract, $closure); - } - - /** - * Register an existing instance as shared in the container. - * - * @param string $abstract - * @param mixed $instance - * @return void - * @static - */ - public static function instance($abstract, $instance){ - \Illuminate\Container\Container::instance($abstract, $instance); - } - - /** - * Alias a type to a shorter name. - * - * @param string $abstract - * @param string $alias - * @return void - * @static - */ - public static function alias($abstract, $alias){ - \Illuminate\Container\Container::alias($abstract, $alias); - } - - /** - * Instantiate a concrete instance of the given type. - * - * @param string $concrete - * @param array $parameters - * @return mixed - * @static - */ - public static function build($concrete, $parameters = array()){ - return \Illuminate\Container\Container::build($concrete, $parameters); - } - - /** - * Register a new resolving callback. - * - * @param Closure $callback - * @return void - * @static - */ - public static function resolving($callback){ - \Illuminate\Container\Container::resolving($callback); - } - - /** - * Get the container's bindings. - * - * @return array - * @static - */ - public static function getBindings(){ - return \Illuminate\Container\Container::getBindings(); - } - - /** - * Determine if a given offset exists. - * - * @param string $key - * @return bool - * @static - */ - public static function offsetExists($key){ - return \Illuminate\Container\Container::offsetExists($key); - } - - /** - * Get the value at a given offset. - * - * @param string $key - * @return mixed - * @static - */ - public static function offsetGet($key){ - return \Illuminate\Container\Container::offsetGet($key); - } - - /** - * Set the value at a given offset. - * - * @param string $key - * @param mixed $value - * @return void - * @static - */ - public static function offsetSet($key, $value){ - \Illuminate\Container\Container::offsetSet($key, $value); - } - - /** - * Unset the value at a given offset. - * - * @param string $key - * @return void - * @static - */ - public static function offsetUnset($key){ - \Illuminate\Container\Container::offsetUnset($key); - } - - } -} - -namespace { - class Artisan extends Illuminate\Support\Facades\Artisan{ - /** - * Start a new Console application. - * - * @param \Illuminate\Foundation\Application $app - * @return \Illuminate\Console\Application - * @static - */ - public static function start($app){ - return \Illuminate\Console\Application::start($app); - } - - /** - * Add a command to the console. - * - * @param \Symfony\Component\Console\Command\Command $command - * @return \Symfony\Component\Console\Command\Command - * @static - */ - public static function add($command){ - return \Illuminate\Console\Application::add($command); - } - - /** - * Add a command, resolving through the application. - * - * @param string $command - * @return void - * @static - */ - public static function resolve($command){ - \Illuminate\Console\Application::resolve($command); - } - - /** - * Resolve an array of commands through the application. - * - * @param array|dynamic $commands - * @return void - * @static - */ - public static function resolveCommands($commands){ - \Illuminate\Console\Application::resolveCommands($commands); - } - - /** - * Render the given exception. - * - * @param Exception $e - * @param \Symfony\Component\Console\Output\OutputInterface $output - * @return void - * @static - */ - public static function renderException($e, $output){ - \Illuminate\Console\Application::renderException($e, $output); - } - - /** - * Set the exception handler instance. - * - * @param \Illuminate\Exception\Handler $handler - * @return void - * @static - */ - public static function setExceptionHandler($handler){ - \Illuminate\Console\Application::setExceptionHandler($handler); - } - - /** - * Set the Laravel application instance. - * - * @param \Illuminate\Foundation\Application $laravel - * @return void - * @static - */ - public static function setLaravel($laravel){ - \Illuminate\Console\Application::setLaravel($laravel); - } - - /** - * Constructor. - * - * @param string $name The name of the application - * @param string $version The version of the application - * @api - * @static - */ - public static function __construct($name = 'UNKNOWN', $version = 'UNKNOWN'){ - \Symfony\Component\Console\Application::__construct($name, $version); - } - - /** - * - * - * @static - */ - public static function setDispatcher($dispatcher){ - \Symfony\Component\Console\Application::setDispatcher($dispatcher); - } - - /** - * Runs the current application. - * - * @param InputInterface $input An Input instance - * @param OutputInterface $output An Output instance - * @return integer 0 if everything went fine, or an error code - * @throws \Exception When doRun returns Exception - * @api - * @static - */ - public static function run($input = null, $output = null){ - return \Symfony\Component\Console\Application::run($input, $output); - } - - /** - * Runs the current application. - * - * @param InputInterface $input An Input instance - * @param OutputInterface $output An Output instance - * @return integer 0 if everything went fine, or an error code - * @static - */ - public static function doRun($input, $output){ - return \Symfony\Component\Console\Application::doRun($input, $output); - } - - /** - * Set a helper set to be used with the command. - * - * @param HelperSet $helperSet The helper set - * @api - * @static - */ - public static function setHelperSet($helperSet){ - \Symfony\Component\Console\Application::setHelperSet($helperSet); - } - - /** - * Get the helper set associated with the command. - * - * @return HelperSet The HelperSet instance associated with this command - * @api - * @static - */ - public static function getHelperSet(){ - return \Symfony\Component\Console\Application::getHelperSet(); - } - - /** - * Set an input definition set to be used with this application - * - * @param InputDefinition $definition The input definition - * @api - * @static - */ - public static function setDefinition($definition){ - \Symfony\Component\Console\Application::setDefinition($definition); - } - - /** - * Gets the InputDefinition related to this Application. - * - * @return InputDefinition The InputDefinition instance - * @static - */ - public static function getDefinition(){ - return \Symfony\Component\Console\Application::getDefinition(); - } - - /** - * Gets the help message. - * - * @return string A help message. - * @static - */ - public static function getHelp(){ - return \Symfony\Component\Console\Application::getHelp(); - } - - /** - * Sets whether to catch exceptions or not during commands execution. - * - * @param Boolean $boolean Whether to catch exceptions or not during commands execution - * @api - * @static - */ - public static function setCatchExceptions($boolean){ - \Symfony\Component\Console\Application::setCatchExceptions($boolean); - } - - /** - * Sets whether to automatically exit after a command execution or not. - * - * @param Boolean $boolean Whether to automatically exit after a command execution or not - * @api - * @static - */ - public static function setAutoExit($boolean){ - \Symfony\Component\Console\Application::setAutoExit($boolean); - } - - /** - * Gets the name of the application. - * - * @return string The application name - * @api - * @static - */ - public static function getName(){ - return \Symfony\Component\Console\Application::getName(); - } - - /** - * Sets the application name. - * - * @param string $name The application name - * @api - * @static - */ - public static function setName($name){ - \Symfony\Component\Console\Application::setName($name); - } - - /** - * Gets the application version. - * - * @return string The application version - * @api - * @static - */ - public static function getVersion(){ - return \Symfony\Component\Console\Application::getVersion(); - } - - /** - * Sets the application version. - * - * @param string $version The application version - * @api - * @static - */ - public static function setVersion($version){ - \Symfony\Component\Console\Application::setVersion($version); - } - - /** - * Returns the long version of the application. - * - * @return string The long application version - * @api - * @static - */ - public static function getLongVersion(){ - return \Symfony\Component\Console\Application::getLongVersion(); - } - - /** - * Registers a new command. - * - * @param string $name The command name - * @return Command The newly created command - * @api - * @static - */ - public static function register($name){ - return \Symfony\Component\Console\Application::register($name); - } - - /** - * Adds an array of command objects. - * - * @param Command[] $commands An array of commands - * @api - * @static - */ - public static function addCommands($commands){ - \Symfony\Component\Console\Application::addCommands($commands); - } - - /** - * Returns a registered command by name or alias. - * - * @param string $name The command name or alias - * @return Command A Command object - * @throws \InvalidArgumentException When command name given does not exist - * @api - * @static - */ - public static function get($name){ - return \Symfony\Component\Console\Application::get($name); - } - - /** - * Returns true if the command exists, false otherwise. - * - * @param string $name The command name or alias - * @return Boolean true if the command exists, false otherwise - * @api - * @static - */ - public static function has($name){ - return \Symfony\Component\Console\Application::has($name); - } - - /** - * Returns an array of all unique namespaces used by currently registered commands. - * - * It does not returns the global namespace which always exists. - * - * @return array An array of namespaces - * @static - */ - public static function getNamespaces(){ - return \Symfony\Component\Console\Application::getNamespaces(); - } - - /** - * Finds a registered namespace by a name or an abbreviation. - * - * @param string $namespace A namespace or abbreviation to search for - * @return string A registered namespace - * @throws \InvalidArgumentException When namespace is incorrect or ambiguous - * @static - */ - public static function findNamespace($namespace){ - return \Symfony\Component\Console\Application::findNamespace($namespace); - } - - /** - * Finds a command by name or alias. - * - * Contrary to get, this command tries to find the best - * match if you give it an abbreviation of a name or alias. - * - * @param string $name A command name or a command alias - * @return Command A Command instance - * @throws \InvalidArgumentException When command name is incorrect or ambiguous - * @api - * @static - */ - public static function find($name){ - return \Symfony\Component\Console\Application::find($name); - } - - /** - * Gets the commands (registered in the given namespace if provided). - * - * The array keys are the full names and the values the command instances. - * - * @param string $namespace A namespace name - * @return Command[] An array of Command instances - * @api - * @static - */ - public static function all($namespace = null){ - return \Symfony\Component\Console\Application::all($namespace); - } - - /** - * Returns an array of possible abbreviations given a set of names. - * - * @param array $names An array of names - * @return array An array of abbreviations - * @static - */ - public static function getAbbreviations($names){ - return \Symfony\Component\Console\Application::getAbbreviations($names); - } - - /** - * Returns a text representation of the Application. - * - * @param string $namespace An optional namespace name - * @param boolean $raw Whether to return raw command list - * @return string A string representing the Application - * @deprecated Deprecated since version 2.3, to be removed in 3.0. - * @static - */ - public static function asText($namespace = null, $raw = false){ - return \Symfony\Component\Console\Application::asText($namespace, $raw); - } - - /** - * Returns an XML representation of the Application. - * - * @param string $namespace An optional namespace name - * @param Boolean $asDom Whether to return a DOM or an XML string - * @return string|\DOMDocument An XML string representing the Application - * @deprecated Deprecated since version 2.3, to be removed in 3.0. - * @static - */ - public static function asXml($namespace = null, $asDom = false){ - return \Symfony\Component\Console\Application::asXml($namespace, $asDom); - } - - /** - * Tries to figure out the terminal dimensions based on the current environment - * - * @return array Array containing width and height - * @static - */ - public static function getTerminalDimensions(){ - return \Symfony\Component\Console\Application::getTerminalDimensions(); - } - - /** - * Returns the namespace part of the command name. - * - * This method is not part of public API and should not be used directly. - * - * @param string $name The full name of the command - * @param string $limit The maximum number of parts of the namespace - * @return string The namespace of the command - * @static - */ - public static function extractNamespace($name, $limit = null){ - return \Symfony\Component\Console\Application::extractNamespace($name, $limit); - } - - } -} - -namespace { - class Auth extends Illuminate\Support\Facades\Auth{ - /** - * Create an instance of the Eloquent driver. - * - * @return \Illuminate\Auth\Guard - * @static - */ - public static function createEloquentDriver(){ - return \Illuminate\Auth\AuthManager::createEloquentDriver(); - } - - /** - * Create a new manager instance. - * - * @param \Illuminate\Foundation\Application $app - * @return self - * @static - */ - public static function __construct($app){ - \Illuminate\Support\Manager::__construct($app); - } - - /** - * Get a driver instance. - * - * @param string $driver - * @return mixed - * @static - */ - public static function driver($driver = null){ - return \Illuminate\Support\Manager::driver($driver); - } - - /** - * Register a custom driver creator Closure. - * - * @param string $driver - * @param Closure $callback - * @return void - * @static - */ - public static function extend($driver, $callback){ - \Illuminate\Support\Manager::extend($driver, $callback); - } - - /** - * Get all of the created "drivers". - * - * @return array - * @static - */ - public static function getDrivers(){ - return \Illuminate\Support\Manager::getDrivers(); - } - - /** - * Dynamically call the default driver instance. - * - * @param string $method - * @param array $parameters - * @return mixed - * @static - */ - public static function __call($method, $parameters){ - return \Illuminate\Support\Manager::__call($method, $parameters); - } - - /** - * Determine if the current user is authenticated. - * - * @return bool - * @static - */ - public static function check(){ - return \Illuminate\Auth\Guard::check(); - } - - /** - * Determine if the current user is a guest. - * - * @return bool - * @static - */ - public static function guest(){ - return \Illuminate\Auth\Guard::guest(); - } - - /** - * Get the currently authenticated user. - * - * @return \Illuminate\Auth\UserInterface|null - * @static - */ - public static function user(){ - return \Illuminate\Auth\Guard::user(); - } - - /** - * Log a user into the application without sessions or cookies. - * - * @param array $credentials - * @return bool - * @static - */ - public static function once($credentials = array()){ - return \Illuminate\Auth\Guard::once($credentials); - } - - /** - * Validate a user's credentials. - * - * @param array $credentials - * @return bool - * @static - */ - public static function validate($credentials = array()){ - return \Illuminate\Auth\Guard::validate($credentials); - } - - /** - * Attempt to authenticate using HTTP Basic Auth. - * - * @param string $field - * @param \Symfony\Component\HttpFoundation\Request $request - * @return \Symfony\Component\HttpFoundation\Response|null - * @static - */ - public static function basic($field = 'email', $request = null){ - return \Illuminate\Auth\Guard::basic($field, $request); - } - - /** - * Perform a stateless HTTP Basic login attempt. - * - * @param string $field - * @param \Symfony\Component\HttpFoundation\Request $request - * @return \Symfony\Component\HttpFoundation\Response|null - * @static - */ - public static function onceBasic($field = 'email', $request = null){ - return \Illuminate\Auth\Guard::onceBasic($field, $request); - } - - /** - * Attempt to authenticate a user using the given credentials. - * - * @param array $credentials - * @param bool $remember - * @param bool $login - * @return bool - * @static - */ - public static function attempt($credentials = array(), $remember = false, $login = true){ - return \Illuminate\Auth\Guard::attempt($credentials, $remember, $login); - } - - /** - * Register an authentication attempt event listener. - * - * @param mixed $callback - * @return void - * @static - */ - public static function attempting($callback){ - \Illuminate\Auth\Guard::attempting($callback); - } - - /** - * Log a user into the application. - * - * @param \Illuminate\Auth\UserInterface $user - * @param bool $remember - * @return void - * @static - */ - public static function login($user, $remember = false){ - \Illuminate\Auth\Guard::login($user, $remember); - } - - /** - * Log the given user ID into the application. - * - * @param mixed $id - * @param bool $remember - * @return \Illuminate\Auth\UserInterface - * @static - */ - public static function loginUsingId($id, $remember = false){ - return \Illuminate\Auth\Guard::loginUsingId($id, $remember); - } - - /** - * Log the user out of the application. - * - * @return void - * @static - */ - public static function logout(){ - \Illuminate\Auth\Guard::logout(); - } - - /** - * Get the cookies queued by the guard. - * - * @return array - * @static - */ - public static function getQueuedCookies(){ - return \Illuminate\Auth\Guard::getQueuedCookies(); - } - - /** - * Get the cookie creator instance used by the guard. - * - * @return \Illuminate\Cookie\CookieJar - * @static - */ - public static function getCookieJar(){ - return \Illuminate\Auth\Guard::getCookieJar(); - } - - /** - * Set the cookie creator instance used by the guard. - * - * @param \Illuminate\Cookie\CookieJar $cookie - * @return void - * @static - */ - public static function setCookieJar($cookie){ - \Illuminate\Auth\Guard::setCookieJar($cookie); - } - - /** - * Get the event dispatcher instance. - * - * @return \Illuminate\Events\Dispatcher - * @static - */ - public static function getDispatcher(){ - return \Illuminate\Auth\Guard::getDispatcher(); - } - - /** - * Set the event dispatcher instance. - * - * @param \Illuminate\Events\Dispatcher - * @static - */ - public static function setDispatcher($events){ - \Illuminate\Auth\Guard::setDispatcher($events); - } - - /** - * Get the session store used by the guard. - * - * @return \Illuminate\Session\Store - * @static - */ - public static function getSession(){ - return \Illuminate\Auth\Guard::getSession(); - } - - /** - * Get the user provider used by the guard. - * - * @return \Illuminate\Auth\UserProviderInterface - * @static - */ - public static function getProvider(){ - return \Illuminate\Auth\Guard::getProvider(); - } - - /** - * Set the user provider used by the guard. - * - * @param \Illuminate\Auth\UserProviderInterface $provider - * @return void - * @static - */ - public static function setProvider($provider){ - \Illuminate\Auth\Guard::setProvider($provider); - } - - /** - * Return the currently cached user of the application. - * - * @return \Illuminate\Auth\UserInterface|null - * @static - */ - public static function getUser(){ - return \Illuminate\Auth\Guard::getUser(); - } - - /** - * Set the current user of the application. - * - * @param \Illuminate\Auth\UserInterface $user - * @return void - * @static - */ - public static function setUser($user){ - \Illuminate\Auth\Guard::setUser($user); - } - - /** - * Get the current request instance. - * - * @return \Symfony\Component\HttpFoundation\Request - * @static - */ - public static function getRequest(){ - return \Illuminate\Auth\Guard::getRequest(); - } - - /** - * Set the current request instance. - * - * @param \Symfony\Component\HttpFoundation\Request - * @return \Illuminate\Auth\Guard - * @static - */ - public static function setRequest($request){ - return \Illuminate\Auth\Guard::setRequest($request); - } - - /** - * Get a unique identifier for the auth session value. - * - * @return string - * @static - */ - public static function getName(){ - return \Illuminate\Auth\Guard::getName(); - } - - /** - * Get the name of the cookie used to store the "recaller". - * - * @return string - * @static - */ - public static function getRecallerName(){ - return \Illuminate\Auth\Guard::getRecallerName(); - } - - } -} - -namespace { - class Blade extends Illuminate\Support\Facades\Blade{ - /** - * Compile the view at the given path. - * - * @param string $path - * @return void - * @static - */ - public static function compile($path){ - \Illuminate\View\Compilers\BladeCompiler::compile($path); - } - - /** - * Compile the given Blade template contents. - * - * @param string $value - * @return string - * @static - */ - public static function compileString($value){ - return \Illuminate\View\Compilers\BladeCompiler::compileString($value); - } - - /** - * Register a custom Blade compiler. - * - * @param Closure $compiler - * @return void - * @static - */ - public static function extend($compiler){ - \Illuminate\View\Compilers\BladeCompiler::extend($compiler); - } - - /** - * Get the regular expression for a generic Blade function. - * - * @param string $function - * @return string - * @static - */ - public static function createMatcher($function){ - return \Illuminate\View\Compilers\BladeCompiler::createMatcher($function); - } - - /** - * Get the regular expression for a generic Blade function. - * - * @param string $function - * @return string - * @static - */ - public static function createOpenMatcher($function){ - return \Illuminate\View\Compilers\BladeCompiler::createOpenMatcher($function); - } - - /** - * Create a plain Blade matcher. - * - * @param string $function - * @return string - * @static - */ - public static function createPlainMatcher($function){ - return \Illuminate\View\Compilers\BladeCompiler::createPlainMatcher($function); - } - - /** - * Sets the content tags used for the compiler. - * - * @param string $openTag - * @param string $closeTag - * @param bool $escaped - * @return void - * @static - */ - public static function setContentTags($openTag, $closeTag, $escaped = false){ - \Illuminate\View\Compilers\BladeCompiler::setContentTags($openTag, $closeTag, $escaped); - } - - /** - * Sets the escaped content tags used for the compiler. - * - * @param string $openTag - * @param string $closeTag - * @return void - * @static - */ - public static function setEscapedContentTags($openTag, $closeTag){ - \Illuminate\View\Compilers\BladeCompiler::setEscapedContentTags($openTag, $closeTag); - } - - /** - * Create a new compiler instance. - * - * @param \Illuminate\Filesystem\Filesystem $files - * @param string $cachePath - * @return self - * @static - */ - public static function __construct($files, $cachePath){ - \Illuminate\View\Compilers\Compiler::__construct($files, $cachePath); - } - - /** - * Get the path to the compiled version of a view. - * - * @param string $path - * @return string - * @static - */ - public static function getCompiledPath($path){ - return \Illuminate\View\Compilers\Compiler::getCompiledPath($path); - } - - /** - * Determine if the view at the given path is expired. - * - * @param string $path - * @return bool - * @static - */ - public static function isExpired($path){ - return \Illuminate\View\Compilers\Compiler::isExpired($path); - } - - } -} - -namespace { - class Cache extends Illuminate\Support\Facades\Cache{ - /** - * Get the cache "prefix" value. - * - * @return string - * @static - */ - public static function getPrefix(){ - return \Illuminate\Cache\CacheManager::getPrefix(); - } - - /** - * Create a new manager instance. - * - * @param \Illuminate\Foundation\Application $app - * @return self - * @static - */ - public static function __construct($app){ - \Illuminate\Support\Manager::__construct($app); - } - - /** - * Get a driver instance. - * - * @param string $driver - * @return mixed - * @static - */ - public static function driver($driver = null){ - return \Illuminate\Support\Manager::driver($driver); - } - - /** - * Register a custom driver creator Closure. - * - * @param string $driver - * @param Closure $callback - * @return void - * @static - */ - public static function extend($driver, $callback){ - \Illuminate\Support\Manager::extend($driver, $callback); - } - - /** - * Get all of the created "drivers". - * - * @return array - * @static - */ - public static function getDrivers(){ - return \Illuminate\Support\Manager::getDrivers(); - } - - /** - * Dynamically call the default driver instance. - * - * @param string $method - * @param array $parameters - * @return mixed - * @static - */ - public static function __call($method, $parameters){ - return \Illuminate\Support\Manager::__call($method, $parameters); - } - - /** - * Retrieve an item from the cache by key. - * - * @param string $key - * @return mixed - * @static - */ - public static function get($key){ - return \Illuminate\Cache\StoreInterface::get($key); - } - - /** - * Store an item in the cache for a given number of minutes. - * - * @param string $key - * @param mixed $value - * @param int $minutes - * @return void - * @static - */ - public static function put($key, $value, $minutes){ - \Illuminate\Cache\StoreInterface::put($key, $value, $minutes); - } - - /** - * Increment the value of an item in the cache. - * - * @param string $key - * @param mixed $value - * @return void - * @static - */ - public static function increment($key, $value = 1){ - \Illuminate\Cache\StoreInterface::increment($key, $value); - } - - /** - * Decrement the value of an item in the cache. - * - * @param string $key - * @param mixed $value - * @return void - * @static - */ - public static function decrement($key, $value = 1){ - \Illuminate\Cache\StoreInterface::decrement($key, $value); - } - - /** - * Store an item in the cache indefinitely. - * - * @param string $key - * @param mixed $value - * @return void - * @static - */ - public static function forever($key, $value){ - \Illuminate\Cache\StoreInterface::forever($key, $value); - } - - /** - * Remove an item from the cache. - * - * @param string $key - * @return void - * @static - */ - public static function forget($key){ - \Illuminate\Cache\StoreInterface::forget($key); - } - - /** - * Remove all items from the cache. - * - * @return void - * @static - */ - public static function flush(){ - \Illuminate\Cache\StoreInterface::flush(); - } - - /** - * Determine if an item exists in the cache. - * - * @param string $key - * @return bool - * @static - */ - public static function has($key){ - return \Illuminate\Cache\Repository::has($key); - } - - /** - * Store an item in the cache if the key does not exist. - * - * @param string $key - * @param mixed $value - * @param int $minutes - * @return void - * @static - */ - public static function add($key, $value, $minutes){ - \Illuminate\Cache\Repository::add($key, $value, $minutes); - } - - /** - * Get an item from the cache, or store the default value. - * - * @param string $key - * @param int $minutes - * @param Closure $callback - * @return mixed - * @static - */ - public static function remember($key, $minutes, $callback){ - return \Illuminate\Cache\Repository::remember($key, $minutes, $callback); - } - - /** - * Get an item from the cache, or store the default value forever. - * - * @param string $key - * @param Closure $callback - * @return mixed - * @static - */ - public static function sear($key, $callback){ - return \Illuminate\Cache\Repository::sear($key, $callback); - } - - /** - * Get an item from the cache, or store the default value forever. - * - * @param string $key - * @param Closure $callback - * @return mixed - * @static - */ - public static function rememberForever($key, $callback){ - return \Illuminate\Cache\Repository::rememberForever($key, $callback); - } - - /** - * Get the default cache time. - * - * @return int - * @static - */ - public static function getDefaultCacheTime(){ - return \Illuminate\Cache\Repository::getDefaultCacheTime(); - } - - /** - * Set the default cache time in minutes. - * - * @param int $minutes - * @return void - * @static - */ - public static function setDefaultCacheTime($minutes){ - \Illuminate\Cache\Repository::setDefaultCacheTime($minutes); - } - - /** - * Get the cache store implementation. - * - * @return \Illuminate\Cache\StoreInterface - * @static - */ - public static function getStore(){ - return \Illuminate\Cache\Repository::getStore(); - } - - /** - * Determine if a cached value exists. - * - * @param string $key - * @return bool - * @static - */ - public static function offsetExists($key){ - return \Illuminate\Cache\Repository::offsetExists($key); - } - - /** - * Retrieve an item from the cache by key. - * - * @param string $key - * @return mixed - * @static - */ - public static function offsetGet($key){ - return \Illuminate\Cache\Repository::offsetGet($key); - } - - /** - * Store an item in the cache for the default time. - * - * @param string $key - * @param mixed $value - * @return void - * @static - */ - public static function offsetSet($key, $value){ - \Illuminate\Cache\Repository::offsetSet($key, $value); - } - - /** - * Remove an item from the cache. - * - * @param string $key - * @return void - * @static - */ - public static function offsetUnset($key){ - \Illuminate\Cache\Repository::offsetUnset($key); - } - - } -} - -namespace { - class ClassLoader extends Illuminate\Support\ClassLoader{ - } -} - -namespace { - class Config extends Illuminate\Support\Facades\Config{ - /** - * Create a new configuration repository. - * - * @param \Illuminate\Config\LoaderInterface $loader - * @param string $environment - * @return self - * @static - */ - public static function __construct($loader, $environment){ - \Illuminate\Config\Repository::__construct($loader, $environment); - } - - /** - * Determine if the given configuration value exists. - * - * @param string $key - * @return bool - * @static - */ - public static function has($key){ - return \Illuminate\Config\Repository::has($key); - } - - /** - * Determine if a configuration group exists. - * - * @param string $key - * @return bool - * @static - */ - public static function hasGroup($key){ - return \Illuminate\Config\Repository::hasGroup($key); - } - - /** - * Get the specified configuration value. - * - * @param string $key - * @param mixed $default - * @return mixed - * @static - */ - public static function get($key, $default = null){ - return \Illuminate\Config\Repository::get($key, $default); - } - - /** - * Set a given configuration value. - * - * @param string $key - * @param mixed $value - * @return void - * @static - */ - public static function set($key, $value){ - \Illuminate\Config\Repository::set($key, $value); - } - - /** - * Register a package for cascading configuration. - * - * @param string $package - * @param string $hint - * @param string $namespace - * @return void - * @static - */ - public static function package($package, $hint, $namespace = null){ - \Illuminate\Config\Repository::package($package, $hint, $namespace); - } - - /** - * Register an after load callback for a given namespace. - * - * @param string $namespace - * @param Closure $callback - * @return void - * @static - */ - public static function afterLoading($namespace, $callback){ - \Illuminate\Config\Repository::afterLoading($namespace, $callback); - } - - /** - * Add a new namespace to the loader. - * - * @param string $namespace - * @param string $hint - * @return void - * @static - */ - public static function addNamespace($namespace, $hint){ - \Illuminate\Config\Repository::addNamespace($namespace, $hint); - } - - /** - * Returns all registered namespaces with the config - * loader. - * - * @return array - * @static - */ - public static function getNamespaces(){ - return \Illuminate\Config\Repository::getNamespaces(); - } - - /** - * Get the loader implementation. - * - * @return \Illuminate\Config\LoaderInterface - * @static - */ - public static function getLoader(){ - return \Illuminate\Config\Repository::getLoader(); - } - - /** - * Set the loader implementation. - * - * @param \Illuminate\Config\LoaderInterface $loader - * @return void - * @static - */ - public static function setLoader($loader){ - \Illuminate\Config\Repository::setLoader($loader); - } - - /** - * Get the current configuration environment. - * - * @return string - * @static - */ - public static function getEnvironment(){ - return \Illuminate\Config\Repository::getEnvironment(); - } - - /** - * Get the after load callback array. - * - * @return array - * @static - */ - public static function getAfterLoadCallbacks(){ - return \Illuminate\Config\Repository::getAfterLoadCallbacks(); - } - - /** - * Get all of the configuration items. - * - * @return array - * @static - */ - public static function getItems(){ - return \Illuminate\Config\Repository::getItems(); - } - - /** - * Determine if the given configuration option exists. - * - * @param string $key - * @return bool - * @static - */ - public static function offsetExists($key){ - return \Illuminate\Config\Repository::offsetExists($key); - } - - /** - * Get a configuration option. - * - * @param string $key - * @return bool - * @static - */ - public static function offsetGet($key){ - return \Illuminate\Config\Repository::offsetGet($key); - } - - /** - * Set a configuration option. - * - * @param string $key - * @param string $value - * @return void - * @static - */ - public static function offsetSet($key, $value){ - \Illuminate\Config\Repository::offsetSet($key, $value); - } - - /** - * Unset a configuration option. - * - * @param string $key - * @return void - * @static - */ - public static function offsetUnset($key){ - \Illuminate\Config\Repository::offsetUnset($key); - } - - /** - * Parse a key into namespace, group, and item. - * - * @param string $key - * @return array - * @static - */ - public static function parseKey($key){ - return \Illuminate\Support\NamespacedItemResolver::parseKey($key); - } - - /** - * Set the parsed value of a key. - * - * @param string $key - * @param array $parsed - * @return void - * @static - */ - public static function setParsedKey($key, $parsed){ - \Illuminate\Support\NamespacedItemResolver::setParsedKey($key, $parsed); - } - - } -} - -namespace { - class Controller extends Illuminate\Routing\Controllers\Controller{ - } -} - -namespace { - class Cookie extends Illuminate\Support\Facades\Cookie{ - /** - * Create a new cookie manager instance. - * - * @param \Symfony\Component\HttpFoundation\Request $request - * @param \Illuminate\Encryption\Encrypter $encrypter - * @return self - * @static - */ - public static function __construct($request, $encrypter){ - \Illuminate\Cookie\CookieJar::__construct($request, $encrypter); - } - - /** - * Determine if a cookie exists and is not null. - * - * @param string $key - * @return bool - * @static - */ - public static function has($key){ - return \Illuminate\Cookie\CookieJar::has($key); - } - - /** - * Get the value of the given cookie. - * - * @param string $key - * @param mixed $default - * @return mixed - * @static - */ - public static function get($key, $default = null){ - return \Illuminate\Cookie\CookieJar::get($key, $default); - } - - /** - * Create a new cookie instance. - * - * @param string $name - * @param string $value - * @param int $minutes - * @param string $path - * @param string $domain - * @param bool $secure - * @param bool $httpOnly - * @return \Symfony\Component\HttpFoundation\Cookie - * @static - */ - public static function make($name, $value, $minutes = 0, $path = null, $domain = null, $secure = false, $httpOnly = true){ - return \Illuminate\Cookie\CookieJar::make($name, $value, $minutes, $path, $domain, $secure, $httpOnly); - } - - /** - * Create a cookie that lasts "forever" (five years). - * - * @param string $name - * @param string $value - * @param string $path - * @param string $domain - * @param bool $secure - * @param bool $httpOnly - * @return \Symfony\Component\HttpFoundation\Cookie - * @static - */ - public static function forever($name, $value, $path = null, $domain = null, $secure = false, $httpOnly = true){ - return \Illuminate\Cookie\CookieJar::forever($name, $value, $path, $domain, $secure, $httpOnly); - } - - /** - * Expire the given cookie. - * - * @param string $name - * @return \Symfony\Component\HttpFoundation\Cookie - * @static - */ - public static function forget($name){ - return \Illuminate\Cookie\CookieJar::forget($name); - } - - /** - * Set the default path and domain for the jar. - * - * @param string $path - * @param string $domain - * @return void - * @static - */ - public static function setDefaultPathAndDomain($path, $domain){ - \Illuminate\Cookie\CookieJar::setDefaultPathAndDomain($path, $domain); - } - - /** - * Get the request instance. - * - * @return \Symfony\Component\HttpFoundation\Request - * @static - */ - public static function getRequest(){ - return \Illuminate\Cookie\CookieJar::getRequest(); - } - - /** - * Get the encrypter instance. - * - * @return \Illuminate\Encryption\Encrypter - * @static - */ - public static function getEncrypter(){ - return \Illuminate\Cookie\CookieJar::getEncrypter(); - } - - } -} - -namespace { - class Crypt extends Illuminate\Support\Facades\Crypt{ - /** - * Create a new encrypter instance. - * - * @param string $key - * @return self - * @static - */ - public static function __construct($key){ - \Illuminate\Encryption\Encrypter::__construct($key); - } - - /** - * Encrypt the given value. - * - * @param string $value - * @return string - * @static - */ - public static function encrypt($value){ - return \Illuminate\Encryption\Encrypter::encrypt($value); - } - - /** - * Decrypt the given value. - * - * @param string $payload - * @return string - * @static - */ - public static function decrypt($payload){ - return \Illuminate\Encryption\Encrypter::decrypt($payload); - } - - /** - * Set the encryption key. - * - * @param string $key - * @return void - * @static - */ - public static function setKey($key){ - \Illuminate\Encryption\Encrypter::setKey($key); - } - - /** - * Set the encryption cipher. - * - * @param string $cipher - * @return void - * @static - */ - public static function setCipher($cipher){ - \Illuminate\Encryption\Encrypter::setCipher($cipher); - } - - /** - * Set the encryption mode. - * - * @param string $mode - * @return void - * @static - */ - public static function setMode($mode){ - \Illuminate\Encryption\Encrypter::setMode($mode); - } - - } -} - -namespace { - class DB extends Illuminate\Support\Facades\DB{ - /** - * Create a new database manager instance. - * - * @param \Illuminate\Foundation\Application $app - * @param \Illuminate\Database\Connectors\ConnectionFactory $factory - * @return self - * @static - */ - public static function __construct($app, $factory){ - \Illuminate\Database\DatabaseManager::__construct($app, $factory); - } - - /** - * Get a database connection instance. - * - * @param string $name - * @return \Illuminate\Database\Connection - * @static - */ - public static function connection($name = null){ - return \Illuminate\Database\DatabaseManager::connection($name); - } - - /** - * Reconnect to the given database. - * - * @param string $name - * @return \Illuminate\Database\Connection - * @static - */ - public static function reconnect($name = null){ - return \Illuminate\Database\DatabaseManager::reconnect($name); - } - - /** - * Get the default connection name. - * - * @return string - * @static - */ - public static function getDefaultConnection(){ - return \Illuminate\Database\DatabaseManager::getDefaultConnection(); - } - - /** - * Set the default connection name. - * - * @param string $name - * @return void - * @static - */ - public static function setDefaultConnection($name){ - \Illuminate\Database\DatabaseManager::setDefaultConnection($name); - } - - /** - * Register an extension connection resolver. - * - * @param string $name - * @param callable $resolver - * @return void - * @static - */ - public static function extend($name, $resolver){ - \Illuminate\Database\DatabaseManager::extend($name, $resolver); - } - - /** - * Dynamically pass methods to the default connection. - * - * @param string $method - * @param array $parameters - * @return mixed - * @static - */ - public static function __call($method, $parameters){ - return \Illuminate\Database\DatabaseManager::__call($method, $parameters); - } - - /** - * Set the query grammar to the default implementation. - * - * @return void - * @static - */ - public static function useDefaultQueryGrammar(){ - \Illuminate\Database\Connection::useDefaultQueryGrammar(); - } - - /** - * Set the schema grammar to the default implementation. - * - * @return void - * @static - */ - public static function useDefaultSchemaGrammar(){ - \Illuminate\Database\Connection::useDefaultSchemaGrammar(); - } - - /** - * Set the query post processor to the default implementation. - * - * @return void - * @static - */ - public static function useDefaultPostProcessor(){ - \Illuminate\Database\Connection::useDefaultPostProcessor(); - } - - /** - * Get a schema builder instance for the connection. - * - * @return \Illuminate\Database\Schema\Builder - * @static - */ - public static function getSchemaBuilder(){ - return \Illuminate\Database\Connection::getSchemaBuilder(); - } - - /** - * Begin a fluent query against a database table. - * - * @param string $table - * @return \Illuminate\Database\Query\Builder - * @static - */ - public static function table($table){ - return \Illuminate\Database\Connection::table($table); - } - - /** - * Get a new raw query expression. - * - * @param mixed $value - * @return \Illuminate\Database\Query\Expression - * @static - */ - public static function raw($value){ - return \Illuminate\Database\Connection::raw($value); - } - - /** - * Run a select statement and return a single result. - * - * @param string $query - * @param array $bindings - * @return mixed - * @static - */ - public static function selectOne($query, $bindings = array()){ - return \Illuminate\Database\Connection::selectOne($query, $bindings); - } - - /** - * Run a select statement against the database. - * - * @param string $query - * @param array $bindings - * @return array - * @static - */ - public static function select($query, $bindings = array()){ - return \Illuminate\Database\Connection::select($query, $bindings); - } - - /** - * Run an insert statement against the database. - * - * @param string $query - * @param array $bindings - * @return bool - * @static - */ - public static function insert($query, $bindings = array()){ - return \Illuminate\Database\Connection::insert($query, $bindings); - } - - /** - * Run an update statement against the database. - * - * @param string $query - * @param array $bindings - * @return int - * @static - */ - public static function update($query, $bindings = array()){ - return \Illuminate\Database\Connection::update($query, $bindings); - } - - /** - * Run a delete statement against the database. - * - * @param string $query - * @param array $bindings - * @return int - * @static - */ - public static function delete($query, $bindings = array()){ - return \Illuminate\Database\Connection::delete($query, $bindings); - } - - /** - * Execute an SQL statement and return the boolean result. - * - * @param string $query - * @param array $bindings - * @return bool - * @static - */ - public static function statement($query, $bindings = array()){ - return \Illuminate\Database\Connection::statement($query, $bindings); - } - - /** - * Run an SQL statement and get the number of rows affected. - * - * @param string $query - * @param array $bindings - * @return int - * @static - */ - public static function affectingStatement($query, $bindings = array()){ - return \Illuminate\Database\Connection::affectingStatement($query, $bindings); - } - - /** - * Run a raw, unprepared query against the PDO connection. - * - * @param string $query - * @return bool - * @static - */ - public static function unprepared($query){ - return \Illuminate\Database\Connection::unprepared($query); - } - - /** - * Prepare the query bindings for execution. - * - * @param array $bindings - * @return array - * @static - */ - public static function prepareBindings($bindings){ - return \Illuminate\Database\Connection::prepareBindings($bindings); - } - - /** - * Execute a Closure within a transaction. - * - * @param Closure $callback - * @return mixed - * @static - */ - public static function transaction($callback){ - return \Illuminate\Database\Connection::transaction($callback); - } - - /** - * Execute the given callback in "dry run" mode. - * - * @param Closure $callback - * @return array - * @static - */ - public static function pretend($callback){ - return \Illuminate\Database\Connection::pretend($callback); - } - - /** - * Log a query in the connection's query log. - * - * @param string $query - * @param array $bindings - * @param $time - * @return void - * @static - */ - public static function logQuery($query, $bindings, $time = null){ - \Illuminate\Database\Connection::logQuery($query, $bindings, $time); - } - - /** - * Register a database query listener with the connection. - * - * @param Closure $callback - * @return void - * @static - */ - public static function listen($callback){ - \Illuminate\Database\Connection::listen($callback); - } - - /** - * Get a Doctrine Schema Column instance. - * - * @param string $table - * @param string $column - * @return \Doctrine\DBAL\Schema\Column - * @static - */ - public static function getDoctrineColumn($table, $column){ - return \Illuminate\Database\Connection::getDoctrineColumn($table, $column); - } - - /** - * Get the Doctrine DBAL schema manager for the connection. - * - * @return \Doctrine\DBAL\Schema\AbstractSchemaManager - * @static - */ - public static function getDoctrineSchemaManager(){ - return \Illuminate\Database\Connection::getDoctrineSchemaManager(); - } - - /** - * Get the Doctrine DBAL database connection instance. - * - * @return \Doctrine\DBAL\Connection - * @static - */ - public static function getDoctrineConnection(){ - return \Illuminate\Database\Connection::getDoctrineConnection(); - } - - /** - * Get the currently used PDO connection. - * - * @return PDO - * @static - */ - public static function getPdo(){ - return \Illuminate\Database\Connection::getPdo(); - } - - /** - * Get the database connection name. - * - * @return string|null - * @static - */ - public static function getName(){ - return \Illuminate\Database\Connection::getName(); - } - - /** - * Get the PDO driver name. - * - * @return string - * @static - */ - public static function getDriverName(){ - return \Illuminate\Database\Connection::getDriverName(); - } - - /** - * Get the query grammar used by the connection. - * - * @return \Illuminate\Database\Query\Grammars\Grammar - * @static - */ - public static function getQueryGrammar(){ - return \Illuminate\Database\Connection::getQueryGrammar(); - } - - /** - * Set the query grammar used by the connection. - * - * @param \Illuminate\Database\Query\Grammars\Grammar - * @return void - * @static - */ - public static function setQueryGrammar($grammar){ - \Illuminate\Database\Connection::setQueryGrammar($grammar); - } - - /** - * Get the schema grammar used by the connection. - * - * @return \Illuminate\Database\Query\Grammars\Grammar - * @static - */ - public static function getSchemaGrammar(){ - return \Illuminate\Database\Connection::getSchemaGrammar(); - } - - /** - * Set the schema grammar used by the connection. - * - * @param \Illuminate\Database\Schema\Grammars\Grammar - * @return void - * @static - */ - public static function setSchemaGrammar($grammar){ - \Illuminate\Database\Connection::setSchemaGrammar($grammar); - } - - /** - * Get the query post processor used by the connection. - * - * @return \Illuminate\Database\Query\Processors\Processor - * @static - */ - public static function getPostProcessor(){ - return \Illuminate\Database\Connection::getPostProcessor(); - } - - /** - * Set the query post processor used by the connection. - * - * @param \Illuminate\Database\Query\Processors\Processor - * @return void - * @static - */ - public static function setPostProcessor($processor){ - \Illuminate\Database\Connection::setPostProcessor($processor); - } - - /** - * Get the event dispatcher used by the connection. - * - * @return \Illuminate\Events\Dispatcher - * @static - */ - public static function getEventDispatcher(){ - return \Illuminate\Database\Connection::getEventDispatcher(); - } - - /** - * Set the event dispatcher instance on the connection. - * - * @param \Illuminate\Events\Dispatcher - * @return void - * @static - */ - public static function setEventDispatcher($events){ - \Illuminate\Database\Connection::setEventDispatcher($events); - } - - /** - * Get the paginator environment instance. - * - * @return \Illuminate\Pagination\Environment - * @static - */ - public static function getPaginator(){ - return \Illuminate\Database\Connection::getPaginator(); - } - - /** - * Set the pagination environment instance. - * - * @param \Illuminate\Pagination\Environment|\Closure $paginator - * @return void - * @static - */ - public static function setPaginator($paginator){ - \Illuminate\Database\Connection::setPaginator($paginator); - } - - /** - * Get the cache manager instance. - * - * @return \Illuminate\Cache\CacheManager - * @static - */ - public static function getCacheManager(){ - return \Illuminate\Database\Connection::getCacheManager(); - } - - /** - * Set the cache manager instance on the connection. - * - * @param \Illuminate\Cache\CacheManager|\Closure $cache - * @return void - * @static - */ - public static function setCacheManager($cache){ - \Illuminate\Database\Connection::setCacheManager($cache); - } - - /** - * Determine if the connection in a "dry run". - * - * @return bool - * @static - */ - public static function pretending(){ - return \Illuminate\Database\Connection::pretending(); - } - - /** - * Get the default fetch mode for the connection. - * - * @return int - * @static - */ - public static function getFetchMode(){ - return \Illuminate\Database\Connection::getFetchMode(); - } - - /** - * Set the default fetch mode for the connection. - * - * @param int $fetchMode - * @return int - * @static - */ - public static function setFetchMode($fetchMode){ - return \Illuminate\Database\Connection::setFetchMode($fetchMode); - } - - /** - * Get the connection query log. - * - * @return array - * @static - */ - public static function getQueryLog(){ - return \Illuminate\Database\Connection::getQueryLog(); - } - - /** - * Clear the query log. - * - * @return void - * @static - */ - public static function flushQueryLog(){ - \Illuminate\Database\Connection::flushQueryLog(); - } - - /** - * Enable the query log on the connection. - * - * @return void - * @static - */ - public static function enableQueryLog(){ - \Illuminate\Database\Connection::enableQueryLog(); - } - - /** - * Disable the query log on the connection. - * - * @return void - * @static - */ - public static function disableQueryLog(){ - \Illuminate\Database\Connection::disableQueryLog(); - } - - /** - * Get the name of the connected database. - * - * @return string - * @static - */ - public static function getDatabaseName(){ - return \Illuminate\Database\Connection::getDatabaseName(); - } - - /** - * Set the name of the connected database. - * - * @param string $database - * @return string - * @static - */ - public static function setDatabaseName($database){ - return \Illuminate\Database\Connection::setDatabaseName($database); - } - - /** - * Get the table prefix for the connection. - * - * @return string - * @static - */ - public static function getTablePrefix(){ - return \Illuminate\Database\Connection::getTablePrefix(); - } - - /** - * Set the table prefix in use by the connection. - * - * @param string $prefix - * @return void - * @static - */ - public static function setTablePrefix($prefix){ - \Illuminate\Database\Connection::setTablePrefix($prefix); - } - - /** - * Set the table prefix and return the grammar. - * - * @param \Illuminate\Database\Grammar $grammar - * @return \Illuminate\Database\Grammar - * @static - */ - public static function withTablePrefix($grammar){ - return \Illuminate\Database\Connection::withTablePrefix($grammar); - } - - } -} - -namespace { - class Eloquent extends Illuminate\Database\Eloquent\Model{ - /** - * Execute the query and get the first result. - * - * @param array $columns - * @return \Illuminate\Database\Eloquent\Model|null|static - * @static - */ - public function first($columns = array()){ - return \Illuminate\Database\Eloquent\Builder::first($columns); - } - - /** - * Execute the query and get the first result or throw an exception. - * - * @param array $columns - * @return \Illuminate\Database\Eloquent\Model - * @static - */ - public function firstOrFail($columns = array()){ - return \Illuminate\Database\Eloquent\Builder::firstOrFail($columns); - } - - /** - * Execute the query as a "select" statement. - * - * @param array $columns - * @return \Illuminate\Database\Eloquent\Collection|\Eloquent[]|static[] - * @static - */ - public function get($columns = array()){ - return \Illuminate\Database\Eloquent\Builder::get($columns); - } - - /** - * Pluck a single column from the database. - * - * @param string $column - * @return mixed|static - * @static - */ - public function pluck($column){ - return \Illuminate\Database\Eloquent\Builder::pluck($column); - } - - /** - * Get an array with the values of a given column. - * - * @param string $column - * @param string $key - * @return array - * @static - */ - public function lists($column, $key = null){ - return \Illuminate\Database\Eloquent\Builder::lists($column, $key); - } - - /** - * Get a paginator for the "select" statement. - * - * @param int $perPage - * @param array $columns - * @return \Illuminate\Pagination\Paginator - * @static - */ - public function paginate($perPage = null, $columns = array()){ - return \Illuminate\Database\Eloquent\Builder::paginate($perPage, $columns); - } - - /** - * Get the hydrated models without eager loading. - * - * @param array $columns - * @return array - * @static - */ - public function getModels($columns = array()){ - return \Illuminate\Database\Eloquent\Builder::getModels($columns); - } - - /** - * Eager load the relationships for the models. - * - * @param array $models - * @return array - * @static - */ - public function eagerLoadRelations($models){ - return \Illuminate\Database\Eloquent\Builder::eagerLoadRelations($models); - } - - /** - * Add a relationship count condition to the query. - * - * @param string $relation - * @param string $operator - * @param int $count - * @param string $boolean - * @return \Illuminate\Database\Eloquent\Builder - * @static - */ - public function has($relation, $operator = '>=', $count = 1, $boolean = 'and'){ - return \Illuminate\Database\Eloquent\Builder::has($relation, $operator, $count, $boolean); - } - - /** - * Add a relationship count condition to the query with an "or". - * - * @param string $relation - * @param string $operator - * @param int $count - * @return \Illuminate\Database\Eloquent\Builder - * @static - */ - public function orHas($relation, $operator = '>=', $count = 1){ - return \Illuminate\Database\Eloquent\Builder::orHas($relation, $operator, $count); - } - - /** - * Get the underlying query builder instance. - * - * @return \Illuminate\Database\Query\Builder|static - * @static - */ - public function getQuery(){ - return \Illuminate\Database\Eloquent\Builder::getQuery(); - } - - /** - * Set the underlying query builder instance. - * - * @param \Illuminate\Database\Query\Builder $query - * @return void - * @static - */ - public function setQuery($query){ - \Illuminate\Database\Eloquent\Builder::setQuery($query); - } - - /** - * Get the relationships being eagerly loaded. - * - * @return array - * @static - */ - public function getEagerLoads(){ - return \Illuminate\Database\Eloquent\Builder::getEagerLoads(); - } - - /** - * Set the relationships being eagerly loaded. - * - * @param array $eagerLoad - * @return void - * @static - */ - public function setEagerLoads($eagerLoad){ - \Illuminate\Database\Eloquent\Builder::setEagerLoads($eagerLoad); - } - - /** - * Get the model instance being queried. - * - * @return \Illuminate\Database\Eloquent\Model - * @static - */ - public function getModel(){ - return \Illuminate\Database\Eloquent\Builder::getModel(); - } - - /** - * Set a model instance for the model being queried. - * - * @param \Illuminate\Database\Eloquent\Model $model - * @return \Illuminate\Database\Eloquent\Builder - * @static - */ - public function setModel($model){ - return \Illuminate\Database\Eloquent\Builder::setModel($model); - } - - /** - * Set the columns to be selected. - * - * @param array $columns - * @return \Illuminate\Database\Query\Builder|static - * @static - */ - public function select($columns = array()){ - return \Illuminate\Database\Query\Builder::select($columns); - } - - /** - * Add a new select column to the query. - * - * @param mixed $column - * @return \Illuminate\Database\Query\Builder|static - * @static - */ - public function addSelect($column){ - return \Illuminate\Database\Query\Builder::addSelect($column); - } - - /** - * Force the query to only return distinct results. - * - * @return \Illuminate\Database\Query\Builder|static - * @static - */ - public function distinct(){ - return \Illuminate\Database\Query\Builder::distinct(); - } - - /** - * Set the table which the query is targeting. - * - * @param string $table - * @return \Illuminate\Database\Query\Builder|static - * @static - */ - public function from($table){ - return \Illuminate\Database\Query\Builder::from($table); - } - - /** - * Add a join clause to the query. - * - * @param string $table - * @param string $first - * @param string $operator - * @param string $second - * @param string $type - * @return \Illuminate\Database\Query\Builder|static - * @static - */ - public function join($table, $first, $operator = null, $second = null, $type = 'inner'){ - return \Illuminate\Database\Query\Builder::join($table, $first, $operator, $second, $type); - } - - /** - * Add a left join to the query. - * - * @param string $table - * @param string $first - * @param string $operator - * @param string $second - * @return \Illuminate\Database\Query\Builder|static - * @static - */ - public function leftJoin($table, $first, $operator = null, $second = null){ - return \Illuminate\Database\Query\Builder::leftJoin($table, $first, $operator, $second); - } - - /** - * Add a basic where clause to the query. - * - * @param string $column - * @param string $operator - * @param mixed $value - * @param string $boolean - * @return \Illuminate\Database\Query\Builder|static - * @static - */ - public function where($column, $operator = null, $value = null, $boolean = 'and'){ - return \Illuminate\Database\Query\Builder::where($column, $operator, $value, $boolean); - } - - /** - * Add an "or where" clause to the query. - * - * @param string $column - * @param string $operator - * @param mixed $value - * @return \Illuminate\Database\Query\Builder|static - * @static - */ - public function orWhere($column, $operator = null, $value = null){ - return \Illuminate\Database\Query\Builder::orWhere($column, $operator, $value); - } - - /** - * Add a raw where clause to the query. - * - * @param string $sql - * @param array $bindings - * @param string $boolean - * @return \Illuminate\Database\Query\Builder|static - * @static - */ - public function whereRaw($sql, $bindings = array(), $boolean = 'and'){ - return \Illuminate\Database\Query\Builder::whereRaw($sql, $bindings, $boolean); - } - - /** - * Add a raw or where clause to the query. - * - * @param string $sql - * @param array $bindings - * @return \Illuminate\Database\Query\Builder|static - * @static - */ - public function orWhereRaw($sql, $bindings = array()){ - return \Illuminate\Database\Query\Builder::orWhereRaw($sql, $bindings); - } - - /** - * Add a where between statement to the query. - * - * @param string $column - * @param array $values - * @param string $boolean - * @return \Illuminate\Database\Query\Builder|static - * @static - */ - public function whereBetween($column, $values, $boolean = 'and'){ - return \Illuminate\Database\Query\Builder::whereBetween($column, $values, $boolean); - } - - /** - * Add an or where between statement to the query. - * - * @param string $column - * @param array $values - * @return \Illuminate\Database\Query\Builder|static - * @static - */ - public function orWhereBetween($column, $values){ - return \Illuminate\Database\Query\Builder::orWhereBetween($column, $values); - } - - /** - * Add a nested where statement to the query. - * - * @param Closure $callback - * @param string $boolean - * @return \Illuminate\Database\Query\Builder|static - * @static - */ - public function whereNested($callback, $boolean = 'and'){ - return \Illuminate\Database\Query\Builder::whereNested($callback, $boolean); - } - - /** - * Add an exists clause to the query. - * - * @param Closure $callback - * @param string $boolean - * @param bool $not - * @return \Illuminate\Database\Query\Builder|static - * @static - */ - public function whereExists($callback, $boolean = 'and', $not = false){ - return \Illuminate\Database\Query\Builder::whereExists($callback, $boolean, $not); - } - - /** - * Add an or exists clause to the query. - * - * @param Closure $callback - * @param bool $not - * @return \Illuminate\Database\Query\Builder|static - * @static - */ - public function orWhereExists($callback, $not = false){ - return \Illuminate\Database\Query\Builder::orWhereExists($callback, $not); - } - - /** - * Add a where not exists clause to the query. - * - * @param Closure $calback - * @param string $boolean - * @return \Illuminate\Database\Query\Builder|static - * @static - */ - public function whereNotExists($callback, $boolean = 'and'){ - return \Illuminate\Database\Query\Builder::whereNotExists($callback, $boolean); - } - - /** - * Add a where not exists clause to the query. - * - * @param Closure $calback - * @return \Illuminate\Database\Query\Builder|static - * @static - */ - public function orWhereNotExists($callback){ - return \Illuminate\Database\Query\Builder::orWhereNotExists($callback); - } - - /** - * Add a "where in" clause to the query. - * - * @param string $column - * @param mixed $values - * @param string $boolean - * @param bool $not - * @return \Illuminate\Database\Query\Builder|static - * @static - */ - public function whereIn($column, $values, $boolean = 'and', $not = false){ - return \Illuminate\Database\Query\Builder::whereIn($column, $values, $boolean, $not); - } - - /** - * Add an "or where in" clause to the query. - * - * @param string $column - * @param mixed $values - * @return \Illuminate\Database\Query\Builder|static - * @static - */ - public function orWhereIn($column, $values){ - return \Illuminate\Database\Query\Builder::orWhereIn($column, $values); - } - - /** - * Add a "where not in" clause to the query. - * - * @param string $column - * @param mixed $values - * @param string $boolean - * @return \Illuminate\Database\Query\Builder|static - * @static - */ - public function whereNotIn($column, $values, $boolean = 'and'){ - return \Illuminate\Database\Query\Builder::whereNotIn($column, $values, $boolean); - } - - /** - * Add an "or where not in" clause to the query. - * - * @param string $column - * @param mixed $values - * @return \Illuminate\Database\Query\Builder|static - * @static - */ - public function orWhereNotIn($column, $values){ - return \Illuminate\Database\Query\Builder::orWhereNotIn($column, $values); - } - - /** - * Add a "where null" clause to the query. - * - * @param string $column - * @param string $boolean - * @param bool $not - * @return \Illuminate\Database\Query\Builder|static - * @static - */ - public function whereNull($column, $boolean = 'and', $not = false){ - return \Illuminate\Database\Query\Builder::whereNull($column, $boolean, $not); - } - - /** - * Add an "or where null" clause to the query. - * - * @param string $column - * @return \Illuminate\Database\Query\Builder|static - * @static - */ - public function orWhereNull($column){ - return \Illuminate\Database\Query\Builder::orWhereNull($column); - } - - /** - * Add a "where not null" clause to the query. - * - * @param string $column - * @param string $boolean - * @return \Illuminate\Database\Query\Builder|static - * @static - */ - public function whereNotNull($column, $boolean = 'and'){ - return \Illuminate\Database\Query\Builder::whereNotNull($column, $boolean); - } - - /** - * Add an "or where not null" clause to the query. - * - * @param string $column - * @return \Illuminate\Database\Query\Builder|static - * @static - */ - public function orWhereNotNull($column){ - return \Illuminate\Database\Query\Builder::orWhereNotNull($column); - } - - /** - * Handles dynamic "where" clauses to the query. - * - * @param string $method - * @param string $parameters - * @return \Illuminate\Database\Query\Builder|static - * @static - */ - public function dynamicWhere($method, $parameters){ - return \Illuminate\Database\Query\Builder::dynamicWhere($method, $parameters); - } - - /** - * Add a "group by" clause to the query. - * - * @param dynamic $columns - * @return \Illuminate\Database\Query\Builder|static - * @static - */ - public function groupBy(){ - return \Illuminate\Database\Query\Builder::groupBy(); - } - - /** - * Add a "having" clause to the query. - * - * @param string $column - * @param string $operator - * @param string $value - * @return \Illuminate\Database\Query\Builder|static - * @static - */ - public function having($column, $operator = null, $value = null){ - return \Illuminate\Database\Query\Builder::having($column, $operator, $value); - } - - /** - * Add a raw having clause to the query. - * - * @param string $sql - * @param array $bindings - * @param string $boolean - * @return \Illuminate\Database\Query\Builder|static - * @static - */ - public function havingRaw($sql, $bindings = array(), $boolean = 'and'){ - return \Illuminate\Database\Query\Builder::havingRaw($sql, $bindings, $boolean); - } - - /** - * Add a raw or having clause to the query. - * - * @param string $sql - * @param array $bindings - * @return \Illuminate\Database\Query\Builder|static - * @static - */ - public function orHavingRaw($sql, $bindings = array()){ - return \Illuminate\Database\Query\Builder::orHavingRaw($sql, $bindings); - } - - /** - * Add an "order by" clause to the query. - * - * @param string $column - * @param string $direction - * @return \Illuminate\Database\Query\Builder|static - * @static - */ - public function orderBy($column, $direction = 'asc'){ - return \Illuminate\Database\Query\Builder::orderBy($column, $direction); - } - - /** - * Set the "offset" value of the query. - * - * @param int $value - * @return \Illuminate\Database\Query\Builder|static - * @static - */ - public function skip($value){ - return \Illuminate\Database\Query\Builder::skip($value); - } - - /** - * Set the "limit" value of the query. - * - * @param int $value - * @return \Illuminate\Database\Query\Builder|static - * @static - */ - public function take($value){ - return \Illuminate\Database\Query\Builder::take($value); - } - - /** - * Set the limit and offset for a given page. - * - * @param int $page - * @param int $perPage - * @return \Illuminate\Database\Query\Builder|static - * @static - */ - public function forPage($page, $perPage = 15){ - return \Illuminate\Database\Query\Builder::forPage($page, $perPage); - } - - /** - * Add a union statement to the query. - * - * @param \Illuminate\Database\Query\Builder|\Closure $query - * @param bool $all - * @return \Illuminate\Database\Query\Builder|static - * @static - */ - public function union($query, $all = false){ - return \Illuminate\Database\Query\Builder::union($query, $all); - } - - /** - * Add a union all statement to the query. - * - * @param \Illuminate\Database\Query\Builder|\Closure $query - * @return \Illuminate\Database\Query\Builder|static - * @static - */ - public function unionAll($query){ - return \Illuminate\Database\Query\Builder::unionAll($query); - } - - /** - * Get the SQL representation of the query. - * - * @return string - * @static - */ - public function toSql(){ - return \Illuminate\Database\Query\Builder::toSql(); - } - - /** - * Indicate that the query results should be cached. - * - * @param int $minutes - * @param string $key - * @return \Illuminate\Database\Query\Builder|static - * @static - */ - public function remember($minutes, $key = null){ - return \Illuminate\Database\Query\Builder::remember($minutes, $key); - } - - /** - * Execute the query as a fresh "select" statement. - * - * @param array $columns - * @return array - * @static - */ - public function getFresh($columns = array()){ - return \Illuminate\Database\Query\Builder::getFresh($columns); - } - - /** - * Execute the query as a cached "select" statement. - * - * @param array $columns - * @return array - * @static - */ - public function getCached($columns = array()){ - return \Illuminate\Database\Query\Builder::getCached($columns); - } - - /** - * Get a unique cache key for the complete query. - * - * @return string - * @static - */ - public function getCacheKey(){ - return \Illuminate\Database\Query\Builder::getCacheKey(); - } - - /** - * Generate the unique cache key for the query. - * - * @return string - * @static - */ - public function generateCacheKey(){ - return \Illuminate\Database\Query\Builder::generateCacheKey(); - } - - /** - * Concatenate values of a given column as a string. - * - * @param string $column - * @param string $glue - * @return string - * @static - */ - public function implode($column, $glue = null){ - return \Illuminate\Database\Query\Builder::implode($column, $glue); - } - - /** - * Build a paginator instance from a raw result array. - * - * @param \Illuminate\Pagination\Environment $paginator - * @param array $results - * @param int $perPage - * @return \Illuminate\Pagination\Paginator - * @static - */ - public function buildRawPaginator($paginator, $results, $perPage){ - return \Illuminate\Database\Query\Builder::buildRawPaginator($paginator, $results, $perPage); - } - - /** - * Get the count of the total records for pagination. - * - * @return int - * @static - */ - public function getPaginationCount(){ - return \Illuminate\Database\Query\Builder::getPaginationCount(); - } - - /** - * Determine if any rows exist for the current query. - * - * @return bool - * @static - */ - public function exists(){ - return \Illuminate\Database\Query\Builder::exists(); - } - - /** - * Retrieve the "count" result of the query. - * - * @param string $column - * @return int - * @static - */ - public function count($column = '*'){ - return \Illuminate\Database\Query\Builder::count($column); - } - - /** - * Retrieve the minimum value of a given column. - * - * @param string $column - * @return mixed - * @static - */ - public function min($column){ - return \Illuminate\Database\Query\Builder::min($column); - } - - /** - * Retrieve the maximum value of a given column. - * - * @param string $column - * @return mixed - * @static - */ - public function max($column){ - return \Illuminate\Database\Query\Builder::max($column); - } - - /** - * Retrieve the sum of the values of a given column. - * - * @param string $column - * @return mixed - * @static - */ - public function sum($column){ - return \Illuminate\Database\Query\Builder::sum($column); - } - - /** - * Retrieve the average of the values of a given column. - * - * @param string $column - * @return mixed - * @static - */ - public function avg($column){ - return \Illuminate\Database\Query\Builder::avg($column); - } - - /** - * Execute an aggregate function on the database. - * - * @param string $function - * @param array $columns - * @return mixed - * @static - */ - public function aggregate($function, $columns = array()){ - return \Illuminate\Database\Query\Builder::aggregate($function, $columns); - } - - /** - * Insert a new record into the database. - * - * @param array $values - * @return bool - * @static - */ - public function insert($values){ - return \Illuminate\Database\Query\Builder::insert($values); - } - - /** - * Insert a new record and get the value of the primary key. - * - * @param array $values - * @param string $sequence - * @return int - * @static - */ - public function insertGetId($values, $sequence = null){ - return \Illuminate\Database\Query\Builder::insertGetId($values, $sequence); - } - - /** - * Run a truncate statement on the table. - * - * @return void - * @static - */ - public function truncate(){ - \Illuminate\Database\Query\Builder::truncate(); - } - - /** - * Merge an array of where clauses and bindings. - * - * @param array $wheres - * @param array $bindings - * @return void - * @static - */ - public function mergeWheres($wheres, $bindings){ - \Illuminate\Database\Query\Builder::mergeWheres($wheres, $bindings); - } - - /** - * Get a copy of the where clauses and bindings in an array. - * - * @return array - * @static - */ - public function getAndResetWheres(){ - return \Illuminate\Database\Query\Builder::getAndResetWheres(); - } - - /** - * Create a raw database expression. - * - * @param mixed $value - * @return \Illuminate\Database\Query\Expression - * @static - */ - public function raw($value){ - return \Illuminate\Database\Query\Builder::raw($value); - } - - /** - * Get the current query value bindings. - * - * @return array - * @static - */ - public function getBindings(){ - return \Illuminate\Database\Query\Builder::getBindings(); - } - - /** - * Set the bindings on the query builder. - * - * @param array $bindings - * @return void - * @static - */ - public function setBindings($bindings){ - \Illuminate\Database\Query\Builder::setBindings($bindings); - } - - /** - * Merge an array of bindings into our bindings. - * - * @param \Illuminate\Database\Query\Builder $query - * @return \Illuminate\Database\Query\Builder|static - * @static - */ - public function mergeBindings($query){ - return \Illuminate\Database\Query\Builder::mergeBindings($query); - } - - /** - * Get the database query processor instance. - * - * @return \Illuminate\Database\Query\Processors\Processor - * @static - */ - public function getProcessor(){ - return \Illuminate\Database\Query\Builder::getProcessor(); - } - - /** - * Get the query grammar instance. - * - * @return \Illuminate\Database\Grammar - * @static - */ - public function getGrammar(){ - return \Illuminate\Database\Query\Builder::getGrammar(); - } - - } -} - -namespace { - class Event extends Illuminate\Support\Facades\Event{ - /** - * Create a new event dispatcher instance. - * - * @param \Illuminate\Container\Container $container - * @return self - * @static - */ - public static function __construct($container = null){ - \Illuminate\Events\Dispatcher::__construct($container); - } - - /** - * Register an event listener with the dispatcher. - * - * @param string $event - * @param mixed $listener - * @param int $priority - * @return void - * @static - */ - public static function listen($event, $listener, $priority = 0){ - \Illuminate\Events\Dispatcher::listen($event, $listener, $priority); - } - - /** - * Determine if a given event has listeners. - * - * @param string $eventName - * @return bool - * @static - */ - public static function hasListeners($eventName){ - return \Illuminate\Events\Dispatcher::hasListeners($eventName); - } - - /** - * Register a queued event and payload. - * - * @param string $event - * @param array $payload - * @return void - * @static - */ - public static function queue($event, $payload = array()){ - \Illuminate\Events\Dispatcher::queue($event, $payload); - } - - /** - * Register an event subscriber with the dispatcher. - * - * @param string $subscriber - * @return void - * @static - */ - public static function subscribe($subscriber){ - \Illuminate\Events\Dispatcher::subscribe($subscriber); - } - - /** - * Fire an event until the first non-null response is returned. - * - * @param string $event - * @param array $payload - * @return mixed - * @static - */ - public static function until($event, $payload = array()){ - return \Illuminate\Events\Dispatcher::until($event, $payload); - } - - /** - * Flush a set of queued events. - * - * @param string $event - * @return void - * @static - */ - public static function flush($event){ - \Illuminate\Events\Dispatcher::flush($event); - } - - /** - * Fire an event and call the listeners. - * - * @param string $event - * @param mixed $payload - * @param boolean $halt - * @return void - * @static - */ - public static function fire($event, $payload = array(), $halt = false){ - \Illuminate\Events\Dispatcher::fire($event, $payload, $halt); - } - - /** - * Get all of the listeners for a given event name. - * - * @param string $eventName - * @return array - * @static - */ - public static function getListeners($eventName){ - return \Illuminate\Events\Dispatcher::getListeners($eventName); - } - - /** - * Register an event listener with the dispatcher. - * - * @param mixed $listener - * @return void - * @static - */ - public static function makeListener($listener){ - \Illuminate\Events\Dispatcher::makeListener($listener); - } - - /** - * Create a class based listener using the IoC container. - * - * @param mixed $listener - * @return Closure - * @static - */ - public static function createClassListener($listener){ - return \Illuminate\Events\Dispatcher::createClassListener($listener); - } - - /** - * Remove a set of listeners from the dispatcher. - * - * @param string $event - * @return void - * @static - */ - public static function forget($event){ - \Illuminate\Events\Dispatcher::forget($event); - } - - } -} - -namespace { - class File extends Illuminate\Support\Facades\File{ - /** - * Determine if a file exists. - * - * @param string $path - * @return bool - * @static - */ - public static function exists($path){ - return \Illuminate\Filesystem\Filesystem::exists($path); - } - - /** - * Get the contents of a file. - * - * @param string $path - * @return string - * @static - */ - public static function get($path){ - return \Illuminate\Filesystem\Filesystem::get($path); - } - - /** - * Get the contents of a remote file. - * - * @param string $path - * @return string - * @static - */ - public static function getRemote($path){ - return \Illuminate\Filesystem\Filesystem::getRemote($path); - } - - /** - * Get the returned value of a file. - * - * @param string $path - * @return mixed - * @static - */ - public static function getRequire($path){ - return \Illuminate\Filesystem\Filesystem::getRequire($path); - } - - /** - * Require the given file once. - * - * @param string $file - * @return void - * @static - */ - public static function requireOnce($file){ - \Illuminate\Filesystem\Filesystem::requireOnce($file); - } - - /** - * Write the contents of a file. - * - * @param string $path - * @param string $contents - * @return int - * @static - */ - public static function put($path, $contents){ - return \Illuminate\Filesystem\Filesystem::put($path, $contents); - } - - /** - * Append to a file. - * - * @param string $path - * @param string $data - * @return int - * @static - */ - public static function append($path, $data){ - return \Illuminate\Filesystem\Filesystem::append($path, $data); - } - - /** - * Delete the file at a given path. - * - * @param string $path - * @return bool - * @static - */ - public static function delete($path){ - return \Illuminate\Filesystem\Filesystem::delete($path); - } - - /** - * Move a file to a new location. - * - * @param string $path - * @param string $target - * @return void - * @static - */ - public static function move($path, $target){ - \Illuminate\Filesystem\Filesystem::move($path, $target); - } - - /** - * Copy a file to a new location. - * - * @param string $path - * @param string $target - * @return void - * @static - */ - public static function copy($path, $target){ - \Illuminate\Filesystem\Filesystem::copy($path, $target); - } - - /** - * Extract the file extension from a file path. - * - * @param string $path - * @return string - * @static - */ - public static function extension($path){ - return \Illuminate\Filesystem\Filesystem::extension($path); - } - - /** - * Get the file type of a given file. - * - * @param string $path - * @return string - * @static - */ - public static function type($path){ - return \Illuminate\Filesystem\Filesystem::type($path); - } - - /** - * Get the file size of a given file. - * - * @param string $path - * @return int - * @static - */ - public static function size($path){ - return \Illuminate\Filesystem\Filesystem::size($path); - } - - /** - * Get the file's last modification time. - * - * @param string $path - * @return int - * @static - */ - public static function lastModified($path){ - return \Illuminate\Filesystem\Filesystem::lastModified($path); - } - - /** - * Determine if the given path is a directory. - * - * @param string $directory - * @return bool - * @static - */ - public static function isDirectory($directory){ - return \Illuminate\Filesystem\Filesystem::isDirectory($directory); - } - - /** - * Determine if the given path is writable. - * - * @param string $path - * @return bool - * @static - */ - public static function isWritable($path){ - return \Illuminate\Filesystem\Filesystem::isWritable($path); - } - - /** - * Determine if the given path is a file. - * - * @param string $file - * @return bool - * @static - */ - public static function isFile($file){ - return \Illuminate\Filesystem\Filesystem::isFile($file); - } - - /** - * Find path names matching a given pattern. - * - * @param string $pattern - * @param int $flags - * @return array - * @static - */ - public static function glob($pattern, $flags = 0){ - return \Illuminate\Filesystem\Filesystem::glob($pattern, $flags); - } - - /** - * Get an array of all files in a directory. - * - * @param string $directory - * @return array - * @static - */ - public static function files($directory){ - return \Illuminate\Filesystem\Filesystem::files($directory); - } - - /** - * Get all of the files from the given directory (recursive). - * - * @param string $directory - * @return array - * @static - */ - public static function allFiles($directory){ - return \Illuminate\Filesystem\Filesystem::allFiles($directory); - } - - /** - * Get all of the directories within a given directory. - * - * @param string $directory - * @return array - * @static - */ - public static function directories($directory){ - return \Illuminate\Filesystem\Filesystem::directories($directory); - } - - /** - * Create a directory. - * - * @param string $path - * @param int $mode - * @param bool $recursive - * @return bool - * @static - */ - public static function makeDirectory($path, $mode = 511, $recursive = false){ - return \Illuminate\Filesystem\Filesystem::makeDirectory($path, $mode, $recursive); - } - - /** - * Copy a directory from one location to another. - * - * @param string $directory - * @param string $destination - * @param int $options - * @return void - * @static - */ - public static function copyDirectory($directory, $destination, $options = null){ - \Illuminate\Filesystem\Filesystem::copyDirectory($directory, $destination, $options); - } - - /** - * Recursively delete a directory. - * - * The directory itself may be optionally preserved. - * - * @param string $directory - * @param bool $preserve - * @return void - * @static - */ - public static function deleteDirectory($directory, $preserve = false){ - \Illuminate\Filesystem\Filesystem::deleteDirectory($directory, $preserve); - } - - /** - * Empty the specified directory of all files and folders. - * - * @param string $directory - * @return void - * @static - */ - public static function cleanDirectory($directory){ - \Illuminate\Filesystem\Filesystem::cleanDirectory($directory); - } - - } -} - -namespace { - class Form extends Illuminate\Support\Facades\Form{ - /** - * Create a new form builder instance. - * - * @param \Illuminate\Routing\UrlGenerator $url - * @param \Illuminate\Html\HtmlBuilder $html - * @param string $csrfToken - * @return self - * @static - */ - public static function __construct($html, $url, $csrfToken){ - \Illuminate\Html\FormBuilder::__construct($html, $url, $csrfToken); - } - - /** - * Open up a new HTML form. - * - * @param array $options - * @return string - * @static - */ - public static function open($options = array()){ - return \Illuminate\Html\FormBuilder::open($options); - } - - /** - * Create a new model based form builder. - * - * @param mixed $model - * @param array $options - * @return string - * @static - */ - public static function model($model, $options = array()){ - return \Illuminate\Html\FormBuilder::model($model, $options); - } - - /** - * Close the current form. - * - * @return string - * @static - */ - public static function close(){ - return \Illuminate\Html\FormBuilder::close(); - } - - /** - * Generate a hidden field with the current CSRF token. - * - * @return string - * @static - */ - public static function token(){ - return \Illuminate\Html\FormBuilder::token(); - } - - /** - * Create a form label element. - * - * @param string $name - * @param string $value - * @param array $options - * @return string - * @static - */ - public static function label($name, $value = null, $options = array()){ - return \Illuminate\Html\FormBuilder::label($name, $value, $options); - } - - /** - * Create a form input field. - * - * @param string $type - * @param string $name - * @param string $value - * @param array $options - * @return string - * @static - */ - public static function input($type, $name, $value = null, $options = array()){ - return \Illuminate\Html\FormBuilder::input($type, $name, $value, $options); - } - - /** - * Create a text input field. - * - * @param string $name - * @param string $value - * @param array $options - * @return string - * @static - */ - public static function text($name, $value = null, $options = array()){ - return \Illuminate\Html\FormBuilder::text($name, $value, $options); - } - - /** - * Create a password input field. - * - * @param string $name - * @param array $options - * @return string - * @static - */ - public static function password($name, $options = array()){ - return \Illuminate\Html\FormBuilder::password($name, $options); - } - - /** - * Create a hidden input field. - * - * @param string $name - * @param string $value - * @param array $options - * @return string - * @static - */ - public static function hidden($name, $value = null, $options = array()){ - return \Illuminate\Html\FormBuilder::hidden($name, $value, $options); - } - - /** - * Create an e-mail input field. - * - * @param string $name - * @param string $value - * @param array $options - * @return string - * @static - */ - public static function email($name, $value = null, $options = array()){ - return \Illuminate\Html\FormBuilder::email($name, $value, $options); - } - - /** - * Create a file input field. - * - * @param string $name - * @param array $options - * @return string - * @static - */ - public static function file($name, $options = array()){ - return \Illuminate\Html\FormBuilder::file($name, $options); - } - - /** - * Create a textarea input field. - * - * @param string $name - * @param string $value - * @param array $options - * @return string - * @static - */ - public static function textarea($name, $value = null, $options = array()){ - return \Illuminate\Html\FormBuilder::textarea($name, $value, $options); - } - - /** - * Create a select box field. - * - * @param string $name - * @param array $list - * @param string $selected - * @param array $options - * @return string - * @static - */ - public static function select($name, $list = array(), $selected = null, $options = array()){ - return \Illuminate\Html\FormBuilder::select($name, $list, $selected, $options); - } - - /** - * Create a checkbox input field. - * - * @param string $name - * @param mixed $value - * @param bool $checked - * @param array $options - * @return string - * @static - */ - public static function checkbox($name, $value = 1, $checked = null, $options = array()){ - return \Illuminate\Html\FormBuilder::checkbox($name, $value, $checked, $options); - } - - /** - * Create a radio button input field. - * - * @param string $name - * @param mixed $value - * @param bool $checked - * @param array $options - * @return string - * @static - */ - public static function radio($name, $value = null, $checked = null, $options = array()){ - return \Illuminate\Html\FormBuilder::radio($name, $value, $checked, $options); - } - - /** - * Create a HTML reset input element. - * - * @param string $value - * @param array $attributes - * @return string - * @static - */ - public static function reset($value, $attributes = array()){ - return \Illuminate\Html\FormBuilder::reset($value, $attributes); - } - - /** - * Create a HTML image input element. - * - * @param string $url - * @param string $name - * @param array $attributes - * @return string - * @static - */ - public static function image($url, $name = null, $attributes = array()){ - return \Illuminate\Html\FormBuilder::image($url, $name, $attributes); - } - - /** - * Create a submit button element. - * - * @param string $value - * @param array $options - * @return string - * @static - */ - public static function submit($value = null, $options = array()){ - return \Illuminate\Html\FormBuilder::submit($value, $options); - } - - /** - * Create a button element. - * - * @param string $value - * @param array $options - * @return string - * @static - */ - public static function button($value = null, $options = array()){ - return \Illuminate\Html\FormBuilder::button($value, $options); - } - - /** - * Register a custom form macro. - * - * @param string $name - * @param callable $macro - * @return void - * @static - */ - public static function macro($name, $macro){ - \Illuminate\Html\FormBuilder::macro($name, $macro); - } - - /** - * Get the value that should be assigned to the field. - * - * @param string $name - * @param string $value - * @return string - * @static - */ - public static function getValueAttribute($name, $value = null){ - return \Illuminate\Html\FormBuilder::getValueAttribute($name, $value); - } - - /** - * Get the session store implementation. - * - * @return \Illuminate\Session\Store $session - * @static - */ - public static function getSessionStore(){ - return \Illuminate\Html\FormBuilder::getSessionStore(); - } - - /** - * Set the session store implementation. - * - * @param \Illuminate\Session\Store $session - * @return \Illuminate\Html\FormBuilder - * @static - */ - public static function setSessionStore($session){ - return \Illuminate\Html\FormBuilder::setSessionStore($session); - } - - /** - * Dynamically handle calls to the form builder. - * - * @param string $method - * @param array $parameters - * @return mixed - * @static - */ - public static function __call($method, $parameters){ - return \Illuminate\Html\FormBuilder::__call($method, $parameters); - } - - } -} - -namespace { - class Hash extends Illuminate\Support\Facades\Hash{ - /** - * Hash the given value. - * - * @param string $value - * @param array $options - * @return string - * @static - */ - public static function make($value, $options = array()){ - return \Illuminate\Hashing\BcryptHasher::make($value, $options); - } - - /** - * Check the given plain value against a hash. - * - * @param string $value - * @param string $hashedValue - * @param array $options - * @return bool - * @static - */ - public static function check($value, $hashedValue, $options = array()){ - return \Illuminate\Hashing\BcryptHasher::check($value, $hashedValue, $options); - } - - /** - * Check if the given hash has been hashed using the given options. - * - * @param string $hashedValue - * @param array $options - * @return bool - * @static - */ - public static function needsRehash($hashedValue, $options = array()){ - return \Illuminate\Hashing\BcryptHasher::needsRehash($hashedValue, $options); - } - - } -} - -namespace { - class Html extends Illuminate\Support\Facades\HTML{ - /** - * Create a new HTML builder instance. - * - * @param \Illuminate\Routing\UrlGenerator $url - * @return self - * @static - */ - public static function __construct($url = null){ - \Illuminate\Html\HtmlBuilder::__construct($url); - } - - /** - * Register a custom HTML macro. - * - * @param string $name - * @param callable $macro - * @return void - * @static - */ - public static function macro($name, $macro){ - \Illuminate\Html\HtmlBuilder::macro($name, $macro); - } - - /** - * Convert an HTML string to entities. - * - * @param string $value - * @return string - * @static - */ - public static function entities($value){ - return \Illuminate\Html\HtmlBuilder::entities($value); - } - - /** - * Convert entities to HTML characters. - * - * @param string $value - * @return string - * @static - */ - public static function decode($value){ - return \Illuminate\Html\HtmlBuilder::decode($value); - } - - /** - * Generate a link to a JavaScript file. - * - * @param string $url - * @param array $attributes - * @return string - * @static - */ - public static function script($url, $attributes = array()){ - return \Illuminate\Html\HtmlBuilder::script($url, $attributes); - } - - /** - * Generate a link to a CSS file. - * - * @param string $url - * @param array $attributes - * @return string - * @static - */ - public static function style($url, $attributes = array()){ - return \Illuminate\Html\HtmlBuilder::style($url, $attributes); - } - - /** - * Generate an HTML image element. - * - * @param string $url - * @param string $alt - * @param array $attributes - * @return string - * @static - */ - public static function image($url, $alt = null, $attributes = array()){ - return \Illuminate\Html\HtmlBuilder::image($url, $alt, $attributes); - } - - /** - * Generate a HTML link. - * - * @param string $url - * @param string $title - * @param array $attributes - * @param bool $secure - * @return string - * @static - */ - public static function link($url, $title = null, $attributes = array(), $secure = null){ - return \Illuminate\Html\HtmlBuilder::link($url, $title, $attributes, $secure); - } - - /** - * Generate a HTTPS HTML link. - * - * @param string $url - * @param string $title - * @param array $attributes - * @return string - * @static - */ - public static function secureLink($url, $title = null, $attributes = array()){ - return \Illuminate\Html\HtmlBuilder::secureLink($url, $title, $attributes); - } - - /** - * Generate a HTML link to an asset. - * - * @param string $url - * @param string $title - * @param array $attributes - * @param bool $secure - * @return string - * @static - */ - public static function linkAsset($url, $title = null, $attributes = array(), $secure = null){ - return \Illuminate\Html\HtmlBuilder::linkAsset($url, $title, $attributes, $secure); - } - - /** - * Generate a HTTPS HTML link to an asset. - * - * @param string $url - * @param string $title - * @param array $attributes - * @return string - * @static - */ - public static function linkSecureAsset($url, $title = null, $attributes = array()){ - return \Illuminate\Html\HtmlBuilder::linkSecureAsset($url, $title, $attributes); - } - - /** - * Generate a HTML link to a named route. - * - * @param string $name - * @param string $title - * @param array $parameters - * @param array $attributes - * @return string - * @static - */ - public static function linkRoute($name, $title = null, $parameters = array(), $attributes = array()){ - return \Illuminate\Html\HtmlBuilder::linkRoute($name, $title, $parameters, $attributes); - } - - /** - * Generate a HTML link to a controller action. - * - * @param string $action - * @param string $title - * @param array $parameters - * @param array $attributes - * @return string - * @static - */ - public static function linkAction($action, $title = null, $parameters = array(), $attributes = array()){ - return \Illuminate\Html\HtmlBuilder::linkAction($action, $title, $parameters, $attributes); - } - - /** - * Generate a HTML link to an email address. - * - * @param string $email - * @param string $title - * @param array $attributes - * @return string - * @static - */ - public static function mailto($email, $title = null, $attributes = array()){ - return \Illuminate\Html\HtmlBuilder::mailto($email, $title, $attributes); - } - - /** - * Obfuscate an e-mail address to prevent spam-bots from sniffing it. - * - * @param string $email - * @return string - * @static - */ - public static function email($email){ - return \Illuminate\Html\HtmlBuilder::email($email); - } - - /** - * Generate an ordered list of items. - * - * @param array $list - * @param array $attributes - * @return string - * @static - */ - public static function ol($list, $attributes = array()){ - return \Illuminate\Html\HtmlBuilder::ol($list, $attributes); - } - - /** - * Generate an un-ordered list of items. - * - * @param array $list - * @param array $attributes - * @return string - * @static - */ - public static function ul($list, $attributes = array()){ - return \Illuminate\Html\HtmlBuilder::ul($list, $attributes); - } - - /** - * Build an HTML attribute string from an array. - * - * @param array $attributes - * @return string - * @static - */ - public static function attributes($attributes){ - return \Illuminate\Html\HtmlBuilder::attributes($attributes); - } - - /** - * Obfuscate a string to prevent spam-bots from sniffing it. - * - * @param string $value - * @return string - * @static - */ - public static function obfuscate($value){ - return \Illuminate\Html\HtmlBuilder::obfuscate($value); - } - - /** - * Dynamically handle calls to the html class. - * - * @param string $method - * @param array $parameters - * @return mixed - * @static - */ - public static function __call($method, $parameters){ - return \Illuminate\Html\HtmlBuilder::__call($method, $parameters); - } - - } -} - -namespace { - class Input extends Illuminate\Support\Facades\Input{ - /** - * Return the Request instance. - * - * @return \Illuminate\Http\Request - * @static - */ - public static function instance(){ - return \Illuminate\Http\Request::instance(); - } - - /** - * Get the root URL for the application. - * - * @return string - * @static - */ - public static function root(){ - return \Illuminate\Http\Request::root(); - } - - /** - * Get the URL (no query string) for the request. - * - * @return string - * @static - */ - public static function url(){ - return \Illuminate\Http\Request::url(); - } - - /** - * Get the full URL for the request. - * - * @return string - * @static - */ - public static function fullUrl(){ - return \Illuminate\Http\Request::fullUrl(); - } - - /** - * Get the current path info for the request. - * - * @return string - * @static - */ - public static function path(){ - return \Illuminate\Http\Request::path(); - } - - /** - * Get a segment from the URI (1 based index). - * - * @param string $index - * @param mixed $default - * @return string - * @static - */ - public static function segment($index, $default = null){ - return \Illuminate\Http\Request::segment($index, $default); - } - - /** - * Get all of the segments for the request path. - * - * @return array - * @static - */ - public static function segments(){ - return \Illuminate\Http\Request::segments(); - } - - /** - * Determine if the current request URI matches a pattern. - * - * @param string $pattern - * @return bool - * @static - */ - public static function is($pattern){ - return \Illuminate\Http\Request::is($pattern); - } - - /** - * Determine if the request is the result of an AJAX call. - * - * @return bool - * @static - */ - public static function ajax(){ - return \Illuminate\Http\Request::ajax(); - } - - /** - * Determine if the request is over HTTPS. - * - * @return bool - * @static - */ - public static function secure(){ - return \Illuminate\Http\Request::secure(); - } - - /** - * Determine if the request contains a given input item. - * - * @param string|array $key - * @return bool - * @static - */ - public static function has($key){ - return \Illuminate\Http\Request::has($key); - } - - /** - * Get all of the input and files for the request. - * - * @return array - * @static - */ - public static function all(){ - return \Illuminate\Http\Request::all(); - } - - /** - * Retrieve an input item from the request. - * - * @param string $key - * @param mixed $default - * @return string - * @static - */ - public static function input($key = null, $default = null){ - return \Illuminate\Http\Request::input($key, $default); - } - - /** - * Get a subset of the items from the input data. - * - * @param array $keys - * @return array - * @static - */ - public static function only($keys){ - return \Illuminate\Http\Request::only($keys); - } - - /** - * Get all of the input except for a specified array of items. - * - * @param array $keys - * @return array - * @static - */ - public static function except($keys){ - return \Illuminate\Http\Request::except($keys); - } - - /** - * Retrieve a query string item from the request. - * - * @param string $key - * @param mixed $default - * @return string - * @static - */ - public static function query($key = null, $default = null){ - return \Illuminate\Http\Request::query($key, $default); - } - - /** - * Retrieve a cookie from the request. - * - * @param string $key - * @param mixed $default - * @return string - * @static - */ - public static function cookie($key = null, $default = null){ - return \Illuminate\Http\Request::cookie($key, $default); - } - - /** - * Retrieve a file from the request. - * - * @param string $key - * @param mixed $default - * @return \Symfony\Component\HttpFoundation\File\UploadedFile - * @static - */ - public static function file($key = null, $default = null){ - return \Illuminate\Http\Request::file($key, $default); - } - - /** - * Determine if the uploaded data contains a file. - * - * @param string $key - * @return bool - * @static - */ - public static function hasFile($key){ - return \Illuminate\Http\Request::hasFile($key); - } - - /** - * Retrieve a header from the request. - * - * @param string $key - * @param mixed $default - * @return string - * @static - */ - public static function header($key = null, $default = null){ - return \Illuminate\Http\Request::header($key, $default); - } - - /** - * Retrieve a server variable from the request. - * - * @param string $key - * @param mixed $default - * @return string - * @static - */ - public static function server($key = null, $default = null){ - return \Illuminate\Http\Request::server($key, $default); - } - - /** - * Retrieve an old input item. - * - * @param string $key - * @param mixed $default - * @return mixed - * @static - */ - public static function old($key = null, $default = null){ - return \Illuminate\Http\Request::old($key, $default); - } - - /** - * Flash the input for the current request to the session. - * - * @param string $filter - * @param array $keys - * @return void - * @static - */ - public static function flash($filter = null, $keys = array()){ - \Illuminate\Http\Request::flash($filter, $keys); - } - - /** - * Flash only some of the input to the session. - * - * @param dynamic string - * @return void - * @static - */ - public static function flashOnly($keys){ - \Illuminate\Http\Request::flashOnly($keys); - } - - /** - * Flash only some of the input to the session. - * - * @param dynamic string - * @return void - * @static - */ - public static function flashExcept($keys){ - \Illuminate\Http\Request::flashExcept($keys); - } - - /** - * Flush all of the old input from the session. - * - * @return void - * @static - */ - public static function flush(){ - \Illuminate\Http\Request::flush(); - } - - /** - * Merge new input into the current request's input array. - * - * @param array $input - * @return void - * @static - */ - public static function merge($input){ - \Illuminate\Http\Request::merge($input); - } - - /** - * Replace the input for the current request. - * - * @param array $input - * @return void - * @static - */ - public static function replace($input){ - \Illuminate\Http\Request::replace($input); - } - - /** - * Get the JSON payload for the request. - * - * @param string $key - * @param mixed $default - * @return mixed - * @static - */ - public static function json($key = null, $default = null){ - return \Illuminate\Http\Request::json($key, $default); - } - - /** - * Determine if the request is sending JSON. - * - * @return bool - * @static - */ - public static function isJson(){ - return \Illuminate\Http\Request::isJson(); - } - - /** - * Determine if the current request is asking for JSON in return. - * - * @return bool - * @static - */ - public static function wantsJson(){ - return \Illuminate\Http\Request::wantsJson(); - } - - /** - * Get the Illuminate session store implementation. - * - * @return \Illuminate\Session\Store - * @static - */ - public static function getSessionStore(){ - return \Illuminate\Http\Request::getSessionStore(); - } - - /** - * Set the Illuminate session store implementation. - * - * @param \Illuminate\Session\Store $session - * @return void - * @static - */ - public static function setSessionStore($session){ - \Illuminate\Http\Request::setSessionStore($session); - } - - /** - * Determine if the session store has been set. - * - * @return bool - * @static - */ - public static function hasSessionStore(){ - return \Illuminate\Http\Request::hasSessionStore(); - } - - /** - * Constructor. - * - * @param array $query The GET parameters - * @param array $request The POST parameters - * @param array $attributes The request attributes (parameters parsed from the PATH_INFO, ...) - * @param array $cookies The COOKIE parameters - * @param array $files The FILES parameters - * @param array $server The SERVER parameters - * @param string $content The raw body data - * @api - * @static - */ - public static function __construct($query = array(), $request = array(), $attributes = array(), $cookies = array(), $files = array(), $server = array(), $content = null){ - \Symfony\Component\HttpFoundation\Request::__construct($query, $request, $attributes, $cookies, $files, $server, $content); - } - - /** - * Sets the parameters for this request. - * - * This method also re-initializes all properties. - * - * @param array $query The GET parameters - * @param array $request The POST parameters - * @param array $attributes The request attributes (parameters parsed from the PATH_INFO, ...) - * @param array $cookies The COOKIE parameters - * @param array $files The FILES parameters - * @param array $server The SERVER parameters - * @param string $content The raw body data - * @api - * @static - */ - public static function initialize($query = array(), $request = array(), $attributes = array(), $cookies = array(), $files = array(), $server = array(), $content = null){ - \Symfony\Component\HttpFoundation\Request::initialize($query, $request, $attributes, $cookies, $files, $server, $content); - } - - /** - * Creates a new request with values from PHP's super globals. - * - * @return Request A new request - * @api - * @static - */ - public static function createFromGlobals(){ - return \Symfony\Component\HttpFoundation\Request::createFromGlobals(); - } - - /** - * Creates a Request based on a given URI and configuration. - * - * The information contained in the URI always take precedence - * over the other information (server and parameters). - * - * @param string $uri The URI - * @param string $method The HTTP method - * @param array $parameters The query (GET) or request (POST) parameters - * @param array $cookies The request cookies ($_COOKIE) - * @param array $files The request files ($_FILES) - * @param array $server The server parameters ($_SERVER) - * @param string $content The raw body data - * @return Request A Request instance - * @api - * @static - */ - public static function create($uri, $method = 'GET', $parameters = array(), $cookies = array(), $files = array(), $server = array(), $content = null){ - return \Symfony\Component\HttpFoundation\Request::create($uri, $method, $parameters, $cookies, $files, $server, $content); - } - - /** - * Clones a request and overrides some of its parameters. - * - * @param array $query The GET parameters - * @param array $request The POST parameters - * @param array $attributes The request attributes (parameters parsed from the PATH_INFO, ...) - * @param array $cookies The COOKIE parameters - * @param array $files The FILES parameters - * @param array $server The SERVER parameters - * @return Request The duplicated request - * @api - * @static - */ - public static function duplicate($query = null, $request = null, $attributes = null, $cookies = null, $files = null, $server = null){ - return \Symfony\Component\HttpFoundation\Request::duplicate($query, $request, $attributes, $cookies, $files, $server); - } - - /** - * Returns the request as a string. - * - * @return string The request - * @static - */ - public static function __toString(){ - return \Symfony\Component\HttpFoundation\Request::__toString(); - } - - /** - * Overrides the PHP global variables according to this request instance. - * - * It overrides $_GET, $_POST, $_REQUEST, $_SERVER, $_COOKIE. - * $_FILES is never override, see rfc1867 - * - * @api - * @static - */ - public static function overrideGlobals(){ - \Symfony\Component\HttpFoundation\Request::overrideGlobals(); - } - - /** - * Sets a list of trusted proxies. - * - * You should only list the reverse proxies that you manage directly. - * - * @param array $proxies A list of trusted proxies - * @api - * @static - */ - public static function setTrustedProxies($proxies){ - \Symfony\Component\HttpFoundation\Request::setTrustedProxies($proxies); - } - - /** - * Gets the list of trusted proxies. - * - * @return array An array of trusted proxies. - * @static - */ - public static function getTrustedProxies(){ - return \Symfony\Component\HttpFoundation\Request::getTrustedProxies(); - } - - /** - * Sets the name for trusted headers. - * - * The following header keys are supported: - * - * * Request::HEADER_CLIENT_IP: defaults to X-Forwarded-For (see getClientIp()) - * * Request::HEADER_CLIENT_HOST: defaults to X-Forwarded-Host (see getClientHost()) - * * Request::HEADER_CLIENT_PORT: defaults to X-Forwarded-Port (see getClientPort()) - * * Request::HEADER_CLIENT_PROTO: defaults to X-Forwarded-Proto (see getScheme() and isSecure()) - * - * Setting an empty value allows to disable the trusted header for the given key. - * - * @param string $key The header key - * @param string $value The header name - * @throws \InvalidArgumentException - * @static - */ - public static function setTrustedHeaderName($key, $value){ - \Symfony\Component\HttpFoundation\Request::setTrustedHeaderName($key, $value); - } - - /** - * Gets the trusted proxy header name. - * - * @param string $key The header key - * @return string The header name - * @throws \InvalidArgumentException - * @static - */ - public static function getTrustedHeaderName($key){ - return \Symfony\Component\HttpFoundation\Request::getTrustedHeaderName($key); - } - - /** - * Normalizes a query string. - * - * It builds a normalized query string, where keys/value pairs are alphabetized, - * have consistent escaping and unneeded delimiters are removed. - * - * @param string $qs Query string - * @return string A normalized query string for the Request - * @static - */ - public static function normalizeQueryString($qs){ - return \Symfony\Component\HttpFoundation\Request::normalizeQueryString($qs); - } - - /** - * Enables support for the _method request parameter to determine the intended HTTP method. - * - * Be warned that enabling this feature might lead to CSRF issues in your code. - * Check that you are using CSRF tokens when required. - * - * The HTTP method can only be overridden when the real HTTP method is POST. - * - * @static - */ - public static function enableHttpMethodParameterOverride(){ - \Symfony\Component\HttpFoundation\Request::enableHttpMethodParameterOverride(); - } - - /** - * Checks whether support for the _method request parameter is enabled. - * - * @return Boolean True when the _method request parameter is enabled, false otherwise - * @static - */ - public static function getHttpMethodParameterOverride(){ - return \Symfony\Component\HttpFoundation\Request::getHttpMethodParameterOverride(); - } - - /** - * Gets a "parameter" value. - * - * This method is mainly useful for libraries that want to provide some flexibility. - * - * Order of precedence: GET, PATH, POST - * - * Avoid using this method in controllers: - * - * * slow - * * prefer to get from a "named" source - * - * It is better to explicitly get request parameters from the appropriate - * public property instead (query, attributes, request). - * - * @param string $key the key - * @param mixed $default the default value - * @param Boolean $deep is parameter deep in multidimensional array - * @return mixed - * @static - */ - public static function get($key, $default = null, $deep = false){ - return \Symfony\Component\HttpFoundation\Request::get($key, $default, $deep); - } - - /** - * Gets the Session. - * - * @return SessionInterface|null The session - * @api - * @static - */ - public static function getSession(){ - return \Symfony\Component\HttpFoundation\Request::getSession(); - } - - /** - * Whether the request contains a Session which was started in one of the - * previous requests. - * - * @return Boolean - * @api - * @static - */ - public static function hasPreviousSession(){ - return \Symfony\Component\HttpFoundation\Request::hasPreviousSession(); - } - - /** - * Whether the request contains a Session object. - * - * This method does not give any information about the state of the session object, - * like whether the session is started or not. It is just a way to check if this Request - * is associated with a Session instance. - * - * @return Boolean true when the Request contains a Session object, false otherwise - * @api - * @static - */ - public static function hasSession(){ - return \Symfony\Component\HttpFoundation\Request::hasSession(); - } - - /** - * Sets the Session. - * - * @param SessionInterface $session The Session - * @api - * @static - */ - public static function setSession($session){ - \Symfony\Component\HttpFoundation\Request::setSession($session); - } - - /** - * Returns the client IP addresses. - * - * The most trusted IP address is first, and the less trusted one last. - * The "real" client IP address is the last one, but this is also the - * less trusted one. - * - * Use this method carefully; you should use getClientIp() instead. - * - * @return array The client IP addresses - * @see getClientIp() - * @static - */ - public static function getClientIps(){ - return \Symfony\Component\HttpFoundation\Request::getClientIps(); - } - - /** - * Returns the client IP address. - * - * This method can read the client IP address from the "X-Forwarded-For" header - * when trusted proxies were set via "setTrustedProxies()". The "X-Forwarded-For" - * header value is a comma+space separated list of IP addresses, the left-most - * being the original client, and each successive proxy that passed the request - * adding the IP address where it received the request from. - * - * If your reverse proxy uses a different header name than "X-Forwarded-For", - * ("Client-Ip" for instance), configure it via "setTrustedHeaderName()" with - * the "client-ip" key. - * - * @return string The client IP address - * @see getClientIps() - * @see http://en.wikipedia.org/wiki/X-Forwarded-For - * @api - * @static - */ - public static function getClientIp(){ - return \Symfony\Component\HttpFoundation\Request::getClientIp(); - } - - /** - * Returns current script name. - * - * @return string - * @api - * @static - */ - public static function getScriptName(){ - return \Symfony\Component\HttpFoundation\Request::getScriptName(); - } - - /** - * Returns the path being requested relative to the executed script. - * - * The path info always starts with a /. - * - * Suppose this request is instantiated from /mysite on localhost: - * - * * http://localhost/mysite returns an empty string - * * http://localhost/mysite/about returns '/about' - * * http://localhost/mysite/enco%20ded returns '/enco%20ded' - * * http://localhost/mysite/about?var=1 returns '/about' - * - * @return string The raw path (i.e. not urldecoded) - * @api - * @static - */ - public static function getPathInfo(){ - return \Symfony\Component\HttpFoundation\Request::getPathInfo(); - } - - /** - * Returns the root path from which this request is executed. - * - * Suppose that an index.php file instantiates this request object: - * - * * http://localhost/index.php returns an empty string - * * http://localhost/index.php/page returns an empty string - * * http://localhost/web/index.php returns '/web' - * * http://localhost/we%20b/index.php returns '/we%20b' - * - * @return string The raw path (i.e. not urldecoded) - * @api - * @static - */ - public static function getBasePath(){ - return \Symfony\Component\HttpFoundation\Request::getBasePath(); - } - - /** - * Returns the root url from which this request is executed. - * - * The base URL never ends with a /. - * - * This is similar to getBasePath(), except that it also includes the - * script filename (e.g. index.php) if one exists. - * - * @return string The raw url (i.e. not urldecoded) - * @api - * @static - */ - public static function getBaseUrl(){ - return \Symfony\Component\HttpFoundation\Request::getBaseUrl(); - } - - /** - * Gets the request's scheme. - * - * @return string - * @api - * @static - */ - public static function getScheme(){ - return \Symfony\Component\HttpFoundation\Request::getScheme(); - } - - /** - * Returns the port on which the request is made. - * - * This method can read the client port from the "X-Forwarded-Port" header - * when trusted proxies were set via "setTrustedProxies()". - * - * The "X-Forwarded-Port" header must contain the client port. - * - * If your reverse proxy uses a different header name than "X-Forwarded-Port", - * configure it via "setTrustedHeaderName()" with the "client-port" key. - * - * @return string - * @api - * @static - */ - public static function getPort(){ - return \Symfony\Component\HttpFoundation\Request::getPort(); - } - - /** - * Returns the user. - * - * @return string|null - * @static - */ - public static function getUser(){ - return \Symfony\Component\HttpFoundation\Request::getUser(); - } - - /** - * Returns the password. - * - * @return string|null - * @static - */ - public static function getPassword(){ - return \Symfony\Component\HttpFoundation\Request::getPassword(); - } - - /** - * Gets the user info. - * - * @return string A user name and, optionally, scheme-specific information about how to gain authorization to access the server - * @static - */ - public static function getUserInfo(){ - return \Symfony\Component\HttpFoundation\Request::getUserInfo(); - } - - /** - * Returns the HTTP host being requested. - * - * The port name will be appended to the host if it's non-standard. - * - * @return string - * @api - * @static - */ - public static function getHttpHost(){ - return \Symfony\Component\HttpFoundation\Request::getHttpHost(); - } - - /** - * Returns the requested URI. - * - * @return string The raw URI (i.e. not urldecoded) - * @api - * @static - */ - public static function getRequestUri(){ - return \Symfony\Component\HttpFoundation\Request::getRequestUri(); - } - - /** - * Gets the scheme and HTTP host. - * - * If the URL was called with basic authentication, the user - * and the password are not added to the generated string. - * - * @return string The scheme and HTTP host - * @static - */ - public static function getSchemeAndHttpHost(){ - return \Symfony\Component\HttpFoundation\Request::getSchemeAndHttpHost(); - } - - /** - * Generates a normalized URI for the Request. - * - * @return string A normalized URI for the Request - * @see getQueryString() - * @api - * @static - */ - public static function getUri(){ - return \Symfony\Component\HttpFoundation\Request::getUri(); - } - - /** - * Generates a normalized URI for the given path. - * - * @param string $path A path to use instead of the current one - * @return string The normalized URI for the path - * @api - * @static - */ - public static function getUriForPath($path){ - return \Symfony\Component\HttpFoundation\Request::getUriForPath($path); - } - - /** - * Generates the normalized query string for the Request. - * - * It builds a normalized query string, where keys/value pairs are alphabetized - * and have consistent escaping. - * - * @return string|null A normalized query string for the Request - * @api - * @static - */ - public static function getQueryString(){ - return \Symfony\Component\HttpFoundation\Request::getQueryString(); - } - - /** - * Checks whether the request is secure or not. - * - * This method can read the client port from the "X-Forwarded-Proto" header - * when trusted proxies were set via "setTrustedProxies()". - * - * The "X-Forwarded-Proto" header must contain the protocol: "https" or "http". - * - * If your reverse proxy uses a different header name than "X-Forwarded-Proto" - * ("SSL_HTTPS" for instance), configure it via "setTrustedHeaderName()" with - * the "client-proto" key. - * - * @return Boolean - * @api - * @static - */ - public static function isSecure(){ - return \Symfony\Component\HttpFoundation\Request::isSecure(); - } - - /** - * Returns the host name. - * - * This method can read the client port from the "X-Forwarded-Host" header - * when trusted proxies were set via "setTrustedProxies()". - * - * The "X-Forwarded-Host" header must contain the client host name. - * - * If your reverse proxy uses a different header name than "X-Forwarded-Host", - * configure it via "setTrustedHeaderName()" with the "client-host" key. - * - * @return string - * @throws \UnexpectedValueException when the host name is invalid - * @api - * @static - */ - public static function getHost(){ - return \Symfony\Component\HttpFoundation\Request::getHost(); - } - - /** - * Sets the request method. - * - * @param string $method - * @api - * @static - */ - public static function setMethod($method){ - \Symfony\Component\HttpFoundation\Request::setMethod($method); - } - - /** - * Gets the request "intended" method. - * - * If the X-HTTP-Method-Override header is set, and if the method is a POST, - * then it is used to determine the "real" intended HTTP method. - * - * The _method request parameter can also be used to determine the HTTP method, - * but only if enableHttpMethodParameterOverride() has been called. - * - * The method is always an uppercased string. - * - * @return string The request method - * @api - * @see getRealMethod - * @static - */ - public static function getMethod(){ - return \Symfony\Component\HttpFoundation\Request::getMethod(); - } - - /** - * Gets the "real" request method. - * - * @return string The request method - * @see getMethod - * @static - */ - public static function getRealMethod(){ - return \Symfony\Component\HttpFoundation\Request::getRealMethod(); - } - - /** - * Gets the mime type associated with the format. - * - * @param string $format The format - * @return string The associated mime type (null if not found) - * @api - * @static - */ - public static function getMimeType($format){ - return \Symfony\Component\HttpFoundation\Request::getMimeType($format); - } - - /** - * Gets the format associated with the mime type. - * - * @param string $mimeType The associated mime type - * @return string|null The format (null if not found) - * @api - * @static - */ - public static function getFormat($mimeType){ - return \Symfony\Component\HttpFoundation\Request::getFormat($mimeType); - } - - /** - * Associates a format with mime types. - * - * @param string $format The format - * @param string|array $mimeTypes The associated mime types (the preferred one must be the first as it will be used as the content type) - * @api - * @static - */ - public static function setFormat($format, $mimeTypes){ - \Symfony\Component\HttpFoundation\Request::setFormat($format, $mimeTypes); - } - - /** - * Gets the request format. - * - * Here is the process to determine the format: - * - * * format defined by the user (with setRequestFormat()) - * * _format request parameter - * * $default - * - * @param string $default The default format - * @return string The request format - * @api - * @static - */ - public static function getRequestFormat($default = 'html'){ - return \Symfony\Component\HttpFoundation\Request::getRequestFormat($default); - } - - /** - * Sets the request format. - * - * @param string $format The request format. - * @api - * @static - */ - public static function setRequestFormat($format){ - \Symfony\Component\HttpFoundation\Request::setRequestFormat($format); - } - - /** - * Gets the format associated with the request. - * - * @return string|null The format (null if no content type is present) - * @api - * @static - */ - public static function getContentType(){ - return \Symfony\Component\HttpFoundation\Request::getContentType(); - } - - /** - * Sets the default locale. - * - * @param string $locale - * @api - * @static - */ - public static function setDefaultLocale($locale){ - \Symfony\Component\HttpFoundation\Request::setDefaultLocale($locale); - } - - /** - * Sets the locale. - * - * @param string $locale - * @api - * @static - */ - public static function setLocale($locale){ - \Symfony\Component\HttpFoundation\Request::setLocale($locale); - } - - /** - * Get the locale. - * - * @return string - * @static - */ - public static function getLocale(){ - return \Symfony\Component\HttpFoundation\Request::getLocale(); - } - - /** - * Checks if the request method is of specified type. - * - * @param string $method Uppercase request method (GET, POST etc). - * @return Boolean - * @static - */ - public static function isMethod($method){ - return \Symfony\Component\HttpFoundation\Request::isMethod($method); - } - - /** - * Checks whether the method is safe or not. - * - * @return Boolean - * @api - * @static - */ - public static function isMethodSafe(){ - return \Symfony\Component\HttpFoundation\Request::isMethodSafe(); - } - - /** - * Returns the request body content. - * - * @param Boolean $asResource If true, a resource will be returned - * @return string|resource The request body content or a resource to read the body stream. - * @throws \LogicException - * @static - */ - public static function getContent($asResource = false){ - return \Symfony\Component\HttpFoundation\Request::getContent($asResource); - } - - /** - * Gets the Etags. - * - * @return array The entity tags - * @static - */ - public static function getETags(){ - return \Symfony\Component\HttpFoundation\Request::getETags(); - } - - /** - * - * - * @return Boolean - * @static - */ - public static function isNoCache(){ - return \Symfony\Component\HttpFoundation\Request::isNoCache(); - } - - /** - * Returns the preferred language. - * - * @param array $locales An array of ordered available locales - * @return string|null The preferred locale - * @api - * @static - */ - public static function getPreferredLanguage($locales = null){ - return \Symfony\Component\HttpFoundation\Request::getPreferredLanguage($locales); - } - - /** - * Gets a list of languages acceptable by the client browser. - * - * @return array Languages ordered in the user browser preferences - * @api - * @static - */ - public static function getLanguages(){ - return \Symfony\Component\HttpFoundation\Request::getLanguages(); - } - - /** - * Gets a list of charsets acceptable by the client browser. - * - * @return array List of charsets in preferable order - * @api - * @static - */ - public static function getCharsets(){ - return \Symfony\Component\HttpFoundation\Request::getCharsets(); - } - - /** - * Gets a list of content types acceptable by the client browser - * - * @return array List of content types in preferable order - * @api - * @static - */ - public static function getAcceptableContentTypes(){ - return \Symfony\Component\HttpFoundation\Request::getAcceptableContentTypes(); - } - - /** - * Returns true if the request is a XMLHttpRequest. - * - * It works if your JavaScript library set an X-Requested-With HTTP header. - * It is known to work with common JavaScript frameworks: - * - * @link http://en.wikipedia.org/wiki/List_of_Ajax_frameworks#JavaScript - * @return Boolean true if the request is an XMLHttpRequest, false otherwise - * @api - * @static - */ - public static function isXmlHttpRequest(){ - return \Symfony\Component\HttpFoundation\Request::isXmlHttpRequest(); - } - - } -} - -namespace { - class Lang extends Illuminate\Support\Facades\Lang{ - /** - * Create a new translator instance. - * - * @param \Illuminate\Translation\LoaderInterface $loader - * @param string $locale - * @return self - * @static - */ - public static function __construct($loader, $locale){ - \Illuminate\Translation\Translator::__construct($loader, $locale); - } - - /** - * Determine if a translation exists. - * - * @param string $key - * @param string $locale - * @return bool - * @static - */ - public static function has($key, $locale = null){ - return \Illuminate\Translation\Translator::has($key, $locale); - } - - /** - * Get the translation for the given key. - * - * @param string $key - * @param array $replace - * @param string $locale - * @return string - * @static - */ - public static function get($key, $replace = array(), $locale = null){ - return \Illuminate\Translation\Translator::get($key, $replace, $locale); - } - - /** - * Get a translation according to an integer value. - * - * @param string $key - * @param int $number - * @param array $replace - * @param string $locale - * @return string - * @static - */ - public static function choice($key, $number, $replace = array(), $locale = null){ - return \Illuminate\Translation\Translator::choice($key, $number, $replace, $locale); - } - - /** - * Get the translation for a given key. - * - * @param string $id - * @param array $parameters - * @param string $domain - * @param string $locale - * @return string - * @static - */ - public static function trans($id, $parameters = array(), $domain = 'messages', $locale = null){ - return \Illuminate\Translation\Translator::trans($id, $parameters, $domain, $locale); - } - - /** - * Get a translation according to an integer value. - * - * @param string $id - * @param int $number - * @param array $parameters - * @param string $domain - * @param string $locale - * @return string - * @static - */ - public static function transChoice($id, $number, $parameters = array(), $domain = 'messages', $locale = null){ - return \Illuminate\Translation\Translator::transChoice($id, $number, $parameters, $domain, $locale); - } - - /** - * Load the specified language group. - * - * @param string $namespace - * @param string $group - * @param string $locale - * @return void - * @static - */ - public static function load($namespace, $group, $locale){ - \Illuminate\Translation\Translator::load($namespace, $group, $locale); - } - - /** - * Add a new namespace to the loader. - * - * @param string $namespace - * @param string $hint - * @return void - * @static - */ - public static function addNamespace($namespace, $hint){ - \Illuminate\Translation\Translator::addNamespace($namespace, $hint); - } - - /** - * Parse a key into namespace, group, and item. - * - * @param string $key - * @return array - * @static - */ - public static function parseKey($key){ - return \Illuminate\Translation\Translator::parseKey($key); - } - - /** - * Get the message selector instance. - * - * @return \Symfony\Component\Translation\MessageSelector - * @static - */ - public static function getSelector(){ - return \Illuminate\Translation\Translator::getSelector(); - } - - /** - * Set the message selector instance. - * - * @param \Symfony\Component\Translation\MessageSelector $selector - * @return void - * @static - */ - public static function setSelector($selector){ - \Illuminate\Translation\Translator::setSelector($selector); - } - - /** - * Get the language line loader implementation. - * - * @return \Illuminate\Translation\LoaderInterface - * @static - */ - public static function getLoader(){ - return \Illuminate\Translation\Translator::getLoader(); - } - - /** - * Get the default locale being used. - * - * @return string - * @static - */ - public static function locale(){ - return \Illuminate\Translation\Translator::locale(); - } - - /** - * Get the default locale being used. - * - * @return string - * @static - */ - public static function getLocale(){ - return \Illuminate\Translation\Translator::getLocale(); - } - - /** - * Set the default locale. - * - * @param string $locale - * @return void - * @static - */ - public static function setLocale($locale){ - \Illuminate\Translation\Translator::setLocale($locale); - } - - /** - * Set the parsed value of a key. - * - * @param string $key - * @param array $parsed - * @return void - * @static - */ - public static function setParsedKey($key, $parsed){ - \Illuminate\Support\NamespacedItemResolver::setParsedKey($key, $parsed); - } - - } -} - -namespace { - class Log extends Illuminate\Support\Facades\Log{ - /** - * Create a new log writer instance. - * - * @param \Monolog\Logger $monolog - * @param \Illuminate\Events\Dispatcher $dispatcher - * @return self - * @static - */ - public static function __construct($monolog, $dispatcher = null){ - \Illuminate\Log\Writer::__construct($monolog, $dispatcher); - } - - /** - * Register a file log handler. - * - * @param string $path - * @param string $level - * @return void - * @static - */ - public static function useFiles($path, $level = 'debug'){ - \Illuminate\Log\Writer::useFiles($path, $level); - } - - /** - * Register a daily file log handler. - * - * @param string $path - * @param int $days - * @param string $level - * @return void - * @static - */ - public static function useDailyFiles($path, $days = 0, $level = 'debug'){ - \Illuminate\Log\Writer::useDailyFiles($path, $days, $level); - } - - /** - * Get the underlying Monolog instance. - * - * @return \Monolog\Logger - * @static - */ - public static function getMonolog(){ - return \Illuminate\Log\Writer::getMonolog(); - } - - /** - * Register a new callback handler for when - * a log event is triggered. - * - * @param Closure $callback - * @return void - * @static - */ - public static function listen($callback){ - \Illuminate\Log\Writer::listen($callback); - } - - /** - * Get the event dispatcher instance. - * - * @return \Illuminate\Events\Dispatcher - * @static - */ - public static function getEventDispatcher(){ - return \Illuminate\Log\Writer::getEventDispatcher(); - } - - /** - * Set the event dispatcher instance. - * - * @param \Illuminate\Events\Dispatcher - * @return void - * @static - */ - public static function setEventDispatcher($dispatcher){ - \Illuminate\Log\Writer::setEventDispatcher($dispatcher); - } - - /** - * Dynamically handle error additions. - * - * @param string $method - * @param array $parameters - * @return mixed - * @static - */ - public static function __call($method, $parameters){ - return \Illuminate\Log\Writer::__call($method, $parameters); - } - - } -} - -namespace { - class Mail extends Illuminate\Support\Facades\Mail{ - /** - * Create a new Mailer instance. - * - * @param \Illuminate\View\Environment $views - * @param Swift_Mailer $swift - * @return self - * @static - */ - public static function __construct($views, $swift){ - \Illuminate\Mail\Mailer::__construct($views, $swift); - } - - /** - * Set the global from address and name. - * - * @param string $address - * @param string $name - * @return void - * @static - */ - public static function alwaysFrom($address, $name = null){ - \Illuminate\Mail\Mailer::alwaysFrom($address, $name); - } - - /** - * Send a new message when only a plain part. - * - * @param string $view - * @param array $data - * @param mixed $callback - * @return void - * @static - */ - public static function plain($view, $data, $callback){ - \Illuminate\Mail\Mailer::plain($view, $data, $callback); - } - - /** - * Send a new message using a view. - * - * @param string|array $view - * @param array $data - * @param Closure|string $callback - * @return void - * @static - */ - public static function send($view, $data, $callback){ - \Illuminate\Mail\Mailer::send($view, $data, $callback); - } - - /** - * Queue a new e-mail message for sending. - * - * @param string|array $view - * @param array $data - * @param Closure|string $callback - * @param string $queue - * @return void - * @static - */ - public static function queue($view, $data, $callback, $queue = null){ - \Illuminate\Mail\Mailer::queue($view, $data, $callback, $queue); - } - - /** - * Queue a new e-mail message for sending on the given queue. - * - * @param string|array $view - * @param array $data - * @param Closure|string $callback - * @param string $queue - * @return void - * @static - */ - public static function queueOn($queue, $view, $data, $callback){ - \Illuminate\Mail\Mailer::queueOn($queue, $view, $data, $callback); - } - - /** - * Queue a new e-mail message for sending after (n) seconds. - * - * @param int $delay - * @param string|array $view - * @param array $data - * @param Closure|string $callback - * @param string $queue - * @return void - * @static - */ - public static function later($delay, $view, $data, $callback, $queue = null){ - \Illuminate\Mail\Mailer::later($delay, $view, $data, $callback, $queue); - } - - /** - * Queue a new e-mail message for sending after (n) seconds on the given queue. - * - * @param string $queue - * @param int $delay - * @param string|array $view - * @param array $data - * @param Closure|string $callback - * @return void - * @static - */ - public static function laterOn($queue, $delay, $view, $data, $callback){ - \Illuminate\Mail\Mailer::laterOn($queue, $delay, $view, $data, $callback); - } - - /** - * Handle a queued e-mail message job. - * - * @param \Illuminate\Queue\Jobs\Job $job - * @param array $data - * @return void - * @static - */ - public static function handleQueuedMessage($job, $data){ - \Illuminate\Mail\Mailer::handleQueuedMessage($job, $data); - } - - /** - * Tell the mailer to not really send messages. - * - * @param bool $value - * @return void - * @static - */ - public static function pretend($value = true){ - \Illuminate\Mail\Mailer::pretend($value); - } - - /** - * Get the view environment instance. - * - * @return \Illuminate\View\Environment - * @static - */ - public static function getViewEnvironment(){ - return \Illuminate\Mail\Mailer::getViewEnvironment(); - } - - /** - * Get the Swift Mailer instance. - * - * @return Swift_Mailer - * @static - */ - public static function getSwiftMailer(){ - return \Illuminate\Mail\Mailer::getSwiftMailer(); - } - - /** - * Set the Swift Mailer instance. - * - * @param Swift_Mailer $swift - * @return void - * @static - */ - public static function setSwiftMailer($swift){ - \Illuminate\Mail\Mailer::setSwiftMailer($swift); - } - - /** - * Set the log writer instance. - * - * @param \Illuminate\Log\Writer $logger - * @return \Illuminate\Mail\Mailer - * @static - */ - public static function setLogger($logger){ - return \Illuminate\Mail\Mailer::setLogger($logger); - } - - /** - * Set the queue manager instance. - * - * @param \Illuminate\Queue\QueueManager $queue - * @return \Illuminate\Mail\Mailer - * @static - */ - public static function setQueue($queue){ - return \Illuminate\Mail\Mailer::setQueue($queue); - } - - /** - * Set the IoC container instance. - * - * @param \Illuminate\Container\Container $container - * @return void - * @static - */ - public static function setContainer($container){ - \Illuminate\Mail\Mailer::setContainer($container); - } - - } -} - -namespace { - class Paginator extends Illuminate\Support\Facades\Paginator{ - /** - * Create a new pagination environment. - * - * @param \Symfony\Component\HttpFoundation\Request $request - * @param \Illuminate\View\Environment $view - * @param \Symfony\Component\Translation\TranslatorInterface $trans - * @param string $pageName - * @return self - * @static - */ - public static function __construct($request, $view, $trans, $pageName = 'page'){ - \Illuminate\Pagination\Environment::__construct($request, $view, $trans, $pageName); - } - - /** - * Get a new paginator instance. - * - * @param array $items - * @param int $total - * @param int $perPage - * @return \Illuminate\Pagination\Paginator - * @static - */ - public static function make($items, $total, $perPage){ - return \Illuminate\Pagination\Environment::make($items, $total, $perPage); - } - - /** - * Get the pagination view. - * - * @param \Illuminate\Pagination\Paginator $paginator - * @return \Illuminate\View\View - * @static - */ - public static function getPaginationView($paginator){ - return \Illuminate\Pagination\Environment::getPaginationView($paginator); - } - - /** - * Get the number of the current page. - * - * @return int - * @static - */ - public static function getCurrentPage(){ - return \Illuminate\Pagination\Environment::getCurrentPage(); - } - - /** - * Set the number of the current page. - * - * @param int $number - * @return void - * @static - */ - public static function setCurrentPage($number){ - \Illuminate\Pagination\Environment::setCurrentPage($number); - } - - /** - * Get the root URL for the request. - * - * @return string - * @static - */ - public static function getCurrentUrl(){ - return \Illuminate\Pagination\Environment::getCurrentUrl(); - } - - /** - * Set the base URL in use by the paginator. - * - * @param string $baseUrl - * @return void - * @static - */ - public static function setBaseUrl($baseUrl){ - \Illuminate\Pagination\Environment::setBaseUrl($baseUrl); - } - - /** - * Set the input page parameter name used by the paginator. - * - * @param string $pageName - * @return void - * @static - */ - public static function setPageName($pageName){ - \Illuminate\Pagination\Environment::setPageName($pageName); - } - - /** - * Get the input page parameter name used by the paginator. - * - * @return string - * @static - */ - public static function getPageName(){ - return \Illuminate\Pagination\Environment::getPageName(); - } - - /** - * Get the name of the pagination view. - * - * @return string - * @static - */ - public static function getViewName(){ - return \Illuminate\Pagination\Environment::getViewName(); - } - - /** - * Set the name of the pagination view. - * - * @param string $viewName - * @return void - * @static - */ - public static function setViewName($viewName){ - \Illuminate\Pagination\Environment::setViewName($viewName); - } - - /** - * Get the locale of the paginator. - * - * @return string - * @static - */ - public static function getLocale(){ - return \Illuminate\Pagination\Environment::getLocale(); - } - - /** - * Set the locale of the paginator. - * - * @param string $locale - * @return void - * @static - */ - public static function setLocale($locale){ - \Illuminate\Pagination\Environment::setLocale($locale); - } - - /** - * Get the active request instance. - * - * @return \Symfony\Component\HttpFoundation\Request - * @static - */ - public static function getRequest(){ - return \Illuminate\Pagination\Environment::getRequest(); - } - - /** - * Set the active request instance. - * - * @param \Symfony\Component\HttpFoundation\Request $request - * @return void - * @static - */ - public static function setRequest($request){ - \Illuminate\Pagination\Environment::setRequest($request); - } - - /** - * Get the current view driver. - * - * @return \Illuminate\View\Environment - * @static - */ - public static function getViewDriver(){ - return \Illuminate\Pagination\Environment::getViewDriver(); - } - - /** - * Set the current view driver. - * - * @param \Illuminate\View\Environment $view - * @return void - * @static - */ - public static function setViewDriver($view){ - \Illuminate\Pagination\Environment::setViewDriver($view); - } - - /** - * Get the translator instance. - * - * @return \Symfony\Component\Translation\TranslatorInterface - * @static - */ - public static function getTranslator(){ - return \Illuminate\Pagination\Environment::getTranslator(); - } - - } -} - -namespace { - class Password extends Illuminate\Support\Facades\Password{ - /** - * Create a new password broker instance. - * - * @param \Illuminate\Auth\Reminders\ReminderRepositoryInterface $reminders - * @param \Illuminate\Auth\UserProviderInterface $users - * @param \Illuminate\Routing\Redirector $redirect - * @param \Illuminate\Mail\Mailer $mailer - * @param string $reminderView - * @return self - * @static - */ - public static function __construct($reminders, $users, $redirect, $mailer, $reminderView){ - \Illuminate\Auth\Reminders\PasswordBroker::__construct($reminders, $users, $redirect, $mailer, $reminderView); - } - - /** - * Send a password reminder to a user. - * - * @param array $credentials - * @param Closure $callback - * @return \Illuminate\Http\RedirectResponse - * @static - */ - public static function remind($credentials, $callback = null){ - return \Illuminate\Auth\Reminders\PasswordBroker::remind($credentials, $callback); - } - - /** - * Send the password reminder e-mail. - * - * @param \Illuminate\Auth\Reminders\RemindableInterface $user - * @param string $token - * @param Closure $callback - * @return void - * @static - */ - public static function sendReminder($user, $token, $callback = null){ - \Illuminate\Auth\Reminders\PasswordBroker::sendReminder($user, $token, $callback); - } - - /** - * Reset the password for the given token. - * - * @param array $credentials - * @param Closure $callback - * @return mixed - * @static - */ - public static function reset($credentials, $callback){ - return \Illuminate\Auth\Reminders\PasswordBroker::reset($credentials, $callback); - } - - /** - * Get the user for the given credentials. - * - * @param array $credentials - * @return \Illuminate\Auth\Reminders\RemindableInterface - * @static - */ - public static function getUser($credentials){ - return \Illuminate\Auth\Reminders\PasswordBroker::getUser($credentials); - } - - } -} - -namespace { - class Queue extends Illuminate\Support\Facades\Queue{ - /** - * Create a new queue manager instance. - * - * @param \Illuminate\Foundation\Application $app - * @return self - * @static - */ - public static function __construct($app){ - \Illuminate\Queue\QueueManager::__construct($app); - } - - /** - * Resolve a queue connection instance. - * - * @param string $name - * @return \Illuminate\Queue\QueueInterface - * @static - */ - public static function connection($name = null){ - return \Illuminate\Queue\QueueManager::connection($name); - } - - /** - * Add a queue connection resolver. - * - * @param string $driver - * @param Closure $resolver - * @return void - * @static - */ - public static function addConnector($driver, $resolver){ - \Illuminate\Queue\QueueManager::addConnector($driver, $resolver); - } - - /** - * Dynamically pass calls to the default connection. - * - * @param string $method - * @param array $parameters - * @return mixed - * @static - */ - public static function __call($method, $parameters){ - return \Illuminate\Queue\QueueManager::__call($method, $parameters); - } - - /** - * Push a new job onto the queue. - * - * @param string $job - * @param mixed $data - * @param string $queue - * @return void - * @static - */ - public static function push($job, $data = '', $queue = null){ - \Illuminate\Queue\QueueInterface::push($job, $data, $queue); - } - - /** - * Push a new job onto the queue after a delay. - * - * @param int $delay - * @param string $job - * @param mixed $data - * @param string $queue - * @return void - * @static - */ - public static function later($delay, $job, $data = '', $queue = null){ - \Illuminate\Queue\QueueInterface::later($delay, $job, $data, $queue); - } - - /** - * Pop the next job off of the queue. - * - * @param string $queue - * @return \Illuminate\Queue\Jobs\Job|nul - * @static - */ - public static function pop($queue = null){ - return \Illuminate\Queue\QueueInterface::pop($queue); - } - - } -} - -namespace { - class Redirect extends Illuminate\Support\Facades\Redirect{ - /** - * Create a new Redirector instance. - * - * @param \Illuminate\Routing\UrlGenerator $generator - * @return self - * @static - */ - public static function __construct($generator){ - \Illuminate\Routing\Redirector::__construct($generator); - } - - /** - * Create a new redirect response to the "home" route. - * - * @param int $status - * @return \Illuminate\Http\RedirectResponse - * @static - */ - public static function home($status = 302){ - return \Illuminate\Routing\Redirector::home($status); - } - - /** - * Create a new redirect response to the previous location. - * - * @param int $status - * @param array $headers - * @return \Illuminate\Http\RedirectResponse - * @static - */ - public static function back($status = 302, $headers = array()){ - return \Illuminate\Routing\Redirector::back($status, $headers); - } - - /** - * Create a new redirect response to the current URI. - * - * @param int $status - * @param array $headers - * @return \Illuminate\Http\RedirectResponse - * @static - */ - public static function refresh($status = 302, $headers = array()){ - return \Illuminate\Routing\Redirector::refresh($status, $headers); - } - - /** - * Create a new redirect response, while putting the current URL in the session. - * - * @param string $path - * @param int $status - * @param array $headers - * @param bool $secure - * @return \Illuminate\Http\RedirectResponse - * @static - */ - public static function guest($path, $status = 302, $headers = array(), $secure = null){ - return \Illuminate\Routing\Redirector::guest($path, $status, $headers, $secure); - } - - /** - * Create a new redirect response to the previously intended location. - * - * @param string $default - * @param int $status - * @param array $headers - * @param bool $secure - * @return \Illuminate\Http\RedirectResponse - * @static - */ - public static function intended($default, $status = 302, $headers = array(), $secure = null){ - return \Illuminate\Routing\Redirector::intended($default, $status, $headers, $secure); - } - - /** - * Create a new redirect response to the given path. - * - * @param string $path - * @param int $status - * @param array $headers - * @param bool $secure - * @return \Illuminate\Http\RedirectResponse - * @static - */ - public static function to($path, $status = 302, $headers = array(), $secure = null){ - return \Illuminate\Routing\Redirector::to($path, $status, $headers, $secure); - } - - /** - * Create a new redirect response to the given HTTPS path. - * - * @param string $path - * @param int $status - * @param array $headers - * @return \Illuminate\Http\RedirectResponse - * @static - */ - public static function secure($path, $status = 302, $headers = array()){ - return \Illuminate\Routing\Redirector::secure($path, $status, $headers); - } - - /** - * Create a new redirect response to a named route. - * - * @param string $route - * @param array $parameters - * @param int $status - * @param array $headers - * @return \Illuminate\Http\RedirectResponse - * @static - */ - public static function route($route, $parameters = array(), $status = 302, $headers = array()){ - return \Illuminate\Routing\Redirector::route($route, $parameters, $status, $headers); - } - - /** - * Create a new redirect response to a controller action. - * - * @param string $action - * @param array $parameters - * @param int $status - * @param array $headers - * @return \Illuminate\Http\RedirectResponse - * @static - */ - public static function action($action, $parameters = array(), $status = 302, $headers = array()){ - return \Illuminate\Routing\Redirector::action($action, $parameters, $status, $headers); - } - - /** - * Get the URL generator instance. - * - * @return \Illuminate\Routing\UrlGenerator - * @static - */ - public static function getUrlGenerator(){ - return \Illuminate\Routing\Redirector::getUrlGenerator(); - } - - /** - * Set the active session store. - * - * @param \Illuminate\Session\Store $session - * @return void - * @static - */ - public static function setSession($session){ - \Illuminate\Routing\Redirector::setSession($session); - } - - } -} - -namespace { - class Redis extends Illuminate\Support\Facades\Redis{ - /** - * Create a new Redis connection instance. - * - * @param array $servers - * @return self - * @static - */ - public static function __construct($servers = array()){ - \Illuminate\Redis\Database::__construct($servers); - } - - /** - * Get a specific Redis connection instance. - * - * @param string $name - * @return \Predis\Connection\SingleConnectionInterface - * @static - */ - public static function connection($name = 'default'){ - return \Illuminate\Redis\Database::connection($name); - } - - /** - * Run a command against the Redis database. - * - * @param string $method - * @param array $parameters - * @return mixed - * @static - */ - public static function command($method, $parameters = array()){ - return \Illuminate\Redis\Database::command($method, $parameters); - } - - /** - * Dynamically make a Redis command. - * - * @param string $method - * @param array $parameters - * @return mixed - * @static - */ - public static function __call($method, $parameters){ - return \Illuminate\Redis\Database::__call($method, $parameters); - } - - } -} - -namespace { - class Request extends Illuminate\Support\Facades\Request{ - /** - * Return the Request instance. - * - * @return \Illuminate\Http\Request - * @static - */ - public static function instance(){ - return \Illuminate\Http\Request::instance(); - } - - /** - * Get the root URL for the application. - * - * @return string - * @static - */ - public static function root(){ - return \Illuminate\Http\Request::root(); - } - - /** - * Get the URL (no query string) for the request. - * - * @return string - * @static - */ - public static function url(){ - return \Illuminate\Http\Request::url(); - } - - /** - * Get the full URL for the request. - * - * @return string - * @static - */ - public static function fullUrl(){ - return \Illuminate\Http\Request::fullUrl(); - } - - /** - * Get the current path info for the request. - * - * @return string - * @static - */ - public static function path(){ - return \Illuminate\Http\Request::path(); - } - - /** - * Get a segment from the URI (1 based index). - * - * @param string $index - * @param mixed $default - * @return string - * @static - */ - public static function segment($index, $default = null){ - return \Illuminate\Http\Request::segment($index, $default); - } - - /** - * Get all of the segments for the request path. - * - * @return array - * @static - */ - public static function segments(){ - return \Illuminate\Http\Request::segments(); - } - - /** - * Determine if the current request URI matches a pattern. - * - * @param string $pattern - * @return bool - * @static - */ - public static function is($pattern){ - return \Illuminate\Http\Request::is($pattern); - } - - /** - * Determine if the request is the result of an AJAX call. - * - * @return bool - * @static - */ - public static function ajax(){ - return \Illuminate\Http\Request::ajax(); - } - - /** - * Determine if the request is over HTTPS. - * - * @return bool - * @static - */ - public static function secure(){ - return \Illuminate\Http\Request::secure(); - } - - /** - * Determine if the request contains a given input item. - * - * @param string|array $key - * @return bool - * @static - */ - public static function has($key){ - return \Illuminate\Http\Request::has($key); - } - - /** - * Get all of the input and files for the request. - * - * @return array - * @static - */ - public static function all(){ - return \Illuminate\Http\Request::all(); - } - - /** - * Retrieve an input item from the request. - * - * @param string $key - * @param mixed $default - * @return string - * @static - */ - public static function input($key = null, $default = null){ - return \Illuminate\Http\Request::input($key, $default); - } - - /** - * Get a subset of the items from the input data. - * - * @param array $keys - * @return array - * @static - */ - public static function only($keys){ - return \Illuminate\Http\Request::only($keys); - } - - /** - * Get all of the input except for a specified array of items. - * - * @param array $keys - * @return array - * @static - */ - public static function except($keys){ - return \Illuminate\Http\Request::except($keys); - } - - /** - * Retrieve a query string item from the request. - * - * @param string $key - * @param mixed $default - * @return string - * @static - */ - public static function query($key = null, $default = null){ - return \Illuminate\Http\Request::query($key, $default); - } - - /** - * Retrieve a cookie from the request. - * - * @param string $key - * @param mixed $default - * @return string - * @static - */ - public static function cookie($key = null, $default = null){ - return \Illuminate\Http\Request::cookie($key, $default); - } - - /** - * Retrieve a file from the request. - * - * @param string $key - * @param mixed $default - * @return \Symfony\Component\HttpFoundation\File\UploadedFile - * @static - */ - public static function file($key = null, $default = null){ - return \Illuminate\Http\Request::file($key, $default); - } - - /** - * Determine if the uploaded data contains a file. - * - * @param string $key - * @return bool - * @static - */ - public static function hasFile($key){ - return \Illuminate\Http\Request::hasFile($key); - } - - /** - * Retrieve a header from the request. - * - * @param string $key - * @param mixed $default - * @return string - * @static - */ - public static function header($key = null, $default = null){ - return \Illuminate\Http\Request::header($key, $default); - } - - /** - * Retrieve a server variable from the request. - * - * @param string $key - * @param mixed $default - * @return string - * @static - */ - public static function server($key = null, $default = null){ - return \Illuminate\Http\Request::server($key, $default); - } - - /** - * Retrieve an old input item. - * - * @param string $key - * @param mixed $default - * @return mixed - * @static - */ - public static function old($key = null, $default = null){ - return \Illuminate\Http\Request::old($key, $default); - } - - /** - * Flash the input for the current request to the session. - * - * @param string $filter - * @param array $keys - * @return void - * @static - */ - public static function flash($filter = null, $keys = array()){ - \Illuminate\Http\Request::flash($filter, $keys); - } - - /** - * Flash only some of the input to the session. - * - * @param dynamic string - * @return void - * @static - */ - public static function flashOnly($keys){ - \Illuminate\Http\Request::flashOnly($keys); - } - - /** - * Flash only some of the input to the session. - * - * @param dynamic string - * @return void - * @static - */ - public static function flashExcept($keys){ - \Illuminate\Http\Request::flashExcept($keys); - } - - /** - * Flush all of the old input from the session. - * - * @return void - * @static - */ - public static function flush(){ - \Illuminate\Http\Request::flush(); - } - - /** - * Merge new input into the current request's input array. - * - * @param array $input - * @return void - * @static - */ - public static function merge($input){ - \Illuminate\Http\Request::merge($input); - } - - /** - * Replace the input for the current request. - * - * @param array $input - * @return void - * @static - */ - public static function replace($input){ - \Illuminate\Http\Request::replace($input); - } - - /** - * Get the JSON payload for the request. - * - * @param string $key - * @param mixed $default - * @return mixed - * @static - */ - public static function json($key = null, $default = null){ - return \Illuminate\Http\Request::json($key, $default); - } - - /** - * Determine if the request is sending JSON. - * - * @return bool - * @static - */ - public static function isJson(){ - return \Illuminate\Http\Request::isJson(); - } - - /** - * Determine if the current request is asking for JSON in return. - * - * @return bool - * @static - */ - public static function wantsJson(){ - return \Illuminate\Http\Request::wantsJson(); - } - - /** - * Get the Illuminate session store implementation. - * - * @return \Illuminate\Session\Store - * @static - */ - public static function getSessionStore(){ - return \Illuminate\Http\Request::getSessionStore(); - } - - /** - * Set the Illuminate session store implementation. - * - * @param \Illuminate\Session\Store $session - * @return void - * @static - */ - public static function setSessionStore($session){ - \Illuminate\Http\Request::setSessionStore($session); - } - - /** - * Determine if the session store has been set. - * - * @return bool - * @static - */ - public static function hasSessionStore(){ - return \Illuminate\Http\Request::hasSessionStore(); - } - - /** - * Constructor. - * - * @param array $query The GET parameters - * @param array $request The POST parameters - * @param array $attributes The request attributes (parameters parsed from the PATH_INFO, ...) - * @param array $cookies The COOKIE parameters - * @param array $files The FILES parameters - * @param array $server The SERVER parameters - * @param string $content The raw body data - * @api - * @static - */ - public static function __construct($query = array(), $request = array(), $attributes = array(), $cookies = array(), $files = array(), $server = array(), $content = null){ - \Symfony\Component\HttpFoundation\Request::__construct($query, $request, $attributes, $cookies, $files, $server, $content); - } - - /** - * Sets the parameters for this request. - * - * This method also re-initializes all properties. - * - * @param array $query The GET parameters - * @param array $request The POST parameters - * @param array $attributes The request attributes (parameters parsed from the PATH_INFO, ...) - * @param array $cookies The COOKIE parameters - * @param array $files The FILES parameters - * @param array $server The SERVER parameters - * @param string $content The raw body data - * @api - * @static - */ - public static function initialize($query = array(), $request = array(), $attributes = array(), $cookies = array(), $files = array(), $server = array(), $content = null){ - \Symfony\Component\HttpFoundation\Request::initialize($query, $request, $attributes, $cookies, $files, $server, $content); - } - - /** - * Creates a new request with values from PHP's super globals. - * - * @return Request A new request - * @api - * @static - */ - public static function createFromGlobals(){ - return \Symfony\Component\HttpFoundation\Request::createFromGlobals(); - } - - /** - * Creates a Request based on a given URI and configuration. - * - * The information contained in the URI always take precedence - * over the other information (server and parameters). - * - * @param string $uri The URI - * @param string $method The HTTP method - * @param array $parameters The query (GET) or request (POST) parameters - * @param array $cookies The request cookies ($_COOKIE) - * @param array $files The request files ($_FILES) - * @param array $server The server parameters ($_SERVER) - * @param string $content The raw body data - * @return Request A Request instance - * @api - * @static - */ - public static function create($uri, $method = 'GET', $parameters = array(), $cookies = array(), $files = array(), $server = array(), $content = null){ - return \Symfony\Component\HttpFoundation\Request::create($uri, $method, $parameters, $cookies, $files, $server, $content); - } - - /** - * Clones a request and overrides some of its parameters. - * - * @param array $query The GET parameters - * @param array $request The POST parameters - * @param array $attributes The request attributes (parameters parsed from the PATH_INFO, ...) - * @param array $cookies The COOKIE parameters - * @param array $files The FILES parameters - * @param array $server The SERVER parameters - * @return Request The duplicated request - * @api - * @static - */ - public static function duplicate($query = null, $request = null, $attributes = null, $cookies = null, $files = null, $server = null){ - return \Symfony\Component\HttpFoundation\Request::duplicate($query, $request, $attributes, $cookies, $files, $server); - } - - /** - * Returns the request as a string. - * - * @return string The request - * @static - */ - public static function __toString(){ - return \Symfony\Component\HttpFoundation\Request::__toString(); - } - - /** - * Overrides the PHP global variables according to this request instance. - * - * It overrides $_GET, $_POST, $_REQUEST, $_SERVER, $_COOKIE. - * $_FILES is never override, see rfc1867 - * - * @api - * @static - */ - public static function overrideGlobals(){ - \Symfony\Component\HttpFoundation\Request::overrideGlobals(); - } - - /** - * Sets a list of trusted proxies. - * - * You should only list the reverse proxies that you manage directly. - * - * @param array $proxies A list of trusted proxies - * @api - * @static - */ - public static function setTrustedProxies($proxies){ - \Symfony\Component\HttpFoundation\Request::setTrustedProxies($proxies); - } - - /** - * Gets the list of trusted proxies. - * - * @return array An array of trusted proxies. - * @static - */ - public static function getTrustedProxies(){ - return \Symfony\Component\HttpFoundation\Request::getTrustedProxies(); - } - - /** - * Sets the name for trusted headers. - * - * The following header keys are supported: - * - * * Request::HEADER_CLIENT_IP: defaults to X-Forwarded-For (see getClientIp()) - * * Request::HEADER_CLIENT_HOST: defaults to X-Forwarded-Host (see getClientHost()) - * * Request::HEADER_CLIENT_PORT: defaults to X-Forwarded-Port (see getClientPort()) - * * Request::HEADER_CLIENT_PROTO: defaults to X-Forwarded-Proto (see getScheme() and isSecure()) - * - * Setting an empty value allows to disable the trusted header for the given key. - * - * @param string $key The header key - * @param string $value The header name - * @throws \InvalidArgumentException - * @static - */ - public static function setTrustedHeaderName($key, $value){ - \Symfony\Component\HttpFoundation\Request::setTrustedHeaderName($key, $value); - } - - /** - * Gets the trusted proxy header name. - * - * @param string $key The header key - * @return string The header name - * @throws \InvalidArgumentException - * @static - */ - public static function getTrustedHeaderName($key){ - return \Symfony\Component\HttpFoundation\Request::getTrustedHeaderName($key); - } - - /** - * Normalizes a query string. - * - * It builds a normalized query string, where keys/value pairs are alphabetized, - * have consistent escaping and unneeded delimiters are removed. - * - * @param string $qs Query string - * @return string A normalized query string for the Request - * @static - */ - public static function normalizeQueryString($qs){ - return \Symfony\Component\HttpFoundation\Request::normalizeQueryString($qs); - } - - /** - * Enables support for the _method request parameter to determine the intended HTTP method. - * - * Be warned that enabling this feature might lead to CSRF issues in your code. - * Check that you are using CSRF tokens when required. - * - * The HTTP method can only be overridden when the real HTTP method is POST. - * - * @static - */ - public static function enableHttpMethodParameterOverride(){ - \Symfony\Component\HttpFoundation\Request::enableHttpMethodParameterOverride(); - } - - /** - * Checks whether support for the _method request parameter is enabled. - * - * @return Boolean True when the _method request parameter is enabled, false otherwise - * @static - */ - public static function getHttpMethodParameterOverride(){ - return \Symfony\Component\HttpFoundation\Request::getHttpMethodParameterOverride(); - } - - /** - * Gets a "parameter" value. - * - * This method is mainly useful for libraries that want to provide some flexibility. - * - * Order of precedence: GET, PATH, POST - * - * Avoid using this method in controllers: - * - * * slow - * * prefer to get from a "named" source - * - * It is better to explicitly get request parameters from the appropriate - * public property instead (query, attributes, request). - * - * @param string $key the key - * @param mixed $default the default value - * @param Boolean $deep is parameter deep in multidimensional array - * @return mixed - * @static - */ - public static function get($key, $default = null, $deep = false){ - return \Symfony\Component\HttpFoundation\Request::get($key, $default, $deep); - } - - /** - * Gets the Session. - * - * @return SessionInterface|null The session - * @api - * @static - */ - public static function getSession(){ - return \Symfony\Component\HttpFoundation\Request::getSession(); - } - - /** - * Whether the request contains a Session which was started in one of the - * previous requests. - * - * @return Boolean - * @api - * @static - */ - public static function hasPreviousSession(){ - return \Symfony\Component\HttpFoundation\Request::hasPreviousSession(); - } - - /** - * Whether the request contains a Session object. - * - * This method does not give any information about the state of the session object, - * like whether the session is started or not. It is just a way to check if this Request - * is associated with a Session instance. - * - * @return Boolean true when the Request contains a Session object, false otherwise - * @api - * @static - */ - public static function hasSession(){ - return \Symfony\Component\HttpFoundation\Request::hasSession(); - } - - /** - * Sets the Session. - * - * @param SessionInterface $session The Session - * @api - * @static - */ - public static function setSession($session){ - \Symfony\Component\HttpFoundation\Request::setSession($session); - } - - /** - * Returns the client IP addresses. - * - * The most trusted IP address is first, and the less trusted one last. - * The "real" client IP address is the last one, but this is also the - * less trusted one. - * - * Use this method carefully; you should use getClientIp() instead. - * - * @return array The client IP addresses - * @see getClientIp() - * @static - */ - public static function getClientIps(){ - return \Symfony\Component\HttpFoundation\Request::getClientIps(); - } - - /** - * Returns the client IP address. - * - * This method can read the client IP address from the "X-Forwarded-For" header - * when trusted proxies were set via "setTrustedProxies()". The "X-Forwarded-For" - * header value is a comma+space separated list of IP addresses, the left-most - * being the original client, and each successive proxy that passed the request - * adding the IP address where it received the request from. - * - * If your reverse proxy uses a different header name than "X-Forwarded-For", - * ("Client-Ip" for instance), configure it via "setTrustedHeaderName()" with - * the "client-ip" key. - * - * @return string The client IP address - * @see getClientIps() - * @see http://en.wikipedia.org/wiki/X-Forwarded-For - * @api - * @static - */ - public static function getClientIp(){ - return \Symfony\Component\HttpFoundation\Request::getClientIp(); - } - - /** - * Returns current script name. - * - * @return string - * @api - * @static - */ - public static function getScriptName(){ - return \Symfony\Component\HttpFoundation\Request::getScriptName(); - } - - /** - * Returns the path being requested relative to the executed script. - * - * The path info always starts with a /. - * - * Suppose this request is instantiated from /mysite on localhost: - * - * * http://localhost/mysite returns an empty string - * * http://localhost/mysite/about returns '/about' - * * http://localhost/mysite/enco%20ded returns '/enco%20ded' - * * http://localhost/mysite/about?var=1 returns '/about' - * - * @return string The raw path (i.e. not urldecoded) - * @api - * @static - */ - public static function getPathInfo(){ - return \Symfony\Component\HttpFoundation\Request::getPathInfo(); - } - - /** - * Returns the root path from which this request is executed. - * - * Suppose that an index.php file instantiates this request object: - * - * * http://localhost/index.php returns an empty string - * * http://localhost/index.php/page returns an empty string - * * http://localhost/web/index.php returns '/web' - * * http://localhost/we%20b/index.php returns '/we%20b' - * - * @return string The raw path (i.e. not urldecoded) - * @api - * @static - */ - public static function getBasePath(){ - return \Symfony\Component\HttpFoundation\Request::getBasePath(); - } - - /** - * Returns the root url from which this request is executed. - * - * The base URL never ends with a /. - * - * This is similar to getBasePath(), except that it also includes the - * script filename (e.g. index.php) if one exists. - * - * @return string The raw url (i.e. not urldecoded) - * @api - * @static - */ - public static function getBaseUrl(){ - return \Symfony\Component\HttpFoundation\Request::getBaseUrl(); - } - - /** - * Gets the request's scheme. - * - * @return string - * @api - * @static - */ - public static function getScheme(){ - return \Symfony\Component\HttpFoundation\Request::getScheme(); - } - - /** - * Returns the port on which the request is made. - * - * This method can read the client port from the "X-Forwarded-Port" header - * when trusted proxies were set via "setTrustedProxies()". - * - * The "X-Forwarded-Port" header must contain the client port. - * - * If your reverse proxy uses a different header name than "X-Forwarded-Port", - * configure it via "setTrustedHeaderName()" with the "client-port" key. - * - * @return string - * @api - * @static - */ - public static function getPort(){ - return \Symfony\Component\HttpFoundation\Request::getPort(); - } - - /** - * Returns the user. - * - * @return string|null - * @static - */ - public static function getUser(){ - return \Symfony\Component\HttpFoundation\Request::getUser(); - } - - /** - * Returns the password. - * - * @return string|null - * @static - */ - public static function getPassword(){ - return \Symfony\Component\HttpFoundation\Request::getPassword(); - } - - /** - * Gets the user info. - * - * @return string A user name and, optionally, scheme-specific information about how to gain authorization to access the server - * @static - */ - public static function getUserInfo(){ - return \Symfony\Component\HttpFoundation\Request::getUserInfo(); - } - - /** - * Returns the HTTP host being requested. - * - * The port name will be appended to the host if it's non-standard. - * - * @return string - * @api - * @static - */ - public static function getHttpHost(){ - return \Symfony\Component\HttpFoundation\Request::getHttpHost(); - } - - /** - * Returns the requested URI. - * - * @return string The raw URI (i.e. not urldecoded) - * @api - * @static - */ - public static function getRequestUri(){ - return \Symfony\Component\HttpFoundation\Request::getRequestUri(); - } - - /** - * Gets the scheme and HTTP host. - * - * If the URL was called with basic authentication, the user - * and the password are not added to the generated string. - * - * @return string The scheme and HTTP host - * @static - */ - public static function getSchemeAndHttpHost(){ - return \Symfony\Component\HttpFoundation\Request::getSchemeAndHttpHost(); - } - - /** - * Generates a normalized URI for the Request. - * - * @return string A normalized URI for the Request - * @see getQueryString() - * @api - * @static - */ - public static function getUri(){ - return \Symfony\Component\HttpFoundation\Request::getUri(); - } - - /** - * Generates a normalized URI for the given path. - * - * @param string $path A path to use instead of the current one - * @return string The normalized URI for the path - * @api - * @static - */ - public static function getUriForPath($path){ - return \Symfony\Component\HttpFoundation\Request::getUriForPath($path); - } - - /** - * Generates the normalized query string for the Request. - * - * It builds a normalized query string, where keys/value pairs are alphabetized - * and have consistent escaping. - * - * @return string|null A normalized query string for the Request - * @api - * @static - */ - public static function getQueryString(){ - return \Symfony\Component\HttpFoundation\Request::getQueryString(); - } - - /** - * Checks whether the request is secure or not. - * - * This method can read the client port from the "X-Forwarded-Proto" header - * when trusted proxies were set via "setTrustedProxies()". - * - * The "X-Forwarded-Proto" header must contain the protocol: "https" or "http". - * - * If your reverse proxy uses a different header name than "X-Forwarded-Proto" - * ("SSL_HTTPS" for instance), configure it via "setTrustedHeaderName()" with - * the "client-proto" key. - * - * @return Boolean - * @api - * @static - */ - public static function isSecure(){ - return \Symfony\Component\HttpFoundation\Request::isSecure(); - } - - /** - * Returns the host name. - * - * This method can read the client port from the "X-Forwarded-Host" header - * when trusted proxies were set via "setTrustedProxies()". - * - * The "X-Forwarded-Host" header must contain the client host name. - * - * If your reverse proxy uses a different header name than "X-Forwarded-Host", - * configure it via "setTrustedHeaderName()" with the "client-host" key. - * - * @return string - * @throws \UnexpectedValueException when the host name is invalid - * @api - * @static - */ - public static function getHost(){ - return \Symfony\Component\HttpFoundation\Request::getHost(); - } - - /** - * Sets the request method. - * - * @param string $method - * @api - * @static - */ - public static function setMethod($method){ - \Symfony\Component\HttpFoundation\Request::setMethod($method); - } - - /** - * Gets the request "intended" method. - * - * If the X-HTTP-Method-Override header is set, and if the method is a POST, - * then it is used to determine the "real" intended HTTP method. - * - * The _method request parameter can also be used to determine the HTTP method, - * but only if enableHttpMethodParameterOverride() has been called. - * - * The method is always an uppercased string. - * - * @return string The request method - * @api - * @see getRealMethod - * @static - */ - public static function getMethod(){ - return \Symfony\Component\HttpFoundation\Request::getMethod(); - } - - /** - * Gets the "real" request method. - * - * @return string The request method - * @see getMethod - * @static - */ - public static function getRealMethod(){ - return \Symfony\Component\HttpFoundation\Request::getRealMethod(); - } - - /** - * Gets the mime type associated with the format. - * - * @param string $format The format - * @return string The associated mime type (null if not found) - * @api - * @static - */ - public static function getMimeType($format){ - return \Symfony\Component\HttpFoundation\Request::getMimeType($format); - } - - /** - * Gets the format associated with the mime type. - * - * @param string $mimeType The associated mime type - * @return string|null The format (null if not found) - * @api - * @static - */ - public static function getFormat($mimeType){ - return \Symfony\Component\HttpFoundation\Request::getFormat($mimeType); - } - - /** - * Associates a format with mime types. - * - * @param string $format The format - * @param string|array $mimeTypes The associated mime types (the preferred one must be the first as it will be used as the content type) - * @api - * @static - */ - public static function setFormat($format, $mimeTypes){ - \Symfony\Component\HttpFoundation\Request::setFormat($format, $mimeTypes); - } - - /** - * Gets the request format. - * - * Here is the process to determine the format: - * - * * format defined by the user (with setRequestFormat()) - * * _format request parameter - * * $default - * - * @param string $default The default format - * @return string The request format - * @api - * @static - */ - public static function getRequestFormat($default = 'html'){ - return \Symfony\Component\HttpFoundation\Request::getRequestFormat($default); - } - - /** - * Sets the request format. - * - * @param string $format The request format. - * @api - * @static - */ - public static function setRequestFormat($format){ - \Symfony\Component\HttpFoundation\Request::setRequestFormat($format); - } - - /** - * Gets the format associated with the request. - * - * @return string|null The format (null if no content type is present) - * @api - * @static - */ - public static function getContentType(){ - return \Symfony\Component\HttpFoundation\Request::getContentType(); - } - - /** - * Sets the default locale. - * - * @param string $locale - * @api - * @static - */ - public static function setDefaultLocale($locale){ - \Symfony\Component\HttpFoundation\Request::setDefaultLocale($locale); - } - - /** - * Sets the locale. - * - * @param string $locale - * @api - * @static - */ - public static function setLocale($locale){ - \Symfony\Component\HttpFoundation\Request::setLocale($locale); - } - - /** - * Get the locale. - * - * @return string - * @static - */ - public static function getLocale(){ - return \Symfony\Component\HttpFoundation\Request::getLocale(); - } - - /** - * Checks if the request method is of specified type. - * - * @param string $method Uppercase request method (GET, POST etc). - * @return Boolean - * @static - */ - public static function isMethod($method){ - return \Symfony\Component\HttpFoundation\Request::isMethod($method); - } - - /** - * Checks whether the method is safe or not. - * - * @return Boolean - * @api - * @static - */ - public static function isMethodSafe(){ - return \Symfony\Component\HttpFoundation\Request::isMethodSafe(); - } - - /** - * Returns the request body content. - * - * @param Boolean $asResource If true, a resource will be returned - * @return string|resource The request body content or a resource to read the body stream. - * @throws \LogicException - * @static - */ - public static function getContent($asResource = false){ - return \Symfony\Component\HttpFoundation\Request::getContent($asResource); - } - - /** - * Gets the Etags. - * - * @return array The entity tags - * @static - */ - public static function getETags(){ - return \Symfony\Component\HttpFoundation\Request::getETags(); - } - - /** - * - * - * @return Boolean - * @static - */ - public static function isNoCache(){ - return \Symfony\Component\HttpFoundation\Request::isNoCache(); - } - - /** - * Returns the preferred language. - * - * @param array $locales An array of ordered available locales - * @return string|null The preferred locale - * @api - * @static - */ - public static function getPreferredLanguage($locales = null){ - return \Symfony\Component\HttpFoundation\Request::getPreferredLanguage($locales); - } - - /** - * Gets a list of languages acceptable by the client browser. - * - * @return array Languages ordered in the user browser preferences - * @api - * @static - */ - public static function getLanguages(){ - return \Symfony\Component\HttpFoundation\Request::getLanguages(); - } - - /** - * Gets a list of charsets acceptable by the client browser. - * - * @return array List of charsets in preferable order - * @api - * @static - */ - public static function getCharsets(){ - return \Symfony\Component\HttpFoundation\Request::getCharsets(); - } - - /** - * Gets a list of content types acceptable by the client browser - * - * @return array List of content types in preferable order - * @api - * @static - */ - public static function getAcceptableContentTypes(){ - return \Symfony\Component\HttpFoundation\Request::getAcceptableContentTypes(); - } - - /** - * Returns true if the request is a XMLHttpRequest. - * - * It works if your JavaScript library set an X-Requested-With HTTP header. - * It is known to work with common JavaScript frameworks: - * - * @link http://en.wikipedia.org/wiki/List_of_Ajax_frameworks#JavaScript - * @return Boolean true if the request is an XMLHttpRequest, false otherwise - * @api - * @static - */ - public static function isXmlHttpRequest(){ - return \Symfony\Component\HttpFoundation\Request::isXmlHttpRequest(); - } - - } -} - -namespace { - class Response extends Illuminate\Support\Facades\Response{ - } -} - -namespace { - class Route extends Illuminate\Support\Facades\Route{ - /** - * Create a new router instance. - * - * @param \Illuminate\Container\Container $container - * @return self - * @static - */ - public static function __construct($container = null){ - \Illuminate\Routing\Router::__construct($container); - } - - /** - * Add a new route to the collection. - * - * @param string $pattern - * @param mixed $action - * @return \Illuminate\Routing\Route - * @static - */ - public static function get($pattern, $action){ - return \Illuminate\Routing\Router::get($pattern, $action); - } - - /** - * Add a new route to the collection. - * - * @param string $pattern - * @param mixed $action - * @return \Illuminate\Routing\Route - * @static - */ - public static function post($pattern, $action){ - return \Illuminate\Routing\Router::post($pattern, $action); - } - - /** - * Add a new route to the collection. - * - * @param string $pattern - * @param mixed $action - * @return \Illuminate\Routing\Route - * @static - */ - public static function put($pattern, $action){ - return \Illuminate\Routing\Router::put($pattern, $action); - } - - /** - * Add a new route to the collection. - * - * @param string $pattern - * @param mixed $action - * @return \Illuminate\Routing\Route - * @static - */ - public static function patch($pattern, $action){ - return \Illuminate\Routing\Router::patch($pattern, $action); - } - - /** - * Add a new route to the collection. - * - * @param string $pattern - * @param mixed $action - * @return \Illuminate\Routing\Route - * @static - */ - public static function delete($pattern, $action){ - return \Illuminate\Routing\Router::delete($pattern, $action); - } - - /** - * Add a new route to the collection. - * - * @param string $pattern - * @param mixed $action - * @return \Illuminate\Routing\Route - * @static - */ - public static function options($pattern, $action){ - return \Illuminate\Routing\Router::options($pattern, $action); - } - - /** - * Add a new route to the collection. - * - * @param string $method - * @param string $pattern - * @param mixed $action - * @return \Illuminate\Routing\Route - * @static - */ - public static function match($method, $pattern, $action){ - return \Illuminate\Routing\Router::match($method, $pattern, $action); - } - - /** - * Add a new route to the collection. - * - * @param string $pattern - * @param mixed $action - * @return \Illuminate\Routing\Route - * @static - */ - public static function any($pattern, $action){ - return \Illuminate\Routing\Router::any($pattern, $action); - } - - /** - * Register an array of controllers with wildcard routing. - * - * @param array $controllers - * @return void - * @static - */ - public static function controllers($controllers){ - \Illuminate\Routing\Router::controllers($controllers); - } - - /** - * Route a controller to a URI with wildcard routing. - * - * @param string $uri - * @param string $controller - * @param array $names - * @return \Illuminate\Routing\Route - * @static - */ - public static function controller($uri, $controller, $names = array()){ - return \Illuminate\Routing\Router::controller($uri, $controller, $names); - } - - /** - * Route a resource to a controller. - * - * @param string $resource - * @param string $controller - * @param array $options - * @return void - * @static - */ - public static function resource($resource, $controller, $options = array()){ - \Illuminate\Routing\Router::resource($resource, $controller, $options); - } - - /** - * Get the base resource URI for a given resource. - * - * @param string $resource - * @return string - * @static - */ - public static function getResourceUri($resource){ - return \Illuminate\Routing\Router::getResourceUri($resource); - } - - /** - * Format a resource wildcard parameter. - * - * @param string $value - * @return string - * @static - */ - public static function getResourceWildcard($value){ - return \Illuminate\Routing\Router::getResourceWildcard($value); - } - - /** - * Create a route group with shared attributes. - * - * @param array $attributes - * @param Closure $callback - * @return void - * @static - */ - public static function group($attributes, $callback){ - \Illuminate\Routing\Router::group($attributes, $callback); - } - - /** - * Get the response for a given request. - * - * @param \Symfony\Component\HttpFoundation\Request $request - * @return \Symfony\Component\HttpFoundation\Response - * @static - */ - public static function dispatch($request){ - return \Illuminate\Routing\Router::dispatch($request); - } - - /** - * Register a "before" routing filter. - * - * @param Closure|string $callback - * @return void - * @static - */ - public static function before($callback){ - \Illuminate\Routing\Router::before($callback); - } - - /** - * Register an "after" routing filter. - * - * @param Closure|string $callback - * @return void - * @static - */ - public static function after($callback){ - \Illuminate\Routing\Router::after($callback); - } - - /** - * Register a "close" routing filter. - * - * @param Closure|string $callback - * @return void - * @static - */ - public static function close($callback){ - \Illuminate\Routing\Router::close($callback); - } - - /** - * Register a "finish" routing filters. - * - * @param Closure|string $callback - * @return void - * @static - */ - public static function finish($callback){ - \Illuminate\Routing\Router::finish($callback); - } - - /** - * Register a new filter with the application. - * - * @param string $name - * @param Closure|string $callback - * @return void - * @static - */ - public static function filter($name, $callback){ - \Illuminate\Routing\Router::filter($name, $callback); - } - - /** - * Get a registered filter callback. - * - * @param string $name - * @return Closure - * @static - */ - public static function getFilter($name){ - return \Illuminate\Routing\Router::getFilter($name); - } - - /** - * Tie a registered filter to a URI pattern. - * - * @param string $pattern - * @param string|array $names - * @param array|null $methods - * @return void - * @static - */ - public static function when($pattern, $names, $methods = null){ - \Illuminate\Routing\Router::when($pattern, $names, $methods); - } - - /** - * Find the patterned filters matching a request. - * - * @param \Illuminate\Http\Request $request - * @return array - * @static - */ - public static function findPatternFilters($request){ - return \Illuminate\Routing\Router::findPatternFilters($request); - } - - /** - * Call the finish" global filter. - * - * @param \Symfony\Component\HttpFoundation\Request $request - * @param \Symfony\Component\HttpFoundation\Response $response - * @return mixed - * @static - */ - public static function callFinishFilter($request, $response){ - return \Illuminate\Routing\Router::callFinishFilter($request, $response); - } - - /** - * Call the "close" global filter. - * - * @param \Symfony\Component\HttpFoundation\Request $request - * @param \Symfony\Component\HttpFoundation\Response $response - * @return mixed - * @static - */ - public static function callCloseFilter($request, $response){ - return \Illuminate\Routing\Router::callCloseFilter($request, $response); - } - - /** - * Set a global where pattern on all routes - * - * @param string $key - * @param string $pattern - * @return void - * @static - */ - public static function pattern($key, $pattern){ - \Illuminate\Routing\Router::pattern($key, $pattern); - } - - /** - * Register a model binder for a wildcard. - * - * @param string $key - * @param string $class - * @return void - * @static - */ - public static function model($key, $class, $callback = null){ - \Illuminate\Routing\Router::model($key, $class, $callback); - } - - /** - * Register a custom parameter binder. - * - * @param string $key - * @param mixed $binder - * @static - */ - public static function bind($key, $binder){ - \Illuminate\Routing\Router::bind($key, $binder); - } - - /** - * Determine if a given key has a registered binder. - * - * @param string $key - * @return bool - * @static - */ - public static function hasBinder($key){ - return \Illuminate\Routing\Router::hasBinder($key); - } - - /** - * Call a binder for a given wildcard. - * - * @param string $key - * @param mixed $value - * @param \Illuminate\Routing\Route $route - * @return mixed - * @static - */ - public static function performBinding($key, $value, $route){ - return \Illuminate\Routing\Router::performBinding($key, $value, $route); - } - - /** - * Prepare the given value as a Response object. - * - * @param mixed $value - * @param \Illuminate\Http\Request $request - * @return \Symfony\Component\HttpFoundation\Response - * @static - */ - public static function prepare($value, $request){ - return \Illuminate\Routing\Router::prepare($value, $request); - } - - /** - * Get the current route name. - * - * @return string|null - * @static - */ - public static function currentRouteName(){ - return \Illuminate\Routing\Router::currentRouteName(); - } - - /** - * Determine if the current route has a given name. - * - * @param string $name - * @return bool - * @static - */ - public static function currentRouteNamed($name){ - return \Illuminate\Routing\Router::currentRouteNamed($name); - } - - /** - * Get the current route action. - * - * @return string|null - * @static - */ - public static function currentRouteAction(){ - return \Illuminate\Routing\Router::currentRouteAction(); - } - - /** - * Determine if the current route uses a given controller action. - * - * @param string $action - * @return bool - * @static - */ - public static function currentRouteUses($action){ - return \Illuminate\Routing\Router::currentRouteUses($action); - } - - /** - * Determine if route filters are enabled. - * - * @return bool - * @static - */ - public static function filtersEnabled(){ - return \Illuminate\Routing\Router::filtersEnabled(); - } - - /** - * Enable the running of filters. - * - * @return void - * @static - */ - public static function enableFilters(){ - \Illuminate\Routing\Router::enableFilters(); - } - - /** - * Disable the running of all filters. - * - * @return void - * @static - */ - public static function disableFilters(){ - \Illuminate\Routing\Router::disableFilters(); - } - - /** - * Retrieve the entire route collection. - * - * @return \Symfony\Component\Routing\RouteCollection - * @static - */ - public static function getRoutes(){ - return \Illuminate\Routing\Router::getRoutes(); - } - - /** - * Get the current request being dispatched. - * - * @return \Symfony\Component\HttpFoundation\Request - * @static - */ - public static function getRequest(){ - return \Illuminate\Routing\Router::getRequest(); - } - - /** - * Get the current route being executed. - * - * @return \Illuminate\Routing\Route - * @static - */ - public static function current(){ - return \Illuminate\Routing\Router::current(); - } - - /** - * Set the current route on the router. - * - * @param \Illuminate\Routing\Route $route - * @return void - * @static - */ - public static function setCurrentRoute($route){ - \Illuminate\Routing\Router::setCurrentRoute($route); - } - - /** - * Get the filters defined on the router. - * - * @return array - * @static - */ - public static function getFilters(){ - return \Illuminate\Routing\Router::getFilters(); - } - - /** - * Get the global filters defined on the router. - * - * @return array - * @static - */ - public static function getGlobalFilters(){ - return \Illuminate\Routing\Router::getGlobalFilters(); - } - - /** - * Get the controller inspector instance. - * - * @return \Illuminate\Routing\Controllers\Controllers\Inspector - * @static - */ - public static function getInspector(){ - return \Illuminate\Routing\Router::getInspector(); - } - - /** - * Set the controller inspector instance. - * - * @param \Illuminate\Routing\Controllers\Controllers\Inspector $inspector - * @return void - * @static - */ - public static function setInspector($inspector){ - \Illuminate\Routing\Router::setInspector($inspector); - } - - /** - * Get the container used by the router. - * - * @return \Illuminate\Container\Container - * @static - */ - public static function getContainer(){ - return \Illuminate\Routing\Router::getContainer(); - } - - /** - * Set the container instance on the router. - * - * @param \Illuminate\Container\Container $container - * @return void - * @static - */ - public static function setContainer($container){ - \Illuminate\Routing\Router::setContainer($container); - } - - } -} - -namespace { - class Schema extends Illuminate\Support\Facades\Schema{ - /** - * Determine if the given table exists. - * - * @param string $table - * @return bool - * @static - */ - public static function hasTable($table){ - return \Illuminate\Database\Schema\MySqlBuilder::hasTable($table); - } - - /** - * Create a new database Schema manager. - * - * @param \Illuminate\Database\Connection $connection - * @return self - * @static - */ - public static function __construct($connection){ - \Illuminate\Database\Schema\Builder::__construct($connection); - } - - /** - * Determine if the given table has a given column. - * - * @param string $table - * @param string $column - * @return bool - * @static - */ - public static function hasColumn($table, $column){ - return \Illuminate\Database\Schema\Builder::hasColumn($table, $column); - } - - /** - * Modify a table on the schema. - * - * @param string $table - * @param Closure $callback - * @return \Illuminate\Database\Schema\Blueprint - * @static - */ - public static function table($table, $callback){ - return \Illuminate\Database\Schema\Builder::table($table, $callback); - } - - /** - * Create a new table on the schema. - * - * @param string $table - * @param Closure $callback - * @return \Illuminate\Database\Schema\Blueprint - * @static - */ - public static function create($table, $callback){ - return \Illuminate\Database\Schema\Builder::create($table, $callback); - } - - /** - * Drop a table from the schema. - * - * @param string $table - * @return \Illuminate\Database\Schema\Blueprint - * @static - */ - public static function drop($table){ - return \Illuminate\Database\Schema\Builder::drop($table); - } - - /** - * Drop a table from the schema if it exists. - * - * @param string $table - * @return \Illuminate\Database\Schema\Blueprint - * @static - */ - public static function dropIfExists($table){ - return \Illuminate\Database\Schema\Builder::dropIfExists($table); - } - - /** - * Rename a table on the schema. - * - * @param string $from - * @param string $to - * @return \Illuminate\Database\Schema\Blueprint - * @static - */ - public static function rename($from, $to){ - return \Illuminate\Database\Schema\Builder::rename($from, $to); - } - - /** - * Get the database connection instance. - * - * @return \Illuminate\Database\Connection - * @static - */ - public static function getConnection(){ - return \Illuminate\Database\Schema\Builder::getConnection(); - } - - /** - * Set the database connection instance. - * - * @param \Illuminate\Database\Connection - * @return \Illuminate\Database\Schema\Builder - * @static - */ - public static function setConnection($connection){ - return \Illuminate\Database\Schema\Builder::setConnection($connection); - } - - } -} - -namespace { - class Seeder extends Illuminate\Database\Seeder{ - } -} - -namespace { - class Session extends Illuminate\Support\Facades\Session{ - /** - * Starts the session storage. - * - * @return Boolean True if session started. - * @throws \RuntimeException If session fails to start. - * @api - * @static - */ - public static function start(){ - return \Illuminate\Session\Store::start(); - } - - /** - * Force the session to be saved and closed. - * - * This method is generally not required for real sessions as - * the session will be automatically saved at the end of - * code execution. - * - * @static - */ - public static function save(){ - \Illuminate\Session\Store::save(); - } - - /** - * Checks if an attribute is defined. - * - * @param string $name The attribute name - * @return Boolean true if the attribute is defined, false otherwise - * @api - * @static - */ - public static function has($name){ - return \Illuminate\Session\Store::has($name); - } - - /** - * Returns an attribute. - * - * @param string $name The attribute name - * @param mixed $default The default value if not found. - * @return mixed - * @api - * @static - */ - public static function get($name, $default = null){ - return \Illuminate\Session\Store::get($name, $default); - } - - /** - * Determine if the session contains old input. - * - * @param string $key - * @return bool - * @static - */ - public static function hasOldInput($key = null){ - return \Illuminate\Session\Store::hasOldInput($key); - } - - /** - * Get the requested item from the flashed input array. - * - * @param string $key - * @param mixed $default - * @return mixed - * @static - */ - public static function getOldInput($key = null, $default = null){ - return \Illuminate\Session\Store::getOldInput($key, $default); - } - - /** - * Get the CSRF token value. - * - * @return string - * @static - */ - public static function getToken(){ - return \Illuminate\Session\Store::getToken(); - } - - /** - * Get the CSRF token value. - * - * @return string - * @static - */ - public static function token(){ - return \Illuminate\Session\Store::token(); - } - - /** - * Put a key / value pair in the session. - * - * @param string $key - * @param mixed $value - * @return void - * @static - */ - public static function put($key, $value){ - \Illuminate\Session\Store::put($key, $value); - } - - /** - * Push a value onto a session array. - * - * @param string $key - * @param mixed $value - * @return void - * @static - */ - public static function push($key, $value){ - \Illuminate\Session\Store::push($key, $value); - } - - /** - * Flash a key / value pair to the session. - * - * @param string $key - * @param mixed $value - * @return void - * @static - */ - public static function flash($key, $value){ - \Illuminate\Session\Store::flash($key, $value); - } - - /** - * Flash an input array to the session. - * - * @param array $value - * @return void - * @static - */ - public static function flashInput($value){ - \Illuminate\Session\Store::flashInput($value); - } - - /** - * Reflash all of the session flash data. - * - * @return void - * @static - */ - public static function reflash(){ - \Illuminate\Session\Store::reflash(); - } - - /** - * Reflash a subset of the current flash data. - * - * @param array|dynamic $keys - * @return void - * @static - */ - public static function keep($keys = null){ - \Illuminate\Session\Store::keep($keys); - } - - /** - * Remove an item from the session. - * - * @param string $key - * @return void - * @static - */ - public static function forget($key){ - \Illuminate\Session\Store::forget($key); - } - - /** - * Remove all of the items from the session. - * - * @return void - * @static - */ - public static function flush(){ - \Illuminate\Session\Store::flush(); - } - - /** - * Generate a new session identifier. - * - * @return string - * @static - */ - public static function regenerate(){ - return \Illuminate\Session\Store::regenerate(); - } - - /** - * Constructor. - * - * @param SessionStorageInterface $storage A SessionStorageInterface instance. - * @param AttributeBagInterface $attributes An AttributeBagInterface instance, (defaults null for default AttributeBag) - * @param FlashBagInterface $flashes A FlashBagInterface instance (defaults null for default FlashBag) - * @static - */ - public static function __construct($storage = null, $attributes = null, $flashes = null){ - \Symfony\Component\HttpFoundation\Session\Session::__construct($storage, $attributes, $flashes); - } - - /** - * Sets an attribute. - * - * @param string $name - * @param mixed $value - * @api - * @static - */ - public static function set($name, $value){ - \Symfony\Component\HttpFoundation\Session\Session::set($name, $value); - } - - /** - * Returns attributes. - * - * @return array Attributes - * @api - * @static - */ - public static function all(){ - return \Symfony\Component\HttpFoundation\Session\Session::all(); - } - - /** - * Sets attributes. - * - * @param array $attributes Attributes - * @static - */ - public static function replace($attributes){ - \Symfony\Component\HttpFoundation\Session\Session::replace($attributes); - } - - /** - * Removes an attribute. - * - * @param string $name - * @return mixed The removed value - * @api - * @static - */ - public static function remove($name){ - return \Symfony\Component\HttpFoundation\Session\Session::remove($name); - } - - /** - * Clears all attributes. - * - * @api - * @static - */ - public static function clear(){ - \Symfony\Component\HttpFoundation\Session\Session::clear(); - } - - /** - * Checks if the session was started. - * - * @return Boolean - * @static - */ - public static function isStarted(){ - return \Symfony\Component\HttpFoundation\Session\Session::isStarted(); - } - - /** - * Returns an iterator for attributes. - * - * @return \ArrayIterator An \ArrayIterator instance - * @static - */ - public static function getIterator(){ - return \Symfony\Component\HttpFoundation\Session\Session::getIterator(); - } - - /** - * Returns the number of attributes. - * - * @return int The number of attributes - * @static - */ - public static function count(){ - return \Symfony\Component\HttpFoundation\Session\Session::count(); - } - - /** - * Invalidates the current session. - * - * Clears all session attributes and flashes and regenerates the - * session and deletes the old session from persistence. - * - * @param integer $lifetime Sets the cookie lifetime for the session cookie. A null value - * will leave the system settings unchanged, 0 sets the cookie - * to expire with browser session. Time is in seconds, and is - * not a Unix timestamp. - * @return Boolean True if session invalidated, false if error. - * @api - * @static - */ - public static function invalidate($lifetime = null){ - return \Symfony\Component\HttpFoundation\Session\Session::invalidate($lifetime); - } - - /** - * Migrates the current session to a new session id while maintaining all - * session attributes. - * - * @param Boolean $destroy Whether to delete the old session or leave it to garbage collection. - * @param integer $lifetime Sets the cookie lifetime for the session cookie. A null value - * will leave the system settings unchanged, 0 sets the cookie - * to expire with browser session. Time is in seconds, and is - * not a Unix timestamp. - * @return Boolean True if session migrated, false if error. - * @api - * @static - */ - public static function migrate($destroy = false, $lifetime = null){ - return \Symfony\Component\HttpFoundation\Session\Session::migrate($destroy, $lifetime); - } - - /** - * Returns the session ID. - * - * @return string The session ID. - * @api - * @static - */ - public static function getId(){ - return \Symfony\Component\HttpFoundation\Session\Session::getId(); - } - - /** - * Sets the session ID - * - * @param string $id - * @api - * @static - */ - public static function setId($id){ - \Symfony\Component\HttpFoundation\Session\Session::setId($id); - } - - /** - * Returns the session name. - * - * @return mixed The session name. - * @api - * @static - */ - public static function getName(){ - return \Symfony\Component\HttpFoundation\Session\Session::getName(); - } - - /** - * Sets the session name. - * - * @param string $name - * @api - * @static - */ - public static function setName($name){ - \Symfony\Component\HttpFoundation\Session\Session::setName($name); - } - - /** - * Gets session meta. - * - * @return MetadataBag - * @static - */ - public static function getMetadataBag(){ - return \Symfony\Component\HttpFoundation\Session\Session::getMetadataBag(); - } - - /** - * Registers a SessionBagInterface with the session. - * - * @param SessionBagInterface $bag - * @static - */ - public static function registerBag($bag){ - \Symfony\Component\HttpFoundation\Session\Session::registerBag($bag); - } - - /** - * Gets a bag instance by name. - * - * @param string $name - * @return SessionBagInterface - * @static - */ - public static function getBag($name){ - return \Symfony\Component\HttpFoundation\Session\Session::getBag($name); - } - - /** - * Gets the flashbag interface. - * - * @return FlashBagInterface - * @static - */ - public static function getFlashBag(){ - return \Symfony\Component\HttpFoundation\Session\Session::getFlashBag(); - } - - } -} - -namespace { - class Str extends Illuminate\Support\Str{ - } -} - -namespace { - class URL extends Illuminate\Support\Facades\URL{ - /** - * Create a new URL Generator instance. - * - * @param \Symfony\Component\Routing\RouteCollection $routes - * @param \Symfony\Component\HttpFoundation\Request $request - * @return self - * @static - */ - public static function __construct($routes, $request){ - \Illuminate\Routing\UrlGenerator::__construct($routes, $request); - } - - /** - * Get the full URL for the current request. - * - * @return string - * @static - */ - public static function full(){ - return \Illuminate\Routing\UrlGenerator::full(); - } - - /** - * Get the current URL for the request. - * - * @return string - * @static - */ - public static function current(){ - return \Illuminate\Routing\UrlGenerator::current(); - } - - /** - * Get the URL for the previous request. - * - * @return string - * @static - */ - public static function previous(){ - return \Illuminate\Routing\UrlGenerator::previous(); - } - - /** - * Generate a absolute URL to the given path. - * - * @param string $path - * @param mixed $parameters - * @param bool $secure - * @return string - * @static - */ - public static function to($path, $parameters = array(), $secure = null){ - return \Illuminate\Routing\UrlGenerator::to($path, $parameters, $secure); - } - - /** - * Generate a secure, absolute URL to the given path. - * - * @param string $path - * @param array $parameters - * @return string - * @static - */ - public static function secure($path, $parameters = array()){ - return \Illuminate\Routing\UrlGenerator::secure($path, $parameters); - } - - /** - * Generate a URL to an application asset. - * - * @param string $path - * @param bool $secure - * @return string - * @static - */ - public static function asset($path, $secure = null){ - return \Illuminate\Routing\UrlGenerator::asset($path, $secure); - } - - /** - * Generate a URL to a secure asset. - * - * @param string $path - * @return string - * @static - */ - public static function secureAsset($path){ - return \Illuminate\Routing\UrlGenerator::secureAsset($path); - } - - /** - * Get the URL to a named route. - * - * @param string $name - * @param mixed $parameters - * @param bool $absolute - * @return string - * @static - */ - public static function route($name, $parameters = array(), $absolute = true){ - return \Illuminate\Routing\UrlGenerator::route($name, $parameters, $absolute); - } - - /** - * Get the URL to a controller action. - * - * @param string $action - * @param mixed $parameters - * @param bool $absolute - * @return string - * @static - */ - public static function action($action, $parameters = array(), $absolute = true){ - return \Illuminate\Routing\UrlGenerator::action($action, $parameters, $absolute); - } - - /** - * Determine if the given path is a valid URL. - * - * @param string $path - * @return bool - * @static - */ - public static function isValidUrl($path){ - return \Illuminate\Routing\UrlGenerator::isValidUrl($path); - } - - /** - * Get the request instance. - * - * @return \Symfony\Component\HttpFoundation\Request - * @static - */ - public static function getRequest(){ - return \Illuminate\Routing\UrlGenerator::getRequest(); - } - - /** - * Set the current request instance. - * - * @param \Symfony\Component\HttpFoundation\Request $request - * @return void - * @static - */ - public static function setRequest($request){ - \Illuminate\Routing\UrlGenerator::setRequest($request); - } - - /** - * Get the Symfony URL generator instance. - * - * @return \Symfony\Component\Routing\Generator\UrlGenerator - * @static - */ - public static function getGenerator(){ - return \Illuminate\Routing\UrlGenerator::getGenerator(); - } - - /** - * Set the Symfony URL generator instance. - * - * @param \Symfony\Component\Routing\Generator\UrlGenerator $generator - * @return void - * @static - */ - public static function setGenerator($generator){ - \Illuminate\Routing\UrlGenerator::setGenerator($generator); - } - - } -} - -namespace { - class Validator extends Illuminate\Support\Facades\Validator{ - /** - * Create a new Validator factory instance. - * - * @param \Symfony\Component\Translation\TranslatorInterface $translator - * @param \Illuminate\Container\Container $container - * @return self - * @static - */ - public static function __construct($translator, $container = null){ - \Illuminate\Validation\Factory::__construct($translator, $container); - } - - /** - * Create a new Validator instance. - * - * @param array $data - * @param array $rules - * @param array $messages - * @return \Illuminate\Validation\Validator - * @static - */ - public static function make($data, $rules, $messages = array()){ - return \Illuminate\Validation\Factory::make($data, $rules, $messages); - } - - /** - * Register a custom validator extension. - * - * @param string $rule - * @param Closure|string $extension - * @return void - * @static - */ - public static function extend($rule, $extension){ - \Illuminate\Validation\Factory::extend($rule, $extension); - } - - /** - * Register a custom implicit validator extension. - * - * @param string $rule - * @param Closure $extension - * @return void - * @static - */ - public static function extendImplicit($rule, $extension){ - \Illuminate\Validation\Factory::extendImplicit($rule, $extension); - } - - /** - * Set the Validator instance resolver. - * - * @param Closure $resolver - * @return void - * @static - */ - public static function resolver($resolver){ - \Illuminate\Validation\Factory::resolver($resolver); - } - - /** - * Get the Translator implementation. - * - * @return \Symfony\Component\Translation\TranslatorInterface - * @static - */ - public static function getTranslator(){ - return \Illuminate\Validation\Factory::getTranslator(); - } - - /** - * Get the Presence Verifier implementation. - * - * @return \Illuminate\Validation\PresenceVerifierInterface - * @static - */ - public static function getPresenceVerifier(){ - return \Illuminate\Validation\Factory::getPresenceVerifier(); - } - - /** - * Set the Presence Verifier implementation. - * - * @param \Illuminate\Validation\PresenceVerifierInterface $presenceVerifier - * @return void - * @static - */ - public static function setPresenceVerifier($presenceVerifier){ - \Illuminate\Validation\Factory::setPresenceVerifier($presenceVerifier); - } - - } -} - -namespace { - class View extends Illuminate\Support\Facades\View{ - /** - * Get a evaluated view contents for the given view. - * - * @param string $view - * @param array $data - * @param array $mergeData - * @return Illuminate\View\View - * @static - */ - public static function make($view, $data = array(), $mergeData = array()){ - return \Robbo\Presenter\View\Environment::make($view, $data, $mergeData); - } - - /** - * Add a piece of shared data to the environment. - * - * @param string $key - * @param mixed $value - * @return void - * @static - */ - public static function share($key, $value = null){ - \Robbo\Presenter\View\Environment::share($key, $value); - } - - /** - * If this variable implements Robbo\Presenter\PresentableInterface then turn it into a presenter. - * - * @param mixed $value - * @return mixed $value - * @static - */ - public static function makePresentable($value){ - return \Robbo\Presenter\View\Environment::makePresentable($value); - } - - /** - * Create a new view environment instance. - * - * @param \Illuminate\View\Engines\EngineResolver $engines - * @param \Illuminate\View\ViewFinderInterface $finder - * @param \Illuminate\Events\Dispatcher $events - * @return self - * @static - */ - public static function __construct($engines, $finder, $events){ - \Illuminate\View\Environment::__construct($engines, $finder, $events); - } - - /** - * Get a evaluated view contents for a named view. - * - * @param string $view - * @param mixed $data - * @return \Illuminate\View\View - * @static - */ - public static function of($view, $data = array()){ - return \Illuminate\View\Environment::of($view, $data); - } - - /** - * Register a named view. - * - * @param string $view - * @param string $name - * @return void - * @static - */ - public static function name($view, $name){ - \Illuminate\View\Environment::name($view, $name); - } - - /** - * Determine if a given view exists. - * - * @param string $view - * @return bool - * @static - */ - public static function exists($view){ - return \Illuminate\View\Environment::exists($view); - } - - /** - * Get the rendered contents of a partial from a loop. - * - * @param string $view - * @param array $data - * @param string $iterator - * @param string $empty - * @return string - * @static - */ - public static function renderEach($view, $data, $iterator, $empty = 'raw|'){ - return \Illuminate\View\Environment::renderEach($view, $data, $iterator, $empty); - } - - /** - * Register a view composer event. - * - * @param array|string $views - * @param Closure|string $callback - * @return Closure - * @static - */ - public static function composer($views, $callback){ - return \Illuminate\View\Environment::composer($views, $callback); - } - - /** - * Call the composer for a given view. - * - * @param \Illuminate\View\View $view - * @return void - * @static - */ - public static function callComposer($view){ - \Illuminate\View\Environment::callComposer($view); - } - - /** - * Start injecting content into a section. - * - * @param string $section - * @param string $content - * @return void - * @static - */ - public static function startSection($section, $content = ''){ - \Illuminate\View\Environment::startSection($section, $content); - } - - /** - * Inject inline content into a section. - * - * @param string $section - * @param string $content - * @return void - * @static - */ - public static function inject($section, $content){ - \Illuminate\View\Environment::inject($section, $content); - } - - /** - * Stop injecting content into a section and return its contents. - * - * @return string - * @static - */ - public static function yieldSection(){ - return \Illuminate\View\Environment::yieldSection(); - } - - /** - * Stop injecting content into a section. - * - * @param bool $overwrite - * @return string - * @static - */ - public static function stopSection($overwrite = false){ - return \Illuminate\View\Environment::stopSection($overwrite); - } - - /** - * Get the string contents of a section. - * - * @param string $section - * @param string $default - * @return string - * @static - */ - public static function yieldContent($section, $default = ''){ - return \Illuminate\View\Environment::yieldContent($section, $default); - } - - /** - * Flush all of the section contents. - * - * @return void - * @static - */ - public static function flushSections(){ - \Illuminate\View\Environment::flushSections(); - } - - /** - * Increment the rendering counter. - * - * @return void - * @static - */ - public static function incrementRender(){ - \Illuminate\View\Environment::incrementRender(); - } - - /** - * Decrement the rendering counter. - * - * @return void - * @static - */ - public static function decrementRender(){ - \Illuminate\View\Environment::decrementRender(); - } - - /** - * Check if there are no active render operations. - * - * @return bool - * @static - */ - public static function doneRendering(){ - return \Illuminate\View\Environment::doneRendering(); - } - - /** - * Add a location to the array of view locations. - * - * @param string $location - * @return void - * @static - */ - public static function addLocation($location){ - \Illuminate\View\Environment::addLocation($location); - } - - /** - * Add a new namespace to the loader. - * - * @param string $namespace - * @param string|array $hints - * @return void - * @static - */ - public static function addNamespace($namespace, $hints){ - \Illuminate\View\Environment::addNamespace($namespace, $hints); - } - - /** - * Register a valid view extension and its engine. - * - * @param string $extension - * @param string $engine - * @param Closure $resolver - * @return void - * @static - */ - public static function addExtension($extension, $engine, $resolver = null){ - \Illuminate\View\Environment::addExtension($extension, $engine, $resolver); - } - - /** - * Get the extension to engine bindings. - * - * @return array - * @static - */ - public static function getExtensions(){ - return \Illuminate\View\Environment::getExtensions(); - } - - /** - * Get the engine resolver instance. - * - * @return \Illuminate\View\Engines\EngineResolver - * @static - */ - public static function getEngineResolver(){ - return \Illuminate\View\Environment::getEngineResolver(); - } - - /** - * Get the view finder instance. - * - * @return \Illuminate\View\ViewFinderInterface - * @static - */ - public static function getFinder(){ - return \Illuminate\View\Environment::getFinder(); - } - - /** - * Get the event dispatcher instance. - * - * @return \Illuminate\Events\Dispatcher - * @static - */ - public static function getDispatcher(){ - return \Illuminate\View\Environment::getDispatcher(); - } - - /** - * Get the IoC container instance. - * - * @return \Illuminate\Container\Container - * @static - */ - public static function getContainer(){ - return \Illuminate\View\Environment::getContainer(); - } - - /** - * Set the IoC container instance. - * - * @param \Illuminate\Container\Container $container - * @return void - * @static - */ - public static function setContainer($container){ - \Illuminate\View\Environment::setContainer($container); - } - - /** - * Get all of the shared data for the environment. - * - * @return array - * @static - */ - public static function getShared(){ - return \Illuminate\View\Environment::getShared(); - } - - /** - * Get the entire array of sections. - * - * @return array - * @static - */ - public static function getSections(){ - return \Illuminate\View\Environment::getSections(); - } - - /** - * Get all of the registered named views in environment. - * - * @return array - * @static - */ - public static function getNames(){ - return \Illuminate\View\Environment::getNames(); - } - - } -} - -namespace { - class Confide extends Zizaco\Confide\ConfideFacade{ - /** - * Create a new confide instance. - * - * @param ConfideRepository $repo A "repository" to abstract all the database interaction. - * @return self - * @static - */ - public static function __construct($repo){ - \Zizaco\Confide\Confide::__construct($repo); - } - - /** - * Returns the Laravel application - * - * @return Illuminate\Foundation\Application - * @static - */ - public static function app(){ - return \Zizaco\Confide\Confide::app(); - } - - /** - * Returns an object of the model set in auth config - * - * @return object - * @static - */ - public static function model(){ - return \Zizaco\Confide\Confide::model(); - } - - /** - * Get the currently authenticated user or null. - * - * @return Zizaco\Confide\ConfideUser|null - * @static - */ - public static function user(){ - return \Zizaco\Confide\Confide::user(); - } - - /** - * Set the user confirmation to true. - * - * @param string $code - * @return bool - * @static - */ - public static function confirm($code){ - return \Zizaco\Confide\Confide::confirm($code); - } - - /** - * Attempt to log a user into the application with - * password and identity field(s), usually email or username. - * - * @param array $credentials - * @param bool $confirmed_only - * @param mixed $identity_columns - * @return boolean Success - * @static - */ - public static function logAttempt($credentials, $confirmed_only = false, $identity_columns = array()){ - return \Zizaco\Confide\Confide::logAttempt($credentials, $confirmed_only, $identity_columns); - } - - /** - * Checks if the credentials has been throttled by too - * much failed login attempts - * - * @param array $credentials - * @return mixed Value. - * @static - */ - public static function isThrottled($credentials){ - return \Zizaco\Confide\Confide::isThrottled($credentials); - } - - /** - * Send email with information about password reset - * - * @param string $email - * @return bool - * @static - */ - public static function forgotPassword($email){ - return \Zizaco\Confide\Confide::forgotPassword($email); - } - - /** - * Checks to see if the user has a valid token. - * - * @param $token - * @return bool - * @static - */ - public static function isValidToken($token){ - return \Zizaco\Confide\Confide::isValidToken($token); - } - - /** - * Change user password - * - * @return string - * @static - */ - public static function resetPassword($params){ - return \Zizaco\Confide\Confide::resetPassword($params); - } - - /** - * Log the user out of the application. - * - * @return void - * @static - */ - public static function logout(){ - \Zizaco\Confide\Confide::logout(); - } - - /** - * Display the default login view - * - * @deprecated - * @return Illuminate\View\View - * @static - */ - public static function makeLoginForm(){ - return \Zizaco\Confide\Confide::makeLoginForm(); - } - - /** - * Display the default signup view - * - * @deprecated - * @return Illuminate\View\View - * @static - */ - public static function makeSignupForm(){ - return \Zizaco\Confide\Confide::makeSignupForm(); - } - - /** - * Display the forget password view - * - * @deprecated - * @return Illuminate\View\View - * @static - */ - public static function makeForgotPasswordForm(){ - return \Zizaco\Confide\Confide::makeForgotPasswordForm(); - } - - /** - * Display the forget password view - * - * @deprecated - * @return Illuminate\View\View - * @static - */ - public static function makeResetPasswordForm($token){ - return \Zizaco\Confide\Confide::makeResetPasswordForm($token); - } - - /** - * Check whether the controller's action exists. - * - * Returns the url if it does. Otherwise false. - * - * @param $controllerAction - * @return string - * @static - */ - public static function checkAction($action, $parameters = array(), $absolute = true){ - return \Zizaco\Confide\Confide::checkAction($action, $parameters, $absolute); - } - - } -} - -namespace { - class Entrust extends Zizaco\Entrust\EntrustFacade{ - /** - * Create a new confide instance. - * - * @param Illuminate\Foundation\Application $app - * @return self - * @static - */ - public static function __construct($app){ - \Zizaco\Entrust\Entrust::__construct($app); - } - - /** - * Checks if the current user has a Role by its name - * - * @param string $name Role name. - * @access public - * @return boolean - * @static - */ - public static function hasRole($permission){ - return \Zizaco\Entrust\Entrust::hasRole($permission); - } - - /** - * Check if the current user has a permission by its name - * - * @param string $permission Permission string. - * @access public - * @return boolean - * @static - */ - public static function can($permission){ - return \Zizaco\Entrust\Entrust::can($permission); - } - - /** - * Get the currently authenticated user or null. - * - * @access public - * @return Illuminate\Auth\UserInterface|null - * @static - */ - public static function user(){ - return \Zizaco\Entrust\Entrust::user(); - } - - /** - * Filters a route for the name Role. If the third parameter - * is null then return 404. Overwise the $result is returned - * - * @param string $route Route pattern. i.e: "admin/*" - * @param array|string $roles The role(s) needed. - * @param mixed $result i.e: Redirect::to('/') - * @param bool $cumulative Must have all roles. - * @access public - * @return void - * @static - */ - public static function routeNeedsRole($route, $roles, $result = null, $cumulative = true){ - \Zizaco\Entrust\Entrust::routeNeedsRole($route, $roles, $result, $cumulative); - } - - /** - * Filters a route for the permission. If the third parameter - * is null then return 404. Overwise the $result is returned - * - * @param string $route Route pattern. i.e: "admin/*" - * @param array|string $permissions The permission needed. - * @param mixed $result i.e: Redirect::to('/') - * @param bool $cumulative Must have all permissions - * @access public - * @return void - * @static - */ - public static function routeNeedsPermission($route, $permissions, $result = null, $cumulative = true){ - \Zizaco\Entrust\Entrust::routeNeedsPermission($route, $permissions, $result, $cumulative); - } - - } -} - -namespace { - class Presenter extends Robbo\Presenter\Presenter{ - } -} - -namespace { - class Presentable extends Robbo\Presenter\PresentableInterface{ - } -} - -namespace { - class Basset extends Basset\Facade{ - /** - * Create a new environment instance. - * - * @param \Basset\Factory\FactoryManager $factory - * @param \Basset\AssetFinder $finder - * @return self - * @static - */ - public static function __construct($factory, $finder){ - \Basset\Environment::__construct($factory, $finder); - } - - /** - * Alias of \Basset\Environment::collection() - * - * @param string $name - * @param \Closure $callback - * @return \Basset\Collection - * @static - */ - public static function make($name, $callback = null){ - return \Basset\Environment::make($name, $callback); - } - - /** - * Create or return an existing collection. - * - * @param string $identifier - * @param \Closure $callback - * @return \Basset\Collection - * @static - */ - public static function collection($identifier, $callback = null){ - return \Basset\Environment::collection($identifier, $callback); - } - - /** - * Get all collections. - * - * @return array - * @static - */ - public static function all(){ - return \Basset\Environment::all(); - } - - /** - * Determine if a collection exists. - * - * @param string $name - * @return bool - * @static - */ - public static function has($name){ - return \Basset\Environment::has($name); - } - - /** - * Register a package with the environment. - * - * @param string $package - * @param string $namespace - * @return void - * @static - */ - public static function package($package, $namespace = null){ - \Basset\Environment::package($package, $namespace); - } - - /** - * Register an array of collections. - * - * @param array $collections - * @return void - * @static - */ - public static function collections($collections){ - \Basset\Environment::collections($collections); - } - - /** - * Set a collection offset. - * - * @param string $offset - * @param mixed $value - * @return void - * @static - */ - public static function offsetSet($offset, $value){ - \Basset\Environment::offsetSet($offset, $value); - } - - /** - * Get a collection offset. - * - * @param string $offset - * @return null|\Basset\Collection - * @static - */ - public static function offsetGet($offset){ - return \Basset\Environment::offsetGet($offset); - } - - /** - * Unset a collection offset. - * - * @param string $offset - * @return void - * @static - */ - public static function offsetUnset($offset){ - \Basset\Environment::offsetUnset($offset); - } - - /** - * Determine if a collection offset exists. - * - * @param string $offset - * @return bool - * @static - */ - public static function offsetExists($offset){ - return \Basset\Environment::offsetExists($offset); - } - - } -} - -namespace { - class String extends Andrew13\Helpers\String{ - } -} - -namespace { - class Carbon extends Carbon\Carbon{ - } -} - -namespace { - class Datatables extends Bllim\Datatables\Datatables{ - } -} - diff --git a/app/config/app.php b/app/config/app.php index a98b62e..ae94a76 100644 --- a/app/config/app.php +++ b/app/config/app.php @@ -54,6 +54,19 @@ 'locale' => 'en', + /* + |-------------------------------------------------------------------------- + | Application Fallback Locale + |-------------------------------------------------------------------------- + | + | The fallback locale determines the locale to use when the current one + | is not available. You may change the value to correspond to any of + | the language folders that are provided through your application. + | + */ + + 'fallback_locale' => 'en', + /* |-------------------------------------------------------------------------- | Encryption Key @@ -65,7 +78,9 @@ | */ - 'key' => '95Tp73fwrklQQ2JdFla1y4awUUDU5iim', + 'key' => 'Us1TWHSFz74nUdhDCu9QwemD7Bd0TR1j', + + 'cipher' => MCRYPT_RIJNDAEL_128, /* |-------------------------------------------------------------------------- @@ -107,13 +122,14 @@ 'Illuminate\View\ViewServiceProvider', 'Illuminate\Workbench\WorkbenchServiceProvider', /* Additional Providers */ - 'Zizaco\Confide\ConfideServiceProvider', // Confide Provider - 'Zizaco\Entrust\EntrustServiceProvider', // Entrust Provider for roles - 'Robbo\Presenter\PresenterServiceProvider', // Presenter - 'Bllim\Datatables\DatatablesServiceProvider', // Datatables - - /* Uncomment for use in development */ - 'Way\Generators\GeneratorsServiceProvider', // Generators + 'Zizaco\Confide\ConfideServiceProvider', // Confide Provider + 'Zizaco\Entrust\EntrustServiceProvider', // Entrust Provider for roles + 'Robbo\Presenter\PresenterServiceProvider', // Presenter + 'Bllim\Datatables\DatatablesServiceProvider', // Datatables + + /* Uncomment for use in development */ + 'Way\Generators\GeneratorsServiceProvider', // Generators + ), /* @@ -174,23 +190,25 @@ 'Schema' => 'Illuminate\Support\Facades\Schema', 'Seeder' => 'Illuminate\Database\Seeder', 'Session' => 'Illuminate\Support\Facades\Session', + 'SoftDeletingTrait' => 'Illuminate\Database\Eloquent\SoftDeletingTrait', 'SSH' => 'Illuminate\Support\Facades\SSH', 'Str' => 'Illuminate\Support\Str', 'URL' => 'Illuminate\Support\Facades\URL', 'Validator' => 'Illuminate\Support\Facades\Validator', 'View' => 'Illuminate\Support\Facades\View', /* Additional Aliases */ - 'Confide' => 'Zizaco\Confide\ConfideFacade', // Confide Alias - 'Entrust' => 'Zizaco\Entrust\EntrustFacade', // Entrust Alias - 'Presenter' => 'Robbo\Presenter\Presenter', // Presenter - 'Presentable' => 'Robbo\Presenter\PresentableInterface', // Presenter - 'Basset' => 'Basset\Facade', // Better Asset Management - 'String' => 'A2ZCMS\Helpers\String', // String - 'Fineuploader' => 'A2ZCMS\Helpers\Fineuploader', // Fineuploader - 'Thumbnail' => 'A2ZCMS\Helpers\Thumbnail', // Fineuploader - 'UUID' => 'A2ZCMS\Helpers\UUID', // UUID - 'Carbon' => 'Carbon\Carbon', // Carbon - 'Datatables' => 'Bllim\Datatables\Datatables', // DataTables + 'Confide' => 'Zizaco\Confide\ConfideFacade', // Confide Alias + 'Entrust' => 'Zizaco\Entrust\EntrustFacade', // Entrust Alias + 'Presenter' => 'Robbo\Presenter\Presenter', // Presenter + 'Presentable' => 'Robbo\Presenter\PresentableInterface', // Presenter + 'Basset' => 'Basset\Facade', // Better Asset Management + 'String' => 'A2ZCMS\Helpers\String', // String + 'Fineuploader' => 'A2ZCMS\Helpers\Fineuploader', // Fineuploader + 'Thumbnail' => 'A2ZCMS\Helpers\Thumbnail', // Fineuploader + 'UUID' => 'A2ZCMS\Helpers\UUID', // UUID + 'Carbon' => 'Carbon\Carbon', // Carbon + 'Datatables' => 'Bllim\Datatables\Datatables', // DataTables ), 'available_language' => array('en'), + ); diff --git a/app/config/compile.php b/app/config/compile.php index 54d7185..d5e5518 100644 --- a/app/config/compile.php +++ b/app/config/compile.php @@ -15,4 +15,4 @@ -); \ No newline at end of file +); diff --git a/app/config/mail.php b/app/config/mail.php index a7151a0..76fd9e4 100644 --- a/app/config/mail.php +++ b/app/config/mail.php @@ -11,7 +11,7 @@ | sending of e-mail. You may specify which one you're using throughout | your application here. By default, Laravel is setup for SMTP mail. | - | Supported: "smtp", "mail", "sendmail" + | Supported: "smtp", "mail", "sendmail", "mailgun", "mandrill", "log" | */ @@ -24,7 +24,7 @@ | | Here you may provide the host address of the SMTP server used by your | applications. A default option is provided that is compatible with - | the Postmark mail service, which will provide reliable delivery. + | the Mailgun mail service which will provide reliable deliveries. | */ @@ -35,9 +35,9 @@ | SMTP Host Port |-------------------------------------------------------------------------- | - | This is the SMTP port used by your application to delivery e-mails to - | users of your application. Like the host we have set this value to - | stay compatible with the Postmark e-mail application by default. + | This is the SMTP port used by your application to deliver e-mails to + | users of the application. Like the host we have set this value to + | stay compatible with the Mailgun e-mail application by default. | */ @@ -121,4 +121,4 @@ 'pretend' => false, -); \ No newline at end of file +); diff --git a/app/config/queue.php b/app/config/queue.php index 6c0fa52..940a4cd 100644 --- a/app/config/queue.php +++ b/app/config/queue.php @@ -11,7 +11,7 @@ | API, giving you convenient access to each back-end using the same | syntax for each one. Here you may set the default queue driver. | - | Supported: "sync", "beanstalkd", "sqs", "iron" + | Supported: "sync", "beanstalkd", "sqs", "iron", "redis" | */ @@ -38,6 +38,7 @@ 'driver' => 'beanstalkd', 'host' => 'localhost', 'queue' => 'default', + 'ttr' => 60, ), 'sqs' => array( @@ -50,9 +51,11 @@ 'iron' => array( 'driver' => 'iron', - 'project' => 'your-project-id', + 'host' => 'mq-aws-us-east-1.iron.io', 'token' => 'your-token', + 'project' => 'your-project-id', 'queue' => 'your-queue-name', + 'encrypt' => true, ), 'redis' => array( diff --git a/app/config/remote.php b/app/config/remote.php index ea960e0..2169c43 100644 --- a/app/config/remote.php +++ b/app/config/remote.php @@ -56,4 +56,4 @@ ), -); \ No newline at end of file +); diff --git a/app/config/services.php b/app/config/services.php new file mode 100644 index 0000000..c8aba2a --- /dev/null +++ b/app/config/services.php @@ -0,0 +1,31 @@ + array( + 'domain' => '', + 'secret' => '', + ), + + 'mandrill' => array( + 'secret' => '', + ), + + 'stripe' => array( + 'model' => 'User', + 'secret' => '', + ), + +); diff --git a/app/config/workbench.php b/app/config/workbench.php index 56bee52..87c5e38 100644 --- a/app/config/workbench.php +++ b/app/config/workbench.php @@ -28,4 +28,4 @@ 'email' => '', -); \ No newline at end of file +); diff --git a/app/controllers/BaseController.php b/app/controllers/BaseController.php index 788a0bc..bced7d8 100644 --- a/app/controllers/BaseController.php +++ b/app/controllers/BaseController.php @@ -15,9 +15,8 @@ class BaseController extends Controller { */ public function __construct() { - $user = new User; - $this -> user = $user; - $this -> beforeFilter('csrf', array('on' => 'post')); + + $this -> beforeFilter('csrf', array('on' => 'post')); $this -> beforeFilter('detectLang'); // Redirect to /install if the db isn't setup. if (Config::get("a2zcms.installed") !== true) { @@ -44,6 +43,7 @@ public function __construct() { } $user = Auth::user(); if(!empty($user)){ + $this->user = $user; $unreadmessages = Messages::where('user_id_to','=',$user->id)->where('read','=','0')->count(); View::share('unreadmessages', $unreadmessages); } @@ -68,42 +68,37 @@ public function __construct() { * */ public function postLogin() { - $input = array('email' => Input::get('email'), // May be the username too - 'username' => Input::get('email'), // May be the username too - 'password' => Input::get('password'), 'remember' => Input::get('remember'), ); + $input = array( + 'email' => Input::get( 'email' ), // May be the username too + 'username' => Input::get( 'email' ), // May be the username too + 'password' => Input::get( 'password' ), + 'remember' => Input::get( 'remember' ), + ); - // If you wish to only allow login from confirmed users, call logAttempt - // with the second parameter as true. - // logAttempt will check if the 'email' perhaps is the username. - // Check that the user is confirmed. - if (Confide::logAttempt($input, true)) { - - $login_user = Auth::user(); - - $userloginlog = new UserLoginHistory; - $userloginlog -> user_id = $login_user->id; - $userloginlog -> save(); - - $r = Session::get('loginRedirect'); - if (!empty($r)) { - Session::forget('loginRedirect'); - return Redirect::to($r); - } - return Redirect::back(); - } else { - // Check if there was too many login attempts - if (Confide::isThrottled($input)) { - $err_msg = Lang::get('confide::confide.alerts.too_many_attempts'); - } elseif ($this -> user -> checkUserExists($input) && !$this -> user -> isConfirmed($input)) { - $err_msg = Lang::get('confide::confide.alerts.not_confirmed'); - } else { - $err_msg = Lang::get('confide::confide.alerts.wrong_credentials'); - } - - return Redirect::back() -> withInput(Input::except('password')) -> with('error', $err_msg); - } - } + // If you wish to only allow login from confirmed users, call logAttempt + // with the second parameter as true. + // logAttempt will check if the 'email' perhaps is the username. + // Check that the user is confirmed. + if ( Confide::logAttempt( $input, true ) ) + { + return Redirect::intended('/'); + } + else + { + // Check if there was too many login attempts + if ( Confide::isThrottled( $input ) ) { + $err_msg = Lang::get('confide::confide.alerts.too_many_attempts'); + } elseif ( $this->user->checkUserExists( $input ) && ! $this->user->isConfirmed( $input ) ) { + $err_msg = Lang::get('confide::confide.alerts.not_confirmed'); + } else { + $err_msg = Lang::get('confide::confide.alerts.wrong_credentials'); + } + return Redirect::to('user/login') + ->withInput(Input::except('password')) + ->with( 'error', $err_msg ); + } + } /** * Setup the layout used by the controller. * @@ -322,7 +317,7 @@ private function splitParams($params) public function content($page_id) { - $user = $this -> user -> currentUser(); + $user = $this -> user; $canPageVote = false; if (!empty($user)) { $canPageVote = $user -> can('post_page_vote'); diff --git a/app/controllers/InstallController.php b/app/controllers/InstallController.php index e539a85..1ceac85 100644 --- a/app/controllers/InstallController.php +++ b/app/controllers/InstallController.php @@ -1,5 +1,4 @@ setA2ZApp($url.'/'); - - Artisan::call('migrate', array('--env' => App::environment())); + Artisan::call('migrate', array('--force' => true)); //triger for update user last_login affter user is login to system DB::unprepared("CREATE TRIGGER ".Input::get('prefix')."user_login_historys_after_inserts @@ -201,7 +200,7 @@ public function postStep3() { return Redirect::to('install/step4'); } else { - return Redirect::to('install/step3') -> withErrors($form); + return Redirect::to('install/step4') -> withErrors($form); } } @@ -254,10 +253,11 @@ public function postStep4() { $adminRole -> is_admin = 1; $adminRole -> save(); - DB::table('assigned_roles') -> insert(array('user_id' => $user_id, 'role_id' => $adminRole -> id)); - - Artisan::call('db:seed'); + DB::table('assigned_roles') -> insert(array('user_id' => $user_id, 'role_id' => $adminRole -> id, + 'created_at' => new DateTime, 'updated_at' => new DateTime)); + $this->seed(); + $settings = Settings::all(); foreach ($settings as $v) { switch ($v->varname) { @@ -270,7 +270,7 @@ public function postStep4() { return Redirect::to('install/step5'); } - + /** * Get the config form. */ @@ -319,5 +319,661 @@ protected function setA2ZConfig($title, $theme, $per_page) { return File::put(__DIR__ . '\..\config\a2zcms.php', $content); } + + private function seed() + { + //PermissionsTableSeeder + + $permissions = array( + array('name' => 'manage_blogs', + 'display_name' => 'Manage blogs','is_admin' => 1), + array('name' => 'manage_blog_categris', + 'display_name' => 'Manage blog categris','is_admin' => 1), + array('name' => 'manage_comments', + 'display_name' => 'Manage comments','is_admin' => 1), + array('name' => 'manage_users', + 'display_name' => 'Manage users','is_admin' => 1), + array('name' => 'manage_roles', + 'display_name' => 'Manage roles','is_admin' => 1), + array('name' => 'post_blog_comment', + 'display_name' => 'Post blog comment','is_admin' => 0), + ); + + DB::table('permissions') -> insert($permissions); + + $permissions = array( array('role_id' => 1, 'permission_id' => 1,'created_at' => new DateTime, + 'updated_at' => new DateTime,), + array('role_id' => 1, 'permission_id' => 2,'created_at' => new DateTime, + 'updated_at' => new DateTime,), + array('role_id' => 1, 'permission_id' => 3,'created_at' => new DateTime, + 'updated_at' => new DateTime,), + array('role_id' => 1, 'permission_id' => 4,'created_at' => new DateTime, + 'updated_at' => new DateTime,), + array('role_id' => 1, 'permission_id' => 5,'created_at' => new DateTime, + 'updated_at' => new DateTime,), + array('role_id' => 1, 'permission_id' => 6,'created_at' => new DateTime, + 'updated_at' => new DateTime,), ); + + DB::table('permission_role') -> insert($permissions); + + //SettingsTableSeeder + DB::table('settings') -> insert(array( + array('varname' => 'updatetime', + 'groupname' => 'version', + 'value' => time(), + 'defaultvalue' => time(), + 'type' =>'text', + 'rule' => ''), + array('varname' => 'offline', + 'groupname' => 'offline', + 'value' => '0', + 'type' =>'radio', + 'defaultvalue' => '0', + 'rule' => ''), + array('varname' => 'version', + 'groupname' => 'version', + 'value' => '1.0', + 'defaultvalue' => '1.0', + 'type' =>'text', + 'rule' => ''), + array('varname' => 'offlinemessage', + 'groupname' => 'offline', + 'value' => '

Sorry, the site is unavailable at the moment while we are testing some functionality.

', + 'defaultvalue' => 'Sorry, the site is unavailable at the moment while we are testing some functionality.', + 'type' =>'textarea', + 'rule' => ''), + array('varname' => 'title', + 'groupname' => 'general', + 'value' => 'A2Z CMS', + 'defaultvalue' => 'A2Z CMS', + 'type' =>'text', + 'rule' => ''), + array('varname' => 'copyright', + 'groupname' => 'general', + 'value' => 'yoursite.com © '.date("Y"), + 'defaultvalue' => 'A2Z CMS 2013-2014', + 'type' =>'text', + 'rule' => ''), + array('varname' => 'metadesc', + 'groupname' => 'metadata', + 'value' => '', + 'defaultvalue' => '', + 'type' =>'textarea', + 'rule' => ''), + array('varname' => 'metakey', + 'groupname' => 'metadata', + 'value' => '', + 'defaultvalue' => '', + 'type' =>'textarea', + 'rule' => '""'), + array('varname' => 'metaauthor', + 'groupname' => 'metadata', + 'value' => 'http://www.yoursite.com', + 'defaultvalue' => 'http://www.a2zcms.com', + 'type' =>'text', + 'rule' => ''), + array('varname' => 'analytics', + 'groupname' => 'analitic', + 'value' => '', + 'defaultvalue' => '', + 'type' =>'textarea', + 'rule' => ''), + array('varname' => 'email', + 'groupname' => 'setting', + 'value' => 'admin@example.com', + 'defaultvalue' => '', + 'type' =>'text', + 'rule' => 'required|email'), + array('varname' => 'dateformat', + 'groupname' => 'setting', + 'value' => 'd.m.Y', + 'defaultvalue' => 'd.m.Y', + 'type' =>'text', + 'rule' => 'required'), + array('varname' => 'timeformat', + 'groupname' => 'setting', + 'value' => ' - H:i', + 'defaultvalue' => 'h:i A', + 'type' =>'text', + 'rule' => 'required'), + array('varname' => 'useravatwidth', + 'groupname' => 'setting', + 'value' => '150', + 'defaultvalue' => '150', + 'type' =>'text', + 'rule' => 'required|integer'), + array('varname' => 'useravatheight', + 'groupname' => 'setting', + 'value' => '113', + 'defaultvalue' => '113', + 'type' =>'text', + 'rule' => 'required|integer'), + array('varname' => 'pageitem', + 'groupname' => 'setting', + 'value' => '15', + 'defaultvalue' => '15', + 'type' =>'text', + 'rule' => 'required|integer'), + array('varname' => 'searchcode', + 'groupname' => 'googlesearch', + 'value' => '', + 'defaultvalue' => '', + 'type' =>'textarea', + 'rule' => ''), + array('varname' => 'sitetheme', + 'groupname' => 'setting', + 'value' => '', + 'defaultvalue' => 'default', + 'type' =>'select', + 'rule' => 'required'), + array('varname' => 'pageitemadmin', + 'groupname' => 'setting', + 'value' => '10', + 'defaultvalue' => '10', + 'type' =>'text', + 'rule' => 'required|integer'), + + ) + ); + + //NavPagesPermissionSeeder + $permissions = array( + array('name' => 'manage_navigation', + 'display_name' => 'Manage navigation','is_admin' => 1), + array('name' => 'manage_pages', + 'display_name' => 'Manage pages','is_admin' => 1), + array('name' => 'manage_navigation_groups', + 'display_name' => 'Manage navigation groups','is_admin' => 1), + ); + + DB::table('permissions') -> insert($permissions); + + $permissions_role = array( + array('role_id' => 1, 'permission_id' => 7,'created_at' => new DateTime, + 'updated_at' => new DateTime,), + array('role_id' => 1, 'permission_id' => 8,'created_at' => new DateTime, + 'updated_at' => new DateTime,), + array('role_id' => 1, 'permission_id' => 9,'created_at' => new DateTime, + 'updated_at' => new DateTime,)); + + DB::table('permission_role') -> insert($permissions_role); + + //GallerysPermissionSeeder + $permissions = array( + array('name' => 'manage_galleries', + 'display_name' => 'Manage galleries','is_admin' => 1), + array('name' => 'manage_gallery_images', + 'display_name' => 'Manage gallery images','is_admin' => 1), + array('name' => 'manage_gallery_imagecomments', + 'display_name' => 'Manage gallery image comments','is_admin' => 1), + array ('name' => 'post_gallery_comment' , + 'display_name' => 'Post gallery comment','is_admin' => 0)); + + DB::table('permissions') -> insert($permissions); + + $permissions_role = array( + array('role_id' => 1, 'permission_id' => 10,'created_at' => new DateTime, + 'updated_at' => new DateTime,), + array('role_id' => 1, 'permission_id' => 11,'created_at' => new DateTime, + 'updated_at' => new DateTime,), + array('role_id' => 1, 'permission_id' => 12,'created_at' => new DateTime, + 'updated_at' => new DateTime,), + array('role_id' => 1, 'permission_id' => 13,'created_at' => new DateTime, + 'updated_at' => new DateTime,)); + + DB::table('permission_role') -> insert($permissions_role); + + //CustomFormPermissionsTableSeeder + $permissions = array( + array('name' => 'manage_customform', + 'display_name' => 'Manage custom forms','is_admin' => 1), + ); + DB::table('permissions') -> insert($permissions); + + $permissions = array( array('role_id' => 1, 'permission_id' => 14,'created_at' => new DateTime, + 'updated_at' => new DateTime,) ); + + DB::table('permission_role') -> insert($permissions); + + //PluginsTableSeeder + $plugins = array( + array('content' => 'Blog', + 'function_id' => 'getBlogId', + 'function_grid' => 'getBlogGroupId', + 'created_at' => new DateTime, + 'updated_at' => new DateTime, ), + array('content' => 'Gallery', + 'function_id' => 'getGalleryId', + 'function_grid' => NULL, + 'created_at' => new DateTime, + 'updated_at' => new DateTime, ), + array('content' => 'Custom form', + 'function_id' => 'getCustomFormId', + 'function_grid' => NULL, + 'created_at' => new DateTime, + 'updated_at' => new DateTime, ), + array('content' => 'To-do list', + 'function_id' => NULL, + 'function_grid' => NULL, + 'created_at' => new DateTime, + 'updated_at' => new DateTime, ), + array('content' => 'Pages', + 'function_id' => NULL, + 'function_grid' => NULL, + 'created_at' => new DateTime, + 'updated_at' => new DateTime, ), + array('content' => 'Blog', + 'function_id' => NULL, + 'function_grid' => NULL, + 'created_at' => new DateTime, + 'updated_at' => new DateTime, ), + array('content' => 'Settings', + 'function_id' => NULL, + 'function_grid' => NULL, + 'created_at' => new DateTime, + 'updated_at' => new DateTime, ), + array('content' => 'Users', + 'function_id' => NULL, + 'function_grid' => NULL, + 'created_at' => new DateTime, + 'updated_at' => new DateTime, ), + + ); + DB::table('plugins')->insert($plugins); + + //PluginfunctionTableSeeder + $plugin_blog = Plugin::find(1) -> id; + $plugin_gallery = Plugin::find(2) -> id; + $plugin_contact = Plugin::find(3) -> id; + + $pluginfunctions = array( + array('title' => 'Login form', + 'plugin_id' => 0, + 'function'=>'login', + 'params'=>'', + 'type' => 'sidebar', + 'created_at' => new DateTime, + 'updated_at' => new DateTime, ), + array('title' => 'Search Form', + 'plugin_id' => 0, + 'function'=>'search', + 'params'=>'', + 'type' => 'sidebar', + 'created_at' => new DateTime, + 'updated_at' => new DateTime,), + array('title' => 'New gallerys', + 'plugin_id' => $plugin_gallery, + 'function'=>'newGallerys', + 'params'=>'sort:asc;order:id;limit:5;', + 'type' => 'sidebar', + 'created_at' => new DateTime, + 'updated_at' => new DateTime,), + array('title' => 'New blogs', + 'plugin_id' => $plugin_blog, + 'function'=>'newBlogs', + 'params'=>'sort:asc;order:id;limit:5;', + 'type' => 'sidebar', + 'created_at' => new DateTime, + 'updated_at' => new DateTime,), + array('title' => 'Content', + 'plugin_id' => 0, + 'function'=>'content', + 'params'=>'', + 'type' => 'content', + 'created_at' => new DateTime, + 'updated_at' => new DateTime,), + array('title' => 'Display gallery', + 'plugin_id' => $plugin_gallery, + 'function'=>'showGallery', + 'params'=>'id;sort;order;limit;', + 'type' => 'content', + 'created_at' => new DateTime, + 'updated_at' => new DateTime,), + array('title' => 'Display blogs', + 'plugin_id' => $plugin_blog, + 'function'=>'showBlogs', + 'params'=>'id;sort;order;limit;', + 'type' => 'content', + 'created_at' => new DateTime, + 'updated_at' => new DateTime,), + array('title' => 'Display custom form', + 'plugin_id' => $plugin_contact, + 'function'=>'showCustomFormId', + 'params'=>'id;', + 'type' => 'content', + 'created_at' => new DateTime, + 'updated_at' => new DateTime,), + array('title' => 'Side menu', + 'plugin_id' => 0, + 'function'=>'sideMenu', + 'params'=>'', + 'type' => 'sidebar', + 'created_at' => new DateTime, + 'updated_at' => new DateTime, ), + ); + + DB::table('plugin_functions')->insert($pluginfunctions); + + //CustomFormsTableSeeder + $user_id = User::first(); + + $custom_forms = array( + array('title' => 'Standard contact form', + 'user_id' => $user_id -> id, + 'recievers' => $user_id -> email, + 'message' => '

Thank you for contact us, we will get back to you as soon as we can.

', + 'created_at' => new DateTime, + 'updated_at' => new DateTime, )); + + DB::table('custom_forms')->insert($custom_forms); + + //CustomFormFieldsTableSeeder + $custom_forms = CustomForm::find(1) -> id; + $user_id = User::first() -> id; + + $custom_form_fields = array( + array( + 'custom_form_id'=>$custom_forms, + 'user_id' => $user_id, + 'name' => 'Name', + 'options' => '', + 'type' => '1', + 'order' => '1', + 'mandatory' => '1', + 'created_at' => new DateTime, + 'updated_at' => new DateTime, ), + array( + 'custom_form_id'=>$custom_forms, + 'user_id' => $user_id, + 'name' => 'Email', + 'options' => '', + 'type' => '1', + 'order' => '2', + 'mandatory' => '4', + 'created_at' => new DateTime, + 'updated_at' => new DateTime, ) , + array( + 'custom_form_id'=>$custom_forms, + 'user_id' => $user_id, + 'name' => 'Phone', + 'options' => '', + 'type' => '1', + 'order' => '3', + 'mandatory' => '2', + 'created_at' => new DateTime, + 'updated_at' => new DateTime, ) , + array( + 'custom_form_id'=>$custom_forms, + 'user_id' => $user_id, + 'name' => 'Message', + 'options' => '', + 'type' => '2', + 'order' => '4', + 'mandatory' => '1', + 'created_at' => new DateTime, + 'updated_at' => new DateTime, ) + ); + DB::table('custom_form_fields')->insert($custom_form_fields); + + //NavigationGroupsTableSeeder + $navigation_groups = array( + array('title' => 'Main menu', + 'slug' => 'main-menu', + 'showmenu' => '1', + 'showfooter' => '0', + 'showsidebar' => '0', + 'created_at' => new DateTime, + 'updated_at' => new DateTime, ) + + ); + DB::table('navigation_groups')->insert($navigation_groups); + + //PagesTableSeeder + $ontent = '

A2Z CMS 1.0

Welcome to your very own A2Z CMS 1.1 installation.

Login into your profile and change this page and enjoy in A2ZCMS.

If you have any questions feel free to check the Issues at any time or create a new issue.

Enjoy A2Z CMS and welcome a board.

Kind Regards

Stojan Kukrika - A2Z CMS

'; + $pages = array( + array('title' => 'Home', + 'slug' => 'home', + 'sidebar' => '1', + 'showtags' => '1', + 'showtitle' => '1', + 'showvote' => '1', + 'showdate' => '1', + 'voteup' => '0', + 'votedown' => '0', + 'password' => '', + 'tags' => 'tag1', + 'hits' => '0', + 'content' => $ontent, + 'status' => '1', + 'created_at' => new DateTime, + 'updated_at' => new DateTime, ) + + ); + DB::table('pages')->insert($pages); + + //NavigationLinksTableSeeder + $page_id = Page::first()->id; + $navigation_group_id = NavigationGroup::first()->id; + + $navigation_links = array( + array('title' => 'Home', + 'parent' => NULL, + 'link_type' => 'page', + 'page_id' => $page_id, + 'url' => '', + 'uri' => '', + 'navigation_group_id' => $navigation_group_id, + 'position' => '1', + 'target' => '', + 'restricted_to' => '', + 'class' => '', + 'created_at' => new DateTime, + 'updated_at' => new DateTime, ) + ); + DB::table('navigation_links')->insert($navigation_links); + + //PagePluginFunctionsTableSeeder + $page_id = Page::first()->id; + + $page_plugin_functions = array( + array('page_id' => $page_id, + 'plugin_function_id' => PluginFunction::find(1)->id, + 'order' => '1', + 'param' => '', + 'type' => '', + 'value' => '', + 'created_at' => new DateTime, + 'updated_at' => new DateTime, ), + array('page_id' => $page_id, + 'plugin_function_id' => PluginFunction::find(5)->id, + 'order' => '1', + 'param' => '', + 'type' => '', + 'value' => '', + 'created_at' => new DateTime, + 'updated_at' => new DateTime, ) + + ); + DB::table('page_plugin_functions')->insert($page_plugin_functions); + + //SettingsPermissionsTableSeeder + $permissions = array( + array('name' => 'manage_settings', + 'display_name' => 'Manage settings','is_admin' => 1), + ); + + DB::table('permissions') -> insert($permissions); + $permissions = array( array('role_id' => 1, 'permission_id' => 15,'created_at' => new DateTime, + 'updated_at' => new DateTime,), ); + DB::table('permission_role') -> insert($permissions); + + //ToDoListPermissionsTableSeeder + $permissions = array( + array('name' => 'manage_todolists', + 'display_name' => 'Manage todolists','is_admin' => 1), + ); + + DB::table('permissions') -> insert($permissions); + $permissions = array( array('role_id' => 1, 'permission_id' => 16,'created_at' => new DateTime, + 'updated_at' => new DateTime,), ); + DB::table('permission_role') -> insert($permissions); + + //PageVotePermissionsTableSeeder + $permissions = array( + array('name' => 'post_page_vote', + 'display_name' => 'Post page vote','is_admin' => 0), + array('name' => 'post_blog_vote', + 'display_name' => 'Post blog vote','is_admin' => 0), + array('name' => 'post_image_vote', + 'display_name' => 'Post image vote','is_admin' => 0), + ); + + DB::table('permissions') -> insert($permissions); + + $permissions = array( array('role_id' => 1, 'permission_id' => 17,'created_at' => new DateTime, + 'updated_at' => new DateTime,), + array('role_id' => 1, 'permission_id' => 18,'created_at' => new DateTime, + 'updated_at' => new DateTime,), + array('role_id' => 1, 'permission_id' => 19,'created_at' => new DateTime, + 'updated_at' => new DateTime,),); + + DB::table('permission_role') -> insert($permissions); + + //AdminNavigationsTableSeeder + DB::table('admin_navigations') -> insert(array( + array('plugin_id' => 4, + 'title' => 'To-do list', + 'icon' =>'icon-bell', + 'url' => 'todolists', + 'order' => 1, + 'created_at' => new DateTime, + 'updated_at' => new DateTime,), + array('plugin_id' => 3, + 'title' => 'Custom forms', + 'icon' =>'icon-list-alt', + 'url' => 'customform', + 'order' => 2, + 'created_at' => new DateTime, + 'updated_at' => new DateTime,), + array('plugin_id' => 5, + 'title' => 'Pages', + 'icon' =>'icon-globe', + 'url' => 'pages', + 'order' => 3, + 'created_at' => new DateTime, + 'updated_at' => new DateTime,), + array('plugin_id' => 1, + 'title' => 'Blog', + 'icon' =>'icon-external-link', + 'url' => 'blogcategorys', + 'order' => 4, + 'created_at' => new DateTime, + 'updated_at' => new DateTime,), + array('plugin_id' =>2, + 'title' => 'Gallery', + 'icon' =>'icon-camera', + 'url' => 'gallery', + 'order' => 5, + 'created_at' => new DateTime, + 'updated_at' => new DateTime,), + array('plugin_id' => 7, + 'title' => 'Users', + 'icon' =>'icon-group', + 'url' => 'users', + 'order' => 6, + 'created_at' => new DateTime, + 'updated_at' => new DateTime,), + array('plugin_id' => 6, + 'title' => 'Settings', + 'icon' =>'icon-cogs', + 'url' => 'settings', + 'order' => 7, + 'created_at' => new DateTime, + 'updated_at' => new DateTime,), + ) + ); + + //AdminSubNavigationsTableSeeder + DB::table('admin_subnavigations') -> insert(array( + array('admin_navigation_id' => 3, + 'title' => 'Navigation group', + 'icon' =>'icon-th-list', + 'url' => 'navigationgroups', + 'order' => 1, + 'created_at' => new DateTime, + 'updated_at' => new DateTime,), + array('admin_navigation_id' => 3, + 'title' => 'Pages', + 'icon' =>'icon-th-large', + 'url' => 'pages', + 'order' => 2, + 'created_at' => new DateTime, + 'updated_at' => new DateTime,), + array('admin_navigation_id' => 3, + 'title' => 'Navigation', + 'icon' =>'icon-th', + 'url' => 'navigation', + 'order' => 3, + 'created_at' => new DateTime, + 'updated_at' => new DateTime,), + array('admin_navigation_id' => 4, + 'title' => 'Blog categorys', + 'icon' =>'icon-rss', + 'url' => 'blogcategorys', + 'order' => 1, + 'created_at' => new DateTime, + 'updated_at' => new DateTime,), + array('admin_navigation_id' => 4, + 'title' => 'Blog', + 'icon' =>'icon-book', + 'url' => 'blogs', + 'order' => 2, + 'created_at' => new DateTime, + 'updated_at' => new DateTime,), + array('admin_navigation_id' => 4, + 'title' => 'Blog comments', + 'icon' =>'icon-comment-alt', + 'url' => 'blogcomments', + 'order' => 3, + 'created_at' => new DateTime, + 'updated_at' => new DateTime,), + array('admin_navigation_id' => 5, + 'title' => 'Gallery images', + 'icon' =>'icon-rss', + 'url' => 'galleryimages', + 'order' => 1, + 'created_at' => new DateTime, + 'updated_at' => new DateTime,), + array('admin_navigation_id' => 5, + 'title' => 'Galleries', + 'icon' =>'icon-camera-retro', + 'url' => 'galleries', + 'order' => 2, + 'created_at' => new DateTime, + 'updated_at' => new DateTime,), + array('admin_navigation_id' => 5, + 'title' => 'Gallery comments', + 'icon' =>'icon-comments-alt', + 'url' => 'galleryimagecomments', + 'order' => 3, + 'created_at' => new DateTime, + 'updated_at' => new DateTime,), + array('admin_navigation_id'=> 6, + 'title' => 'Users', + 'icon' =>'icon-user', + 'url' => 'users', + 'order' => 1, + 'created_at' => new DateTime, + 'updated_at' => new DateTime,), + array('admin_navigation_id' => 6, + 'title' => 'Roles', + 'icon' =>'icon-user-md', + 'url' => 'roles', + 'order' => 2, + 'created_at' => new DateTime, + 'updated_at' => new DateTime,), + ) + ); + } } diff --git a/app/controllers/admin/AdminNavigationController.php b/app/controllers/admin/AdminNavigationController.php index 7b58750..b44e999 100644 --- a/app/controllers/admin/AdminNavigationController.php +++ b/app/controllers/admin/AdminNavigationController.php @@ -189,7 +189,7 @@ public function getData() { $navs = Navigation::leftjoin('navigation_groups', 'navigation_groups.id', '=', 'navigation_links.navigation_group_id') -> leftjoin('pages', 'navigation_links.page_id', '=', 'pages.id') -> orderBy('navigation_links.position') - -> select(array('navigation_links.id', 'navigation_links.title', 'pages.name as page', 'navigation_links.link_type', 'navigation_groups.title as navigtion_group')); + -> select(array('navigation_links.id', 'navigation_links.title', 'pages.title as page', 'navigation_links.link_type', 'navigation_groups.title as navigtion_group')); return Datatables::of($navs) -> add_column('actions', ' diff --git a/app/controllers/admin/AdminTodolistController.php b/app/controllers/admin/AdminTodolistController.php index 264361f..4c7c400 100644 --- a/app/controllers/admin/AdminTodolistController.php +++ b/app/controllers/admin/AdminTodolistController.php @@ -161,7 +161,7 @@ public function getChange($id) { * @return Datatables JSON */ public function getData() { - $todolists = Todolist::select(array('todolist.id', 'todolist.content', 'todolist.work_done','todolist.finished', 'todolist.created_at'))->where('user_id','=',Auth::user()->id); + $todolists = Todolist::select(array('id', 'content', 'work_done','finished', 'created_at'))->where('user_id','=',Auth::user()->id); return Datatables::of($todolists) -> edit_column('work_done', '@if ($work_done==0){{ "Work" }} @else {{ "Done" }} @endif') -> add_column('actions', ' diff --git a/app/controllers/user/UserController.php b/app/controllers/user/UserController.php index e23421c..309fcfe 100644 --- a/app/controllers/user/UserController.php +++ b/app/controllers/user/UserController.php @@ -192,40 +192,37 @@ public function getLogin() { * */ public function postLogin() { - $input = array('email' => Input::get('email'), // May be the username too - 'username' => Input::get('email'), // May be the username too - 'password' => Input::get('password'), 'remember' => Input::get('remember'), ); + $input = array( + 'email' => Input::get( 'email' ), // May be the username too + 'username' => Input::get( 'email' ), // May be the username too + 'password' => Input::get( 'password' ), + 'remember' => Input::get( 'remember' ), + ); - // If you wish to only allow login from confirmed users, call logAttempt - // with the second parameter as true. - // logAttempt will check if the 'email' perhaps is the username. - // Check that the user is confirmed. - if (Confide::logAttempt($input, true)) { - $login_user = Auth::user(); - - $userloginlog = new UserLoginHistory; - $userloginlog -> user_id = $login_user->id; - $userloginlog -> save(); - - $r = Session::get('loginRedirect'); - if (!empty($r)) { - Session::forget('loginRedirect'); - return Redirect::to($r); - } - return Redirect::to('/'); - } else { - // Check if there was too many login attempts - if (Confide::isThrottled($input)) { - $err_msg = Lang::get('confide::confide.alerts.too_many_attempts'); - } elseif ($this -> user -> checkUserExists($input) && !$this -> user -> isConfirmed($input)) { - $err_msg = Lang::get('confide::confide.alerts.not_confirmed'); - } else { - $err_msg = Lang::get('confide::confide.alerts.wrong_credentials'); - } + // If you wish to only allow login from confirmed users, call logAttempt + // with the second parameter as true. + // logAttempt will check if the 'email' perhaps is the username. + // Check that the user is confirmed. + if ( Confide::logAttempt( $input, true ) ) + { + return Redirect::intended('/'); + } + else + { + // Check if there was too many login attempts + if ( Confide::isThrottled( $input ) ) { + $err_msg = Lang::get('confide::confide.alerts.too_many_attempts'); + } elseif ( $this->user->checkUserExists( $input ) && ! $this->user->isConfirmed( $input ) ) { + $err_msg = Lang::get('confide::confide.alerts.not_confirmed'); + } else { + $err_msg = Lang::get('confide::confide.alerts.wrong_credentials'); + } - return Redirect::to('user/login') -> withInput(Input::except('password')) -> with('error', $err_msg); - } - } + return Redirect::to('user/login') + ->withInput(Input::except('password')) + ->with( 'error', $err_msg ); + } + } /** * Attempt to confirm account with code @@ -297,7 +294,7 @@ public function postReset() { * */ public function getLogout() { - Confide::logout(); + Confide::logout(); return Redirect::to('/'); } diff --git a/app/database/migrations/2013_02_05_024934_confide_setup_users_table.php b/app/database/migrations/2013_02_05_024934_confide_setup_users_table.php index 0378703..4aec174 100644 --- a/app/database/migrations/2013_02_05_024934_confide_setup_users_table.php +++ b/app/database/migrations/2013_02_05_024934_confide_setup_users_table.php @@ -19,8 +19,9 @@ public function up() { $table -> string('username') -> unique(); $table -> string('password'); $table -> string('confirmation_code'); - $table -> boolean('confirmed') -> default(false); - $table -> boolean('active') -> default(false); + $table -> string('remember_token')-> nullable(); + $table -> boolean('confirmed')->default(false); + $table -> boolean('active')->default(false); $table -> timestamps(); $table -> softDeletes(); }); @@ -30,7 +31,7 @@ public function up() { $table -> engine = 'InnoDB'; $table -> string('email'); $table -> string('token'); - $table -> boolean('used') -> default(false); + $table -> boolean('used')->default(false); $table -> timestamp('created_at'); $table -> softDeletes(); }); diff --git a/app/database/migrations/2013_10_30_135348_add_show_in_footer_and_header_blogs.php b/app/database/migrations/2013_10_30_135348_add_show_in_footer_and_header_blogs.php index 83f5d4a..a1acb49 100644 --- a/app/database/migrations/2013_10_30_135348_add_show_in_footer_and_header_blogs.php +++ b/app/database/migrations/2013_10_30_135348_add_show_in_footer_and_header_blogs.php @@ -13,7 +13,7 @@ class AddShowInFooterAndHeaderBlogs extends Migration { public function up() { Schema::table('navigation_groups', function(Blueprint $table) { - $table -> boolean('showmenu')->after('abbrev'); + $table -> boolean('showmenu')->after('slug'); $table -> boolean('showfooter')->after('showmenu'); $table -> boolean('showsidebar')->after('showfooter'); }); diff --git a/app/database/migrations/2013_10_31_081145_add_finished_to_todolist_table.php b/app/database/migrations/2013_10_31_081145_add_finished_to_todolist_table.php index 85e5891..0d8798a 100644 --- a/app/database/migrations/2013_10_31_081145_add_finished_to_todolist_table.php +++ b/app/database/migrations/2013_10_31_081145_add_finished_to_todolist_table.php @@ -12,7 +12,7 @@ class AddFinishedToTodolistTable extends Migration { */ public function up() { - Schema::table('todolist', function(Blueprint $table) { + Schema::table('todolists', function(Blueprint $table) { $table -> decimal('finished', 5, 2)->after('content'); $table -> string('title')->after('user_id'); }); @@ -25,7 +25,7 @@ public function up() */ public function down() { - Schema::table('todolist', function(Blueprint $table) { + Schema::table('todolists', function(Blueprint $table) { $table -> dropColumn('finished'); $table -> dropColumn('title'); diff --git a/app/models/User.php b/app/models/User.php index 772bade..b497404 100644 --- a/app/models/User.php +++ b/app/models/User.php @@ -4,27 +4,27 @@ use Zizaco\Confide\Confide; use Zizaco\Confide\ConfideEloquentRepository; use Zizaco\Entrust\HasRole; -use Robbo\Presenter\PresentableInterface; use Carbon\Carbon; +use Illuminate\Auth\UserInterface; +use Illuminate\Auth\Reminders\RemindableInterface; -class User extends ConfideUser implements PresentableInterface { +class User extends ConfideUser implements UserInterface, RemindableInterface{ use HasRole; - - /** - * The database table used by the model. - * - * @var string - */ - protected $table = 'users'; - - /** - * Ardent validation rules - * - * @var array - */ + /** + * The database table used by the model. + * + * @var string + */ + protected $table = 'users'; + + /** + * Ardent validation rules + * + * @var array + */ public static $rules = array( - 'name' => 'required|min:4', - 'surname' => 'required|min:4', + 'name' => 'required|min:4', + 'surname' => 'required|min:4', 'username' => 'required|alpha_dash|unique:users', 'email' => 'required|email|unique:users', 'password' => 'required|between:4,11|confirmed', @@ -32,23 +32,17 @@ class User extends ConfideUser implements PresentableInterface { ); /** - * Rules for when updating a user. - * - * @var array - */ + * Rules for when updating a user. + * + * @var array + */ protected $updateRules = array( - 'name' => 'required|min:4', - 'surname' => 'required|min:4', + 'name' => 'required|min:4', + 'surname' => 'required|min:4', 'password' => 'between:4,11|confirmed', 'password_confirmation' => 'between:4,11', ); - - public function getPresenter() - { - return new UserPresenter($this); - } - /** * Get user by username * @param $username @@ -102,8 +96,8 @@ public function currentRoleIds() } return array('roleIds' => $roleIds, 'allow_admin' => $allow_admin); } - - /** + + /** * Redirect after auth. * If ifValid is set to true it will redirect a logged in user. * @param $redirect @@ -132,9 +126,17 @@ public static function checkAuthAndRedirect($redirect, $ifValid=false) public function currentUser() { - return (new Confide(new ConfideEloquentRepository()))->user(); + return Auth::user();//(new Confide(new EloquentRepository()))->user(); } + /** + * Get the e-mail address where password reminders are sent. + * + * @return string + */ + public function getReminderEmail() + { + return $this->email; + } - -} +} \ No newline at end of file diff --git a/app/routes.php b/app/routes.php index 110346b..8b3f33f 100644 --- a/app/routes.php +++ b/app/routes.php @@ -183,6 +183,7 @@ //:: User Account Routes :: Route::post('user/login', 'UserController@postLogin'); +Route::get('user/logout', 'UserController@getLogout'); //:: User Account Routes :: Route::post('login', 'BaseController@postLogin'); diff --git a/app/tests/blueprints/User.php b/app/tests/blueprints/User.php index 3118649..e8745ef 100644 --- a/app/tests/blueprints/User.php +++ b/app/tests/blueprints/User.php @@ -8,7 +8,7 @@ { $blueprint->username = 'admin'; $blueprint->email = 'admin@example.org'; - $blueprint->confirmation_code = Uuid\Uuid::v4(false); + $blueprint->confirmation_code = md5( uniqid(mt_rand(), true) ); $blueprint->confirmed = 1; $blueprint->created = Carbon::now(); $blueprint->updated = Carbon::now()->addMonths(2); @@ -19,7 +19,7 @@ { $blueprint->username = 'user'; $blueprint->email = 'user@example.org'; - $blueprint->confirmation_code = Uuid\Uuid::v4(false); + $blueprint->confirmation_code = md5( uniqid(mt_rand(), true) ); $blueprint->confirmed = 1; $blueprint->created = Carbon::now(); $blueprint->updated = Carbon::now()->addMonths(2); diff --git a/app/tests/controllers/UserControllerTest.php b/app/tests/controllers/UserControllerTest.php index 868e9a7..45a2a71 100644 --- a/app/tests/controllers/UserControllerTest.php +++ b/app/tests/controllers/UserControllerTest.php @@ -1,7 +1,5 @@ assertRedirection( URL::action('UserController@getLogin') ); } + /** + * @expectedException \Illuminate\Session\TokenMismatchException + */ public function testShouldNotDoLoginWhenTokenWrong() { $credentials = array( @@ -45,16 +46,8 @@ public function testShouldNotDoLoginWhenTokenWrong() 'csrf_token' => '' ); - try { - $this->withInput( $credentials ) - ->requestAction('POST', 'UserController@postLogin'); - - } catch (TokenMismatchException $e) { - // threw an exception when token doesn't match. - return true; - } - - return false; + $this->withInput( $credentials ) + ->requestAction('POST', 'UserController@postLogin'); } /** @@ -76,4 +69,4 @@ public function testLoginShouldRedirectUser() $this->assertRedirection( URL::to('/') ); } -} \ No newline at end of file +} diff --git a/app/tests/library/BaseControllerTestCase.php b/app/tests/library/BaseControllerTestCase.php index d7b5abd..ba1985e 100644 --- a/app/tests/library/BaseControllerTestCase.php +++ b/app/tests/library/BaseControllerTestCase.php @@ -27,6 +27,9 @@ public function setUp() { parent::setUp(); + // Enable session + Session::start(); + // Enable filters Route::enableFilters(); } diff --git a/app/views/admin/layouts/default.blade.php b/app/views/admin/layouts/default.blade.php index 58a2e9e..bba56f3 100644 --- a/app/views/admin/layouts/default.blade.php +++ b/app/views/admin/layouts/default.blade.php @@ -186,7 +186,7 @@