mirror of https://github.com/requarks/wiki
parent
d910bae080
commit
59ef5e779d
|
After Width: | Height: | Size: 5.0 KiB |
@ -0,0 +1,129 @@
|
|||||||
|
<template>
|
||||||
|
<w-page class="admin-mcp">
|
||||||
|
<div class="flex flex-wrap p-4 items-center">
|
||||||
|
<div class="flex-none">
|
||||||
|
<img class="admin-icon animated fadeInLeft" src="/_assets/icons/fluent-ai.svg" />
|
||||||
|
</div>
|
||||||
|
<div class="min-w-0 flex-1 pl-4">
|
||||||
|
<div class="text-h5 admin-page-title animated fadeInLeft">{{ t('admin.mcp.title') }}</div>
|
||||||
|
<div class="text-subtitle1 text-grey animated fadeInLeft wait-p2s">
|
||||||
|
{{ t('admin.mcp.subtitle') }}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="min-w-0 flex-1">
|
||||||
|
<div class="flex items-center">
|
||||||
|
<template v-if="state.enabled">
|
||||||
|
<w-signal class="mr-2" color="green" size="md" />
|
||||||
|
<div class="text-caption text-green">{{ t('admin.mcp.enabled') }}</div>
|
||||||
|
</template>
|
||||||
|
<template v-else>
|
||||||
|
<w-signal class="mr-2" color="red" size="md" />
|
||||||
|
<div class="text-caption text-red">{{ t('admin.mcp.disabled') }}</div>
|
||||||
|
</template>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!-- -> Nothing behind these yet: there is no endpoint to toggle and no keys to create, so
|
||||||
|
the two actions are laid out here permanently disabled and without a handler -->
|
||||||
|
<div class="flex-none">
|
||||||
|
<w-btn
|
||||||
|
class="mr-2 ml-4 acrylic-btn"
|
||||||
|
icon="la:question-circle"
|
||||||
|
flat
|
||||||
|
color="grey"
|
||||||
|
:aria-label="t(`common.actions.viewDocs`)"
|
||||||
|
:href="siteStore.docsBase + `/dev/mcp`"
|
||||||
|
target="_blank">
|
||||||
|
<w-tooltip>{{ t(`common.actions.viewDocs`) }}</w-tooltip>
|
||||||
|
</w-btn>
|
||||||
|
<w-btn
|
||||||
|
class="acrylic-btn mr-2"
|
||||||
|
icon="la:redo-alt"
|
||||||
|
flat
|
||||||
|
color="secondary"
|
||||||
|
:loading="state.loading > 0"
|
||||||
|
:aria-label="t(`common.actions.refresh`)">
|
||||||
|
<w-tooltip>{{ t(`common.actions.refresh`) }}</w-tooltip>
|
||||||
|
</w-btn>
|
||||||
|
<w-btn
|
||||||
|
class="mr-2"
|
||||||
|
unelevated
|
||||||
|
icon="la:power-off"
|
||||||
|
disabled
|
||||||
|
:label="!state.enabled ? t(`admin.mcp.enableButton`) : t(`admin.mcp.disableButton`)"
|
||||||
|
:color="!state.enabled ? `positive` : `negative`"
|
||||||
|
:loading="state.isToggleLoading"
|
||||||
|
:disabled="state.loading > 0" />
|
||||||
|
<w-btn
|
||||||
|
unelevated
|
||||||
|
icon="la:plus"
|
||||||
|
:label="t(`admin.mcp.newKeyButton`)"
|
||||||
|
color="primary"
|
||||||
|
:disabled="state.loading > 0 || true" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<w-separator inset />
|
||||||
|
<div class="grid grid-cols-12 p-4 gap-4">
|
||||||
|
<div class="col-span-12">
|
||||||
|
<w-card
|
||||||
|
class="rounded"
|
||||||
|
flat
|
||||||
|
:class="dark.isActive ? `bg-dark-5 text-white` : `bg-grey-3 text-dark`">
|
||||||
|
<w-card-section class="items-center" horizontal>
|
||||||
|
<!-- -> The warning tone swaps with the theme like the card ground it sits on does:
|
||||||
|
`orange` is 1.9:1 on the light card and unreadable, `deep-orange-10` 3.4:1 on the
|
||||||
|
dark one. Each is above 4.5:1 on the ground it is paired with -->
|
||||||
|
<w-card-section class="flex-none pr-0">
|
||||||
|
<w-icon
|
||||||
|
name="la:exclamation-triangle"
|
||||||
|
size="sm"
|
||||||
|
:color="dark.isActive ? `orange` : `deep-orange-10`" />
|
||||||
|
</w-card-section>
|
||||||
|
<w-card-section
|
||||||
|
class="text-caption"
|
||||||
|
:class="dark.isActive ? `text-orange` : `text-deep-orange-10`"
|
||||||
|
>{{ t('admin.mcp.notImplemented') }}</w-card-section
|
||||||
|
>
|
||||||
|
</w-card-section>
|
||||||
|
</w-card>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</w-page>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup>
|
||||||
|
import { useI18n } from 'vue-i18n'
|
||||||
|
import { reactive } from 'vue'
|
||||||
|
|
||||||
|
import { useDark } from '@/composables/dark'
|
||||||
|
import { useMeta } from '@/composables/meta'
|
||||||
|
|
||||||
|
import { useSiteStore } from '@/stores/site'
|
||||||
|
|
||||||
|
// COMPOSABLES
|
||||||
|
|
||||||
|
const dark = useDark()
|
||||||
|
|
||||||
|
// STORES
|
||||||
|
|
||||||
|
const siteStore = useSiteStore()
|
||||||
|
|
||||||
|
// I18N
|
||||||
|
|
||||||
|
const { t } = useI18n()
|
||||||
|
|
||||||
|
// META
|
||||||
|
|
||||||
|
useMeta({
|
||||||
|
title: t('admin.mcp.title')
|
||||||
|
})
|
||||||
|
|
||||||
|
// DATA
|
||||||
|
|
||||||
|
const state = reactive({
|
||||||
|
enabled: false,
|
||||||
|
loading: 0,
|
||||||
|
isToggleLoading: false
|
||||||
|
})
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss"></style>
|
||||||
@ -1,269 +0,0 @@
|
|||||||
<template lang="pug">
|
|
||||||
v-container(fluid, grid-list-lg)
|
|
||||||
v-layout(row wrap)
|
|
||||||
v-flex(xs12)
|
|
||||||
.admin-header
|
|
||||||
img.animated.fadeInUp(src='/_assets/svg/icon-validation.svg', alt='SSL', style='width: 80px;')
|
|
||||||
.admin-header-title
|
|
||||||
.headline.primary--text.animated.fadeInLeft {{ $t('admin.ssl.title') }}
|
|
||||||
.subtitle-1.grey--text.animated.fadeInLeft {{ $t('admin.ssl.subtitle') }}
|
|
||||||
v-spacer
|
|
||||||
v-btn.animated.fadeInDown(
|
|
||||||
v-if='info.sslProvider === `letsencrypt` && info.httpsPort > 0'
|
|
||||||
color='black'
|
|
||||||
dark
|
|
||||||
depressed
|
|
||||||
@click='renewCertificate'
|
|
||||||
large
|
|
||||||
:loading='loadingRenew'
|
|
||||||
)
|
|
||||||
v-icon(left) mdi-cached
|
|
||||||
span {{$t('admin.ssl.renewCertificate')}}
|
|
||||||
v-form.pt-3
|
|
||||||
v-layout(row wrap)
|
|
||||||
v-flex(lg6 xs12)
|
|
||||||
v-card.animated.fadeInUp
|
|
||||||
v-subheader {{ $t('admin.ssl.currentState') }}
|
|
||||||
v-list(two-line, dense)
|
|
||||||
v-list-item
|
|
||||||
v-list-item-avatar
|
|
||||||
v-icon.indigo.white--text mdi-handshake
|
|
||||||
v-list-item-content
|
|
||||||
v-list-item-title {{ $t(`admin.ssl.provider`) }}
|
|
||||||
v-list-item-subtitle {{ providerTitle }}
|
|
||||||
template(v-if='info.sslProvider === `letsencrypt` && info.httpsPort > 0')
|
|
||||||
v-list-item
|
|
||||||
v-list-item-avatar
|
|
||||||
v-icon.indigo.white--text mdi-application
|
|
||||||
v-list-item-content
|
|
||||||
v-list-item-title {{ $t(`admin.ssl.domain`) }}
|
|
||||||
v-list-item-subtitle {{ info.sslDomain }}
|
|
||||||
v-list-item
|
|
||||||
v-list-item-avatar
|
|
||||||
v-icon.indigo.white--text mdi-at
|
|
||||||
v-list-item-content
|
|
||||||
v-list-item-title {{ $t('admin.ssl.subscriberEmail') }}
|
|
||||||
v-list-item-subtitle {{ info.sslSubscriberEmail }}
|
|
||||||
v-list-item
|
|
||||||
v-list-item-avatar
|
|
||||||
v-icon.indigo.white--text mdi-calendar-remove-outline
|
|
||||||
v-list-item-content
|
|
||||||
v-list-item-title {{ $t('admin.ssl.expiration') }}
|
|
||||||
v-list-item-subtitle {{ info.sslExpirationDate | moment('calendar') }}
|
|
||||||
v-list-item
|
|
||||||
v-list-item-avatar
|
|
||||||
v-icon.indigo.white--text mdi-traffic-light
|
|
||||||
v-list-item-content
|
|
||||||
v-list-item-title {{ $t(`admin.ssl.status`) }}
|
|
||||||
v-list-item-subtitle {{ info.sslStatus }}
|
|
||||||
|
|
||||||
v-flex(lg6 xs12)
|
|
||||||
v-card.animated.fadeInUp.wait-p2s
|
|
||||||
v-subheader {{ $t('admin.ssl.ports') }}
|
|
||||||
v-list(two-line, dense)
|
|
||||||
v-list-item
|
|
||||||
v-list-item-avatar
|
|
||||||
v-icon.blue.white--text mdi-lock-open-variant
|
|
||||||
v-list-item-content
|
|
||||||
v-list-item-title {{ $t(`admin.ssl.httpPort`) }}
|
|
||||||
v-list-item-subtitle {{ info.httpPort }}
|
|
||||||
template(v-if='info.httpsPort > 0')
|
|
||||||
v-divider
|
|
||||||
v-list-item
|
|
||||||
v-list-item-avatar
|
|
||||||
v-icon.green.white--text mdi-lock
|
|
||||||
v-list-item-content
|
|
||||||
v-list-item-title {{ $t(`admin.ssl.httpsPort`) }}
|
|
||||||
v-list-item-subtitle {{ info.httpsPort }}
|
|
||||||
v-divider
|
|
||||||
v-list-item
|
|
||||||
v-list-item-avatar
|
|
||||||
v-icon.indigo.white--text mdi-sign-direction
|
|
||||||
v-list-item-content
|
|
||||||
v-list-item-title {{ $t(`admin.ssl.httpPortRedirect`) }}
|
|
||||||
v-list-item-subtitle {{ info.httpRedirection }}
|
|
||||||
v-list-item-action
|
|
||||||
v-btn.red--text(
|
|
||||||
v-if='info.httpRedirection'
|
|
||||||
depressed
|
|
||||||
:color='$vuetify.theme.dark ? `red darken-4` : `red lighten-5`'
|
|
||||||
:class='$vuetify.theme.dark ? `text--lighten-5` : `text--darken-2`'
|
|
||||||
@click='toggleRedir'
|
|
||||||
:loading='loadingRedir'
|
|
||||||
)
|
|
||||||
v-icon(left) mdi-power
|
|
||||||
span {{$t('admin.ssl.httpPortRedirectTurnOff')}}
|
|
||||||
v-btn.green--text(
|
|
||||||
v-else
|
|
||||||
depressed
|
|
||||||
:color='$vuetify.theme.dark ? `green darken-4` : `green lighten-5`'
|
|
||||||
:class='$vuetify.theme.dark ? `text--lighten-5` : `text--darken-2`'
|
|
||||||
@click='toggleRedir'
|
|
||||||
:loading='loadingRedir'
|
|
||||||
)
|
|
||||||
v-icon(left) mdi-power
|
|
||||||
span {{$t('admin.ssl.httpPortRedirectTurnOn')}}
|
|
||||||
|
|
||||||
v-dialog(
|
|
||||||
v-model='loadingRenew'
|
|
||||||
persistent
|
|
||||||
max-width='450'
|
|
||||||
)
|
|
||||||
v-card(color='black', dark)
|
|
||||||
v-card-text.pa-10.text-center
|
|
||||||
semipolar-spinner.animated.fadeIn(
|
|
||||||
:animation-duration='1500'
|
|
||||||
:size='65'
|
|
||||||
color='#FFF'
|
|
||||||
style='margin: 0 auto;'
|
|
||||||
)
|
|
||||||
.mt-5.body-1.white--text {{$t('admin.ssl.renewCertificateLoadingTitle')}}
|
|
||||||
.caption.mt-4 {{$t('admin.ssl.renewCertificateLoadingSubtitle')}}
|
|
||||||
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
import _ from 'lodash'
|
|
||||||
|
|
||||||
import { SemipolarSpinner } from 'epic-spinners'
|
|
||||||
|
|
||||||
export default {
|
|
||||||
components: {
|
|
||||||
SemipolarSpinner
|
|
||||||
},
|
|
||||||
data() {
|
|
||||||
return {
|
|
||||||
loadingRenew: false,
|
|
||||||
loadingRedir: false,
|
|
||||||
info: {
|
|
||||||
sslDomain: '',
|
|
||||||
sslProvider: '',
|
|
||||||
sslSubscriberEmail: '',
|
|
||||||
sslExpirationDate: false,
|
|
||||||
sslStatus: '',
|
|
||||||
httpPort: 0,
|
|
||||||
httpRedirection: false,
|
|
||||||
httpsPort: 0
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
computed: {
|
|
||||||
providerTitle() {
|
|
||||||
switch (this.info.sslProvider) {
|
|
||||||
case 'custom':
|
|
||||||
return this.$t('admin.ssl.providerCustomCertificate')
|
|
||||||
case 'letsencrypt':
|
|
||||||
return this.$t('admin.ssl.providerLetsEncrypt')
|
|
||||||
default:
|
|
||||||
return this.$t('admin.ssl.providerDisabled')
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
methods: {
|
|
||||||
async toggleRedir() {
|
|
||||||
this.loadingRedir = true
|
|
||||||
try {
|
|
||||||
this.info.httpRedirection = !this.info.httpRedirection
|
|
||||||
await this.$apollo.mutate({
|
|
||||||
mutation: `
|
|
||||||
mutation ($enabled: Boolean!) {
|
|
||||||
system {
|
|
||||||
setHTTPSRedirection(enabled: $enabled) {
|
|
||||||
responseResult {
|
|
||||||
succeeded
|
|
||||||
errorCode
|
|
||||||
slug
|
|
||||||
message
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
`,
|
|
||||||
variables: {
|
|
||||||
enabled: _.get(this.info, 'httpRedirection', false)
|
|
||||||
},
|
|
||||||
watchLoading(isLoading) {
|
|
||||||
this.$store.commit(
|
|
||||||
`loading${isLoading ? 'Start' : 'Stop'}`,
|
|
||||||
'admin-ssl-toggleRedirection'
|
|
||||||
)
|
|
||||||
}
|
|
||||||
})
|
|
||||||
this.$store.commit('showNotification', {
|
|
||||||
style: 'success',
|
|
||||||
message: this.$t('admin.ssl.httpPortRedirectSaveSuccess'),
|
|
||||||
icon: 'check'
|
|
||||||
})
|
|
||||||
} catch (err) {
|
|
||||||
this.info.httpRedirection = !this.info.httpRedirection
|
|
||||||
this.$store.commit('pushGraphError', err)
|
|
||||||
}
|
|
||||||
this.loadingRedir = false
|
|
||||||
},
|
|
||||||
async renewCertificate() {
|
|
||||||
this.loadingRenew = true
|
|
||||||
try {
|
|
||||||
const respRaw = await this.$apollo.mutate({
|
|
||||||
mutation: `
|
|
||||||
mutation {
|
|
||||||
system {
|
|
||||||
renewHTTPSCertificate {
|
|
||||||
responseResult {
|
|
||||||
succeeded
|
|
||||||
errorCode
|
|
||||||
slug
|
|
||||||
message
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
`,
|
|
||||||
watchLoading(isLoading) {
|
|
||||||
this.$store.commit(`loading${isLoading ? 'Start' : 'Stop'}`, 'admin-ssl-renew')
|
|
||||||
}
|
|
||||||
})
|
|
||||||
const resp = _.get(respRaw, 'data.system.renewHTTPSCertificate.responseResult', {})
|
|
||||||
if (resp.succeeded) {
|
|
||||||
this.$store.commit('showNotification', {
|
|
||||||
style: 'success',
|
|
||||||
message: this.$t('admin.ssl.renewCertificateSuccess'),
|
|
||||||
icon: 'check'
|
|
||||||
})
|
|
||||||
} else {
|
|
||||||
throw new Error(resp.message)
|
|
||||||
}
|
|
||||||
} catch (err) {
|
|
||||||
this.$store.commit('pushGraphError', err)
|
|
||||||
}
|
|
||||||
this.loadingRenew = false
|
|
||||||
}
|
|
||||||
},
|
|
||||||
apollo: {
|
|
||||||
info: {
|
|
||||||
query: `
|
|
||||||
{
|
|
||||||
system {
|
|
||||||
info {
|
|
||||||
httpPort
|
|
||||||
httpRedirection
|
|
||||||
httpsPort
|
|
||||||
sslDomain
|
|
||||||
sslExpirationDate
|
|
||||||
sslProvider
|
|
||||||
sslStatus
|
|
||||||
sslSubscriberEmail
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
`,
|
|
||||||
fetchPolicy: 'network-only',
|
|
||||||
update: (data) => _.cloneDeep(data.system.info),
|
|
||||||
watchLoading(isLoading) {
|
|
||||||
this.$store.commit(`loading${isLoading ? 'Start' : 'Stop'}`, 'admin-ssl-refresh')
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style lang="scss"></style>
|
|
||||||
Loading…
Reference in new issue