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

172 lines
5.3 KiB
JavaScript
Raw Normal View History

// 单个缓存条件设置
2020-10-04 20:38:27 +08:00
Vue.component("http-cache-ref-box", {
props: ["v-cache-ref", "v-is-reverse"],
mounted: function () {
this.$refs.variablesDescriber.update(this.ref.key)
},
2020-10-04 20:38:27 +08:00
data: function () {
let ref = this.vCacheRef
if (ref == null) {
ref = {
isOn: true,
cachePolicyId: 0,
key: "${scheme}://${host}${requestPath}${isArgs}${args}",
2020-10-04 20:38:27 +08:00
life: {count: 2, unit: "hour"},
status: [200],
maxSize: {count: 32, unit: "mb"},
minSize: {count: 0, unit: "kb"},
2020-10-04 20:38:27 +08:00
skipCacheControlValues: ["private", "no-cache", "no-store"],
skipSetCookie: true,
enableRequestCachePragma: false,
conds: null,
allowChunkedEncoding: true,
2021-12-07 10:45:49 +08:00
isReverse: this.vIsReverse,
methods: []
2020-10-04 20:38:27 +08:00
}
}
if (ref.key == null) {
ref.key = ""
}
2021-12-07 10:45:49 +08:00
if (ref.methods == null) {
ref.methods = []
}
2020-10-04 20:38:27 +08:00
if (ref.life == null) {
ref.life = {count: 2, unit: "hour"}
}
if (ref.maxSize == null) {
ref.maxSize = {count: 32, unit: "mb"}
}
if (ref.minSize == null) {
ref.minSize = {count: 0, unit: "kb"}
}
2020-10-04 20:38:27 +08:00
return {
ref: ref,
moreOptionsVisible: false
}
},
methods: {
changeOptionsVisible: function (v) {
this.moreOptionsVisible = v
},
changeLife: function (v) {
this.ref.life = v
},
changeMaxSize: function (v) {
this.ref.maxSize = v
},
changeMinSize: function (v) {
this.ref.minSize = v
},
2020-10-04 20:38:27 +08:00
changeConds: function (v) {
this.ref.conds = v
},
changeStatusList: function (list) {
let result = []
list.forEach(function (status) {
let statusNumber = parseInt(status)
if (isNaN(statusNumber) || statusNumber < 100 || statusNumber > 999) {
return
}
result.push(statusNumber)
})
this.ref.status = result
},
2021-12-07 10:45:49 +08:00
changeMethods: function (methods) {
this.ref.methods = methods.map(function (v) {
return v.toUpperCase()
})
},
changeKey: function (key) {
this.$refs.variablesDescriber.update(key)
2020-10-04 20:38:27 +08:00
}
},
template: `<tbody>
<tr>
<td class="title">匹配条件分组 *</td>
2020-10-04 20:38:27 +08:00
<td>
<http-request-conds-box :v-conds="ref.conds" @change="changeConds"></http-request-conds-box>
<input type="hidden" name="cacheRefJSON" :value="JSON.stringify(ref)"/>
</td>
</tr>
<tr v-show="!vIsReverse">
2020-10-04 20:38:27 +08:00
<td>缓存有效期 *</td>
<td>
<time-duration-box :v-value="ref.life" @change="changeLife"></time-duration-box>
</td>
</tr>
<tr v-show="!vIsReverse">
2020-10-04 20:38:27 +08:00
<td>缓存Key *</td>
<td>
<input type="text" v-model="ref.key" @input="changeKey(ref.key)"/>
<p class="comment">用来区分不同缓存内容的唯一Key<request-variables-describer ref="variablesDescriber"></request-variables-describer></p>
2020-10-04 20:38:27 +08:00
</td>
</tr>
<tr v-show="!vIsReverse">
2020-10-04 20:38:27 +08:00
<td colspan="2"><more-options-indicator @change="changeOptionsVisible"></more-options-indicator></td>
</tr>
2021-12-07 10:45:49 +08:00
<tr v-show="moreOptionsVisible && !vIsReverse">
<td>请求方法</td>
<td>
<values-box size="5" maxlength="10" :values="ref.methods" @change="changeMethods"></values-box>
<p class="comment">允许请求的缓存方法如果没有设置则默认为<code-label>GET</code-label><code-label>HEAD</code-label></p>
</td>
</tr>
<tr v-show="moreOptionsVisible && !vIsReverse">
<td>可缓存的最大内容尺寸</td>
2020-10-04 20:38:27 +08:00
<td>
<size-capacity-box :v-value="ref.maxSize" @change="changeMaxSize"></size-capacity-box>
<p class="comment">内容尺寸如果高于此值则不缓存</p>
</td>
</tr>
<tr v-show="moreOptionsVisible && !vIsReverse">
<td>可缓存的最小内容尺寸</td>
<td>
<size-capacity-box :v-value="ref.minSize" @change="changeMinSize"></size-capacity-box>
<p class="comment">内容尺寸如果低于此值则不缓存</p>
2020-10-04 20:38:27 +08:00
</td>
</tr>
<tr v-show="moreOptionsVisible && !vIsReverse">
<td>支持分片内容</td>
<td>
<checkbox name="allowChunkedEncoding" value="1" v-model="ref.allowChunkedEncoding"></checkbox>
<p class="comment">选中后Gzip和Chunked内容可以直接缓存无需检查内容长度</p>
</td>
</tr>
<tr v-show="moreOptionsVisible && !vIsReverse">
2020-10-04 20:38:27 +08:00
<td>状态码列表</td>
<td>
<values-box name="statusList" size="3" maxlength="3" :values="ref.status" @change="changeStatusList"></values-box>
2020-10-04 20:38:27 +08:00
<p class="comment">允许缓存的HTTP状态码列表</p>
</td>
</tr>
<tr v-show="moreOptionsVisible && !vIsReverse">
2020-10-04 20:38:27 +08:00
<td>跳过的Cache-Control值</td>
<td>
<values-box name="skipResponseCacheControlValues" size="10" maxlength="100" :values="ref.skipCacheControlValues"></values-box>
<p class="comment">当响应的Cache-Control为这些值时不缓存响应内容而且不区分大小写</p>
</td>
</tr>
<tr v-show="moreOptionsVisible && !vIsReverse">
2020-10-04 20:38:27 +08:00
<td>跳过Set-Cookie</td>
<td>
<div class="ui checkbox">
<input type="checkbox" value="1" v-model="ref.skipSetCookie"/>
<label></label>
</div>
<p class="comment">选中后当响应的Header中有Set-Cookie时不缓存响应内容</p>
</td>
</tr>
<tr v-show="moreOptionsVisible && !vIsReverse">
2020-10-04 20:38:27 +08:00
<td>支持请求no-cache刷新</td>
<td>
<div class="ui checkbox">
<input type="checkbox" name="enableRequestCachePragma" value="1" v-model="ref.enableRequestCachePragma"/>
<label></label>
</div>
<p class="comment">选中后当请求的Header中含有Pragma: no-cache或Cache-Control: no-cache时会跳过缓存直接读取源内容</p>
</td>
</tr>
</tbody>`
})