123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290 |
- <?php
- namespace Knuckles\Scribe\Tools;
- use Closure;
- use DirectoryIterator;
- use Exception;
- use FastRoute\RouteParser\Std;
- use Illuminate\Database\Eloquent\Relations\BelongsToMany;
- use Illuminate\Routing\Route;
- use Illuminate\Support\Str;
- use Knuckles\Scribe\Exceptions\CouldntFindFactory;
- use Knuckles\Scribe\Tools\ConsoleOutputUtils as c;
- use League\Flysystem\Filesystem;
- use League\Flysystem\Local\LocalFilesystemAdapter;
- use ReflectionClass;
- use ReflectionException;
- use ReflectionFunction;
- use ReflectionFunctionAbstract;
- use Throwable;
- class Utils
- {
- public static function getUrlWithBoundParameters(string $uri, array $urlParameters = []): string
- {
- return self::replaceUrlParameterPlaceholdersWithValues($uri, $urlParameters);
- }
- /**
- * Transform parameters in URLs into real values (/users/{user} -> /users/2).
- * Uses @urlParam values specified by caller, otherwise just uses '1'.
- *
- * @param string $uri
- * @param array $urlParameters Dictionary of url params and example values
- *
- * @return string
- */
- public static function replaceUrlParameterPlaceholdersWithValues(string $uri, array $urlParameters): string
- {
- if (empty($urlParameters)) {
- return $uri;
- }
- if (self::isLumen()) {
- $boundUri = '';
- $possibilities = (new Std)->parse($uri);
- // See https://github.com/nikic/FastRoute#overriding-the-route-parser-and-dispatcher
- $possibilityWithAllSegmentsPresent = end($possibilities);
- foreach ($possibilityWithAllSegmentsPresent as $part) {
- if (!is_array($part)) {
- // It's just a path segment, not a URL parameter'
- $boundUri .= $part;
- continue;
- }
- $name = $part[0];
- $boundUri .= $urlParameters[$name];
- }
- return $boundUri;
- }
- foreach ($urlParameters as $parameterName => $example) {
- $uri = preg_replace('#\{' . $parameterName . '\??}#', $example, $uri);
- }
- // Remove unbound optional parameters with nothing
- $uri = preg_replace('#{([^/]+\?)}#', '', $uri);
- // Replace any unbound non-optional parameters with '1'
- $uri = preg_replace('#{([^/]+)}#', '1', $uri);
- return $uri;
- }
- public static function getRouteClassAndMethodNames(Route $route): array
- {
- $action = $route->getAction();
- $uses = $action['uses'];
- if ($uses !== null) {
- if (is_array($uses)) {
- return $uses;
- } elseif (is_string($uses)) {
- return explode('@', $uses);
- } elseif (static::isInvokableObject($uses)) {
- return [$uses, '__invoke'];
- }
- }
- if (array_key_exists(0, $action) && array_key_exists(1, $action)) {
- return [
- 0 => $action[0],
- 1 => $action[1],
- ];
- }
- throw new Exception("Couldn't get class and method names for route " . c::getRouteRepresentation($route) . '.');
- }
- public static function deleteDirectoryAndContents(string $dir, ?string $workingDir = null): void
- {
- if (class_exists(LocalFilesystemAdapter::class)) {
- // Flysystem 2+
- $workingDir ??= getcwd();
- $adapter = new LocalFilesystemAdapter($workingDir);
- $fs = new Filesystem($adapter);
- $dir = str_replace($workingDir, '', $dir);
- $fs->deleteDirectory($dir);
- } else {
- // v1
- $adapter = new \League\Flysystem\Adapter\Local($workingDir ?: getcwd());
- $fs = new Filesystem($adapter);
- $dir = str_replace($adapter->getPathPrefix(), '', $dir);
- $fs->deleteDir($dir);
- }
- }
- public static function listDirectoryContents(string $dir)
- {
- if (class_exists(LocalFilesystemAdapter::class)) {
- // Flysystem 2+
- $adapter = new LocalFilesystemAdapter(getcwd());
- $fs = new Filesystem($adapter);
- return $fs->listContents($dir);
- } else {
- // v1
- $adapter = new \League\Flysystem\Adapter\Local(getcwd()); // @phpstan-ignore-line
- $fs = new Filesystem($adapter); // @phpstan-ignore-line
- $dir = str_replace($adapter->getPathPrefix(), '', $dir); // @phpstan-ignore-line
- return $fs->listContents($dir);
- }
- }
- public static function copyDirectory(string $src, string $dest): void
- {
- if (!is_dir($src)) return;
- // If the destination directory does not exist create it
- if (!is_dir($dest)) {
- if (!mkdir($dest, 0777, true)) {
- // If the destination directory could not be created stop processing
- throw new Exception("Failed to create target directory: $dest");
- }
- }
- // Open the source directory to read in files
- $i = new DirectoryIterator($src);
- foreach ($i as $f) {
- if ($f->isFile()) {
- copy($f->getRealPath(), "$dest/" . $f->getFilename());
- } else if (!$f->isDot() && $f->isDir()) {
- self::copyDirectory($f->getRealPath(), "$dest/$f");
- }
- }
- }
- public static function deleteFilesMatching(string $dir, callable $condition): void
- {
- if (class_exists(LocalFilesystemAdapter::class)) {
- // Flysystem 2+
- $adapter = new LocalFilesystemAdapter(getcwd());
- $fs = new Filesystem($adapter);
- $contents = $fs->listContents(ltrim($dir, '/'));
- } else {
- // v1
- $adapter = new \League\Flysystem\Adapter\Local(getcwd()); // @phpstan-ignore-line
- $fs = new Filesystem($adapter); // @phpstan-ignore-line
- $dir = str_replace($adapter->getPathPrefix(), '', $dir); // @phpstan-ignore-line
- $contents = $fs->listContents(ltrim($dir, '/'));
- }
- foreach ($contents as $file) {
- // Flysystem v1 had items as arrays; v2 has objects.
- // v2 allows ArrayAccess, but when we drop v1 support (Laravel <9), we should switch to methods
- if ($file['type'] == 'file' && $condition($file) === true) {
- $fs->delete($file['path']);
- }
- }
- }
- /**
- * @param mixed $value
- *
- * @return bool
- */
- public static function isInvokableObject($value): bool
- {
- return is_object($value) && method_exists($value, '__invoke');
- }
- /**
- * Returns the route method or closure as an instance of ReflectionMethod or ReflectionFunction
- *
- * @param array $routeControllerAndMethod
- *
- * @return ReflectionFunctionAbstract
- * @throws ReflectionException
- *
- */
- public static function getReflectedRouteMethod(array $routeControllerAndMethod): ReflectionFunctionAbstract
- {
- [$class, $method] = $routeControllerAndMethod;
- if ($class instanceof Closure) {
- return new ReflectionFunction($class);
- }
- return (new ReflectionClass($class))->getMethod($method);
- }
- public static function isArrayType(string $typeName)
- {
- return Str::endsWith($typeName, '[]');
- }
- public static function getBaseTypeFromArrayType(string $typeName)
- {
- return substr($typeName, 0, -2);
- }
- public static function getModelFactory(string $modelName, array $states = [], array $relations = [])
- {
- // Factories are usually defined without the leading \ in the class name,
- // but the user might write it that way in a comment. Let's be safe.
- $modelName = ltrim($modelName, '\\');
- if (method_exists($modelName, 'factory')) { // Laravel 8 type factory
- /** @var \Illuminate\Database\Eloquent\Factories\Factory $factory */
- $factory = call_user_func_array([$modelName, 'factory'], []);
- foreach ($states as $state) {
- if (method_exists(get_class($factory), $state)) {
- $factory = $factory->$state();
- }
- }
- foreach ($relations as $relation) {
- // Support nested relations; see https://github.com/knuckleswtf/scribe/pull/364 for a detailed example
- // Example: App\Models\Author with=posts.categories
- $relationChain = explode('.', $relation);
- $relationVector = array_shift($relationChain);
- $relationModel = get_class((new $modelName())->{$relationVector}()->getModel());
- $relationType = get_class((new $modelName())->{$relationVector}());
- $factoryChain = empty($relationChain)
- ? call_user_func_array([$relationModel, 'factory'], [])
- : Utils::getModelFactory($relationModel, $states, $relationChain);
- if ($relationType === BelongsToMany::class) {
- $pivot = method_exists($factory, 'pivot' . $relationVector)
- ? $factory->{'pivot' . $relationVector}()
- : [];
- $factory = $factory->hasAttached($factoryChain, $pivot, $relationVector);
- } else {
- $factory = $factory->has($factoryChain, $relationVector);
- }
- }
- } else {
- try {
- $factory = factory($modelName);
- } catch (Throwable $e) {
- if (Str::contains($e->getMessage(), "Call to undefined function Knuckles\\Scribe\\Tools\\factory()")) {
- throw CouldntFindFactory::forModel($modelName);
- } else {
- throw $e;
- }
- }
- if (count($states)) {
- $factory = $factory->states($states);
- }
- }
- return $factory;
- }
- public static function isLumen(): bool
- {
- // See https://github.com/laravel/lumen-framework/blob/99330e6ca2198e228f5894cf84d843c2a539a250/src/Application.php#L163
- $app = app();
- if ($app
- && is_callable([$app, 'version'])
- && Str::startsWith($app->version(), 'Lumen')
- ) {
- return true;
- }
- return false;
- }
- }
|