php-micro-file-server/app/controller/Index.php

51 lines
1.3 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
namespace app\controller;
use think\Request;
use think\Env;
class Index
{
public function index(Request $request)
{
return json([
'code' => 200,
'msg' => 'success',
'data' => [
'name' => 'thinkphp'
]
]);
}
public function upload()
{
$file = request()->file('file');
$trueName = $file->getOriginalName();
$env = new Env();
// thinkphp里面无法获取SERVER_ADDR变量会被nacos拦截替换
// 服务暴露的端口
$servicePort = $env->get('SERVICE_PORT', 8000);
// 服务可以访问到的IP
$serverIP = $env->get('SERVER_ADDR');
// 允许跨域的域名
$originUrl = $env->get('ORIGIN_URL', $serverIP);
// 组装保存路径
$savename = \think\facade\Filesystem::disk('upload')->putFile('uploads', $file);
$savename = str_replace('\\', '/', $savename);
return json([
'code' => 200,
'msg' => null,
'data' => [
"name" => $trueName,
"url" => '//' . $originUrl . '/' . $savename,
// "url" => 'http://192.168.1.105:8080/file/' . $savename,
],
// 'env' => $env->get(),
]);
}
}