返回顶部
首页 > 资讯 > 精选 >Nacos解决laravel多环境下配置切换的案例
  • 290
分享到

Nacos解决laravel多环境下配置切换的案例

2023-06-06 10:06:32 290人浏览 薄情痞子
摘要

这篇文章主要介绍了Nacos解决laravel多环境下配置切换的案例,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让小编带着大家一起了解一下。前言对于应用程序运行的环境来说,不同的环境有不同的配置通常是

这篇文章主要介绍了Nacos解决laravel多环境下配置切换的案例,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让小编带着大家一起了解一下。

前言

对于应用程序运行的环境来说,不同的环境有不同的配置通常是很有用的。例如,你可能希望在本地使用的缓存驱动不同于生产服务器所使用的缓存驱动。

痛点

  • .env 配置不能区分多环境(开发测试,生产)

  • .env 配置共享太麻烦(团队局域网环境)

  • 配置不能实时管理,增删改配置

  • 自动化部署配置 .env 文件过于繁琐

Nacos 简介

Nacos 是阿里巴巴最新开源项目,核心定位是 “一个更易于帮助构建云原生应用的动态服务发现、配置和服务管理平台”,项目地址:nacos.io/zh-cn/

应用

这里主要使用了 Nacos 的配置管理,并没有使用到动态服务等功能。原理也很简单,通过接口直接修改 .env 文件。Nacos 服务可以直接使用使用阿里云提供的 应用配置管理,无须安装。链接如下: acmnext.console.aliyun.com/

代码

