初步实现对象存储源站

This commit is contained in:
GoEdgeLab
2023-06-07 17:24:56 +08:00
parent 24db40540b
commit 7e6e2b6889
19 changed files with 587 additions and 255 deletions

View File

@@ -5,12 +5,16 @@
<form method="post" class="ui form" data-tea-action="$" data-tea-success="success">
<table class="ui table selectable definition">
<tr>
<td>源站协议 *</td>
<td class="title">源站协议 *</td>
<td>
<!-- HTTP -->
<select class="ui dropdown auto-width" name="protocol" v-if="serverType == 'httpProxy' || serverType == 'httpWeb'" @change="changeProtocol" v-model="protocol">
<option value="http">HTTP</option>
<option value="https">HTTPS</option>
<!-- 对象存储 -->
<optgroup label="对象存储" v-if="ossTypes.length > 0"></optgroup>
<option v-for="ossType in ossTypes" :value="ossType.code">{{ossType.name}}</option>
</select>
<!-- TCP -->
@@ -25,20 +29,56 @@
</select>
</td>
</tr>
<tr>
<!-- 普通源站 -->
<tr v-show="!isOSS">
<td class="title">源站地址 *</td>
<td>
<input type="text" name="addr" ref="focus" v-model="addr" @input="changeAddr"/>
<p class="comment"><span class="red" v-if="addrError.length > 0">{{addrError}}</span>源站服务器地址通常是一个IP或域名加端口<span v-if="serverType == 'httpProxy'">,不需要加 http:// 或 https://</span></p>
</td>
</tr>
<tr v-if="isHTTP || protocol == 'tls'">
<tr v-if="(isHTTP || protocol == 'tls') && !isOSS">
<td>回源主机名</td>
<td>
<input type="text" name="host" placeholder="比如example.com" maxlength="100"/>
<p class="comment">请求源站时的Host字段值用于设置访问源站的站点域名<span v-if="isHTTP">,支持请求变量</span></p>
</td>
</tr>
<!-- OSS -->
<!-- 腾讯云COS -->
<tbody v-if="protocol == 'oss:tencentCOS'">
<tr>
<td>密钥ID *<br/><em>(Secret Id)</em></td>
<td>
<input type="text" name="tencentCOSSecretId" maxlength="100"/>
<p class="comment">访问存储桶需要的密钥ID。</p>
</td>
</tr>
<tr>
<td>密钥Key *<br/><em>(Secret Key)</em></td>
<td>
<input type="text" name="tencentCOSSecretKey" maxlength="100"/>
<p class="comment">访问存储桶需要的密钥Key。</p>
</td>
</tr>
<tr>
<td>存储桶名称 *</td>
<td>
<input type="text" name="tencentCOSBucketName" maxlength="100"/>
<p class="comment">存储桶名称,类似于<code-label>example-12345678</code-label></p>
</td>
</tr>
<tr>
<td>所属区域代号 *</td>
<td>
<input type="text" name="tencentCOSRegion" maxlength="100"/>
<p class="comment">COS服务所属区域代号类似于<code-label>ap-beijing</code-label></p>
</td>
</tr>
</tbody>
<tr>
<td colspan="2"><more-options-indicator></more-options-indicator></td>
</tr>
@@ -56,7 +96,7 @@
<p class="comment">默认不需要填写,表示支持所有域名。如果填写了专属域名,表示这些源站只会在所列的专属域名被访问时才生效。</p>
</td>
</tr>
<tr>
<tr v-show="!isOSS">
<td>端口跟随</td>
<td>
<checkbox name="followPort"></checkbox>