PHP实现服务端签名阿里云OSS直传实践

服务器 服务器产品
服务端签名直传是指在服务端生成签名,将签名返回给客户端,然后客户端使用签名上传文件到OSS。由于服务端签名直传无需将访问密钥暴露在前端页面,相比客户端签名直传具有更高的安全性。本文介绍如何进行服务端签名直传。

概述

本教程介绍如何在Web端通过表单上传方式直接上传数据到OSS。Web端常见的上传方法是用户在浏览器或App端上传文件到应用服务器,应用服务器再把文件上传到OSS。这种方式需通过应用服务器中转,传输效率明显低于数据直传至OSS的方式。

这里使用在服务端完成签名,然后通过表单直传数据到OSS

服务端签名直传

服务端签名直传是指在服务端生成签名,将签名返回给客户端,然后客户端使用签名上传文件到OSS。由于服务端签名直传无需将访问密钥暴露在前端页面,相比客户端签名直传具有更高的安全性。本文介绍如何进行服务端签名直传。

请求流程

服务端签名直传流程如下图所示

图片来源:阿里云图片来源:阿里云

获取上传策略签名

/**
 * @desc 获取上传策略签名
 * @param array $param
 * @return array
 * @author Tinywan(ShaoBo Wan)
 */
public static function getUploadPolicy(array $param): array
{
    $param['type'] = 'images';
    $config = [
        'accessKeyId' => 'xxxxxxxxxxxxxxx',
        'accessKeySecret' => 'xxxxxxxxxxxxxxxxxxxxxxxxxxx',
        'callbackUrl' => 'https://oss.tinywan.com/aliyun/oss-upload-callback',
        'images' => [
            'bucket' => 'images',
            'host' => 'https://images.tinywan.com',
            'endpoint' => 'oss-cn-hangzhou.aliyuncs.com',
            'ContentLengthMin' => 10,
            'ContentLengthMax' => 20 * 1024 * 1024,
        ]
    ];
    $bucket = $config[$param['type']];
    // 文件路径和文件名
    $dir = self::PROJECT_BUCKET . DIRECTORY_SEPARATOR . env('env_name') . DIRECTORY_SEPARATOR . self::getDirectoryPath($param['type'], $param['dirname']);
    $key = $dir . self::getRandomFilename($param['ext']);
    // 过期时间
    $expiration = self::getExpireTime(self::EXPIRE_TIME);

    // 参数设置
    $policyParams = [
        'expiration' => $expiration,
        'conditions' => [
            ['starts-with', '$key', $dir],
            ['content-length-range', $bucket['ContentLengthMin'], $bucket['ContentLengthMax']]
        ]
    ];
    $policyBase64 = self::getPolicyBase64($policyParams);
    $signature = self::getSignature($policyBase64, $config['accessKeySecret']);

    // 回调
    $callbackParam = [
        'callbackUrl' => $config['callbackUrl'],
        'callbackBody' => 'filename=${object}&size=${size}&mimeType=${mimeType}&height=${imageInfo.height}&width=${imageInfo.width}',
        'callbackBodyType' => 'application/x-www-form-urlencoded',
    ];
    $callbackString = json_encode($callbackParam);
    $base64CallbackBody = base64_encode($callbackString);
    return [
        'access_id' => $config['accessKeyId'],
        'host' => 'https://' . $bucket['bucket'] . '.' . $bucket['endpoint'], // $host的格式为 bucketname.endpoint
        'policy' => $policyBase64,
        'signature' => $signature,
        'expire' => $expiration,
        'callback' => $base64CallbackBody,
        'dir' => $dir,
        'key' => $key,
        'url' => $bucket['host'] . DIRECTORY_SEPARATOR . $key
    ];
}

获取参数base64

/**
 * @desc: 获取参数base64
 * @param $policyParams
 * @return string
 * @author Tinywan(ShaoBo Wan)
 */
private static function getPolicyBase64($policyParams): string
{
    return base64_encode(json_encode($policyParams));
}

获取签名

/**
 * @desc: 获取签名
 * @param string $policyBase64
 * @param string $accessKeySecret
 * @return string
 * @author Tinywan(ShaoBo Wan)
 */
private static function getSignature(string $policyBase64, string $accessKeySecret): string
{
    return base64_encode(hash_hmac('sha1', $policyBase64, $accessKeySecret, true));
}

获取过期时间

/**
 * @desc: 获取过期时间
 * @param int $time
 * @return array|false|string|string[]
 * @author Tinywan(ShaoBo Wan)
 */
private static function getExpireTime(int $time)
{
    return str_replace('+00:00', '.000Z', gmdate('c', time() + $time));
}

获取按照月份分隔的文件夹路径

/**
 * @desc: 获取按照月份分隔的文件夹路径
 * @param string $type
 * @param string $directoryName eg: img/video
 * @return string
 * @author Tinywan(ShaoBo Wan)
 */
private static function getDirectoryPath(string $type, string $directoryName): string
{
    if ($type === 'img') {
        return $directoryName . DIRECTORY_SEPARATOR . date('Y-m') . DIRECTORY_SEPARATOR;
    }
    return date('Y-m') . DIRECTORY_SEPARATOR;
}

获取一个随机的文件名

/**
 * @desc: 获取一个随机的文件名
 * @param string $extend eg: jpg
 * @return string 
 * @author Tinywan(ShaoBo Wan)
 */
private static function getRandomFilename(string $extend): string
{
    return \Ramsey\Uuid\Uuid::uuid4()->toString() . '.' . $extend;
}

微信小程序客户端

请求上传参数

