加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 站长学院 > PHP教程 > 正文

将PHP接口导出到Typescript接口,反之亦然?

发布时间:2020-12-13 16:58:24 所属栏目:PHP教程 来源:网络整理
导读:我正在尝试使用Typescript,根据我目前的合同,我在 PHP中编写后端代码. 在几个项目中,我为后端代码提供的AJAX响应编写了Typescript接口,以便前端开发人员(有时也是我,有时是其他人)知道期待什么并获得类型检查等等. 在编写了一些这样的后端服务之后,似乎响应
我正在尝试使用Typescript,根据我目前的合同,我在 PHP中编写后端代码.

在几个项目中,我为后端代码提供的AJAX响应编写了Typescript接口,以便前端开发人员(有时也是我,有时是其他人)知道期待什么并获得类型检查等等.

在编写了一些这样的后端服务之后,似乎响应的接口和相关类也应该存在于PHP方面.这让我觉得如果我能用两种语言中的一种编写它们并运行一些构建时工具(我会在使用Typescript编译器运行之前使用gulp任务调用它)来导出这些与其他语言的接口.

这样的事情存在吗?可能吗?实际的?

(我意识到PHP不是强类型的,但如果接口是用PHP编写的,那么可能会有一些类型提示,例如导出器识别并转移到Typescript的文档字符串.)

解决方法

您可以使用惊人的 nikic/PHP-Parser来创建一个工具,用于将选定的PHP类(在phpDoc中具有@TypeScriptMe字符串的类)转换为非常容易的TypeScript接口.下面的脚本非常简单,但我认为你可以扩展它,你可以自动生成TypeScript接口,并可能通过git跟踪更改.

对于此输入:

<?php
/**
 * @TypeScriptMe
 */
class Person
{
    /**
     * @var string
     */
    public $name;

    /**
     * @var int
     */
    public $age;

    /**
     * @var stdClass
     */
    public $mixed;

    /**
     * @var string
     */
    private $propertyIsPrivateItWontShow;
}

class IgnoreMe {

    public function test() {

    }
}

你会得到:

interface Person {
  name: string,age: number,mixed: any
}

源代码

index.php文件:

<?php

namespace TypeScript {

    class Property_
    {
        /** @var string */
        public $name;
        /** @var string */
        public $type;

        public function __construct($name,$type = "any")
        {
            $this->name = $name;
            $this->type = $type;
        }

        public function __toString()
        {
            return "{$this->name}: {$this->type}";
        }
    }

    class Interface_
    {
        /** @var string */
        public $name;
        /** @var Property_[] */
        public $properties = [];

        public function __construct($name)
        {
            $this->name = $name;
        }

        public function __toString()
        {
            $result = "interface {$this->name} {n";
            $result .= implode(",n",array_map(function ($p) { return "  " . (string)$p;},$this->properties));
            $result .= "n}";
            return $result;
        }
    }
}

namespace MyParser {

    ini_set('display_errors',1);
    require __DIR__ . "/vendor/autoload.php";

    use PhpParser;
    use PhpParserNode;
    use TypeScript;

    class Visitor extends PhpParserNodeVisitorAbstract
    {
        private $isActive = false;

        /** @var TypeScript/Interface_[] */
        private $output = [];

        /** @var TypeScriptInterface_ */
        private $currentInterface;

        public function enterNode(Node $node)
        {
            if ($node instanceof PhpParserNodeStmtClass_) {

                /** @var PhpParserNodeStmtClass_ $class */
                $class = $node;
                // If there is "@TypeScriptMe" in the class phpDoc,then ...
                if ($class->getDocComment() && strpos($class->getDocComment()->getText(),"@TypeScriptMe") !== false) {
                    $this->isActive = true;
                    $this->output[] = $this->currentInterface = new TypeScriptInterface_($class->name);
                }
            }

            if ($this->isActive) {
                if ($node instanceof PhpParserNodeStmtProperty) {
                    /** @var PhpParserNodeStmtProperty $property */
                    $property = $node;

                    if ($property->isPublic()) {
                        $type = $this->parsePhpDocForProperty($property->getDocComment());
                        $this->currentInterface->properties[] = new TypeScriptProperty_($property->props[0]->name,$type);
                    }
                }
            }
        }

        public function leaveNode(Node $node)
        {
            if ($node instanceof PhpParserNodeStmtClass_) {
                $this->isActive = false;
            }
        }

        /**
         * @param PhpParserComment|null $phpDoc
         */
        private function parsePhpDocForProperty($phpDoc)
        {
            $result = "any";

            if ($phpDoc !== null) {
                if (preg_match('/@var[ t]+([a-z0-9]+)/i',$phpDoc->getText(),$matches)) {
                    $t = trim(strtolower($matches[1]));

                    if ($t === "int") {
                        $result = "number";
                    }
                    elseif ($t === "string") {
                        $result = "string";
                    }
                }
            }

            return $result;
        }

        public function getOutput()
        {
            return implode("nn",array_map(function ($i) { return (string)$i;},$this->output));
        }
    }

    ### Start of the main part


    $parser = new PhpParserParser(new PhpParserLexerEmulative);
    $traverser = new PhpParserNodeTraverser;
    $visitor = new Visitor;
    $traverser->addVisitor($visitor);

    try {
        // @todo Get files from a folder recursively
        //$code = file_get_contents($fileName);

        $code = <<<'EOD'
<?php
/**
 * @TypeScriptMe
 */
class Person
{
    /**
     * @var string
     */
    public $name;

    /**
     * @var int
     */
    public $age;

    /**
     * @var stdClass
     */
    public $mixed;

    /**
     * @var string
     */
    private $propertyIsPrivateItWontShow;
}

class IgnoreMe {

    public function test() {

    }
}

EOD;

        // parse
        $stmts = $parser->parse($code);

        // traverse
        $stmts = $traverser->traverse($stmts);

        echo "<pre><code>" . $visitor->getOutput() . "</code></pre>";

    } catch (PhpParserError $e) {
        echo 'Parse Error: ',$e->getMessage();
    }
}

composer.json

{
    "name": "experiment/experiment","description": "...","homepage": "http://example.com","type": "project","license": ["Unlicense"],"authors": [
        {
            "name": "MrX","homepage": "http://example.com"
        }
    ],"require": {
        "php": ">= 5.4.0","nikic/php-parser": "^1.4"
    },"minimum-stability": "stable"
}

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读