<?PHPnamespace App\Console\Commands;use GuzzleHttp\Client;use Illuminate\Console\Command;use Illuminate\Support\Facades\Artisan;use Illuminate\Support\Facades\Validator;class NacosTools extends Command{        protected $signature = 'nacos {action?}';    private $accessKey;    private $secreTKEy;    private $endpoint = 'acm.aliyun.com';    private $namespace;    private $dataid;    private $group;    private $port = 8080;    private $client;    private $serverUrl;        protected $description = 'Nacos 管理工具';        public function __construct()    {        parent::__construct();    }        public function handle()    {        $this->accessKey = env('NACOS_ACCESS_KEY');        $this->secretKey = env('NACOS_SECRET_KEY');        $this->endpoint = env('NACOS_ENDPOINT');        $this->namespace = env('NACOS_NAMESPACE');        $this->port = env('NACOS_PORT', $this->port);        $this->dataId = env('NACOS_DATA_ID');        $this->group = env('NACOS_GROUP');        if (!$this->validate()) {            $this->error('请检查配置参数');            return;        }        $this->client = new Client(['verify' => false]);        $this->info('Nacos 配置工具');        $actions = [            '获取配置',            '发布配置',            '删除配置',        ];        if (is_null($this->argument('action'))) {            $action = $this->choice('请选择操作',                $actions,                $actions[0]);        } else {            if (in_array($this->argument('action'), array_keys($actions))) {                $action = $actions[$this->argument('action')];            } else {                $action = $this->choice('请选择操作',                    $actions,                    $actions[0]);            }        }        $this->do($action);    }    public function do($action = '获取配置')    {        switch ($action) {            default:            case '获取配置':                $config = $this->getConfig();                if ($config) {                    file_put_contents('.env', $config);                    $this->info('获取配置成功');                } else {                    $this->error('获取配置失败');                }                break;            case '发布配置':                if ($this->publishConfig()) {                    $this->info('发布配置成功');                } else {                    $this->error('发布配置失败');                }                break;            case '删除配置':                if ($this->removeConfig()) {                    $this->info('删除配置成功');                } else {                    $this->error('删除配置失败');                }                break;        }    }        private function validate()    {        $data = [            'accessKey' => $this->accessKey,            'secretKey' => $this->secretKey,            'endpoint'  => $this->endpoint,            'namespace' => $this->namespace,            'dataId'    => $this->dataId,            'group'     => $this->group,        ];        $rules = [            'accessKey' => 'required',            'secretKey' => 'required',            'endpoint'  => 'required',            'namespace' => 'required',            'dataId'    => 'required',            'group'     => 'required',        ];        $messages = [            'accessKey.required' => '请填写`.env`配置 NACOS_ACCESS_KEY',            'secretKey.required' => '请填写`.env`配置 NACOS_SECRET_KEY',            'endpoint.required'  => '请填写`.env`配置 NACOS_ENDPOINT',            'namespace.required' => '请填写`.env`配置 NACOS_NAMESPACE',            'dataId.required'    => '请填写`.env`配置 NACOS_DATA_ID',            'group.required'     => '请填写`.env`配置 NACOS_GROUP',        ];        $validator = Validator::make($data, $rules, $messages);        if ($validator->fails()) {            foreach ($validator->getMessageBag()->toArray() as $item) {                foreach ($item as $value) {                    $this->error($value);                }            }            return false;        }        return true;    }        private function getConfig()    {        $acmHost = str_replace(['host', 'port'], [$this->getServer(), $this->port],            'http://host:port/diamond-server/config.co');        $query = [            'dataId' => urlencode($this->dataId),            'group'  => urlencode($this->group),            'tenant' => urlencode($this->namespace),        ];        $headers = $this->getHeaders();        $response = $this->client->get($acmHost, [            'headers' => $headers,            'query'   => $query,        ]);        if ($response->getReasonPhrase() == 'OK') {            return $response->getBody()->getContents();        } else {            return false;        }    }        public function publishConfig()    {        $acmHost = str_replace(            ['host', 'port'],            [$this->getServer(), $this->port],            'http://host:port/diamond-server/basestone.do?method=syncUpdateAll');        $headers = $this->getHeaders();        $fORMParams = [            'dataId'  => urlencode($this->dataId),            'group'   => urlencode($this->group),            'tenant'  => urlencode($this->namespace),            'content' => file_get_contents('.env'),        ];        $response = $this->client->post($acmHost, [            'headers'     => $headers,            'form_params' => $formParams,        ]);        $result = JSON_decode($response->getBody()->getContents(), 1);        return $result['message'] == 'OK';    }    public function removeConfig()    {        $acmHost = str_replace(['host', 'port'], [$this->getServer(), $this->port],            'http://host:port/diamond-server//datum.do?method=deleteAllDatums');        $headers = $this->getHeaders();        $formParams = [            'dataId' => urlencode($this->dataId),            'group'  => urlencode($this->group),            'tenant' => urlencode($this->namespace),        ];        $response = $this->client->post($acmHost, [            'headers'     => $headers,            'form_params' => $formParams,        ]);        $result = json_decode($response->getBody()->getContents(), 1);        return $result['message'] == 'OK';    }        private function getServer()    {        if ($this->serverUrl) {            return $this->serverUrl;        }        $serverHost = str_replace(            ['host', 'port'],            [$this->endpoint, $this->port],            'http://host:port/diamond-server/diamond');        $response = $this->client->get($serverHost);        return $this->serverUrl = rtrim($response->getBody()->getContents(), php_EOL);    }        private function getHeaders()    {        $headers = [            'Diamond-Client-AppName' => 'ACM-SDK-PHP',            'Client-Version'         => '0.0.1',            'Content-Type'           => 'application/x-www-form-urlencoded; charset=utf-8',            'exConfigInfo'           => 'true',            'Spas-AccessKey'         => $this->accessKey,            'timeStamp'              => round(microtime(true) * 1000),        ];        $headers['Spas-Signature'] = $this->getSign($headers['timeStamp']);        return $headers;    }        private function getSign($timeStamp)    {        $signStr = $this->namespace.'+';        if (is_string($this->group)) {            $signStr .= $this->group."+";        }        $signStr = $signStr.$timeStamp;        return base64_encode(hash_hMac(            'sha1',            $signStr,            $this->secretKey,            true        ));    }}

使用示例

  1. 注册账号,开通服务这些就不说了

  2. .env 添加配置项 NACOS_ACCESS_KEY NACOS_SECRET_KEY

  3. php artisan nacos 0 获取配置

  4. php artisan nacos 1 发布配置

  5. php artisan nacos 2 删除配置

配置项说明

NACOS_ENDPOINT= #nacos节点 如使用阿里云服务 即:acm.aliyun.comNACOS_DATA_ID= #项目ID 可以填项目名NACOS_GROUP= #分组ID 这里可以用于区分环境 建议 local production test 等值NACOS_NAMESPACE= # 命名空间 建议用来区分服务器 server-A server-BNACOS_ACCESS_KEY= #阿里云access_key 建议使用子账号access_keyNACOS_SECRET_KEY= #阿里云secret_key 建议使用子账号secret_key

感谢你能够认真阅读完这篇文章,希望小编分享的“Nacos解决laravel多环境下配置切换的案例”这篇文章对大家有帮助,同时也希望大家多多支持编程网,关注编程网精选频道,更多相关知识等着你来学习!

--结束END--

本文标题: Nacos解决laravel多环境下配置切换的案例

本文链接: https://lsjlt.com/news/246449.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作