基于thinkphp的模型文件自动注释生成器

thinkphp 一个模型对应一个数据表,所以数据表里面字段也是模型的一些属性,但是因为php是动态语言,模型里面的属性并不能直观的看到,出了数据表里面的字段以外的属性,模型其实还包含了通过getXXXAttr方法定义的属性,还有关联关系定义的属性比如hasOne,hasMany等等。虽然thinkphp支持了通过访问数组的形式访问模型的属性,但是还是不直观,另一个是不知道模型属性的字段含义,如果手动维护容易遗漏和出错,所以我基于thinkphp5.1开发了模型属性自动生成器。

仓库地址:https://github.com/xiaobai1993/model_property_helper,支持composer 安装。

功能介绍

  • 基于thinkphp的command命令类,提供基本的交互。
  • 自动更新模型的属性,同时生成注释。包括数据表字段、获取器定义,关联关系定义。
  • 支持在同一个目录下的所有的模型统一更新,也支持单个模型文件更新。
  • 根据数据表创建的语句中字段的注释或者php文件中的注释,自动为属性增加注释信息。

源码如下

<?php
/**
 * Created by PhpStorm.
 * User: guodong
 * Date: 2020/4/2
 * Time: 下午2:35
 */

namespace app\common\command\code;


use think\console\Command;
use think\console\Input;
use think\console\input\Argument;
use think\console\input\Option;
use think\console\Output;
use think\Loader;
use think\Model;

class ModelProperty extends Command
{
    protected static $tabs = "   ";

    protected function configure()
    {
        $this->setName('amp')
            ->addArgument('model', Argument::OPTIONAL, "模型的名字")
            ->addOption('override', null, Option::VALUE_OPTIONAL, '是否强制覆盖')
            ->setDescription('模型自动增加属性注释');
    }

    protected function execute(Input $input, Output $output)
    {
        $modelPath = $input->getArgument('model');
        $path = APP_PATH . $modelPath;
        if (is_dir($path)) {
            foreach (scandir($path) as $value) {
                if ($value == '.' || $value == '..') {
                    continue;
                }
                $filePath = $path . "/" . $value;
                if (is_file($filePath)) {
                    try {
                        $this->parseSingleFile($filePath);
                    } catch (\Exception $exception) {
                        echo $exception->getMessage();
                    }
                } else {
                    continue;//目录嵌套暂时不处理
                }
            }
        } elseif (is_file($path)) {
            $this->parseSingleFile($path);
        } else {
            exception("$path 文件不存在");
        }
    }


    public function parseSingleFile($filePath)
    {
        $fileContent = file_get_contents($filePath);
        if (preg_match('/namespace (.*?);/', $fileContent, $spaceMatch)) {
            $spaceName = $spaceMatch[1];
            if (preg_match('/class (.*?) extends .*?Model/', $fileContent, $classMatch)) {
                $className = $classMatch[1];
                $class = $spaceName . "\\" . $className;
                if (class_exists($class)) {
                    $instance = new $class();
                    if ($instance instanceof Model) {
                        $comments = [];
                        $this->parseTableAttr($instance, $comments);
                        $this->parseClass($instance, $comments);
                        $classComments = "\n\n/**\n" . implode("\n", $comments) . "\n*/\n\n";
                        $result = preg_replace('/^([\s\S]*;)([\s\S]*?)(class.*?extends[\s\S]*)$/', "$1$classComments$3", $fileContent);
                        file_put_contents($filePath, $result);
                    } else {
                        exception("$class 不是模型类");
                    }
                } else {
                    exception("$class 不存在");
                }
            } else {
                exception("未能找到" . basename($filePath) . "类的名字");
            }

        } else {
            exception("未能找到" . basename($filePath) . "类的命名空间");
        }
    }

    /**
     * 扫码数据表的属性
     * @param Model $model
     * @param $comments
     * @return string
     */
    protected function parseTableAttr(Model $model, &$comments)
    {
        $tableSql = $model->query("show create table " . $model->getTable())[0]['Create Table'];
        preg_match_all("#`(.*?)`(.*?) COMMENT\s*'(.*?)',#", $tableSql, $matches);
        $fields = $matches[1];
        $cts = $matches[3];
        if (preg_match('/COMMENT=\'(.*?)\'$/', $tableSql, $m2)) {
            $comments[] = " * " . $m2[1];
        }
        for ($i = 0; $i < count($matches[0]); $i++) {
            $comments[] = " * @property $" . $fields[$i] . self::$tabs . $cts[$i];
        }
    }

