Files
EdgeAdmin/web/public/js/components/server/http-cache-config-box.js

130 lines
4.5 KiB
JavaScript
Raw Normal View History

2020-09-20 16:28:16 +08:00
Vue.component("http-cache-config-box", {
props: ["v-cache-config", "v-is-location", "v-is-group", "v-cache-policy"],
2020-09-20 16:28:16 +08:00
data: function () {
let cacheConfig = this.vCacheConfig
if (cacheConfig == null) {
cacheConfig = {
2020-09-23 18:43:38 +08:00
isPrior: false,
2020-09-20 16:28:16 +08:00
isOn: false,
addStatusHeader: true,
2021-12-02 09:54:31 +08:00
addAgeHeader: false,
enableCacheControlMaxAge: false,
2021-10-17 20:22:57 +08:00
cacheRefs: [],
purgeIsOn: false,
purgeKey: ""
2020-09-20 16:28:16 +08:00
}
}
if (cacheConfig.cacheRefs == null) {
cacheConfig.cacheRefs = []
}
2020-09-20 16:28:16 +08:00
return {
2021-11-14 16:21:04 +08:00
cacheConfig: cacheConfig,
moreOptionsVisible: false
2020-09-20 16:28:16 +08:00
}
},
2020-09-20 20:12:43 +08:00
methods: {
2020-10-04 20:38:27 +08:00
isOn: function () {
return ((!this.vIsLocation && !this.vIsGroup) || this.cacheConfig.isPrior) && this.cacheConfig.isOn
2021-10-17 20:22:57 +08:00
},
2021-12-16 17:27:09 +08:00
isPlus: function () {
return Tea.Vue.teaIsPlus
},
2021-10-17 20:22:57 +08:00
generatePurgeKey: function () {
let r = Math.random().toString() + Math.random().toString()
let s = r.replace(/0\./g, "")
.replace(/\./g, "")
let result = ""
for (let i = 0; i < s.length; i++) {
result += String.fromCharCode(parseInt(s.substring(i, i + 1)) + ((Math.random() < 0.5) ? "a" : "A").charCodeAt(0))
}
this.cacheConfig.purgeKey = result
2021-11-14 16:21:04 +08:00
},
showMoreOptions: function () {
this.moreOptionsVisible = !this.moreOptionsVisible
2021-12-16 17:27:09 +08:00
},
changeStale: function (stale) {
this.cacheConfig.stale = stale
2020-09-20 20:12:43 +08:00
}
},
2020-09-20 16:28:16 +08:00
template: `<div>
<input type="hidden" name="cacheJSON" :value="JSON.stringify(cacheConfig)"/>
<table class="ui table definition selectable">
<prior-checkbox :v-config="cacheConfig" v-if="vIsLocation || vIsGroup"></prior-checkbox>
<tbody v-show="(!vIsLocation && !vIsGroup) || cacheConfig.isPrior">
<tr v-show="!vIsGroup">
<td>缓存策略</td>
<td>
2020-12-23 19:44:10 +08:00
<div v-if="vCachePolicy != null">{{vCachePolicy.name}} <link-icon :href="'/servers/components/cache/policy?cachePolicyId=' + vCachePolicy.id"></link-icon>
<p class="comment">使用当前服务所在集群的设置</p>
</div>
<span v-else class="red">当前集群没有设置缓存策略当前配置无法生效</span>
</td>
</tr>
2020-09-23 18:43:38 +08:00
<tr>
<td class="title">是否开启缓存</td>
<td>
<div class="ui checkbox">
<input type="checkbox" v-model="cacheConfig.isOn"/>
<label></label>
</div>
</td>
</tr>
2020-09-20 16:28:16 +08:00
</tbody>
<tbody v-show="isOn()">
2021-11-14 16:21:04 +08:00
<tr>
<td colspan="2">
<a href="" @click.prevent="showMoreOptions"><span v-if="moreOptionsVisible">收起选项</span><span v-else></span><i class="icon angle" :class="{up: moreOptionsVisible, down:!moreOptionsVisible}"></i></a>
</td>
</tr>
</tbody>
<tbody v-show="isOn() && moreOptionsVisible">
<tr>
2021-12-02 09:54:31 +08:00
<td>添加X-Cache Header</td>
<td>
<checkbox v-model="cacheConfig.addStatusHeader"></checkbox>
2021-12-02 09:54:31 +08:00
<p class="comment">选中后自动在响应Header中增加<code-label>X-Cache: BYPASS|MISS|HIT|PURGE</code-label></p>
</td>
</tr>
<tr>
<td>添加Age Header</td>
<td>
<checkbox v-model="cacheConfig.addAgeHeader"></checkbox>
<p class="comment">选中后自动在响应Header中增加<code-label>Age: [有效时间秒数]</code-label></p>
</td>
</tr>
<tr>
<td>支持源站控制有效时间</td>
<td>
<checkbox v-model="cacheConfig.enableCacheControlMaxAge"></checkbox>
<p class="comment">选中后表示支持源站在Header中设置的<code-label>Cache-Control: max-age=[有效时间秒数]</code-label></p>
</td>
</tr>
2021-10-17 20:22:57 +08:00
<tr>
2021-12-16 17:27:09 +08:00
<td class="color-border">允许PURGE</td>
2021-10-17 20:22:57 +08:00
<td>
<checkbox v-model="cacheConfig.purgeIsOn"></checkbox>
<p class="comment">允许使用PURGE方法清除某个URL缓存</p>
</td>
</tr>
<tr v-show="cacheConfig.purgeIsOn">
2021-12-16 17:27:09 +08:00
<td class="color-border">PURGE Key *</td>
2021-10-17 20:22:57 +08:00
<td>
<input type="text" maxlength="200" v-model="cacheConfig.purgeKey"/>
<p class="comment"><a href="" @click.prevent="generatePurgeKey">[随机生成]</a>PURGE<code-label>Edge-Purge-Key: {{cacheConfig.purgeKey}}</code-label> Header线</p>
</td>
</tr>
</tbody>
2020-09-20 16:28:16 +08:00
</table>
2020-10-04 20:38:27 +08:00
2021-12-16 17:27:09 +08:00
<div v-if="isOn() && moreOptionsVisible && isPlus()">
2021-12-17 14:17:48 +08:00
<h4>过时缓存策略</h4>
2021-12-16 17:27:09 +08:00
<http-cache-stale-config :v-cache-stale-config="cacheConfig.stale" @change="changeStale"></http-cache-stale-config>
</div>
<div v-show="isOn()" style="margin-top: 1em">
2021-06-08 22:58:39 +08:00
<h4>缓存条件</h4>
<http-cache-refs-config-box :v-cache-config="cacheConfig" :v-cache-refs="cacheConfig.cacheRefs" ></http-cache-refs-config-box>
2020-10-04 20:38:27 +08:00
</div>
2020-09-20 16:28:16 +08:00
<div class="margin"></div>
</div>`
})