{
 "type": "images",
 "dirname": "images",
 "ext": "png"
}

请求上传响应

{
 "code": 0,
 "msg": "success",
 "data": {
  "access_id": "xxxxxxxxxxxxxxxxx",
  "host": "https://tinywan-images.oss-cn-hangzhou.aliyuncs.com",
  "policy": "eyJlexxxxxxxxxxxxxxxxxxxx==",
  "signature": "YrlQxxxxxxxxxxxxxxxxxxxxxxtiI=",
  "expire": "2024-05-22T09:46:46.000Z",
  "callback": "eyJxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx0=",
  "dir": "ai/2024-05/",
  "key": "ai/2024-05/14b796b1-54ef-48d9-83a3-cde7cbc298e7.png",
  "url": "https://images.tinywan.com/ai/2024-05/14b796b1-54ef-48d9-83a3-cde7cbc298e7.png"
 }
}

示例实现

客户端拿到文件名后缀后,传给服务端,获取签名和文件名等必要的上传参数,让更多的工作在服务端完成

/** 获取上传文件扩展名 */
function getFilePathExtention(filePath) {
    return filePath.split('.').slice(-1)[0];
}

/** 上传到阿里云oss */
function uploadFileAsync(config, filePath) {
    console.log(config);

    return new Promise((resolve, reject) => {
        wx.uploadFile({
            url: config.host, // 开发者服务器的URL。
            filePath: filePath,
            name: 'file', // 必须填file。
            formData: {
                key: config.key,
                policy: config.policy,
                OSSAccessKeyId: config.accessKeyId,
                signature: config.signature
            },

            success: (res) => {
                console.log(res);
                if (res.statusCode === 204) {
                    resolve();
                } else {
                    reject('上传失败');
                }
            },
            fail: (err) => {
                console.log(err);
            },
        });
    });
}

/** 上传文件 */
export async function uploadFile(filePath, dirname = 'image') {
    console.log(filePath);

    let ext = getFilePathExtention(filePath);

    // 改方法通过接口获取服务端生成的上传签名 
    const resParams = await Http.AliOssGetUploadParams({
        ext,
        dirname,
    });

    await uploadFileAsync(resParams.data, filePath);
    return resParams;
}

上传回调

大多数情况下,用户上传文件后,应用服务器需要知道用户上传了哪些文件以及文件名;如果上传了图片,还需要知道图片的大小等,为此OSS提供了上传回调方案。

流程介绍

当用户要上传一个文件到OSS,而且希望将上传的结果返回给应用服务器时,需要设置一个回调函数,将请求告知应用服务器。用户上传完文件后,不会直接得到返回结果,而是先通知应用服务器,再把结果转达给用户。

图片图片

参考代码

/**
 * @desc: OSS上传回调
 * @throws ForbiddenHttpException
 * @return Response
 * @author Tinywan(ShaoBo Wan)
 */
public function ossUploadCallback(): Response
{
    // 1.请求头参数
    $header = $this->request->header();
    $authorizationBase64 = $header['authorization'] ?? '';
    $pubKeyUrlBase64 = $header['x-oss-pub-key-url'] ?? '';
    if ($authorizationBase64 == '' || $pubKeyUrlBase64 == '') {
        throw new \tinywan\exception\ForbiddenHttpException();
    }
    // 2.获取OSS的签名
    $authorization = base64_decode($authorizationBase64);
    // 3.获取公钥
    $pubKeyUrl = base64_decode($pubKeyUrlBase64);
    $ch = curl_init();
    curl_setopt($ch, CURLOPT_URL, $pubKeyUrl);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 10);
    $publicKey = curl_exec($ch);
    if ($publicKey == '') {
        throw new \tinywan\exception\ForbiddenHttpException();
    }
    // 4.获取回调body
    $body = $this->request->getInput();
    // 5.拼接待签名字符串
    $path = $_SERVER['REQUEST_URI'];
    $pos = strpos($path, '?');
    if ($pos === false) {
        $authStr = urldecode($path) . "\n" . $body;
    } else {
        $authStr = urldecode(substr($path, 0, $pos)) . substr($path, $pos, strlen($path) - $pos) . "\n" . $body;
    }
    // 6.验证签名
    $verifyRes = openssl_verify($authStr, $authorization, $publicKey, OPENSSL_ALGO_MD5);
    if ($verifyRes === 1) {
        return response_json('success', 200, $this->request->post());
    }
    throw new \tinywan\exception\ForbiddenHttpException();
}
责任编辑:武晓燕 来源: 开源技术小栈
相关推荐

2024-07-19 09:01:07

2022-12-29 08:56:30

监控服务平台

2009-12-04 13:50:00

PHP服务端返回Jso

2010-02-24 15:42:03

WCF服务端安全

2022-02-18 11:13:53

监控架构系统

2013-01-08 14:51:49

阿里云开放存储OSS

2016-03-18 09:04:42

swift服务端

2009-08-21 15:54:40

服务端与客户端

2009-08-21 15:36:41

服务端与客户端

2017-10-31 10:32:44

2023-06-30 09:46:00

服务物理机自动化

2010-05-28 10:10:49

2012-11-19 10:35:18

阿里云云计算

2020-11-10 13:08:45

镭速功能视觉

2013-03-25 10:08:44

PHPWeb

2012-03-02 10:38:33

MySQL

2023-02-07 09:43:48

监控系统

2016-11-03 09:59:38

kotlinjavaspring

2010-08-03 09:59:30

NFS服务

2024-04-09 09:29:22

NginxOSS资源
点赞
收藏

51CTO技术栈公众号