mirror of
https://github.com/barryvdh/laravel-ide-helper.git
synced 2026-08-18 10:07:12 +00:00
Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a4ab0a5969 | ||
|
|
b0b324b8cc |
@@ -52,17 +52,19 @@ The Illuminate/Support/helpers.php is already set-up, but you can add/remove you
|
||||
### Work in progress: Model docs
|
||||
|
||||
If you don't want to write your properties yourself, you can use the (experimental) command `ide-helper:models` to generate
|
||||
phpDocs, based on table columns, relations and getters/setters. Very alpha, so please provide feedback if you want.
|
||||
Docs are written to a phpfile in the root of the project, so you can move the docs to the real model.
|
||||
phpDocs, based on table columns, relations and getters/setters. Still in beta, so please provide feedback if you want.
|
||||
Docs are written to a phpfile (_ide_helper_models.php) in the root of the project, so you can move the docs to the real model.
|
||||
|
||||
For now, only models in app/models are scanned. The optional argument tells what models to use.
|
||||
You can now also write the comments directly to your Model file, using the -W argument. Please make sure to backup your models, before writing the info.
|
||||
It should keep the existing comments and only append new properties/methods.
|
||||
|
||||
For now, only models in app/models are scanned. The optional argument tells what models to use (also outside app/models).
|
||||
`php artisan ide-helper:models Post,User`
|
||||
|
||||
Note: With namespaces, uses \\ instead of \
|
||||
`php artisan ide-helper:models API\\User`
|
||||
|
||||
This creates a file with the phpDocs for each Model. You should check and change them to be more accurate.
|
||||
It doesn't know if datetimes are returned as string or DateTime/Carbon, but I assume they are.
|
||||
Also, all relations are Eloquent|Eloquent[] by default, you can change them to the actual Model.
|
||||
After copying the phpdocs to your model, you can clear the file, so your IDE only uses the real source.
|
||||
|
||||
|
||||
@@ -13,6 +13,10 @@ use Illuminate\Console\Command;
|
||||
use Symfony\Component\Console\Input\InputOption;
|
||||
use Symfony\Component\Console\Input\InputArgument;
|
||||
use Symfony\Component\ClassLoader\ClassMapGenerator;
|
||||
use phpDocumentor\Reflection\DocBlock;
|
||||
use phpDocumentor\Reflection\DocBlock\Context;
|
||||
use phpDocumentor\Reflection\DocBlock\Tag;
|
||||
use phpDocumentor\Reflection\DocBlock\Serializer as DocBlockSerializer;
|
||||
/**
|
||||
* A command to generate autocomplete information for your IDE
|
||||
*
|
||||
@@ -37,6 +41,9 @@ class ModelsCommand extends Command {
|
||||
protected $properties = array();
|
||||
protected $methods = array();
|
||||
|
||||
protected $write = false;
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* Execute the console command.
|
||||
@@ -46,18 +53,22 @@ class ModelsCommand extends Command {
|
||||
public function fire()
|
||||
{
|
||||
$filename = $this->option('filename');
|
||||
$this->write = $this->option('write');
|
||||
$model = $this->argument('model');
|
||||
|
||||
$content = $this->generateDocs($model);
|
||||
|
||||
$written = \File::put($filename, $content);
|
||||
|
||||
if($written !== false){
|
||||
$this->info("Model information was written to $filename");
|
||||
}else{
|
||||
$this->error("Failed to write model information to $filename");
|
||||
if(!$this->write){
|
||||
$written = \File::put($filename, $content);
|
||||
if($written !== false){
|
||||
$this->info("Model information was written to $filename");
|
||||
}else{
|
||||
$this->error("Failed to write model information to $filename");
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -83,6 +94,7 @@ class ModelsCommand extends Command {
|
||||
{
|
||||
return array(
|
||||
array('filename', 'F', InputOption::VALUE_OPTIONAL, 'The path to the helper file', '_ide_helper_models.php'),
|
||||
array('write', 'W', InputOption::VALUE_NONE, 'Write to Model file'),
|
||||
);
|
||||
}
|
||||
|
||||
@@ -291,16 +303,31 @@ class ModelsCommand extends Command {
|
||||
*/
|
||||
protected function createPhpDocs($class){
|
||||
|
||||
if(strpos($class, '\\') !== false){
|
||||
$parts = explode('\\', $class);
|
||||
$class = array_pop($parts);
|
||||
$namespace = implode($parts, '\\');
|
||||
}else{
|
||||
$namespace = '';
|
||||
$reflection = new \ReflectionClass($class);
|
||||
$namespace = $reflection->getNamespaceName();
|
||||
$originalDoc = $reflection->getDocComment();
|
||||
$phpdoc = new DocBlock($reflection, new Context($namespace));
|
||||
|
||||
if(!$phpdoc->getText()){
|
||||
$phpdoc->setText("Generated properties for $class");
|
||||
}
|
||||
$output = "namespace $namespace{\n";
|
||||
$output .= "\t/**\n\t *\n\t * Generated properties for $class\n\t *\n";
|
||||
|
||||
$properties = array();
|
||||
$methods = array();
|
||||
foreach($phpdoc->getTags() as $tag){
|
||||
$name = $tag->getName();
|
||||
if($name == "property" || $name == "property-read" || $name == "property-write"){
|
||||
$properties[] =$tag->getVariableName();
|
||||
}elseif($name == "method"){
|
||||
$methods[] = $tag->getMethodName();
|
||||
}
|
||||
}
|
||||
|
||||
foreach($this->properties as $name => $property){
|
||||
$name = "\$$name";
|
||||
if(in_array($name, $properties)){
|
||||
continue;
|
||||
}
|
||||
if($property['read'] && $property['write']){
|
||||
$attr = 'property';
|
||||
}elseif($property['write']){
|
||||
@@ -308,16 +335,43 @@ class ModelsCommand extends Command {
|
||||
}else{
|
||||
$attr = 'property-read';
|
||||
}
|
||||
$type = $property['type'];
|
||||
$output .= "\t * @$attr $type \$$name \n";
|
||||
$tag = Tag::createInstance("@{$attr} {$property['type']} {$name}", $phpdoc);
|
||||
$phpdoc->appendTag($tag);
|
||||
}
|
||||
|
||||
foreach($this->methods as $name => $method){
|
||||
$type = $method['type'];
|
||||
$output .= "\t * @method $type $name() \n";
|
||||
if(in_array($name, $methods)){
|
||||
continue;
|
||||
}
|
||||
$name = "$name()";
|
||||
$tag = Tag::createInstance("@method {$method['type']} {$name}", $phpdoc);
|
||||
$phpdoc->appendTag($tag);
|
||||
}
|
||||
|
||||
$output .= "\t *\n\t */\n\tclass $class {}\n}\n\n";
|
||||
$serializer = new DocBlockSerializer();
|
||||
$serializer->getDocComment($phpdoc);
|
||||
$docComment = $serializer->getDocComment($phpdoc);
|
||||
|
||||
|
||||
if($this->write){
|
||||
$filename = $reflection->getFileName();
|
||||
$contents = \File::get($filename);
|
||||
if($originalDoc){
|
||||
$contents = str_replace($originalDoc, $docComment, $contents);
|
||||
}else{
|
||||
$needle = "class {$class}";
|
||||
$replace = "{$docComment}\nclass {$class}";
|
||||
$pos = strpos($contents,$needle);
|
||||
if ($pos !== false) {
|
||||
$contents = substr_replace($contents,$replace,$pos,strlen($needle));
|
||||
}
|
||||
}
|
||||
if(\File::put($filename, $contents)){
|
||||
$this->info('Written new phpDocBlock to '.$filename);
|
||||
}
|
||||
}
|
||||
|
||||
$output = "namespace {$namespace}{\n{$docComment}\n\tclass {$class} {}\n}\n\n";
|
||||
return $output;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user