    /**
     * 获取模型文件的方法
     * @param $model
     * @param $comments
     */
    protected function parseClass(Model $model, &$comments)
    {
        $classReflect = new \ReflectionClass($model);
        $tableFields = $model->getTableFields();
        $filePath = $classReflect->getFileName();
        if ($filePath) {
            $content = file_get_contents($filePath);
        } else {
            $content = "";
        }
        $methods = $classReflect->getMethods(\ReflectionMethod::IS_PUBLIC);
        foreach ($methods as $method) {
            if ($method->isAbstract() || $method->isStatic()) {
                continue;
            }
            $methodName = $method->getName();
            //只查询本类文件存在的
            if ($content && strpos($content, "function " . $methodName)) {
                if (preg_match('/get(.*?)Attr/', $methodName, $match)) { //属性
                    $propertyName = Loader::parseName($match[1], 0, false);
                    if (in_array($propertyName, $tableFields)) {
                        continue;
                    }
                    $comments[] = " * @property $" . $propertyName . self::$tabs . $this->getDocTitle($method->getDocComment());
                } else {
                    $startLine = $method->getStartLine();
                    $endLine = $method->getEndLine();
                    $methodContent = $this->readFile($filePath, $startLine, $endLine);
                    if (preg_match('/return.*?->(.*?)\([,]?(.*?)::class,/', $methodContent, $match)) {
                        $relation = $match[1];
                        $relationModel = $match[2];
                        $propertyName = Loader::parseName($methodName, 0, false);
                        if ($relation == 'hasMany' || $relation == 'belongsToMany') {
                            $comments[] = " * @property ". $relationModel . "[]" . " $" . $propertyName . self::$tabs . $this->getDocTitle($method->getDocComment());
                        } else {
                            $comments[] = " * @property " .$relationModel . " $" . $propertyName . self::$tabs . $this->getDocTitle($method->getDocComment());
                        }
                    }
                }
            } else {
                continue;
            }
        }
    }

    /**
     * 读文件
     * @param $file_name
     * @param $start
     * @param $end
     * @return string
     */
    protected function readFile($file_name, $start, $end)
    {
        $limit = $end - $start;
        $f = new \SplFileObject($file_name, 'r');
        $f->seek($start);
        $ret = "";
        for ($i = 0; $i < $limit; $i++) {
            $ret .= $f->current();
            $f->next();
        }
        return $ret;
    }

    /**
     * 获取类或者方法注释的标题,第一行
     * @param $docComment
     * @return string
     */
    protected function getDocTitle($docComment)
    {
        if ($docComment !== false) {
            $docCommentArr = explode("\n", $docComment);
            $comment = trim($docCommentArr[1]);
            return trim(substr($comment, strpos($comment, '*') + 1));
        }
        return '';
    }

}

案例测试

# 整个目录的模型都更新了
php think amp dbase/model/ 

随便拿几个看看

image.png
image.png

可以发现生成了较为完善的注释信息,对于关联信息也根据关联关系指定是对象还是对象数组。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 212,718评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,683评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,207评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,755评论 1 284
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,862评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,050评论 1 291
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,136评论 3 410
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,882评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,330评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,651评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,789评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,477评论 4 333
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,135评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,864评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,099评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,598评论 2 362
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,697评论 2 351

推荐阅读更多精彩内容

  • 作为一名PHP后端开发工程师,提供给前端接口是必须的,但是作为程序员我们最痛恨自己写文档,最恨别人不写文档。对于开...
    鸿雁长飞光不度阅读 1,703评论 4 2
  • 1、PHP语言的一大优势是跨平台,什么是跨平台?一、PHP基础: PHP的运行环境最优搭配为Apache+MySQ...
    __书山有路__阅读 1,479评论 0 15
  • 理工寝室商店-微信小程序 疑问小结 当时在XAMMP下mysql目录下的bin下 php -v 不起作用.到ph...
    这个超人不会飞阿阅读 1,698评论 1 1
  • Eloquent: 关联模型 简介 数据库中的表经常性的关联其它的表。比如,一个博客文章可以有很多的评论,或者一个...
    Dearmadman阅读 17,293评论 6 16
  • .数据库 数据库的发展: 文件系统(使用磁盘文件来存储数据)=>第一代数据库(出现了网状模型,层次模型的数据库)=...
    小Q逛逛阅读 960评论 0 2