config.php 5.2 KB
<?php

return [
    [
        'name' => 'accessKey',
        'title' => 'Access Key',
        'type' => 'string',
        'content' => [],
        'value' => 'OJDA5NA9FY7ESPNVMCFB',
        'rule' => 'required',
        'msg' => '',
        'tip' => '请前往华为云控制台->我的凭证->访问密钥中生成',
        'ok' => '',
        'extend' => '',
    ],
    [
        'name' => 'secretKey',
        'title' => 'Secret Key',
        'type' => 'string',
        'content' => [],
        'value' => 'w82KJPeSEpQHkXuHkl7FDrU0LlIyfSg3nh3Tj8Ua',
        'rule' => 'required',
        'msg' => '',
        'tip' => '请前往华为云控制台->我的凭证->访问密钥中生成',
        'ok' => '',
        'extend' => '',
    ],
    [
        'name' => 'bucket',
        'title' => '存储桶名称',
        'type' => 'string',
        'content' => [],
        'value' => 'studyplatform',
        'rule' => 'required',
        'msg' => '',
        'tip' => '存储桶名称',
        'ok' => '',
        'extend' => '',
    ],
    [
        'name' => 'endpoint',
        'title' => 'Endpoint',
        'type' => 'string',
        'content' => [],
        'value' => 'obs.cn-north-4.myhuaweicloud.com',
        'rule' => 'required',
        'msg' => '',
        'tip' => '请输入你的Endpoint',
        'ok' => '',
        'extend' => '',
    ],
    [
        'name' => 'uploadurl',
        'title' => '上传接口地址',
        'type' => 'string',
        'content' => [],
        'value' => 'http://studyplatform.obs.cn-north-4.myhuaweicloud.com',
        'rule' => 'required',
        'msg' => '',
        'tip' => '请使用存储桶->基本信息->访问域名的值,并在前面加上http://或https://',
        'ok' => '',
        'extend' => '',
    ],
    [
        'name' => 'cdnurl',
        'title' => 'CDN地址',
        'type' => 'string',
        'content' => [],
        'value' => '',
        'rule' => 'required',
        'msg' => '',
        'tip' => '如果你的云存储有绑定自定义域名,请输入自定义域名',
        'ok' => '',
        'extend' => '',
    ],
    [
        'name' => 'uploadmode',
        'title' => '上传模式',
        'type' => 'select',
        'content' => [
            'client' => '客户端直传(速度快,无备份)',
            'server' => '服务器中转(占用服务器带宽,有备份)',
        ],
        'value' => 'server',
        'rule' => '',
        'msg' => '',
        'tip' => '',
        'ok' => '',
        'extend' => '',
    ],
    [
        'name' => 'savekey',
        'title' => '保存文件名',
        'type' => 'string',
        'content' => [],
        'value' => '/uploads/{year}{mon}{day}/{filemd5}{.suffix}',
        'rule' => 'required',
        'msg' => '',
        'tip' => '',
        'ok' => '',
        'extend' => '',
    ],
    [
        'name' => 'expire',
        'title' => '上传有效时长',
        'type' => 'string',
        'content' => [],
        'value' => '600',
        'rule' => 'required',
        'msg' => '',
        'tip' => '',
        'ok' => '',
        'extend' => '',
    ],
    [
        'name' => 'maxsize',
        'title' => '最大可上传',
        'type' => 'string',
        'content' => [],
        'value' => '10M',
        'rule' => 'required',
        'msg' => '',
        'tip' => '',
        'ok' => '',
        'extend' => '',
    ],
    [
        'name' => 'mimetype',
        'title' => '可上传后缀格式',
        'type' => 'string',
        'content' => [],
        'value' => 'jpg,png,bmp,jpeg,gif,zip,rar,xls,xlsx,mp4',
        'rule' => 'required',
        'msg' => '',
        'tip' => '',
        'ok' => '',
        'extend' => '',
    ],
    [
        'name' => 'multiple',
        'title' => '多文件上传',
        'type' => 'bool',
        'content' => [],
        'value' => '0',
        'rule' => 'required',
        'msg' => '',
        'tip' => '',
        'ok' => '',
        'extend' => '',
    ],
    [
        'name' => 'thumbstyle',
        'title' => '缩略图样式',
        'type' => 'string',
        'content' => [],
        'value' => '',
        'rule' => '',
        'msg' => '',
        'tip' => '用于附件管理缩略图样式,可使用:?x-image-process=image/resize,m_fixed,h_90,w_120或?x-image-process=style/样式名称',
        'ok' => '',
        'extend' => '',
    ],
    [
        'name' => 'chunking',
        'title' => '分片上传',
        'type' => 'radio',
        'content' => [
            1 => '开启',
            0 => '关闭',
        ],
        'value' => '1',
        'rule' => 'required',
        'msg' => '',
        'tip' => '',
        'ok' => '',
        'extend' => '',
    ],
    [
        'name' => 'chunksize',
        'title' => '分片大小',
        'type' => 'number',
        'content' => [],
        'value' => '4194304',
        'rule' => 'required',
        'msg' => '',
        'tip' => '',
        'ok' => '',
        'extend' => '',
    ],
    [
        'name' => 'syncdelete',
        'title' => '附件删除时是否同步删除文件',
        'type' => 'bool',
        'content' => [],
        'value' => '1',
        'rule' => 'required',
        'msg' => '',
        'tip' => '',
        'ok' => '',
        'extend' => '',
    ],
];