mirror of
https://github.com/jumpserver/lina.git
synced 2025-04-27 11:10:51 +00:00
commit
18a3f42717
@ -1,4 +1,4 @@
|
||||
FROM jumpserver/lina-base:20240723_084702 AS stage-build
|
||||
FROM jumpserver/lina-base:20250408_074136 AS stage-build
|
||||
|
||||
ARG VERSION
|
||||
ENV VERSION=$VERSION
|
||||
|
@ -2,7 +2,7 @@
|
||||
"name": "lina",
|
||||
"version": "v4.0.0",
|
||||
"description": "JumpServer Web UI",
|
||||
"author": "JumpServer Team <support@fit2cloud.com>",
|
||||
"author": "JumpServer Team <support@lxware.hk>",
|
||||
"license": "GPL-3.0-or-later",
|
||||
"scripts": {
|
||||
"dev": "NODE_OPTIONS=--openssl-legacy-provider vue-cli-service serve",
|
||||
@ -81,6 +81,7 @@
|
||||
"vue-select": "^3.9.5",
|
||||
"vuejs-logger": "^1.5.4",
|
||||
"vuex": "3.1.0",
|
||||
"watermark-js-plus": "^1.5.8",
|
||||
"xss": "^1.0.14",
|
||||
"xterm": "^4.5.0",
|
||||
"xterm-addon-fit": "^0.3.0",
|
||||
@ -94,7 +95,6 @@
|
||||
"@vue/cli-plugin-unit-jest": "3.6.3",
|
||||
"@vue/cli-service": "3.6.0",
|
||||
"@vue/test-utils": "1.0.0-beta.29",
|
||||
"@vue/runtime-dom": "3.5.13",
|
||||
"autoprefixer": "^9.5.1",
|
||||
"babel-core": "7.0.0-bridge.0",
|
||||
"babel-eslint": "10.0.1",
|
||||
@ -121,7 +121,7 @@
|
||||
"serve-static": "^1.16.0",
|
||||
"strip-ansi": "^7.1.0",
|
||||
"svg-sprite-loader": "4.1.3",
|
||||
"svgo": "1.2.4",
|
||||
"svgo": "1.2.2",
|
||||
"vue-i18n-extract": "^1.1.1",
|
||||
"vue-template-compiler": "2.6.10"
|
||||
},
|
||||
@ -143,5 +143,6 @@
|
||||
"src/**/*.{js,vue}": [
|
||||
"eslint --fix"
|
||||
]
|
||||
}
|
||||
},
|
||||
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
|
||||
}
|
||||
|
47
src/App.vue
47
src/App.vue
@ -5,14 +5,59 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { mapState } from 'vuex'
|
||||
import { mapState, mapGetters } from 'vuex'
|
||||
import { Watermark } from 'watermark-js-plus'
|
||||
|
||||
export default {
|
||||
name: 'App',
|
||||
data() {
|
||||
return {
|
||||
watermark: null
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
...mapState({
|
||||
isRouterAlive: state => state.common.isRouterAlive
|
||||
}),
|
||||
...mapGetters({
|
||||
currentUser: 'currentUser',
|
||||
publicSettings: 'publicSettings'
|
||||
})
|
||||
},
|
||||
watch: {
|
||||
currentUser: {
|
||||
handler(newVal) {
|
||||
this.createWatermark()
|
||||
}
|
||||
},
|
||||
'publicSettings.SECURITY_WATERMARK_ENABLED': {
|
||||
handler(newVal) {
|
||||
if (!newVal) {
|
||||
return setTimeout(() => {
|
||||
this.watermark?.destroy()
|
||||
this.watermark = null
|
||||
})
|
||||
}
|
||||
|
||||
this.createWatermark()
|
||||
}
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
createWatermark() {
|
||||
if (this.currentUser?.username && this.publicSettings?.SECURITY_WATERMARK_ENABLED) {
|
||||
this.watermark = new Watermark({
|
||||
content: `${this.currentUser.username}(${this.currentUser.name})`,
|
||||
width: 200,
|
||||
height: 200,
|
||||
rotate: 45,
|
||||
fontWeight: 'normal',
|
||||
fontColor: 'rgba(128, 128, 128, 0.2)'
|
||||
})
|
||||
|
||||
this.watermark.create()
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
Binary file not shown.
Before Width: | Height: | Size: 2.4 KiB After Width: | Height: | Size: 2.8 KiB |
Binary file not shown.
Before Width: | Height: | Size: 2.0 KiB After Width: | Height: | Size: 2.7 KiB |
BIN
src/assets/img/icons/windows_ad.png
Normal file
BIN
src/assets/img/icons/windows_ad.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.3 KiB |
@ -6,6 +6,13 @@ import AutomationParamsForm from '@/views/assets/Platform/AutomationParamsSettin
|
||||
export const accountFieldsMeta = (vm) => {
|
||||
const defaultPrivilegedAccounts = ['root', 'administrator']
|
||||
|
||||
function onPrivilegedUser(value, updateForm) {
|
||||
const maybePrivileged = defaultPrivilegedAccounts.includes(value)
|
||||
if (maybePrivileged) {
|
||||
updateForm({ privileged: true, secret_reset: false, push_now: false })
|
||||
}
|
||||
}
|
||||
|
||||
return {
|
||||
assets: {
|
||||
component: Select2,
|
||||
@ -70,11 +77,8 @@ export const accountFieldsMeta = (vm) => {
|
||||
if (!vm.account?.name) {
|
||||
updateForm({ username: value })
|
||||
}
|
||||
const maybePrivileged = defaultPrivilegedAccounts.includes(value)
|
||||
if (maybePrivileged) {
|
||||
updateForm({ privileged: true })
|
||||
}
|
||||
}
|
||||
onPrivilegedUser(value, updateForm)
|
||||
}
|
||||
},
|
||||
hidden: () => {
|
||||
@ -92,10 +96,7 @@ export const accountFieldsMeta = (vm) => {
|
||||
vm.usernameChanged = true
|
||||
},
|
||||
change: ([value], updateForm) => {
|
||||
const maybePrivileged = defaultPrivilegedAccounts.includes(value)
|
||||
if (maybePrivileged) {
|
||||
updateForm({ privileged: true })
|
||||
}
|
||||
onPrivilegedUser(value, updateForm)
|
||||
}
|
||||
},
|
||||
hidden: () => {
|
||||
|
@ -51,7 +51,7 @@
|
||||
|
||||
<script>
|
||||
import { mapGetters } from 'vuex'
|
||||
import { accountOtherActions, accountQuickFilters, connectivityMeta } from './const'
|
||||
import { accountOtherActions, accountQuickFilters, connectivityMeta, isDirectoryServiceAccount } from './const'
|
||||
import { openTaskPage } from '@/utils/jms'
|
||||
import {
|
||||
AccountConnectFormatter,
|
||||
@ -182,13 +182,21 @@ export default {
|
||||
},
|
||||
columnsMeta: {
|
||||
name: {
|
||||
width: '120px',
|
||||
minWidth: '60px',
|
||||
formatterArgs: {
|
||||
can: () => vm.$hasPerm('accounts.view_account'),
|
||||
getRoute: ({ row }) => ({
|
||||
name: 'AccountDetail',
|
||||
params: { id: row.id }
|
||||
}),
|
||||
getTitle: ({ row }) => {
|
||||
let title = row.name
|
||||
if (row.ds && this.asset && this.asset.id !== row.asset.id) {
|
||||
const dsID = row.ds.id.split('-')[0]
|
||||
title = `${row.name}@${dsID}`
|
||||
}
|
||||
return title
|
||||
},
|
||||
getDrawerTitle({ row }) {
|
||||
return `${row.username}@${row.asset.name}`
|
||||
}
|
||||
@ -208,15 +216,19 @@ export default {
|
||||
width: '80px',
|
||||
formatter: AccountConnectFormatter,
|
||||
formatterArgs: {
|
||||
buttonIcon: 'fa fa-desktop',
|
||||
url: '/api/v1/assets/assets/{id}',
|
||||
can: () => this.currentUserIsSuperAdmin,
|
||||
connectUrlTemplate: (row) => `/luna/pam_connect/${row.id}/${row.username}/${row.asset.id}/${row.asset.name}/`,
|
||||
setMapItem: (id, protocol) => {
|
||||
this.$store.commit('table/SET_PROTOCOL_MAP_ITEM', {
|
||||
key: id,
|
||||
value: protocol
|
||||
})
|
||||
asset: this.asset,
|
||||
can: ({ row }) => {
|
||||
return this.currentUserIsSuperAdmin
|
||||
}
|
||||
}
|
||||
},
|
||||
ds: {
|
||||
width: '100px',
|
||||
formatter: (row) => {
|
||||
if (row.ds && row.ds['domain_name']) {
|
||||
return row.ds['domain_name']
|
||||
} else {
|
||||
return ''
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -229,12 +241,20 @@ export default {
|
||||
}
|
||||
},
|
||||
asset: {
|
||||
minWidth: '100px',
|
||||
formatter: function(row) {
|
||||
return row.asset.name
|
||||
}
|
||||
},
|
||||
username: {
|
||||
width: '120px'
|
||||
minWidth: '60px',
|
||||
formatter: function(row) {
|
||||
if (row.ds && row.ds['domain_name']) {
|
||||
return `${row.username}@${row.ds['domain_name']}`
|
||||
} else {
|
||||
return row.username
|
||||
}
|
||||
}
|
||||
},
|
||||
secret_type: {
|
||||
formatter: function(row) {
|
||||
@ -264,10 +284,15 @@ export default {
|
||||
formatter: ActionsFormatter,
|
||||
has: this.showActions,
|
||||
formatterArgs: {
|
||||
performDelete: ({ row }) => {
|
||||
const id = row.id
|
||||
const url = `/api/v1/accounts/accounts/${id}/`
|
||||
return this.$axios.delete(url)
|
||||
},
|
||||
hasUpdate: false, // can set function(row, value)
|
||||
hasDelete: true, // can set function(row, value)
|
||||
hasClone: false,
|
||||
canDelete: () => vm.$hasPerm('accounts.delete_account'),
|
||||
canDelete: ({ row }) => vm.$hasPerm('accounts.delete_account') && !isDirectoryServiceAccount(row, this),
|
||||
moreActionsTitle: this.$t('More'),
|
||||
extraActions: accountOtherActions(this)
|
||||
}
|
||||
|
@ -24,162 +24,191 @@ export const connectivityMeta = {
|
||||
width: '130px'
|
||||
}
|
||||
|
||||
export const accountOtherActions = (vm) => [
|
||||
{
|
||||
name: 'View',
|
||||
title: vm.$t('View'),
|
||||
can: vm.$hasPerm('accounts.view_accountsecret'),
|
||||
type: 'primary',
|
||||
order: 1,
|
||||
callback: ({ row }) => {
|
||||
// debugger
|
||||
vm.secretUrl = `/api/v1/accounts/account-secrets/${row.id}/`
|
||||
vm.account = row
|
||||
vm.showViewSecretDialog = false
|
||||
setTimeout(() => {
|
||||
vm.showViewSecretDialog = true
|
||||
})
|
||||
}
|
||||
},
|
||||
{
|
||||
name: 'Update',
|
||||
title: vm.$t('Edit'),
|
||||
can: vm.$hasPerm('accounts.change_account') && !vm.$store.getters.currentOrgIsRoot,
|
||||
callback: ({ row }) => {
|
||||
vm.isUpdateAccount = true
|
||||
const data = {
|
||||
...vm.asset,
|
||||
...row.asset
|
||||
}
|
||||
vm.iAsset = data
|
||||
vm.account = row
|
||||
vm.addTemplate = false
|
||||
vm.showAddDialog = false
|
||||
setTimeout(() => {
|
||||
vm.showAddDialog = true
|
||||
})
|
||||
}
|
||||
},
|
||||
{
|
||||
name: 'UpdateSecret',
|
||||
title: vm.$t('EditSecret'),
|
||||
can: vm.$hasPerm('accounts.change_account') && !vm.$store.getters.currentOrgIsRoot,
|
||||
callback: ({ row }) => {
|
||||
const data = {
|
||||
...vm.asset,
|
||||
...row.asset
|
||||
}
|
||||
vm.account = row
|
||||
vm.iAsset = data
|
||||
vm.showUpdateSecretDialog = false
|
||||
vm.accountCreateUpdateTitle = vm.$t('UpdateAccount')
|
||||
setTimeout(() => {
|
||||
vm.showUpdateSecretDialog = true
|
||||
})
|
||||
}
|
||||
},
|
||||
{
|
||||
name: 'Clone',
|
||||
title: vm.$t('Duplicate'),
|
||||
has: () => {
|
||||
return !vm.asset
|
||||
},
|
||||
can: vm.$hasPerm('accounts.add_account') && !vm.$store.getters.currentOrgIsRoot,
|
||||
callback: ({ row }) => {
|
||||
vm.account = {
|
||||
name: `${row.name} - ${vm.$t('Duplicate').toLowerCase()}`,
|
||||
username: `${row.username} - ${vm.$t('Duplicate').toLowerCase()}`,
|
||||
payload: 'pam_account_clone'
|
||||
}
|
||||
vm.iAsset = vm.asset
|
||||
export function isDirectoryServiceAccount(account, vm) {
|
||||
return vm.asset && vm.asset.id !== account.asset.id
|
||||
}
|
||||
|
||||
vm.showAddDialog = false
|
||||
setTimeout(() => {
|
||||
export const accountOtherActions = (vm) => {
|
||||
return [
|
||||
{
|
||||
name: 'View',
|
||||
title: vm.$t('View'),
|
||||
can: vm.$hasPerm('accounts.view_accountsecret'),
|
||||
type: 'primary',
|
||||
order: 1,
|
||||
callback: ({ row }) => {
|
||||
// debugger
|
||||
vm.secretUrl = `/api/v1/accounts/account-secrets/${row.id}/`
|
||||
vm.account = row
|
||||
vm.showViewSecretDialog = false
|
||||
setTimeout(() => {
|
||||
vm.showViewSecretDialog = true
|
||||
})
|
||||
}
|
||||
},
|
||||
{
|
||||
name: 'Update',
|
||||
title: vm.$t('Edit'),
|
||||
can: ({ row }) => {
|
||||
return vm.$hasPerm('accounts.change_account') &&
|
||||
!vm.$store.getters.currentOrgIsRoot &&
|
||||
!isDirectoryServiceAccount(row, vm)
|
||||
},
|
||||
callback: ({ row }) => {
|
||||
vm.isUpdateAccount = true
|
||||
const data = {
|
||||
...vm.asset,
|
||||
...row.asset
|
||||
}
|
||||
vm.iAsset = data
|
||||
vm.account = row
|
||||
vm.addTemplate = false
|
||||
vm.showAddDialog = false
|
||||
setTimeout(() => {
|
||||
vm.showAddDialog = true
|
||||
})
|
||||
}
|
||||
},
|
||||
{
|
||||
name: 'UpdateSecret',
|
||||
title: vm.$t('EditSecret'),
|
||||
can: ({ row }) => {
|
||||
return vm.$hasPerm('accounts.change_account') &&
|
||||
!vm.$store.getters.currentOrgIsRoot &&
|
||||
!isDirectoryServiceAccount(row, vm)
|
||||
},
|
||||
callback: ({ row }) => {
|
||||
const data = {
|
||||
...vm.asset,
|
||||
...row.asset
|
||||
}
|
||||
vm.account = row
|
||||
vm.iAsset = data
|
||||
vm.showUpdateSecretDialog = false
|
||||
vm.accountCreateUpdateTitle = vm.$t('UpdateAccount')
|
||||
setTimeout(() => {
|
||||
vm.showUpdateSecretDialog = true
|
||||
})
|
||||
}
|
||||
},
|
||||
{
|
||||
name: 'Clone',
|
||||
title: vm.$t('Duplicate'),
|
||||
has: () => {
|
||||
return !vm.asset
|
||||
},
|
||||
can: ({ row }) => {
|
||||
return vm.$hasPerm('accounts.add_account') &&
|
||||
!vm.$store.getters.currentOrgIsRoot &&
|
||||
!isDirectoryServiceAccount(row, vm)
|
||||
},
|
||||
callback: ({ row }) => {
|
||||
vm.account = {
|
||||
name: `${row.name} - ${vm.$t('Duplicate').toLowerCase()}`,
|
||||
username: `${row.username} - ${vm.$t('Duplicate').toLowerCase()}`,
|
||||
payload: 'pam_account_clone'
|
||||
}
|
||||
vm.iAsset = vm.asset
|
||||
|
||||
vm.showAddDialog = false
|
||||
setTimeout(() => {
|
||||
vm.showAddDialog = true
|
||||
})
|
||||
}
|
||||
},
|
||||
{
|
||||
name: 'Test',
|
||||
title: vm.$t('VerifySecret'),
|
||||
divided: true,
|
||||
can: ({ row }) =>
|
||||
!vm.$store.getters.currentOrgIsRoot &&
|
||||
vm.$hasPerm('accounts.verify_account') &&
|
||||
row.asset['auto_config'].ansible_enabled &&
|
||||
row.asset['auto_config'].ping_enabled,
|
||||
callback: ({ row }) => {
|
||||
vm.$axios.post(
|
||||
`/api/v1/accounts/accounts/tasks/`,
|
||||
{ action: 'verify', accounts: [row.id] }
|
||||
).then(res => {
|
||||
openTaskPage(res['task'])
|
||||
})
|
||||
}
|
||||
},
|
||||
{
|
||||
name: 'ClearSecret',
|
||||
title: vm.$t('ClearSecret'),
|
||||
can: ({ row }) => {
|
||||
return vm.$hasPerm('accounts.change_account') &&
|
||||
!isDirectoryServiceAccount(row, vm)
|
||||
},
|
||||
type: 'primary',
|
||||
callback: ({ row }) => {
|
||||
vm.$axios.patch(
|
||||
`/api/v1/accounts/accounts/clear-secret/`,
|
||||
{ account_ids: [row.id] }
|
||||
).then(() => {
|
||||
vm.$message.success(vm.$tc('ClearSuccessMsg'))
|
||||
})
|
||||
}
|
||||
},
|
||||
{
|
||||
name: 'SecretHistory',
|
||||
title: vm.$t('HistoryPassword'),
|
||||
can: () => vm.$hasPerm('accounts.view_accountsecret'),
|
||||
type: 'primary',
|
||||
callback: ({ row }) => {
|
||||
vm.account = row
|
||||
vm.currentAccountColumn = row
|
||||
vm.showViewSecretDialog = false
|
||||
vm.secretUrl = `/api/v1/accounts/account-secrets/${row.id}/`
|
||||
setTimeout(() => {
|
||||
vm.showViewSecretDialog = true
|
||||
})
|
||||
}
|
||||
},
|
||||
{
|
||||
name: 'CopyToOther',
|
||||
title: vm.$t('CopyToAsset'),
|
||||
type: 'primary',
|
||||
divided: true,
|
||||
can: ({ row }) => {
|
||||
return vm.$hasPerm('accounts.add_account') &&
|
||||
!vm.$store.getters.currentOrgIsRoot &&
|
||||
!isDirectoryServiceAccount(row, vm)
|
||||
},
|
||||
has: () => {
|
||||
return !vm.asset
|
||||
},
|
||||
callback: ({ row }) => {
|
||||
vm.accountCreateUpdateTitle = vm.$t('CopyToOther')
|
||||
vm.$route.query.flag = 'copy'
|
||||
vm.iAsset = vm.asset
|
||||
vm.account = row
|
||||
vm.showAddDialog = true
|
||||
})
|
||||
}
|
||||
},
|
||||
{
|
||||
name: 'Test',
|
||||
title: vm.$t('VerifySecret'),
|
||||
divided: true,
|
||||
can: ({ row }) =>
|
||||
!vm.$store.getters.currentOrgIsRoot &&
|
||||
vm.$hasPerm('accounts.verify_account') &&
|
||||
row.asset['auto_config'].ansible_enabled &&
|
||||
row.asset['auto_config'].ping_enabled,
|
||||
callback: ({ row }) => {
|
||||
vm.$axios.post(
|
||||
`/api/v1/accounts/accounts/tasks/`,
|
||||
{ action: 'verify', accounts: [row.id] }
|
||||
).then(res => {
|
||||
openTaskPage(res['task'])
|
||||
})
|
||||
}
|
||||
},
|
||||
{
|
||||
name: 'ClearSecret',
|
||||
title: vm.$t('ClearSecret'),
|
||||
can: vm.$hasPerm('accounts.change_account'),
|
||||
type: 'primary',
|
||||
callback: ({ row }) => {
|
||||
vm.$axios.patch(
|
||||
`/api/v1/accounts/accounts/clear-secret/`,
|
||||
{ account_ids: [row.id] }
|
||||
).then(() => {
|
||||
vm.$message.success(vm.$tc('ClearSuccessMsg'))
|
||||
})
|
||||
}
|
||||
},
|
||||
{
|
||||
name: 'SecretHistory',
|
||||
title: vm.$t('HistoryPassword'),
|
||||
can: () => vm.$hasPerm('accounts.view_accountsecret'),
|
||||
type: 'primary',
|
||||
callback: ({ row }) => {
|
||||
vm.account = row
|
||||
vm.currentAccountColumn = row
|
||||
vm.showViewSecretDialog = false
|
||||
vm.secretUrl = `/api/v1/accounts/account-secrets/${row.id}/`
|
||||
setTimeout(() => {
|
||||
vm.showViewSecretDialog = true
|
||||
})
|
||||
}
|
||||
},
|
||||
{
|
||||
name: 'CopyToOther',
|
||||
title: vm.$t('CopyToAsset'),
|
||||
type: 'primary',
|
||||
divided: true,
|
||||
can: () => vm.$hasPerm('accounts.add_account') && !vm.$store.getters.currentOrgIsRoot,
|
||||
has: () => {
|
||||
return !vm.asset
|
||||
}
|
||||
},
|
||||
callback: ({ row }) => {
|
||||
vm.accountCreateUpdateTitle = vm.$t('CopyToOther')
|
||||
vm.$route.query.flag = 'copy'
|
||||
vm.iAsset = vm.asset
|
||||
vm.account = row
|
||||
vm.showAddDialog = true
|
||||
{
|
||||
name: 'MoveToOther',
|
||||
title: vm.$t('MoveToAsset'),
|
||||
type: 'primary',
|
||||
can: ({ row }) => {
|
||||
return vm.$hasPerm('accounts.add_account') &&
|
||||
!vm.$store.getters.currentOrgIsRoot &&
|
||||
!isDirectoryServiceAccount(row, vm)
|
||||
},
|
||||
has: () => {
|
||||
return !vm.asset
|
||||
},
|
||||
callback: ({ row }) => {
|
||||
vm.accountCreateUpdateTitle = vm.$t('MoveToOther')
|
||||
vm.$route.query.flag = 'move'
|
||||
vm.iAsset = vm.asset
|
||||
vm.account = row
|
||||
vm.showAddDialog = true
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
name: 'MoveToOther',
|
||||
title: vm.$t('MoveToAsset'),
|
||||
type: 'primary',
|
||||
can: () => vm.$hasPerm('accounts.add_account') && !vm.$store.getters.currentOrgIsRoot,
|
||||
has: () => {
|
||||
return !vm.asset
|
||||
},
|
||||
callback: ({ row }) => {
|
||||
vm.accountCreateUpdateTitle = vm.$t('MoveToOther')
|
||||
vm.$route.query.flag = 'move'
|
||||
vm.iAsset = vm.asset
|
||||
vm.account = row
|
||||
vm.showAddDialog = true
|
||||
}
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
|
||||
export const accountQuickFilters = (vm) => [
|
||||
{
|
||||
|
@ -67,13 +67,13 @@
|
||||
style="width: 100%; height: 800px;border: none;"
|
||||
/>
|
||||
|
||||
<span v-if="subTypeSelected === 'sms'" style="margin: -1px 0 0 20px;">
|
||||
<span v-if="subTypeSelected === 'sms' || subTypeSelected === 'email'" style="margin: -1px 0 0 20px;">
|
||||
<el-button
|
||||
:disabled="smsBtnDisabled"
|
||||
size="mini"
|
||||
style="line-height: 14px; float: right;"
|
||||
type="primary"
|
||||
@click="sendSMSCode"
|
||||
@click="sendCode"
|
||||
>
|
||||
{{ smsBtnText }}
|
||||
</el-button>
|
||||
@ -204,8 +204,8 @@ export default {
|
||||
logout() {
|
||||
window.location.href = `${process.env.VUE_APP_LOGOUT_PATH}?next=${this.$route.fullPath}`
|
||||
},
|
||||
sendSMSCode() {
|
||||
this.$axios.post(`/api/v1/authentication/mfa/select/`, { type: 'sms' }).then(res => {
|
||||
sendCode() {
|
||||
this.$axios.post(`/api/v1/authentication/mfa/select/`, { type: this.subTypeSelected }).then(res => {
|
||||
this.$message.success(this.$tc('VerificationCodeSent'))
|
||||
let time = 60
|
||||
this.smsBtnDisabled = true
|
||||
|
@ -361,9 +361,10 @@ export default {
|
||||
},
|
||||
// 填充表达式
|
||||
submitFill() {
|
||||
const minMinutes = 60
|
||||
const crontabDiffMin = this.crontabDiff / 1000 / 60
|
||||
if (crontabDiffMin > 0 && crontabDiffMin < 10) {
|
||||
const msg = this.$tc('CrontabDiffError')
|
||||
if (crontabDiffMin > 0 && crontabDiffMin < minMinutes) {
|
||||
const msg = this.$t('CrontabDiffError', { minutes: minMinutes })
|
||||
this.$message.error(msg)
|
||||
return
|
||||
}
|
||||
|
@ -10,15 +10,18 @@
|
||||
<el-form-item>
|
||||
<el-radio v-model="radioValue" :label="2">
|
||||
{{ this.$t('From') }}
|
||||
<el-input-number v-model="cycle01" :max="60" :min="0" size="mini" /> -
|
||||
<el-input-number v-model="cycle02" :max="60" :min="0" size="mini" /> {{ this.$t('Hour') }}
|
||||
<el-input-number v-model="cycle01" :max="23" :min="0" size="mini" />
|
||||
-
|
||||
<el-input-number v-model="cycle02" :max="23" :min="0" size="mini" />
|
||||
{{ this.$t('Hour') }}
|
||||
</el-radio>
|
||||
</el-form-item>
|
||||
|
||||
<el-form-item>
|
||||
<el-radio v-model="radioValue" :label="3">
|
||||
{{ this.$t('Every') }}
|
||||
<el-input-number v-model="average02" :max="60" :min="1" size="mini" /> {{ this.$t('Hour') }} {{ this.$t('ExecuteOnce') }}
|
||||
<el-input-number v-model="average02" :max="23" :min="1" size="mini" />
|
||||
{{ this.$t('Hour') }} {{ this.$t('ExecuteOnce') }}
|
||||
</el-radio>
|
||||
</el-form-item>
|
||||
|
||||
@ -32,7 +35,7 @@
|
||||
multiple
|
||||
style="width:100%"
|
||||
>
|
||||
<el-option v-for="item in 24" :key="item" :value="item-1">{{ item-1 }}</el-option>
|
||||
<el-option v-for="item in 24" :key="item" :value="item-1">{{ item - 1 }}</el-option>
|
||||
</el-select>
|
||||
</el-radio>
|
||||
</el-form-item>
|
||||
|
@ -9,7 +9,7 @@
|
||||
<el-form-item>
|
||||
<el-radio v-model="radioValue" :label="3">
|
||||
{{ this.$t('From') }}
|
||||
<el-input-number v-model="average02" :max="60" :min="1" size="mini" />
|
||||
<el-input-number v-model="average02" :max="59" :min="1" size="mini" />
|
||||
{{ this.$t('Min') }} {{ this.$t('ExecuteOnce') }}
|
||||
</el-radio>
|
||||
</el-form-item>
|
||||
|
@ -39,6 +39,13 @@ export default {
|
||||
showCron: false
|
||||
}
|
||||
},
|
||||
watch: {
|
||||
value: {
|
||||
handler(val) {
|
||||
this.crontabFill(val)
|
||||
}
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
crontabFill(value) {
|
||||
// 确定后回传的值
|
||||
|
@ -53,6 +53,7 @@ export default {
|
||||
const vm = this
|
||||
const platform = this.$route.query.platform
|
||||
return {
|
||||
platform: '',
|
||||
loading: true,
|
||||
form: this.protocol,
|
||||
platformDetail: platform ? '#/console/assets/platforms/' + platform : '',
|
||||
@ -97,11 +98,29 @@ export default {
|
||||
}
|
||||
}
|
||||
},
|
||||
async mounted() {
|
||||
try {
|
||||
const drawActionMeta = await this.$store.dispatch('common/getDrawerActionMeta')
|
||||
const platform = drawActionMeta.row.platform.id
|
||||
const name = drawActionMeta.row.platform.name
|
||||
|
||||
if (platform) {
|
||||
this.platformDetail = `/ui/#/settings/platforms?id=${platform}&name=${name}`
|
||||
} else {
|
||||
this.platformDetail = ''
|
||||
}
|
||||
} catch (e) {
|
||||
throw new Error(e)
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
onSubmit(form) {
|
||||
this.protocol = Object.assign(this.protocol, form)
|
||||
this.$emit('update:visible', false)
|
||||
this.$emit('confirm', this.protocol)
|
||||
},
|
||||
openInNewTab() {
|
||||
window.open(this.platformDetail, '_blank')
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -212,9 +212,6 @@ export default {
|
||||
::v-deep {
|
||||
.el-empty {
|
||||
margin: 0 auto;
|
||||
|
||||
.el-empty__image {
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -226,6 +223,8 @@ export default {
|
||||
|
||||
.card-container {
|
||||
display: flex;
|
||||
justify-content: left;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.el-col, div {
|
||||
|
@ -1,7 +1,7 @@
|
||||
<template>
|
||||
<div class="item-info">
|
||||
<el-row>
|
||||
<el-col v-for="item of infos" :key="item.content" :span="12" class="panel-item">
|
||||
<el-col v-for="(item, i) of infos" :key="i" :span="12" class="panel-item">
|
||||
<small class="item-label">{{ item.title }}</small>
|
||||
<h4 class="item-value">{{ item.content }}</h4>
|
||||
</el-col>
|
||||
|
@ -1,24 +1,33 @@
|
||||
<template>
|
||||
<div>
|
||||
<el-dropdown
|
||||
v-if="hasPerm"
|
||||
:disabled="!hasPerm"
|
||||
:show-timeout="500"
|
||||
class="action-connect"
|
||||
size="small"
|
||||
trigger="hover"
|
||||
:show-timeout="500"
|
||||
@command="handleCommand"
|
||||
type="primary"
|
||||
@command="handleProtocolConnect"
|
||||
@visible-change="visibleChange"
|
||||
>
|
||||
<el-button
|
||||
plain
|
||||
size="mini"
|
||||
type="primary"
|
||||
@click="handlePamConnect"
|
||||
:disabled="!hasPerm"
|
||||
@click="handleBtnConnect"
|
||||
>
|
||||
<i :class="IButtonIcon" />
|
||||
<i :class="iButtonIcon" :style="{ color: hasPerm ? '' : '#fff' }" />
|
||||
</el-button>
|
||||
<el-dropdown-menu slot="dropdown">
|
||||
<el-dropdown-item command="Title" disabled>
|
||||
{{ ITitleText }}
|
||||
|
||||
<el-dropdown-menu v-if="!isClick" slot="dropdown">
|
||||
<el-dropdown-item command="title" disabled>
|
||||
<div v-if="getProtocolsLoading">
|
||||
{{ $t('Loading') }}
|
||||
</div>
|
||||
<div v-else>
|
||||
{{ dropdownTitle }}
|
||||
</div>
|
||||
</el-dropdown-item>
|
||||
<el-dropdown-item divided />
|
||||
<el-dropdown-item
|
||||
@ -30,16 +39,6 @@
|
||||
</el-dropdown-item>
|
||||
</el-dropdown-menu>
|
||||
</el-dropdown>
|
||||
|
||||
<el-button
|
||||
v-else
|
||||
plain
|
||||
size="mini"
|
||||
type="primary"
|
||||
:disabled="!hasPerm"
|
||||
>
|
||||
<i :class="IButtonIcon" style="color: #fff" />
|
||||
</el-button>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
@ -50,85 +49,74 @@ export default {
|
||||
name: 'AccountConnectFormatter',
|
||||
extends: BaseFormatter,
|
||||
props: {
|
||||
buttonIcon: {
|
||||
type: String,
|
||||
default: 'fa fa-desktop'
|
||||
},
|
||||
titleText: {
|
||||
type: String,
|
||||
default: ''
|
||||
},
|
||||
url: {
|
||||
type: String,
|
||||
default: ''
|
||||
formatterArgsDefault: {
|
||||
type: Object,
|
||||
default() {
|
||||
return {
|
||||
can: () => true,
|
||||
getConnectUrl: (row, protocol, asset) => {
|
||||
const assetId = asset ? asset.id : row.asset.id
|
||||
return `/luna/admin-connect/?
|
||||
asset=${assetId}
|
||||
&account=${row.id}
|
||||
&protocol=${protocol}
|
||||
`.replace(/\s+/g, '')
|
||||
},
|
||||
asset: null,
|
||||
assetUrl: '/api/v1/assets/assets/{id}/',
|
||||
buttonIcon: 'fa fa-desktop'
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
hasPerm: false,
|
||||
protocols: []
|
||||
formatterArgs: Object.assign(this.formatterArgsDefault, this.col.formatterArgs),
|
||||
protocols: [],
|
||||
isClick: false,
|
||||
getProtocolsLoading: false,
|
||||
dropdownTitle: this.$t('Protocols')
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
IButtonIcon() {
|
||||
return this.buttonIcon
|
||||
iButtonIcon() {
|
||||
return this.formatterArgs.buttonIcon
|
||||
},
|
||||
ITitleText() {
|
||||
return this.titleText || this.$t('SelectProtocol')
|
||||
hasPerm() {
|
||||
return this.formatterArgs.can({ row: this.row, cellValue: this.cellValue })
|
||||
}
|
||||
},
|
||||
mounted() {
|
||||
this.hasPerm = this.formatterArgs.can()
|
||||
},
|
||||
methods: {
|
||||
handleCommand(protocol) {
|
||||
if (protocol === 'Title') return
|
||||
|
||||
this.formatterArgs.setMapItem(this.row.id, protocol)
|
||||
this.handleWindowOpen(this.row, protocol)
|
||||
handleProtocolConnect(protocol) {
|
||||
const url = this.formatterArgs.getConnectUrl(this.row, protocol, this.formatterArgs.asset)
|
||||
window.open(url, '_blank')
|
||||
},
|
||||
visibleChange(visible) {
|
||||
if (visible) {
|
||||
this.getProtocols(this.row.asset.id)
|
||||
}
|
||||
},
|
||||
handleWindowOpen(row, protocol) {
|
||||
const url = this.formatterArgs.connectUrlTemplate(row) + `${protocol}`
|
||||
|
||||
this.$nextTick(() => {
|
||||
window.open(url, '_blank')
|
||||
})
|
||||
},
|
||||
async handlePamConnect() {
|
||||
const protocolMap = this.$store.getters.protocolMap
|
||||
|
||||
if (protocolMap.has(this.row.id)) {
|
||||
// 直连
|
||||
const protocol = protocolMap.get(this.row.id)
|
||||
this.handleWindowOpen(this.row, protocol)
|
||||
} else {
|
||||
try {
|
||||
const url = this.formatterArgs.url.replace('{id}', this.row.asset.id)
|
||||
const res = await this.$axios.get(url)
|
||||
|
||||
if (res && res.protocols.length > 0) {
|
||||
const protocol = res.protocols.filter(protocol => protocol.name !== 'sftp')[0]
|
||||
|
||||
this.formatterArgs.setMapItem(this.row.id, protocol.name)
|
||||
this.handleWindowOpen(this.row, protocol.name)
|
||||
}
|
||||
} catch (e) {
|
||||
throw new Error(`Error getting protocols: ${e}`)
|
||||
}
|
||||
async handleBtnConnect() {
|
||||
this.isClick = true
|
||||
if (this.protocols === 0) {
|
||||
await this.getProtocols(this.row.asset.id)
|
||||
}
|
||||
|
||||
if (this.protocols.length > 0) {
|
||||
this.handleProtocolConnect(this.protocols[0].name)
|
||||
}
|
||||
setTimeout(() => {
|
||||
this.isClick = false
|
||||
}, 1000)
|
||||
},
|
||||
async getProtocols(assetId) {
|
||||
if (this.protocols.length > 0) return
|
||||
try {
|
||||
const url = this.formatterArgs.url.replace('{id}', assetId)
|
||||
const url = this.formatterArgs.assetUrl.replace('{id}', assetId)
|
||||
const res = await this.$axios.get(url)
|
||||
|
||||
// 暂将 SFTP 过滤
|
||||
if (res) this.protocols = res.protocols.filter(protocol => protocol.name !== 'sftp')
|
||||
// TODO 暂时将 sftp 隐藏
|
||||
this.protocols = res.protocols.filter(protocol => (protocol.name !== 'sftp') && (protocol.name !== 'winrm')) || []
|
||||
} catch (e) {
|
||||
throw new Error(`Error getting protocols: ${e}`)
|
||||
}
|
||||
@ -137,7 +125,7 @@ export default {
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
<style lang="scss" scoped>
|
||||
.el-dropdown-menu__item.is-disabled {
|
||||
font-weight: 500;
|
||||
color: var(--el-text-color-secondary);
|
||||
|
@ -10,7 +10,7 @@
|
||||
<span>{{ $t('No accounts') }}</span>
|
||||
</div>
|
||||
<div v-for="account of accountData" :key="account.id" class="detail-item">
|
||||
<span>{{ account.name }}({{ account.username }})</span>
|
||||
<span>{{ getDisplay(account) }}</span>
|
||||
</div>
|
||||
</div>
|
||||
<el-button slot="reference" class="link-btn" plain size="mini" type="primary">
|
||||
@ -39,10 +39,20 @@ export default {
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
getDisplay(account) {
|
||||
const { username, name } = account
|
||||
if (username.startsWith('@')) {
|
||||
return name
|
||||
} else if (name === username) {
|
||||
return username
|
||||
} else {
|
||||
return `${name}(${username})`
|
||||
}
|
||||
},
|
||||
async getAsyncItems() {
|
||||
this.loading = true
|
||||
const userId = this.$route.params.id || 'self'
|
||||
const url = `/api/v1/perms/users/${userId}/assets/${this.row.id}`
|
||||
const url = `/api/v1/perms/users/${userId}/assets/${this.row.id}/`
|
||||
this.$axios.get(url).then(res => {
|
||||
this.accountData = res?.permed_accounts || []
|
||||
}).finally(() => {
|
||||
|
@ -6,7 +6,7 @@
|
||||
<i class="fa fa-check" />
|
||||
</el-button>
|
||||
<el-dropdown-menu slot="dropdown">
|
||||
<el-dropdown-item v-for="item of iActions" :key="item.name" :command="item.name">
|
||||
<el-dropdown-item v-for="item of iActions" :key="item.name" :command="item.name" :disabled="item.disabled">
|
||||
{{ item.label }}
|
||||
</el-dropdown-item>
|
||||
</el-dropdown-menu>
|
||||
@ -123,17 +123,20 @@ export default {
|
||||
{
|
||||
name: 'delete_remote',
|
||||
label: this.$t('DeleteRemoteAccount'),
|
||||
has: this.row.remote_present
|
||||
has: this.row.remote_present,
|
||||
disabled: this.$store.getters.currentOrgIsRoot
|
||||
},
|
||||
{
|
||||
name: 'add_account',
|
||||
label: this.$t('AddAccount'),
|
||||
has: !this.row.present
|
||||
has: !this.row.present,
|
||||
disabled: this.$store.getters.currentOrgIsRoot
|
||||
},
|
||||
{
|
||||
name: 'change_password_add',
|
||||
label: this.$t('AddAccountAfterChangingPassword'),
|
||||
has: !this.row.present
|
||||
has: !this.row.present,
|
||||
disabled: this.$store.getters.currentOrgIsRoot
|
||||
}
|
||||
]
|
||||
return actions.filter(action => {
|
||||
|
@ -45,7 +45,7 @@ export default {
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
<style lang="scss" scoped>
|
||||
.platform-td {
|
||||
display: flex;
|
||||
flex-wrap: nowrap;
|
||||
@ -55,6 +55,7 @@ export default {
|
||||
.icon-zone {
|
||||
width: 1.5em;
|
||||
height: 1.5em;
|
||||
flex-shrink: 0;
|
||||
|
||||
.asset-icon {
|
||||
height: 100%;
|
||||
@ -66,6 +67,10 @@ export default {
|
||||
|
||||
.platform-name {
|
||||
flex: 1;
|
||||
min-width: 0;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -322,15 +322,15 @@ export default {
|
||||
// this.$emit('tagSearch', this.filterMaps)
|
||||
|
||||
// 修改查询参数时改变url中保存的参数
|
||||
if (this.getUrlQuery) {
|
||||
let newQuery = _.cloneDeep(this.$route.query)
|
||||
if (this.filterKey.startsWith('search')) {
|
||||
newQuery = { ...newQuery, search: encodeURI(this.filterMaps.search) }
|
||||
} else {
|
||||
newQuery = { ...newQuery, [this.filterKey]: encodeURI(this.filterValue) }
|
||||
}
|
||||
this.$router.replace({ query: newQuery })
|
||||
}
|
||||
// if (this.getUrlQuery) {
|
||||
// let newQuery = _.cloneDeep(this.$route.query)
|
||||
// if (this.filterKey.startsWith('search')) {
|
||||
// newQuery = { ...newQuery, search: encodeURI(this.filterMaps.search) }
|
||||
// } else {
|
||||
// newQuery = { ...newQuery, [this.filterKey]: encodeURI(this.filterValue) }
|
||||
// }
|
||||
// this.$router.replace({ query: newQuery })
|
||||
// }
|
||||
|
||||
this.filterKey = ''
|
||||
this.filterValue = ''
|
||||
|
@ -53,24 +53,24 @@ export default {
|
||||
resizeObserver: null,
|
||||
span: 12,
|
||||
isShow: true,
|
||||
iValue: this.value
|
||||
iValue: this.sanitizeContent(this.value)
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
sanitizedValue() {
|
||||
// 转义特殊字符
|
||||
let content = this.iValue.replace(/\\/g, '\\\\').replace(/\$/g, '\\$')
|
||||
const content = this.iValue.replace(/\\/g, '\\\\').replace(/\$/g, '\\$')
|
||||
|
||||
// 使用 DOMPurify 进行 XSS 过滤
|
||||
content = DOMPurify.sanitize(content)
|
||||
|
||||
return content
|
||||
return this.sanitizeContent(content)
|
||||
}
|
||||
},
|
||||
watch: {
|
||||
value(newVal) {
|
||||
this.iValue = this.sanitizeContent(newVal)
|
||||
}
|
||||
},
|
||||
mounted() {
|
||||
this.$nextTick(() => {
|
||||
this.resizeObserver = new ResizeObserver(entries => {
|
||||
// 监听高度变化
|
||||
const height = entries[0].target.offsetHeight
|
||||
if (height) {
|
||||
this.height = height
|
||||
@ -90,8 +90,19 @@ export default {
|
||||
this.resizeObserver = null
|
||||
},
|
||||
methods: {
|
||||
sanitizeContent(content) {
|
||||
if (!content) return ''
|
||||
|
||||
return DOMPurify.sanitize(content, {
|
||||
ALLOWED_TAGS: ['p', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'ul', 'ol', 'li', 'strong', 'em', 'code', 'pre', 'blockquote', 'a'],
|
||||
FORBID_TAGS: ['script', 'style', 'iframe', 'frame', 'object', 'embed'],
|
||||
FORBID_ATTR: ['onerror', 'onload', 'onclick', 'onmouseover']
|
||||
})
|
||||
},
|
||||
onChange() {
|
||||
this.$emit('change', this.iValue)
|
||||
const sanitizedValue = this.sanitizeContent(this.iValue)
|
||||
this.iValue = sanitizedValue
|
||||
this.$emit('change', sanitizedValue)
|
||||
},
|
||||
onView() {
|
||||
this.isShow = !this.isShow
|
||||
|
@ -38,10 +38,20 @@ export const crontab = {
|
||||
return formValue.is_periodic === false
|
||||
},
|
||||
helpText: i18n.t('CrontabHelpText'),
|
||||
helpTip: i18n.t('CrontabHelpTip')
|
||||
helpTip: i18n.t('CrontabHelpTip'),
|
||||
on: {
|
||||
change: (val, updateForm) => {
|
||||
updateForm({
|
||||
interval: null
|
||||
})
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
const validatorInterval = (rule, value, callback) => {
|
||||
if (value === '') {
|
||||
return callback()
|
||||
}
|
||||
if (parseInt(value) < 1) {
|
||||
return callback(new Error(i18n.t('EnsureThisValueIsGreaterThanOrEqualTo1')))
|
||||
}
|
||||
@ -59,7 +69,14 @@ export const interval = {
|
||||
},
|
||||
rules: [
|
||||
{ validator: validatorInterval }
|
||||
]
|
||||
],
|
||||
on: {
|
||||
input: (val, updateForm) => {
|
||||
updateForm({
|
||||
crontab: ''
|
||||
})
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
export const is_periodic = {
|
||||
|
@ -244,6 +244,7 @@ export default {
|
||||
this.$refs.form.setFieldError(key, err)
|
||||
}
|
||||
}
|
||||
this.$emit('performError', data)
|
||||
}
|
||||
},
|
||||
hasSaveContinue: {
|
||||
|
@ -51,7 +51,7 @@ export default {
|
||||
window.open(this.URLSite.HELP_SUPPORT_URL, '_blank')
|
||||
break
|
||||
case 'enterprise':
|
||||
window.open('https://jumpserver.org/enterprise.html', '_blank')
|
||||
window.open('https://www.jumpserver.com/#section-edition', '_blank')
|
||||
break
|
||||
case 'about':
|
||||
this.visible = true
|
||||
|
@ -38,14 +38,14 @@
|
||||
<div class="disabled-text">
|
||||
{{ $t('UpgradeEnterpriseEditionHelpText') }}
|
||||
</div>
|
||||
<el-button class="upgrade-btn" type="primary">
|
||||
<el-button class="upgrade-btn" type="primary" @click="handleUpgrade">
|
||||
{{ $t('UpgradeEnterpriseEdition') }}
|
||||
</el-button>
|
||||
</div>
|
||||
</IBox>
|
||||
</div>
|
||||
<el-alert v-if="helpMessage" type="success">
|
||||
<span v-sanitize="helpMessage" class="announcement-main" />
|
||||
<el-alert v-if="iHelpMessage" type="success">
|
||||
<span v-sanitize="iHelpMessage" class="announcement-main" />
|
||||
</el-alert>
|
||||
<slot />
|
||||
</PageContent>
|
||||
@ -119,6 +119,9 @@ export default {
|
||||
return true
|
||||
}
|
||||
return window.history.length <= 2
|
||||
},
|
||||
iHelpMessage() {
|
||||
return this.helpMessage || this.helpTip
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
@ -136,7 +139,7 @@ export default {
|
||||
clearTimeout(this.longPressTimer)
|
||||
},
|
||||
handleUpgrade() {
|
||||
const url = 'http://www.jumpserver.org/support/'
|
||||
const url = 'https://www.lxware.hk/pages/about'
|
||||
window.open(url, '_blank')
|
||||
}
|
||||
}
|
||||
@ -153,8 +156,8 @@ export default {
|
||||
overflow-x: hidden;
|
||||
|
||||
.el-alert {
|
||||
margin-top: -5px;
|
||||
margin-bottom: 5px;
|
||||
margin: -5px 0 5px 0!important;
|
||||
width: calc(100% - 10px);
|
||||
}
|
||||
|
||||
.page-content {
|
||||
|
@ -25,7 +25,8 @@ export default [
|
||||
title: i18n.t('UserLoginACLs'),
|
||||
app: 'acls',
|
||||
resource: 'loginacl',
|
||||
disableOrgsChange: true
|
||||
disableOrgsChange: true,
|
||||
licenseRequired: true
|
||||
},
|
||||
children: [
|
||||
{
|
||||
|
@ -89,6 +89,9 @@ const actions = {
|
||||
})
|
||||
})
|
||||
},
|
||||
cleanPlatforms({ commit, dispatch, state }) {
|
||||
state.platforms = []
|
||||
},
|
||||
addToRecentPlatforms({ commit, display, state }, platform) {
|
||||
const recentPlatformIds = state.recentPlatformIds.filter(i => i !== platform.id)
|
||||
recentPlatformIds.unshift(platform.id)
|
||||
|
@ -29,6 +29,9 @@ const mutations = {
|
||||
state.hasValidLicense = settings['XPACK_LICENSE_IS_VALID']
|
||||
}
|
||||
},
|
||||
SET_SECURITY_WATERMARK_ENABLED: (state, value) => {
|
||||
state.publicSettings['SECURITY_WATERMARK_ENABLED'] = value
|
||||
},
|
||||
setTheme(state, data) {
|
||||
state.themeColors = data
|
||||
localStorage.setItem('themeColors', JSON.stringify(data))
|
||||
|
@ -138,13 +138,20 @@ export async function generatePageRoutes({ to, from, next }) {
|
||||
}
|
||||
|
||||
export async function checkUserFirstLogin({ to, from, next }) {
|
||||
// 防止递归调用
|
||||
if (to.path === '/profile/improvement') return true
|
||||
if (store.state.users.profile.is_first_login) {
|
||||
next('/profile/improvement')
|
||||
}
|
||||
const nextRoute = localStorage.getItem('next')
|
||||
if (nextRoute) {
|
||||
localStorage.setItem('next', '')
|
||||
next(nextRoute.replace('#', ''))
|
||||
next({
|
||||
name: 'Improvement',
|
||||
replace: true,
|
||||
query: { _t: Date.now() } // 添加时间戳,防止 from 一样 next 不触发 guard.js router.beforeEach逻辑
|
||||
})
|
||||
} else {
|
||||
const nextRoute = localStorage.getItem('next')
|
||||
if (nextRoute) {
|
||||
localStorage.setItem('next', '')
|
||||
next(nextRoute.replace('#', ''))
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -160,13 +167,18 @@ export async function changeCurrentViewIfNeed({ to, from, next }) {
|
||||
Vue.$log.debug('Change has current view, has perm: ', viewName, '=>', has)
|
||||
if (has) {
|
||||
await store.dispatch('users/changeToView', viewName)
|
||||
return
|
||||
return { status: 'continue' }
|
||||
}
|
||||
viewName = getPropView()
|
||||
// Next 之前要重置 init 状态,否则这些路由守卫就不走了
|
||||
await store.dispatch('app/reset')
|
||||
next(`/${viewName}/`)
|
||||
return new Promise((resolve, reject) => reject(''))
|
||||
|
||||
// new Promise((resolve, reject) => reject('')) 这种方式通过输出发现在页面除此渲染的时候执行两次,
|
||||
// 返回一个 Promise 我理解是为了中断第一次导航,确保只有第二次导航到到有权限的视图。由于第一个 has 为 false
|
||||
// 导致被 startup catch 捕获,而 error 的 trace 之所以锁定为到 runtime 等中也是因为由于 Babel 和 Polyfill 的缘故
|
||||
|
||||
return { status: 'redirected', to: viewName }
|
||||
}
|
||||
|
||||
function onI18nLoaded() {
|
||||
@ -188,6 +200,8 @@ function onI18nLoaded() {
|
||||
export async function startup({ to, from, next }) {
|
||||
// if (store.getters.inited) { return true }
|
||||
if (store.getters.inited) {
|
||||
// 页面初始化后也需要检测
|
||||
await checkUserFirstLogin({ to, from, next })
|
||||
return true
|
||||
}
|
||||
|
||||
@ -200,7 +214,8 @@ export async function startup({ to, from, next }) {
|
||||
await checkLogin({ to, from, next })
|
||||
await onI18nLoaded()
|
||||
await getPublicSetting({ to, from, next }, false)
|
||||
await changeCurrentViewIfNeed({ to, from, next })
|
||||
const viewResult = await changeCurrentViewIfNeed({ to, from, next })
|
||||
if (viewResult && viewResult.status === 'redirected') return true
|
||||
await changeCurrentOrgIfNeed({ to, from, next })
|
||||
await generatePageRoutes({ to, from, next })
|
||||
await checkUserFirstLogin({ to, from, next })
|
||||
|
@ -56,18 +56,9 @@ export default {
|
||||
}
|
||||
},
|
||||
executed_amount: {
|
||||
formatter: DetailFormatter,
|
||||
formatterArgs: {
|
||||
can: vm.$hasPerm('accounts.view_backupaccountexecution'),
|
||||
getRoute({ row }) {
|
||||
return {
|
||||
name: 'AccountBackupList',
|
||||
query: {
|
||||
tab: 'AccountBackupExecutionList',
|
||||
automation_id: row.id
|
||||
}
|
||||
}
|
||||
}
|
||||
formatter: (row) => {
|
||||
const can = vm.$hasPerm('accounts.view_backupaccountexecution')
|
||||
return <el-link onClick={ () => this.handleExecAmount(row) } disabled={ !can }>{ row.executed_amount }</el-link>
|
||||
}
|
||||
},
|
||||
actions: {
|
||||
@ -104,6 +95,17 @@ export default {
|
||||
hasImport: false
|
||||
}
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
handleExecAmount(row) {
|
||||
this.$router.push({
|
||||
name: 'AccountBackupList',
|
||||
query: {
|
||||
tab: 'AccountBackupExecutionList',
|
||||
automation_id: row.id
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
@ -40,6 +40,3 @@ export default {
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
</style>
|
||||
|
@ -61,19 +61,9 @@ export default {
|
||||
width: '180px'
|
||||
},
|
||||
executed_amount: {
|
||||
formatter: DetailFormatter,
|
||||
formatterArgs: {
|
||||
route: 'AccountDiscoverList',
|
||||
can: vm.$hasPerm('accounts.view_changesecretexecution'),
|
||||
getRoute({ row }) {
|
||||
return {
|
||||
name: 'AccountChangeSecretDetail',
|
||||
query: {
|
||||
tab: 'AccountChangeSecretExecutionList',
|
||||
automation_id: row.id
|
||||
}
|
||||
}
|
||||
}
|
||||
formatter: (row) => {
|
||||
const can = vm.$hasPerm('accounts.view_changesecretexecution')
|
||||
return <el-link onClick={ () => this.handleExecAmount(row) } disabled={ !can }>{ row.executed_amount }</el-link>
|
||||
}
|
||||
},
|
||||
actions: {
|
||||
@ -114,6 +104,17 @@ export default {
|
||||
createRoute: 'AccountChangeSecretCreate'
|
||||
}
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
handleExecAmount(row) {
|
||||
this.$router.push({
|
||||
name: 'AccountChangeSecretList',
|
||||
query: {
|
||||
tab: 'AccountChangeSecretExecutionList',
|
||||
automation_id: row.id
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
@ -69,19 +69,9 @@ export default {
|
||||
},
|
||||
periodic_display: {},
|
||||
executed_amount: {
|
||||
formatter: DetailFormatter,
|
||||
formatterArgs: {
|
||||
route: 'AccountDiscoverList',
|
||||
can: vm.$hasPerm('accounts.view_gatheraccountsexecution'),
|
||||
getRoute({ row }) {
|
||||
return {
|
||||
name: 'AccountDiscoverList',
|
||||
query: {
|
||||
tab: 'AccountDiscoverTaskExecutionList',
|
||||
automation_id: row.id
|
||||
}
|
||||
}
|
||||
}
|
||||
formatter: (row) => {
|
||||
const can = vm.$hasPerm('accounts.view_gatheraccountsexecution')
|
||||
return <el-link onClick={ () => this.handleExecAmount(row) } disabled={ !can }>{ row.executed_amount }</el-link>
|
||||
}
|
||||
},
|
||||
actions: {
|
||||
@ -124,6 +114,17 @@ export default {
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
handleExecAmount(row) {
|
||||
this.$router.push({
|
||||
name: 'AccountDiscoverList',
|
||||
query: {
|
||||
tab: 'AccountDiscoverTaskExecutionList',
|
||||
automation_id: row.id
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
@ -64,18 +64,9 @@ export default {
|
||||
showOverflowTooltip: true
|
||||
},
|
||||
executed_amount: {
|
||||
formatter: DetailFormatter,
|
||||
formatterArgs: {
|
||||
can: vm.$hasPerm('accounts.view_pushaccountexecution'),
|
||||
getRoute({ row }) {
|
||||
return {
|
||||
name: 'AccountPushList',
|
||||
query: {
|
||||
tab: 'AccountPushExecutionList',
|
||||
automation_id: row.id
|
||||
}
|
||||
}
|
||||
}
|
||||
formatter: (row) => {
|
||||
const can = vm.$hasPerm('accounts.view_pushaccountexecution')
|
||||
return <el-link onClick={ () => this.handleExecAmount(row) } disabled={ !can }>{ row.executed_amount }</el-link>
|
||||
}
|
||||
},
|
||||
actions: {
|
||||
@ -116,6 +107,17 @@ export default {
|
||||
createRoute: 'AccountPushCreate'
|
||||
}
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
handleExecAmount(row) {
|
||||
this.$router.push({
|
||||
name: 'AccountPushList',
|
||||
query: {
|
||||
tab: 'AccountPushExecutionList',
|
||||
automation_id: row.id
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
@ -140,7 +140,14 @@ export default {
|
||||
hasImport: false,
|
||||
hasCreate: false,
|
||||
searchConfig: {
|
||||
getUrlQuery: false
|
||||
getUrlQuery: true,
|
||||
exclude: ['asset'],
|
||||
options: [
|
||||
{
|
||||
label: this.$t('AssetName'),
|
||||
value: 'asset_name'
|
||||
}
|
||||
]
|
||||
},
|
||||
hasMoreActions: false
|
||||
}
|
||||
|
@ -87,8 +87,8 @@ export default {
|
||||
formatter: DetailFormatter,
|
||||
minWidth: '180px',
|
||||
formatterArgs: {
|
||||
getTitle: ({ row }) => row.snapshot.name,
|
||||
getDrawerTitle: ({ row }) => row.snapshot.name,
|
||||
getTitle: ({ row }) => row.automation?.name || row.snapshot.name,
|
||||
getDrawerTitle: ({ row }) => row.automation?.name || row.snapshot.name,
|
||||
getRoute: ({ row }) => ({
|
||||
name: this.automationRoute,
|
||||
params: { id: row.automation.id }
|
||||
|
@ -61,14 +61,7 @@ export default {
|
||||
fileChange: ([value], updateForm) => {
|
||||
this.logo_file = value
|
||||
}
|
||||
},
|
||||
rules: [
|
||||
{
|
||||
required: true,
|
||||
message: this.$t('FieldRequiredError'),
|
||||
trigger: 'blur'
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
hasSaveContinue: false,
|
||||
@ -100,7 +93,6 @@ export default {
|
||||
}
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
}
|
||||
methods: {}
|
||||
}
|
||||
</script>
|
||||
|
@ -55,7 +55,7 @@ export default {
|
||||
formatter: DetailFormatter
|
||||
},
|
||||
secret: {
|
||||
label: this.$t('Secret'),
|
||||
label: 'Secret',
|
||||
formatter: CopyableFormatter,
|
||||
formatterArgs: {
|
||||
shadow: true,
|
||||
|
@ -20,7 +20,7 @@ export default {
|
||||
category: 'all'
|
||||
},
|
||||
tableConfig: {
|
||||
columnsExclude: ['date_verified']
|
||||
columnsExclude: ['date_verified', 'spec_info']
|
||||
},
|
||||
headerActions: {
|
||||
handleImportClick: ({ selectedRows }) => {
|
||||
|
@ -1,5 +1,6 @@
|
||||
import { toSafeLocalDateStr } from '@/utils/time'
|
||||
import { ActionsFormatter, DetailFormatter, DiscoverConfirmFormatter } from '@/components/Table/TableFormatters'
|
||||
|
||||
export const statusMap = {
|
||||
pending: '0',
|
||||
confirmed: '1',
|
||||
@ -135,7 +136,7 @@ export const gatherAccountHeaderActions = (vm) => {
|
||||
type: 'primary',
|
||||
icon: 'fa fa-check',
|
||||
can: ({ selectedRows }) => {
|
||||
return selectedRows.length > 0 && vm.$hasPerm('accounts.add_account')
|
||||
return selectedRows.length > 0 && vm.$hasPerm('accounts.add_account') && !vm.$store.getters.currentOrgIsRoot
|
||||
},
|
||||
callback: function({ selectedRows }) {
|
||||
const ids = selectedRows.map(v => {
|
||||
@ -157,7 +158,7 @@ export const gatherAccountHeaderActions = (vm) => {
|
||||
type: 'primary',
|
||||
icon: 'fa fa-exchange',
|
||||
can: ({ selectedRows }) => {
|
||||
return selectedRows.length > 0 && vm.$hasPerm('accounts.remove_account')
|
||||
return selectedRows.length > 0 && vm.$hasPerm('accounts.remove_account') && !vm.$store.getters.currentOrgIsRoot
|
||||
},
|
||||
callback: function({ selectedRows }) {
|
||||
vm.gatherAccounts = selectedRows
|
||||
|
@ -81,6 +81,13 @@ export default {
|
||||
return url
|
||||
},
|
||||
cleanFormValue(value) {
|
||||
if (
|
||||
Array.isArray(value.rules.time_period) &&
|
||||
value.rules.time_period.every(item => item.value === '')
|
||||
) {
|
||||
value.rules.time_period = []
|
||||
}
|
||||
|
||||
if (!Array.isArray(value.rules.ip_group)) {
|
||||
value.rules.ip_group = value.rules.ip_group ? value.rules.ip_group.split(',') : []
|
||||
}
|
||||
|
@ -47,7 +47,9 @@ export default {
|
||||
return {
|
||||
loading: true,
|
||||
platform: {},
|
||||
changePlatformID: '',
|
||||
initing: false,
|
||||
// 在 meta 中,可能改变 platform id
|
||||
platformID: this.$route.query.platform || '',
|
||||
meta: {},
|
||||
iConfig: {},
|
||||
defaultConfig: {
|
||||
@ -62,12 +64,12 @@ export default {
|
||||
[this.$t('Basic'), ['name', 'address', 'platform', 'nodes']],
|
||||
[this.$t('Protocol'), ['protocols']],
|
||||
[this.$t('Account'), ['accounts']],
|
||||
[this.$t('Other'), ['domain', 'labels', 'is_active', 'comment']]
|
||||
[this.$t('Other'), ['directory_services', 'domain', 'labels', 'is_active', 'comment']]
|
||||
],
|
||||
fieldsMeta: {},
|
||||
performSubmit(validValues) {
|
||||
let url = this.url
|
||||
const { id = '' } = this.$route.query
|
||||
const { id = '' } = this.$route.params
|
||||
const values = _.cloneDeep(validValues)
|
||||
const submitMethod = id ? 'put' : 'post'
|
||||
|
||||
@ -95,21 +97,28 @@ export default {
|
||||
},
|
||||
methods: {
|
||||
async init() {
|
||||
// 更改平台时,就不重新 loading 了
|
||||
this.$log.debug('Initing asset base upcate create', this.initing)
|
||||
if (this.initing) {
|
||||
return
|
||||
}
|
||||
this.initing = true
|
||||
try {
|
||||
await this.genConfig()
|
||||
await this.setInitial()
|
||||
await this.setPlatformConstrains()
|
||||
} finally {
|
||||
this.initing = false
|
||||
this.loading = false
|
||||
}
|
||||
},
|
||||
async genConfig() {
|
||||
const { addFields, addFieldsMeta, defaultConfig } = this
|
||||
defaultConfig.fieldsMeta = assetFieldsMeta(this, this.$route.query.type)
|
||||
defaultConfig.fieldsMeta = assetFieldsMeta(this)
|
||||
let url = this.url
|
||||
const { id = '', platform } = this.$route.query
|
||||
if (platform && !id) {
|
||||
url = setUrlParam(url, 'platform', platform)
|
||||
const id = this.$route.params.id
|
||||
if (!id) {
|
||||
url = setUrlParam(url, 'platform', this.platformID)
|
||||
}
|
||||
// 过滤类型为:null, undefined 的元素
|
||||
defaultConfig.fields = defaultConfig.fields.filter(Boolean)
|
||||
@ -134,9 +143,9 @@ export default {
|
||||
},
|
||||
async setInitial() {
|
||||
const { defaultConfig } = this
|
||||
const { node, platform } = this.$route.query
|
||||
const { node } = this.$route.query
|
||||
const nodesInitial = node ? [node] : []
|
||||
const platformId = this.changePlatformID || this.$route.query.platform || (platform || 'Linux')
|
||||
const platformId = this.platformID || 'Linux'
|
||||
const url = `/api/v1/assets/platforms/${platformId}/`
|
||||
this.platform = await this.$axios.get(url)
|
||||
const initial = {
|
||||
@ -165,13 +174,6 @@ export default {
|
||||
const protocolChoices = this.iConfig.fieldsMeta.protocols.el.choices
|
||||
protocolChoices.splice(0, protocolChoices.length, ...protocols)
|
||||
this.iConfig.fieldsMeta.accounts.el.platform = platform
|
||||
const hiddenCheckFields = ['protocols', 'domain']
|
||||
|
||||
for (const field of hiddenCheckFields) {
|
||||
if (platform[field + '_enabled'] === false) {
|
||||
this.iConfig.fieldsMeta[field].hidden = () => true
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
23
src/views/assets/Asset/AssetCreateUpdate/DSCreateUpdate.vue
Normal file
23
src/views/assets/Asset/AssetCreateUpdate/DSCreateUpdate.vue
Normal file
@ -0,0 +1,23 @@
|
||||
<template>
|
||||
<BaseAssetCreateUpdate v-bind="$data" />
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import BaseAssetCreateUpdate from './BaseAssetCreateUpdate'
|
||||
|
||||
export default {
|
||||
name: 'DSCreateUpdate',
|
||||
components: { BaseAssetCreateUpdate },
|
||||
data() {
|
||||
return {
|
||||
url: '/api/v1/assets/directories/',
|
||||
addFields: [
|
||||
[this.$t('IdentityDomain'), ['domain_name'], 1]
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style>
|
||||
</style>
|
@ -59,7 +59,7 @@ export default {
|
||||
return {
|
||||
title: this.$t('Test'),
|
||||
templateDialogVisible: false,
|
||||
columnsDefault: ['name', 'username', 'asset', 'connect'],
|
||||
columnsDefault: ['name', 'username', 'connect'],
|
||||
headerExtraActions: [
|
||||
{
|
||||
name: this.$t('AccountTemplate'),
|
||||
|
22
src/views/assets/Asset/AssetList/DSList.vue
Normal file
22
src/views/assets/Asset/AssetList/DSList.vue
Normal file
@ -0,0 +1,22 @@
|
||||
<template>
|
||||
<BaseList v-bind="config" />
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import BaseList from './components/BaseList'
|
||||
|
||||
export default {
|
||||
components: {
|
||||
BaseList
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
config: {
|
||||
url: '/api/v1/assets/directories/',
|
||||
category: 'ds',
|
||||
helpMessage: this.$t('DirectoryServiceHelpMessage')
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
@ -143,7 +143,8 @@ export default {
|
||||
'custom': () => import('@/views/assets/Asset/AssetCreateUpdate/CustomCreateUpdate.vue'),
|
||||
'cloud': () => import('@/views/assets/Asset/AssetCreateUpdate/CloudCreateUpdate.vue'),
|
||||
'device': () => import('@/views/assets/Asset/AssetCreateUpdate/DeviceCreateUpdate.vue'),
|
||||
'database': () => import('@/views/assets/Asset/AssetCreateUpdate/DatabaseCreateUpdate.vue')
|
||||
'database': () => import('@/views/assets/Asset/AssetCreateUpdate/DatabaseCreateUpdate.vue'),
|
||||
'ds': () => import('@/views/assets/Asset/AssetCreateUpdate/DSCreateUpdate.vue')
|
||||
},
|
||||
createProps: {},
|
||||
showPlatform: false,
|
||||
@ -216,16 +217,19 @@ export default {
|
||||
methods: {
|
||||
async updateOrCloneAsset(row, action) {
|
||||
this.createDrawer = this.drawer[row.category.value]
|
||||
const meta = {
|
||||
action: action,
|
||||
id: row.id,
|
||||
|
||||
const query = {
|
||||
platform: row.platform.id,
|
||||
type: row.type.value,
|
||||
category: row.category.value,
|
||||
row: row,
|
||||
payload: row.payload
|
||||
action: action
|
||||
}
|
||||
this.$refs.ListTable.onUpdate({ row, query: meta })
|
||||
|
||||
if (action === 'clone') {
|
||||
return this.$refs.ListTable.onClone({ row, query })
|
||||
}
|
||||
|
||||
this.$refs.ListTable.onUpdate({ row, query })
|
||||
},
|
||||
createAsset(platform) {
|
||||
this.showPlatform = false
|
||||
|
@ -5,7 +5,7 @@
|
||||
:show-confirm="false"
|
||||
:title="$tc('SelectPlatform')"
|
||||
:visible.sync="iVisible"
|
||||
size="600px"
|
||||
size="700px"
|
||||
top="1vh"
|
||||
>
|
||||
<template #title>
|
||||
@ -61,6 +61,7 @@ import { loadPlatformIcon } from '@/utils/jms'
|
||||
|
||||
export default {
|
||||
name: 'PlatformDrawer',
|
||||
components: {},
|
||||
props: {
|
||||
visible: {
|
||||
type: Boolean,
|
||||
@ -76,7 +77,7 @@ export default {
|
||||
platforms: [],
|
||||
recentPlatformIds: [],
|
||||
loading: true,
|
||||
activeType: 'host',
|
||||
activeType: [],
|
||||
recentUsedLabel: this.$t('RecentlyUsed'),
|
||||
typeIconMapper: {
|
||||
linux: 'fa-linux',
|
||||
@ -130,9 +131,7 @@ export default {
|
||||
async created() {
|
||||
this.platforms = await this.$store.dispatch('assets/getPlatforms')
|
||||
this.allRecentPlatforms = await this.$store.dispatch('assets/getRecentPlatforms')
|
||||
if (this.allRecentPlatforms.length > 0) {
|
||||
this.activeType = this.recentUsedLabel
|
||||
}
|
||||
this.activeType = Object.keys(this.iPlatforms)[0]
|
||||
this.loading = false
|
||||
},
|
||||
methods: {
|
||||
|
@ -194,7 +194,7 @@ export function getDefaultConfig(vm) {
|
||||
formatter: ActionsFormatter,
|
||||
formatterArgs: {
|
||||
onUpdate: ({ row }) => onAction(row, 'Update'),
|
||||
onClone: ({ row }) => onAction({ ...row, payload: 'pam_asset_clone' }, 'Clone'),
|
||||
onClone: ({ row }) => onAction(row, 'Clone'),
|
||||
performDelete: ({ row }) => {
|
||||
const id = row.id
|
||||
const url = `/api/v1/assets/assets/${id}/`
|
||||
|
@ -56,6 +56,12 @@ export default {
|
||||
hidden: true,
|
||||
component: () => import('@/views/assets/Asset/AssetList/WebList.vue')
|
||||
},
|
||||
{
|
||||
icon: 'fa-id-card-o',
|
||||
name: 'ds',
|
||||
hidden: true,
|
||||
component: () => import('@/views/assets/Asset/AssetList/DSList.vue')
|
||||
},
|
||||
{
|
||||
icon: 'fa-comment',
|
||||
name: 'gpt',
|
||||
|
@ -224,3 +224,12 @@ export default {
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
::v-deep .el-card__body {
|
||||
padding: 10px 20px 20px 20px;
|
||||
|
||||
.el-form {
|
||||
margin-top: unset;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
@ -41,7 +41,7 @@ export default {
|
||||
]
|
||||
},
|
||||
tableConfig: {
|
||||
url: `/api/v1/xpack/cloud/sync-instance-tasks/${this.object.task?.id}/instances/`,
|
||||
url: '',
|
||||
hasSelection: false,
|
||||
columns: [
|
||||
'instance_id',
|
||||
@ -49,6 +49,10 @@ export default {
|
||||
prop: 'asset_ip',
|
||||
label: this.$t('IP')
|
||||
},
|
||||
{
|
||||
prop: 'asset_display',
|
||||
label: this.$t('Asset')
|
||||
},
|
||||
'region',
|
||||
{
|
||||
prop: 'status',
|
||||
@ -76,9 +80,20 @@ export default {
|
||||
}
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
dynamicUrl() {
|
||||
const baseUrl = '/api/v1/xpack/cloud/sync-instance-tasks/instances/'
|
||||
return this.object ? `${baseUrl}?task_id=${this.object.task.id}` : baseUrl
|
||||
}
|
||||
},
|
||||
mounted() {
|
||||
this.tableConfig.url = this.dynamicUrl
|
||||
},
|
||||
methods: {
|
||||
DeleteReleasedAssets() {
|
||||
this.$axios.delete(`/api/v1/xpack/cloud/sync-instance-tasks/${this.object.task?.id}/released-assets/`).then(
|
||||
const baseUrl = '/api/v1/xpack/cloud/sync-instance-tasks/released-assets/'
|
||||
const url = this.object ? `${baseUrl}?task_id=${this.object.task.id}` : baseUrl
|
||||
this.$axios.delete(url).then(
|
||||
res => {
|
||||
this.$message.success(this.$tc('DeleteSuccessMsg'))
|
||||
this.$refs.GenericListTable.$refs.ListTable.reloadTable()
|
||||
|
@ -3,6 +3,7 @@
|
||||
ref="form"
|
||||
class="form"
|
||||
v-bind="settings"
|
||||
@performError="handlePerformError"
|
||||
@performFinished="handlePerformFinished"
|
||||
@submitSuccess="handleSubmitSuccess"
|
||||
/>
|
||||
@ -54,6 +55,7 @@ export default {
|
||||
}
|
||||
|
||||
return {
|
||||
priSubmitForm: null,
|
||||
submitType: 'auto',
|
||||
settings: {
|
||||
url: `/api/v1/xpack/cloud/accounts/`,
|
||||
@ -106,6 +108,9 @@ export default {
|
||||
},
|
||||
project: {
|
||||
label: this.$t('Project')
|
||||
},
|
||||
hostname_prefix: {
|
||||
required: false
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -172,32 +177,53 @@ export default {
|
||||
},
|
||||
methods: {
|
||||
submitForm(form, btn, submitType) {
|
||||
this.priSubmitForm = form
|
||||
form.validate((valid) => {
|
||||
if (valid) {
|
||||
btn.loading = true
|
||||
this.$refs.form.$refs.form.dataForm.submitForm('form', false)
|
||||
this.submitType = submitType
|
||||
}
|
||||
})
|
||||
|
||||
this.$refs.form.$refs.form.dataForm.submitForm('form', false)
|
||||
|
||||
if (this.origin === 'update') {
|
||||
setTimeout(() => {
|
||||
this.$emit('submitSuccess')
|
||||
this.$emit('update:visible', false)
|
||||
}, 500)
|
||||
}
|
||||
this.submitType = submitType
|
||||
},
|
||||
handleSubmitSuccess(res) {
|
||||
if (this.submitType === 'manual') {
|
||||
this.$emit('update:object', res)
|
||||
this.$emit('update:active', 2)
|
||||
} else if (this.submitType === 'update') {
|
||||
setTimeout(() => {
|
||||
this.$emit('submitSuccess')
|
||||
this.$emit('update:visible', false)
|
||||
}, 500)
|
||||
}
|
||||
},
|
||||
handlePerformFinished() {
|
||||
for (const btn of this.settings.moreButtons) {
|
||||
btn.loading = false
|
||||
}
|
||||
},
|
||||
handlePerformError(errorData) {
|
||||
if (errorData.hasOwnProperty('attrs')) {
|
||||
for (const f in errorData['attrs']) {
|
||||
this.setAttrsFieldError(f, errorData['attrs'][f])
|
||||
}
|
||||
}
|
||||
},
|
||||
setAttrsFieldError(name, errors) {
|
||||
for (const item of this.priSubmitForm.content) {
|
||||
if (item.id === 'attrs') {
|
||||
errors = Array.isArray(errors) ? errors.join(',') : errors
|
||||
const totalFields = item.el.fields
|
||||
const field = totalFields.find((v) => v.prop === name)
|
||||
if (!field) {
|
||||
return
|
||||
}
|
||||
if (typeof errors === 'string') {
|
||||
field.el.errors = errors
|
||||
field.attrs.error = errors
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -33,7 +33,11 @@ export default {
|
||||
<ul>
|
||||
{
|
||||
newArr.map((r, index) => {
|
||||
return <li key={index}>{`${r.attr.label} ${r.match.label} ${r.value}`} </li>
|
||||
return <li>
|
||||
<el-tag size='mini' key={index}>
|
||||
{r.attr.label}<strong> {`${r.match.label}`} </strong>{r.value}
|
||||
</el-tag>
|
||||
</li>
|
||||
})
|
||||
}
|
||||
</ul>
|
||||
@ -48,7 +52,11 @@ export default {
|
||||
<ul>
|
||||
{
|
||||
newArr.map((a, index) => {
|
||||
return <li key={index}>{`${a.attr.label}: ${a.value.label}`} </li>
|
||||
return <li>
|
||||
<el-tag size='mini' key={index}>
|
||||
<strong>{a.attr.label}: </strong>{`${a.value.label}`}
|
||||
</el-tag>
|
||||
</li>
|
||||
})
|
||||
}
|
||||
</ul>
|
||||
@ -58,42 +66,21 @@ export default {
|
||||
'comment', 'org_name'
|
||||
]
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
cardTitle() {
|
||||
return this.object.name
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
ul {
|
||||
counter-reset: my-counter;
|
||||
list-style-type: none;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
li {
|
||||
counter-increment: my-counter;
|
||||
position: relative;
|
||||
padding-left: 20px;
|
||||
}
|
||||
|
||||
li:before {
|
||||
content: counter(my-counter);
|
||||
display: block;
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 32%;
|
||||
width: 14px;
|
||||
height: 14px;
|
||||
line-height: 12px;
|
||||
text-align: center;
|
||||
border: 1px solid;
|
||||
border-radius: 50%;
|
||||
background-color: #fff;
|
||||
list-style: none;
|
||||
margin: 3px 0;
|
||||
}
|
||||
</style>
|
||||
|
||||
|
@ -52,10 +52,11 @@ export default {
|
||||
updateRoute: 'CloudStrategyUpdate',
|
||||
hasClone: false,
|
||||
canDelete: ({ row }) => {
|
||||
return row.name !== 'default'
|
||||
return this.$hasPerm('xpack.delete_strategy') && row.name !== 'default'
|
||||
},
|
||||
canUpdate: ({ row }) => {
|
||||
return row.name !== 'default'
|
||||
return this.$hasPerm('xpack.change_strategy') && row.name !== 'default' &&
|
||||
!this.$store.getters.currentOrgIsRoot
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -26,6 +26,12 @@ export default {
|
||||
name: 'StrategyList',
|
||||
hidden: () => !this.$hasPerm('xpack.view_strategy'),
|
||||
component: () => import('@/views/assets/Cloud/Strategy/StrategyList.vue')
|
||||
},
|
||||
{
|
||||
title: this.$t('SyncInstanceTaskHistoryAssetList'),
|
||||
name: 'TaskSyncAssetList',
|
||||
hidden: () => !this.$hasLicense() || !this.$hasPerm('xpack.view_syncinstancedetail'),
|
||||
component: () => import('@/views/assets/Cloud/Account/AccountDetail/TaskSyncAssetList.vue')
|
||||
}
|
||||
],
|
||||
actions: {
|
||||
|
@ -11,6 +11,7 @@
|
||||
:has-reset="false"
|
||||
:initial="initial"
|
||||
:url="url"
|
||||
@submitSuccess="onSubmitSuccess"
|
||||
/>
|
||||
</div>
|
||||
</template>
|
||||
@ -49,7 +50,8 @@ export default {
|
||||
]],
|
||||
[this.$t('Config'), [
|
||||
'protocols', 'su_enabled', 'su_method',
|
||||
'domain_enabled', 'charset'
|
||||
'domain_enabled', 'ds_enabled',
|
||||
'charset'
|
||||
]],
|
||||
[this.$t('Automations'), ['automation']],
|
||||
[this.$t('Other'), ['comment']]
|
||||
@ -58,23 +60,20 @@ export default {
|
||||
url: `/api/v1/assets/platforms/`,
|
||||
cleanFormValue: (values) => {
|
||||
const protocols = values['protocols'] || []
|
||||
const query = this.$route.query || {}
|
||||
const automation = values['automation'] || {}
|
||||
const category_type = values['category_type']
|
||||
const ansibleConfig = automation?.['ansible_config'] || {}
|
||||
automation.ansible_config = ansibleConfig instanceof Object ? ansibleConfig : JSON.parse(ansibleConfig)
|
||||
|
||||
if (query.hasOwnProperty('_clone_from')) {
|
||||
if (automation.hasOwnProperty('id')) {
|
||||
delete automation['id']
|
||||
}
|
||||
values['protocols'] = protocols.map(i => {
|
||||
if (i.hasOwnProperty('id')) {
|
||||
delete i['id']
|
||||
}
|
||||
return i
|
||||
})
|
||||
if (automation.hasOwnProperty('id')) {
|
||||
delete automation['id']
|
||||
}
|
||||
values['protocols'] = protocols.map(i => {
|
||||
if (i.hasOwnProperty('id')) {
|
||||
delete i['id']
|
||||
}
|
||||
return i
|
||||
})
|
||||
values['category'] = category_type[0]
|
||||
values['type'] = category_type[1]
|
||||
return values
|
||||
@ -105,6 +104,9 @@ export default {
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
onSubmitSuccess() {
|
||||
this.$store.dispatch('assets/cleanPlatforms')
|
||||
},
|
||||
updateSuMethodOptions() {
|
||||
const options = this.suMethods.filter(i => {
|
||||
return this.suMethodLimits.includes(i.value)
|
||||
@ -141,7 +143,6 @@ export default {
|
||||
const constraints = await this.$axios.get(url)
|
||||
this.defaultOptions = constraints
|
||||
|
||||
const fieldsCheck = ['domain_enabled', 'su_enabled']
|
||||
let protocols = constraints?.protocols || []
|
||||
protocols = protocols?.map(i => {
|
||||
if (i.name === 'http') {
|
||||
@ -151,15 +152,20 @@ export default {
|
||||
})
|
||||
this.fieldsMeta.protocols.el.choices = protocols
|
||||
|
||||
const fieldsCheck = ['domain_enabled', 'su_enabled']
|
||||
for (const field of fieldsCheck) {
|
||||
const disabled = constraints[field] === false
|
||||
this.initial[field] = !disabled
|
||||
_.set(this.fieldsMeta, `${field}.el.disabled`, disabled)
|
||||
}
|
||||
|
||||
if (constraints['charset_enabled'] === false) {
|
||||
this.fieldsMeta.charset.hidden = () => true
|
||||
const fieldsHidden = ['charset', 'ds_enabled']
|
||||
for (const field of fieldsHidden) {
|
||||
if (constraints[field] === false) {
|
||||
this.fieldsMeta[field].hidden = () => true
|
||||
}
|
||||
}
|
||||
|
||||
await setAutomations(this)
|
||||
await this.updateSuMethods(constraints)
|
||||
}
|
||||
|
@ -115,7 +115,11 @@ export default {
|
||||
canUpdate: ({ row }) => !row.internal && vm.$hasPerm('assets.change_platform'),
|
||||
canDelete: ({ row }) => !row.internal && vm.$hasPerm('assets.delete_platform'),
|
||||
onUpdate({ row, col }) {
|
||||
vm.$refs.genericListTable.onUpdate({ row, col, query: { type: row.type.value, category: row.category.value }})
|
||||
vm.$refs.genericListTable.onUpdate({
|
||||
row,
|
||||
col,
|
||||
query: { type: row.type.value, category: row.category.value }
|
||||
})
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -149,14 +153,7 @@ export default {
|
||||
return `/api/v1/assets/platforms/?category=${this.tab.activeMenu}`
|
||||
}
|
||||
},
|
||||
deactivated() {
|
||||
window.localStorage.setItem('lastTab', this.tab.activeMenu)
|
||||
},
|
||||
activated() {
|
||||
setTimeout(() => {
|
||||
this.tab.activeMenu = window.localStorage.getItem('lastTab') || 'host'
|
||||
this.$refs.genericListTable?.reloadTable()
|
||||
}, 300)
|
||||
},
|
||||
async mounted() {
|
||||
try {
|
||||
@ -164,6 +161,15 @@ export default {
|
||||
} finally {
|
||||
this.loading = false
|
||||
}
|
||||
|
||||
const name = this.$route.query?.name
|
||||
const platform = this.$route.query?.id
|
||||
|
||||
if (platform) {
|
||||
this.$nextTick(() => {
|
||||
this.$refs.genericListTable.onDetail({ row: { id: platform, name }})
|
||||
})
|
||||
}
|
||||
},
|
||||
updated() {
|
||||
this.changeMoreCreates()
|
||||
@ -173,9 +179,15 @@ export default {
|
||||
this.tableConfig.url = this.url
|
||||
this.headerActions.importOptions.url = this.url
|
||||
this.headerActions.exportOptions.url = this.url
|
||||
this.headerActions.moreCreates.dropdown = this.$store.state.assets.assetCategoriesDropdown.filter(item => {
|
||||
const types = this.$store.state.assets.assetCategoriesDropdown.filter(item => {
|
||||
return item.category === this.tab.activeMenu
|
||||
}).map(item => {
|
||||
if (item.group && !item.group.includes(this.$t('Type'))) {
|
||||
item.group += this.$t('WordSep') + this.$t('Type')
|
||||
}
|
||||
return item
|
||||
})
|
||||
this.headerActions.moreCreates.dropdown = types
|
||||
},
|
||||
async setCategoriesTab() {
|
||||
const categoryIcon = {
|
||||
@ -185,6 +197,7 @@ export default {
|
||||
cloud: 'fa-cloud',
|
||||
web: 'fa-globe',
|
||||
gpt: 'fa-comment',
|
||||
ds: 'fa-id-card-o',
|
||||
custom: 'fa-cube'
|
||||
}
|
||||
const state = await this.$store.dispatch('assets/getAssetCategories')
|
||||
|
@ -81,6 +81,12 @@ export const platformFieldsMeta = (vm) => {
|
||||
disabled: false
|
||||
}
|
||||
},
|
||||
ds_enabled: {
|
||||
el: {
|
||||
disabled: false
|
||||
}
|
||||
},
|
||||
|
||||
protocols: {
|
||||
label: i18n.t('SupportedProtocol'),
|
||||
...assetMeta.protocols,
|
||||
|
@ -1,10 +0,0 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"module": "commonjs",
|
||||
"target": "es5",
|
||||
"sourceMap": true
|
||||
},
|
||||
"exclude": [
|
||||
"node_modules"
|
||||
]
|
||||
}
|
@ -26,12 +26,12 @@ export const filterSelectValues = (values) => {
|
||||
return selects
|
||||
}
|
||||
|
||||
function updatePlatformProtocols(vm, platformType, updateForm, isPlatformChanged = false) {
|
||||
function updatePlatformProtocols(vm, platformType, updateForm, platformChanged = false) {
|
||||
setTimeout(() => vm.init().then(() => {
|
||||
const isCreate = vm?.$route?.meta.action === 'create' && vm?.$route?.query.clone_from === undefined
|
||||
const need_modify = isCreate || isPlatformChanged
|
||||
const isCreate = vm.$route.query.action === 'create' && vm?.$route?.query.clone_from === undefined
|
||||
const needModify = isCreate || platformChanged
|
||||
const platformProtocols = vm.platform.protocols
|
||||
if (!need_modify) return
|
||||
if (!needModify) return
|
||||
if (platformType === 'website') {
|
||||
const setting = Array.isArray(platformProtocols) ? platformProtocols[0].setting : platformProtocols.setting
|
||||
updateForm({
|
||||
@ -48,7 +48,9 @@ function updatePlatformProtocols(vm, platformType, updateForm, isPlatformChanged
|
||||
}), 100)
|
||||
}
|
||||
|
||||
export const assetFieldsMeta = (vm, platformType) => {
|
||||
export const assetFieldsMeta = (vm, category, type) => {
|
||||
const platformCategory = category || vm.$route.query.category
|
||||
const platformType = type || vm.$route.query.type
|
||||
const platformProtocols = []
|
||||
const secretTypes = []
|
||||
const asset = { address: 'https://jumpserver:330' }
|
||||
@ -92,28 +94,22 @@ export const assetFieldsMeta = (vm, platformType) => {
|
||||
el: {
|
||||
multiple: false,
|
||||
ajax: {
|
||||
url: `/api/v1/assets/platforms/?type=${platformType}`,
|
||||
url: `/api/v1/assets/platforms/?category=${platformCategory}&type=${platformType}`,
|
||||
transformOption: (item) => {
|
||||
return { label: item.name, value: item.id }
|
||||
}
|
||||
}
|
||||
},
|
||||
on: {
|
||||
change: ([event], updateForm) => {
|
||||
change: _.debounce(([event], updateForm) => {
|
||||
const pk = event.pk
|
||||
const url = window.location.href
|
||||
vm.changePlatformID = pk
|
||||
if (url.includes('clone')) {
|
||||
updatePlatformProtocols(vm, platformType, updateForm, true)
|
||||
} else {
|
||||
vm.$nextTick(() => {
|
||||
updatePlatformProtocols(vm, platformType, updateForm, true)
|
||||
})
|
||||
}
|
||||
},
|
||||
input: ([event], updateForm) => {
|
||||
vm.platformID = pk
|
||||
updatePlatformProtocols(vm, platformType, updateForm, true)
|
||||
}, 200),
|
||||
input: _.debounce(([event], updateForm) => {
|
||||
// 初始化的时候,mounted 中没有这个逻辑
|
||||
updatePlatformProtocols(vm, platformType, updateForm)
|
||||
}
|
||||
}, 200)
|
||||
}
|
||||
},
|
||||
domain: {
|
||||
@ -125,6 +121,9 @@ export const assetFieldsMeta = (vm, platformType) => {
|
||||
ajax: {
|
||||
url: '/api/v1/assets/domains/'
|
||||
}
|
||||
},
|
||||
hidden: () => {
|
||||
return vm.platform.domain_enabled === false
|
||||
}
|
||||
},
|
||||
accounts: {
|
||||
@ -134,6 +133,15 @@ export const assetFieldsMeta = (vm, platformType) => {
|
||||
default: []
|
||||
}
|
||||
},
|
||||
directory_services: {
|
||||
el: {
|
||||
url: '/api/v1/assets/directories/',
|
||||
disabled: false
|
||||
},
|
||||
hidden: () => {
|
||||
return vm.platform.ds_enabled === false
|
||||
}
|
||||
},
|
||||
nodes: {
|
||||
rules: [rules.RequiredChange],
|
||||
el: {
|
||||
|
@ -18,13 +18,13 @@ export default {
|
||||
tableConfig: {
|
||||
url: '/api/v1/audits/jobs/',
|
||||
columnsShow: {
|
||||
min: ['name', 'material'],
|
||||
min: ['name', 'args'],
|
||||
default: [
|
||||
'name', 'material', 'type', 'crontab', 'interval', 'created_by', 'is_periodic_display', 'is_periodic'
|
||||
'name', 'args', 'type', 'crontab', 'interval', 'created_by', 'is_periodic_display', 'is_periodic'
|
||||
]
|
||||
},
|
||||
columns: [
|
||||
'name', 'args', 'material', 'type', 'crontab', 'interval', 'date_last_run', 'summary',
|
||||
'name', 'args', 'type', 'crontab', 'interval', 'date_last_run', 'summary',
|
||||
'created_by', 'is_periodic_display', 'is_periodic'
|
||||
],
|
||||
columnsMeta: {
|
||||
@ -34,10 +34,6 @@ export default {
|
||||
name: {
|
||||
formatter: (row) => row.name
|
||||
},
|
||||
material: {
|
||||
width: '200px',
|
||||
label: this.$t('Command')
|
||||
},
|
||||
summary: {
|
||||
width: '130px',
|
||||
label: `${this.$t('Success')}/${this.$t('Total')}`,
|
||||
|
@ -14,6 +14,12 @@
|
||||
:visible.sync="showSetVariableDialog"
|
||||
@submit="onSubmitVariable"
|
||||
/>
|
||||
<ConfirmRunAssetsDialog
|
||||
:visible.sync="showConfirmRunAssetsDialog"
|
||||
:is-running="isRunning"
|
||||
:assets="classifiedAssets"
|
||||
@submit="onConfirmRunAsset"
|
||||
/>
|
||||
<AssetTreeTable ref="TreeTable" :tree-setting="treeSetting">
|
||||
<template slot="table">
|
||||
<div class="transition-box" style="width: calc(100% - 17px);">
|
||||
@ -29,8 +35,10 @@
|
||||
<QuickJobTerm
|
||||
ref="xterm"
|
||||
:show-tool-bar="true"
|
||||
:select-assets="selectAssets"
|
||||
:xterm-config="xtermConfig"
|
||||
:execution-info="executionInfo"
|
||||
@view-assets="viewConfirmRunAssets"
|
||||
/>
|
||||
</div>
|
||||
<div style="display: flex;margin-top:10px;justify-content: space-between" />
|
||||
@ -42,6 +50,7 @@
|
||||
|
||||
<script>
|
||||
import $ from '@/utils/jquery-vendor.js'
|
||||
import _isequal from 'lodash.isequal'
|
||||
import AssetTreeTable from '@/components/Apps/AssetTreeTable'
|
||||
import QuickJobTerm from '@/views/ops/Adhoc/components/QuickJobTerm.vue'
|
||||
import CodeEditor from '@/components/Form/FormFields/CodeEditor'
|
||||
@ -49,6 +58,7 @@ import Page from '@/layout/components/Page'
|
||||
import AdhocOpenDialog from './AdhocOpenDialog.vue'
|
||||
import AdhocSaveDialog from './AdhocSaveDialog.vue'
|
||||
import VariableHelpDialog from './VariableHelpDialog.vue'
|
||||
import ConfirmRunAssetsDialog from './components/ConfirmRunAssetsDialog.vue'
|
||||
import SetVariableDialog from '@/views/ops/Template/components/SetVariableDialog.vue'
|
||||
import { createJob, getJob, getTaskDetail, stopJob } from '@/api/ops'
|
||||
|
||||
@ -62,7 +72,8 @@ export default {
|
||||
AssetTreeTable,
|
||||
Page,
|
||||
QuickJobTerm,
|
||||
CodeEditor
|
||||
CodeEditor,
|
||||
ConfirmRunAssetsDialog
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
@ -79,6 +90,7 @@ export default {
|
||||
showOpenAdhocDialog: false,
|
||||
showOpenAdhocSaveDialog: false,
|
||||
showSetVariableDialog: false,
|
||||
showConfirmRunAssetsDialog: false,
|
||||
DataZTree: 0,
|
||||
runas: '',
|
||||
runasPolicy: 'skip',
|
||||
@ -135,7 +147,7 @@ export default {
|
||||
query: (query, cb) => {
|
||||
const { hosts, nodes } = this.getSelectedNodesAndHosts()
|
||||
|
||||
if (hosts.length === 0) {
|
||||
if (hosts.length === 0 && nodes.length === 0) {
|
||||
this.$message.warning(`${this.$t('RequiredAssetOrNode')}`)
|
||||
return cb([])
|
||||
}
|
||||
@ -312,7 +324,15 @@ export default {
|
||||
},
|
||||
iShowTree: true,
|
||||
variableFormData: [],
|
||||
variableQueryParam: ''
|
||||
variableQueryParam: '',
|
||||
classifiedAssets: {
|
||||
error: [],
|
||||
runnable: [],
|
||||
skipped: []
|
||||
},
|
||||
selectAssets: [],
|
||||
selectNodes: [],
|
||||
lastRequestPayload: null
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
@ -321,6 +341,9 @@ export default {
|
||||
},
|
||||
ztree() {
|
||||
return this.$refs.TreeTable.$refs.TreeList.$refs.AutoDataZTree.$refs.AutoDataZTree.$refs.dataztree.$refs.ztree
|
||||
},
|
||||
isRunning() {
|
||||
return this.executionInfo.status.value === 'running'
|
||||
}
|
||||
},
|
||||
watch: {
|
||||
@ -442,6 +465,12 @@ export default {
|
||||
})
|
||||
return { hosts, nodes }
|
||||
},
|
||||
shouldReRequest(payload) {
|
||||
if (!this.lastRequestPayload) return true
|
||||
const current = _.omit(payload, ['args'])
|
||||
const last = _.omit(this.lastRequestPayload, ['args'])
|
||||
return !_isequal(current, last)
|
||||
},
|
||||
execute() {
|
||||
// const size = 'rows=' + this.xterm.rows + '&cols=' + this.xterm.cols
|
||||
const { hosts, nodes } = this.getSelectedNodesAndHosts()
|
||||
@ -458,12 +487,38 @@ export default {
|
||||
this.$message.error(this.$tc('RequiredRunas'))
|
||||
return
|
||||
}
|
||||
const data = {
|
||||
const payload = {
|
||||
assets: hosts,
|
||||
nodes: nodes,
|
||||
module: this.module,
|
||||
args: this.command,
|
||||
runas: this.runas,
|
||||
runas_policy: this.runasPolicy
|
||||
}
|
||||
if (!this.shouldReRequest(payload)) {
|
||||
this.onConfirmRunAsset(this.selectAssets, this.selectNodes)
|
||||
return
|
||||
}
|
||||
|
||||
this.lastRequestPayload = { ...payload }
|
||||
this.$axios.post('/api/v1/ops/classified-hosts/', {
|
||||
...payload
|
||||
}).then(data => {
|
||||
this.classifiedAssets = data
|
||||
if (this.classifiedAssets.error.length === 0) {
|
||||
this.onConfirmRunAsset(hosts, nodes)
|
||||
} else {
|
||||
this.showConfirmRunAssetsDialog = true
|
||||
}
|
||||
})
|
||||
},
|
||||
onConfirmRunAsset(assets, nodes) {
|
||||
const data = {
|
||||
assets: assets,
|
||||
nodes: nodes,
|
||||
module: this.module,
|
||||
args: this.command,
|
||||
runas: this.runas,
|
||||
runas_policy: this.runasPolicy,
|
||||
instant: true,
|
||||
is_periodic: false,
|
||||
@ -483,8 +538,13 @@ export default {
|
||||
this.setCostTimeInterval()
|
||||
this.writeExecutionOutput()
|
||||
this.setBtn()
|
||||
this.selectAssets = assets
|
||||
this.selectNodes = nodes
|
||||
})
|
||||
},
|
||||
viewConfirmRunAssets() {
|
||||
this.showConfirmRunAssetsDialog = true
|
||||
},
|
||||
stop() {
|
||||
stopJob({ task_id: this.currentTaskId }).then(() => {
|
||||
this.xterm.write('\x1b[31m' +
|
||||
@ -498,12 +558,12 @@ export default {
|
||||
})
|
||||
},
|
||||
setBtn() {
|
||||
if (this.executionInfo.status.value !== 'running') {
|
||||
if (!this.isRunning) {
|
||||
clearInterval(this.executionInfo.cancel)
|
||||
this.toolbar.left.run.icon = 'fa fa-play'
|
||||
}
|
||||
this.toolbar.left.run.isVisible = this.executionInfo.status.value === 'running'
|
||||
this.toolbar.left.stop.isVisible = this.executionInfo.status.value !== 'running'
|
||||
this.toolbar.left.run.isVisible = this.isRunning
|
||||
this.toolbar.left.stop.isVisible = !this.isRunning
|
||||
},
|
||||
onSubmitVariable(parameters) {
|
||||
this.parameters = parameters
|
||||
|
211
src/views/ops/Adhoc/components/ConfirmRunAssetsDialog.vue
Normal file
211
src/views/ops/Adhoc/components/ConfirmRunAssetsDialog.vue
Normal file
@ -0,0 +1,211 @@
|
||||
<template>
|
||||
<Dialog
|
||||
:title="$t('ConfirmRunningAssets')"
|
||||
:visible.sync="iVisible"
|
||||
:show-buttons="!isRunning"
|
||||
:show-confirm="true"
|
||||
:show-cancel="true"
|
||||
width="1200px"
|
||||
@confirm="onConfirm"
|
||||
@cancel="onCancel"
|
||||
>
|
||||
<div class="confirm-run-assets-dialog">
|
||||
<div class="runnable-assets">
|
||||
<div class="asset-group">
|
||||
<div class="group-title">
|
||||
{{ $t('RunnableAssets') }}
|
||||
</div>
|
||||
<el-checkbox
|
||||
v-model="checkAll"
|
||||
:indeterminate="isIndeterminate"
|
||||
style="padding-bottom: 5px"
|
||||
@change="handleCheckAllChange"
|
||||
>
|
||||
{{ $t('All') }}
|
||||
</el-checkbox>
|
||||
<el-checkbox-group v-model="selectedAssets" class="group-assets" @change="handleCheckedAssetChange">
|
||||
<el-checkbox
|
||||
v-for="asset in runnableAssets"
|
||||
:key="asset.id"
|
||||
:label="asset.id"
|
||||
class="asset-item"
|
||||
>
|
||||
<div class="asset-item">
|
||||
<span>{{ asset.name }}({{ asset.ip }})</span>
|
||||
</div>
|
||||
</el-checkbox>
|
||||
</el-checkbox-group>
|
||||
</div>
|
||||
</div>
|
||||
<div class="error-assets">
|
||||
<div class="group-title">{{ $t('NonRunnableAssets') }}</div>
|
||||
<div class="group-assets">
|
||||
<div v-for="asset in failedAssets" :key="asset.id" class="asset-item">
|
||||
<span><i class="fa fa-times-circle icon" />{{ asset.name }}</span>
|
||||
<span class="asset-status">{{ asset.error }}</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div>
|
||||
<div class="selected-count">{{ selectedAssets.length }}{{ $t('AssetsSelected') }}</div>
|
||||
</div>
|
||||
</Dialog>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import Dialog from '@/components/Dialog'
|
||||
|
||||
export default {
|
||||
name: 'ConfirmRunAssetsDialog',
|
||||
components: {
|
||||
Dialog
|
||||
},
|
||||
props: {
|
||||
visible: {
|
||||
type: Boolean,
|
||||
default: false
|
||||
},
|
||||
assets: {
|
||||
type: Object,
|
||||
default: () => {
|
||||
}
|
||||
},
|
||||
isRunning: {
|
||||
type: Boolean,
|
||||
default: false
|
||||
}
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
checkAll: true,
|
||||
selectedAssets: [],
|
||||
isIndeterminate: true
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
iVisible: {
|
||||
set(val) {
|
||||
this.$emit('update:visible', val)
|
||||
},
|
||||
get() {
|
||||
return this.visible
|
||||
}
|
||||
},
|
||||
runnableAssets() {
|
||||
return this.assets.runnable
|
||||
},
|
||||
failedAssets() {
|
||||
return this.assets.error
|
||||
}
|
||||
},
|
||||
watch: {
|
||||
visible(val) {
|
||||
if (val === true && this.selectedAssets.length === 0) {
|
||||
// 首次打开时,默认选中所有可运行的资产
|
||||
this.selectedAssets = this.runnableAssets.map((item) => item.id)
|
||||
}
|
||||
},
|
||||
runnableAssets(val) {
|
||||
// 去掉 selectedAssets 中不存在的 id
|
||||
this.selectedAssets = this.selectedAssets.filter((item) => {
|
||||
return val.some((asset) => asset.id === item)
|
||||
})
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
onCancel() {
|
||||
this.$emit('update:visible', false)
|
||||
},
|
||||
onConfirm() {
|
||||
this.$emit('submit', this.selectedAssets, [])
|
||||
this.$emit('update:visible', false)
|
||||
},
|
||||
handleCheckAllChange(value) {
|
||||
this.selectedAssets = value ? this.runnableAssets.map((item) => item.id) : []
|
||||
this.isIndeterminate = false
|
||||
},
|
||||
handleCheckedAssetChange(value) {
|
||||
const checkedCount = value.length
|
||||
this.checkAll = checkedCount === this.runnableAssets.length
|
||||
this.isIndeterminate = checkedCount > 0 && checkedCount < this.runnableAssets.length
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
.confirm-run-assets-dialog {
|
||||
.runnable-assets {
|
||||
padding-right: 10px
|
||||
}
|
||||
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr;
|
||||
grid-column-gap: 10px;
|
||||
|
||||
.group-title {
|
||||
font-weight: bold;
|
||||
margin-bottom: 8px;
|
||||
font-size: 15px;
|
||||
background: #fbfbfd;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.group-assets {
|
||||
::v-deep .el-checkbox__label {
|
||||
display: inline-block;
|
||||
padding-left: 10px;
|
||||
line-height: 19px;
|
||||
font-size: 13px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
max-height: 300px;
|
||||
overflow-y: auto;
|
||||
scrollbar-width: none;
|
||||
display: grid;
|
||||
grid-template-columns: 1fr;
|
||||
grid-row-gap: 5px;
|
||||
justify-items: start;
|
||||
|
||||
.asset-item {
|
||||
display: flex;
|
||||
grid-template-columns: 1fr 1fr;
|
||||
justify-content: space-between;
|
||||
width: 100%;
|
||||
border-bottom: 1px solid #eee;
|
||||
|
||||
.icon {
|
||||
color: #ed5565;
|
||||
padding-right: 3px
|
||||
}
|
||||
|
||||
.asset-ip {
|
||||
padding-right: 10px;
|
||||
}
|
||||
|
||||
.asset-status {
|
||||
padding-right: 10px;
|
||||
color: #ed5565
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
.group-assets::-webkit-scrollbar {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.footer {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin-top: 16px;
|
||||
}
|
||||
|
||||
.selected-count {
|
||||
color: #1ab394;
|
||||
}
|
||||
}
|
||||
</style>
|
@ -6,6 +6,16 @@
|
||||
v-if="executionInfo.status"
|
||||
class="header-status"
|
||||
>
|
||||
<span class="status-item">
|
||||
<el-link
|
||||
@click="viewConfirmRunAssets"
|
||||
>
|
||||
<span>{{ selectAssets.length }}</span>
|
||||
</el-link>
|
||||
<span style="display: inline-block;" @click="viewConfirmRunAssets">
|
||||
{{ $t('AssetsSelected') }}
|
||||
</span>
|
||||
</span>
|
||||
<span class="status-item">
|
||||
<span>{{ $tc('Status') }}: </span>
|
||||
<span
|
||||
@ -67,6 +77,10 @@ export default {
|
||||
type: Object,
|
||||
// eslint-disable-next-line vue/require-valid-default-prop
|
||||
default: {}
|
||||
},
|
||||
selectAssets: {
|
||||
type: Array,
|
||||
default: () => []
|
||||
}
|
||||
},
|
||||
data() {
|
||||
@ -153,6 +167,9 @@ export default {
|
||||
this.showScrollButton = true
|
||||
this.xterm.scrollToBottom()
|
||||
})
|
||||
},
|
||||
viewConfirmRunAssets() {
|
||||
this.$emit('view-assets')
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -53,7 +53,7 @@ export default {
|
||||
]
|
||||
},
|
||||
columns: [
|
||||
'name', 'type', 'summary', 'average_time_cost', 'asset_amount',
|
||||
'name', 'type', 'summary', 'average_time_cost', 'asset_amount', 'is_periodic', 'periodic_display',
|
||||
'date_last_run', 'comment', 'date_updated', 'date_created', 'actions'
|
||||
],
|
||||
columnsMeta: {
|
||||
|
@ -17,6 +17,7 @@ export default {
|
||||
},
|
||||
data() {
|
||||
const currentUserID = this.$store.state.users.profile.id
|
||||
const isSuperuser = this.$store.state.users.profile.is_superuser
|
||||
return {
|
||||
createDrawer: () => import('@/views/ops/Template/Adhoc/AdhocUpdateCreate.vue'),
|
||||
detailDrawer: () => import('@/views/ops/Template/Adhoc/AdhocDetail/index.vue'),
|
||||
@ -43,7 +44,7 @@ export default {
|
||||
updateRoute: 'AdhocUpdate',
|
||||
hasDelete: true,
|
||||
canDelete: ({ row }) => {
|
||||
return this.$hasPerm('ops.delete_adhoc') && row.creator === currentUserID
|
||||
return this.$hasPerm('ops.delete_adhoc') && row.creator === currentUserID || isSuperuser
|
||||
},
|
||||
hasClone: true,
|
||||
cloneRoute: 'AdhocCreate'
|
||||
|
@ -1,6 +1,6 @@
|
||||
<template>
|
||||
<TwoCol>
|
||||
<AutoDetailCard :fields="detailFields" :object="object" :url="url" />
|
||||
<AutoDetailCard :excludes="excludes" :object="object" :url="url" />
|
||||
<template #right>
|
||||
<IBox :title="$tc('Variable')">
|
||||
<Variable
|
||||
|
@ -27,6 +27,7 @@ export default {
|
||||
},
|
||||
data() {
|
||||
const currentUserID = this.$store.state.users.profile.id
|
||||
const isSuperuser = this.$store.state.users.profile.is_superuser
|
||||
return {
|
||||
createDrawer: () => import('@/views/ops/Template/Playbook/PlaybookCreateUpdate.vue'),
|
||||
detailDrawer: () => import('@/views/ops/Template/Playbook/PlaybookDetail/index.vue'),
|
||||
@ -55,7 +56,7 @@ export default {
|
||||
updateRoute: 'PlaybookUpdate',
|
||||
hasDelete: true,
|
||||
canDelete: ({ row }) => {
|
||||
return this.$hasPerm('ops.delete_playbook') && row.creator === currentUserID
|
||||
return this.$hasPerm('ops.delete_playbook') && row.creator === currentUserID || isSuperuser
|
||||
},
|
||||
hasClone: true,
|
||||
cloneRoute: 'PlaybookCreate'
|
||||
|
@ -3,7 +3,6 @@
|
||||
<template>
|
||||
<AccountListTable
|
||||
ref="ListTable"
|
||||
:asset="object"
|
||||
:columns-default="columns"
|
||||
:has-clone="false"
|
||||
:has-column-actions="false"
|
||||
|
@ -70,12 +70,11 @@ export default {
|
||||
}
|
||||
},
|
||||
headerActions: {
|
||||
hasLeft: false,
|
||||
hasSearch: true,
|
||||
hasRefresh: true,
|
||||
hasExport: false,
|
||||
hasImport: false,
|
||||
hasCreate: false,
|
||||
hasMoreActions: false
|
||||
hasImport: false
|
||||
},
|
||||
userRelationConfig: {
|
||||
icon: 'fa-user',
|
||||
@ -103,7 +102,8 @@ export default {
|
||||
onAddSuccess: (objects, that) => {
|
||||
this.$log.debug('Select value', that.select2.value)
|
||||
that.iHasObjects = [...that.iHasObjects, ...objects]
|
||||
this.$store.commit('common/reload')
|
||||
that.$refs.select2.clearSelected()
|
||||
this.$refs.ListTable.reloadTable()
|
||||
}
|
||||
},
|
||||
groupRelationConfig: {
|
||||
|
@ -39,7 +39,10 @@ export default {
|
||||
disabled: true
|
||||
},
|
||||
phone: {
|
||||
component: PhoneInput
|
||||
component: PhoneInput,
|
||||
hidden: () => {
|
||||
return store.getters.publicSettings['PRIVACY_MODE']
|
||||
}
|
||||
},
|
||||
mfa_level: {
|
||||
disabled: (formValue) => {
|
||||
|
@ -24,7 +24,7 @@
|
||||
style="margin-top: 15px"
|
||||
type="warning"
|
||||
/>
|
||||
<IBox :title="$tc('InformationModification')" fa="fa-edit">
|
||||
<IBox v-if="!store.getters.publicSettings['PRIVACY_MODE']" :title="$tc('InformationModification')" fa="fa-edit">
|
||||
<table>
|
||||
<tr>
|
||||
<td> {{ $t('Phone') }}</td>
|
||||
@ -86,7 +86,8 @@ export default {
|
||||
{
|
||||
title: this.$t('FacialFeatures'),
|
||||
has: this.$store.getters.publicSettings.FACE_RECOGNITION_ENABLED &&
|
||||
this.$store.getters.publicSettings.XPACK_LICENSE_EDITION_ULTIMATE,
|
||||
this.$store.getters.publicSettings.XPACK_LICENSE_EDITION_ULTIMATE &&
|
||||
!store.getters.publicSettings['PRIVACY_MODE'],
|
||||
attrs: {
|
||||
type: 'primary',
|
||||
label: this.$store.state.users.profile.is_face_code_set ? this.$t('Unbind') : this.$t('Bind')
|
||||
@ -111,7 +112,8 @@ export default {
|
||||
showTip: this.isDisabled('wecom'),
|
||||
tip: this.$t('UnbindHelpText')
|
||||
},
|
||||
has: this.$store.getters.publicSettings.AUTH_WECOM,
|
||||
has: this.$store.getters.publicSettings.AUTH_WECOM &&
|
||||
!store.getters.publicSettings['PRIVACY_MODE'],
|
||||
callbacks: {
|
||||
click: function() {
|
||||
this.currentEdit = 'wecom'
|
||||
@ -128,7 +130,8 @@ export default {
|
||||
showTip: this.isDisabled('dingtalk'),
|
||||
tip: this.$t('UnbindHelpText')
|
||||
},
|
||||
has: this.$store.getters.publicSettings.AUTH_DINGTALK,
|
||||
has: this.$store.getters.publicSettings.AUTH_DINGTALK &&
|
||||
!store.getters.publicSettings['PRIVACY_MODE'],
|
||||
callbacks: {
|
||||
click: function() {
|
||||
this.currentEdit = 'dingtalk'
|
||||
@ -145,7 +148,8 @@ export default {
|
||||
showTip: this.isDisabled('feishu'),
|
||||
tip: this.$t('UnbindHelpText')
|
||||
},
|
||||
has: this.$store.getters.publicSettings.AUTH_FEISHU,
|
||||
has: this.$store.getters.publicSettings.AUTH_FEISHU &&
|
||||
!store.getters.publicSettings['PRIVACY_MODE'],
|
||||
callbacks: {
|
||||
click: function() {
|
||||
this.currentEdit = 'feishu'
|
||||
@ -162,7 +166,8 @@ export default {
|
||||
showTip: this.isDisabled('lark'),
|
||||
tip: this.$t('UnbindHelpText')
|
||||
},
|
||||
has: this.$store.getters.publicSettings.AUTH_LARK,
|
||||
has: this.$store.getters.publicSettings.AUTH_LARK &&
|
||||
!store.getters.publicSettings['PRIVACY_MODE'],
|
||||
callbacks: {
|
||||
click: function() {
|
||||
this.currentEdit = 'lark'
|
||||
@ -179,7 +184,8 @@ export default {
|
||||
showTip: this.isDisabled('slack'),
|
||||
tip: this.$t('UnbindHelpText')
|
||||
},
|
||||
has: this.$store.getters.publicSettings.AUTH_SLACK,
|
||||
has: this.$store.getters.publicSettings.AUTH_SLACK &&
|
||||
!store.getters.publicSettings['PRIVACY_MODE'],
|
||||
callbacks: {
|
||||
click: function() {
|
||||
this.currentEdit = 'slack'
|
||||
@ -314,6 +320,9 @@ export default {
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
store() {
|
||||
return store
|
||||
},
|
||||
detailCardItems() {
|
||||
return [
|
||||
{
|
||||
@ -337,7 +346,8 @@ export default {
|
||||
} else {
|
||||
return '-'
|
||||
}
|
||||
}
|
||||
},
|
||||
has: !store.getters.publicSettings['PRIVACY_MODE']
|
||||
},
|
||||
{
|
||||
value: this.object.groups?.map(item => item.name).join(' | '),
|
||||
|
@ -57,6 +57,9 @@ export default {
|
||||
}
|
||||
}
|
||||
},
|
||||
mounted() {
|
||||
this.$store.dispatch('users/enterSettingOrg')
|
||||
},
|
||||
methods: {
|
||||
handleUpload(res) {
|
||||
this.$refs.CardTable.reloadTable()
|
||||
|
@ -75,6 +75,7 @@ export default {
|
||||
}
|
||||
},
|
||||
async mounted() {
|
||||
this.$route.query.platform = 'RemoteAppHost'
|
||||
this.loading = false
|
||||
},
|
||||
methods: {}
|
||||
|
@ -1,5 +1,10 @@
|
||||
<template>
|
||||
<Account :columns-meta="columnsMeta" :extra-quick-actions="quickActions" :object.sync="object" />
|
||||
<Account
|
||||
:url="url"
|
||||
:columns-meta="columnsMeta"
|
||||
:extra-quick-actions="quickActions"
|
||||
:object.sync="object"
|
||||
/>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
@ -19,6 +24,7 @@ export default {
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
url: '/api/v1/accounts/accounts/',
|
||||
columnsMeta: {
|
||||
name: {
|
||||
formatter: (row) => <span>{row.name}</span>
|
||||
@ -50,7 +56,3 @@ export default {
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
|
||||
</style>
|
||||
|
@ -23,6 +23,7 @@ export default {
|
||||
DrawerListTable
|
||||
},
|
||||
data() {
|
||||
const appletRouteQuery = { type: 'windows', category: 'host', platform: 'RemoteAppHost' }
|
||||
return {
|
||||
createDrawer: () => import('./AppletHostCreateUpdate.vue'),
|
||||
detailDrawer: () => import('./AppletHostDetail/index.vue'),
|
||||
@ -68,6 +69,9 @@ export default {
|
||||
const url = `/api/v1/terminal/applet-hosts/${id}/`
|
||||
return this.$axios.delete(url)
|
||||
},
|
||||
onUpdate: ({ row }) => {
|
||||
this.$refs.table.onUpdate({ row: row, query: appletRouteQuery })
|
||||
},
|
||||
extraActions: [
|
||||
{
|
||||
name: 'Test',
|
||||
@ -93,7 +97,7 @@ export default {
|
||||
hasExport: false,
|
||||
hasImport: false,
|
||||
onCreate: () => {
|
||||
this.$refs.table.onCreate({ type: 'windows', category: 'host', platform: 'RemoteAppHost' })
|
||||
this.$refs.table.onCreate({ query: appletRouteQuery })
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -7,7 +7,7 @@
|
||||
v-bind="$attrs"
|
||||
v-on="$listeners"
|
||||
>
|
||||
<el-alert type="success"> {{ $t('ImportLdapUserTip') }}</el-alert>
|
||||
<el-alert type="success" style="margin-bottom: 10px"> {{ $t('ImportLdapUserTip') }}</el-alert>
|
||||
<ListTable
|
||||
ref="listTable"
|
||||
:header-actions="headerActions"
|
||||
@ -46,7 +46,7 @@
|
||||
<script>
|
||||
import store from '@/store'
|
||||
import { DEFAULT_ORG_ID, SYSTEM_ORG_ID } from '@/utils/org'
|
||||
import { DrawerListTable as ListTable } from '@/components'
|
||||
import ListTable from '@/components/Table/ListTable'
|
||||
import Dialog from '@/components/Dialog/index.vue'
|
||||
import Select2 from '@/components/Form/FormFields/Select2.vue'
|
||||
import getStatusColumnMeta from '@/components/Table/ListTable/TableAction/const'
|
||||
|
@ -51,7 +51,7 @@ export default {
|
||||
[
|
||||
this.$t('Other'),
|
||||
[
|
||||
'AUTH_LDAP_CONNECT_TIMEOUT', 'AUTH_LDAP_SEARCH_PAGED_SIZE',
|
||||
'AUTH_LDAP_STRICT_SYNC', 'AUTH_LDAP_CONNECT_TIMEOUT', 'AUTH_LDAP_SEARCH_PAGED_SIZE',
|
||||
'AUTH_LDAP_CACHE_TIMEOUT'
|
||||
]
|
||||
]
|
||||
|
@ -51,7 +51,7 @@ export default {
|
||||
[
|
||||
this.$t('Other'),
|
||||
[
|
||||
'AUTH_LDAP_HA_CONNECT_TIMEOUT', 'AUTH_LDAP_HA_SEARCH_PAGED_SIZE',
|
||||
'AUTH_LDAP_HA_STRICT_SYNC', 'AUTH_LDAP_HA_CONNECT_TIMEOUT', 'AUTH_LDAP_HA_SEARCH_PAGED_SIZE',
|
||||
'AUTH_LDAP_HA_CACHE_TIMEOUT'
|
||||
]
|
||||
]
|
||||
|
@ -159,7 +159,7 @@ export default {
|
||||
this.dialogLicenseImport = true
|
||||
},
|
||||
consultAction: function() {
|
||||
const url = 'http://www.jumpserver.org/support/'
|
||||
const url = 'https://www.lxware.hk/pages/about'
|
||||
window.open(url, '_blank')
|
||||
},
|
||||
importLicense() {
|
||||
|
@ -45,20 +45,29 @@ export default {
|
||||
app: 'orgs',
|
||||
resource: 'organization'
|
||||
},
|
||||
columns: ['name',
|
||||
columns: ['name', 'id',
|
||||
'resource_statistics.users_amount',
|
||||
'resource_statistics.groups_amount',
|
||||
'resource_statistics.assets_amount',
|
||||
'resource_statistics.asset_perms_amount',
|
||||
'actions'
|
||||
],
|
||||
columnsShow: {
|
||||
min: ['name', 'actions'],
|
||||
default: [
|
||||
'name', 'resource_statistics.users_amount',
|
||||
'resource_statistics.groups_amount',
|
||||
'resource_statistics.assets_amount',
|
||||
'resource_statistics.asset_perms_amount'
|
||||
]
|
||||
},
|
||||
columnsMeta: {
|
||||
'resource_statistics.users_amount': {
|
||||
label: this.$t('Users'),
|
||||
width: '100px'
|
||||
},
|
||||
'resource_statistics.groups_amount': {
|
||||
label: this.$t('Groups'),
|
||||
label: this.$t('UserGroups'),
|
||||
width: '100px'
|
||||
},
|
||||
'resource_statistics.assets_amount': {
|
||||
|
@ -31,6 +31,7 @@ export default {
|
||||
[
|
||||
'SECURITY_MFA_AUTH',
|
||||
'SECURITY_MFA_IN_LOGIN_PAGE',
|
||||
'SECURITY_MFA_BY_EMAIL',
|
||||
'SECURITY_MFA_AUTH_ENABLED_FOR_THIRD_PARTY',
|
||||
'SECURITY_MFA_VERIFY_TTL',
|
||||
'OTP_ISSUER_NAME', 'OTP_VALID_WINDOW'
|
||||
|
@ -29,13 +29,23 @@ export default {
|
||||
]
|
||||
]
|
||||
],
|
||||
fieldsMeta: {}
|
||||
fieldsMeta: {},
|
||||
onSubmit: async(validValues) => {
|
||||
const url = '/api/v1/settings/setting/?category=security_session'
|
||||
|
||||
try {
|
||||
const res = await this.$axios.patch(url, validValues)
|
||||
|
||||
if (res) {
|
||||
this.$message.success(this.$t('UpdateSuccessMsg'))
|
||||
this.$store.commit('settings/SET_SECURITY_WATERMARK_ENABLED', res['SECURITY_WATERMARK_ENABLED'])
|
||||
}
|
||||
} catch (error) {
|
||||
throw new Error(error)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
|
||||
</style>
|
||||
|
@ -31,7 +31,7 @@ export default {
|
||||
'name', 'host', 'actions',
|
||||
'http_port', 'https_port', 'ssh_port', 'rdp_port', 'vnc_port',
|
||||
'mysql_port', 'mariadb_port', 'postgresql_port',
|
||||
'redis_port', 'sqlserver_port', 'oracle_port_range', 'is_active'
|
||||
'redis_port', 'sqlserver_port', 'oracle_port', 'is_active'
|
||||
]
|
||||
},
|
||||
columnsMeta: {
|
||||
|
@ -116,6 +116,9 @@ export default {
|
||||
},
|
||||
system_roles: {
|
||||
component: Select2,
|
||||
rules: [
|
||||
rules.Required
|
||||
],
|
||||
el: {
|
||||
multiple: true,
|
||||
ajax: {
|
||||
|
190
yarn.lock
190
yarn.lock
@ -1086,11 +1086,6 @@
|
||||
dependencies:
|
||||
katex "^0.16.0"
|
||||
|
||||
"@trysound/sax@0.2.0":
|
||||
version "0.2.0"
|
||||
resolved "https://registry.npmmirror.com/@trysound/sax/-/sax-0.2.0.tgz#cccaab758af56761eb7bf37af6f03f326dd798ad"
|
||||
integrity sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==
|
||||
|
||||
"@types/glob@^7.1.1":
|
||||
version "7.2.0"
|
||||
resolved "https://registry.npmmirror.com/@types/glob/-/glob-7.2.0.tgz"
|
||||
@ -1446,36 +1441,6 @@
|
||||
resolved "https://registry.npmmirror.com/@vue/preload-webpack-plugin/-/preload-webpack-plugin-1.1.2.tgz"
|
||||
integrity sha512-LIZMuJk38pk9U9Ur4YzHjlIyMuxPlACdBIHH9/nGYVTsaGKOSnSuELiE8vS9wa+dJpIYspYUOqk+L1Q4pgHQHQ==
|
||||
|
||||
"@vue/reactivity@3.5.13":
|
||||
version "3.5.13"
|
||||
resolved "https://registry.npmmirror.com/@vue/reactivity/-/reactivity-3.5.13.tgz#b41ff2bb865e093899a22219f5b25f97b6fe155f"
|
||||
integrity sha512-NaCwtw8o48B9I6L1zl2p41OHo/2Z4wqYGGIK1Khu5T7yxrn+ATOixn/Udn2m+6kZKB/J7cuT9DbWWhRxqixACg==
|
||||
dependencies:
|
||||
"@vue/shared" "3.5.13"
|
||||
|
||||
"@vue/runtime-core@3.5.13":
|
||||
version "3.5.13"
|
||||
resolved "https://registry.npmmirror.com/@vue/runtime-core/-/runtime-core-3.5.13.tgz#1fafa4bf0b97af0ebdd9dbfe98cd630da363a455"
|
||||
integrity sha512-Fj4YRQ3Az0WTZw1sFe+QDb0aXCerigEpw418pw1HBUKFtnQHWzwojaukAs2X/c9DQz4MQ4bsXTGlcpGxU/RCIw==
|
||||
dependencies:
|
||||
"@vue/reactivity" "3.5.13"
|
||||
"@vue/shared" "3.5.13"
|
||||
|
||||
"@vue/runtime-dom@3.5.13":
|
||||
version "3.5.13"
|
||||
resolved "https://registry.npmmirror.com/@vue/runtime-dom/-/runtime-dom-3.5.13.tgz#610fc795de9246300e8ae8865930d534e1246215"
|
||||
integrity sha512-dLaj94s93NYLqjLiyFzVs9X6dWhTdAlEAciC3Moq7gzAc13VJUdCnjjRurNM6uTLFATRHexHCTu/Xp3eW6yoog==
|
||||
dependencies:
|
||||
"@vue/reactivity" "3.5.13"
|
||||
"@vue/runtime-core" "3.5.13"
|
||||
"@vue/shared" "3.5.13"
|
||||
csstype "^3.1.3"
|
||||
|
||||
"@vue/shared@3.5.13":
|
||||
version "3.5.13"
|
||||
resolved "https://registry.npmmirror.com/@vue/shared/-/shared-3.5.13.tgz#87b309a6379c22b926e696893237826f64339b6f"
|
||||
integrity sha512-/hnE/qP5ZoGpol0a5mDi45bOd7t3tjYJBjsgCsivow7D48cJeV5l05RD82lPqi7gRiphZM37rnhW1l6ZoCNNnQ==
|
||||
|
||||
"@vue/test-utils@1.0.0-beta.29":
|
||||
version "1.0.0-beta.29"
|
||||
resolved "https://registry.npmmirror.com/@vue/test-utils/-/test-utils-1.0.0-beta.29.tgz"
|
||||
@ -3374,11 +3339,6 @@ commander@^6.1.0, commander@^6.2.0:
|
||||
resolved "https://registry.npmmirror.com/commander/-/commander-6.2.1.tgz"
|
||||
integrity sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==
|
||||
|
||||
commander@^7.2.0:
|
||||
version "7.2.0"
|
||||
resolved "https://registry.npmmirror.com/commander/-/commander-7.2.0.tgz#a36cb57d0b501ce108e4d20559a150a391d97ab7"
|
||||
integrity sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==
|
||||
|
||||
commander@^8.3.0:
|
||||
version "8.3.0"
|
||||
resolved "https://registry.npmmirror.com/commander/-/commander-8.3.0.tgz"
|
||||
@ -3778,17 +3738,6 @@ css-select@^4.1.3:
|
||||
domutils "^2.8.0"
|
||||
nth-check "^2.0.1"
|
||||
|
||||
css-select@^5.1.0:
|
||||
version "5.1.0"
|
||||
resolved "https://registry.npmmirror.com/css-select/-/css-select-5.1.0.tgz#b8ebd6554c3637ccc76688804ad3f6a6fdaea8a6"
|
||||
integrity sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==
|
||||
dependencies:
|
||||
boolbase "^1.0.0"
|
||||
css-what "^6.1.0"
|
||||
domhandler "^5.0.2"
|
||||
domutils "^3.0.1"
|
||||
nth-check "^2.0.1"
|
||||
|
||||
css-selector-tokenizer@^0.7.0:
|
||||
version "0.7.3"
|
||||
resolved "https://registry.npmmirror.com/css-selector-tokenizer/-/css-selector-tokenizer-0.7.3.tgz"
|
||||
@ -3797,6 +3746,22 @@ css-selector-tokenizer@^0.7.0:
|
||||
cssesc "^3.0.0"
|
||||
fastparse "^1.1.2"
|
||||
|
||||
css-tree@1.0.0-alpha.28:
|
||||
version "1.0.0-alpha.28"
|
||||
resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-1.0.0-alpha.28.tgz#8e8968190d886c9477bc8d61e96f61af3f7ffa7f"
|
||||
integrity sha512-joNNW1gCp3qFFzj4St6zk+Wh/NBv0vM5YbEreZk0SD4S23S+1xBKb6cLDg2uj4P4k/GUMlIm6cKIDqIG+vdt0w==
|
||||
dependencies:
|
||||
mdn-data "~1.1.0"
|
||||
source-map "^0.5.3"
|
||||
|
||||
css-tree@1.0.0-alpha.29:
|
||||
version "1.0.0-alpha.29"
|
||||
resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-1.0.0-alpha.29.tgz#3fa9d4ef3142cbd1c301e7664c1f352bd82f5a39"
|
||||
integrity sha512-sRNb1XydwkW9IOci6iB2xmy8IGCj6r/fr+JWitvJ2JxQRPzN3T4AGGVWCMlVmVwM1gtgALJRmGIlWv5ppnGGkg==
|
||||
dependencies:
|
||||
mdn-data "~1.1.0"
|
||||
source-map "^0.5.3"
|
||||
|
||||
css-tree@1.0.0-alpha.37:
|
||||
version "1.0.0-alpha.37"
|
||||
resolved "https://registry.npmmirror.com/css-tree/-/css-tree-1.0.0-alpha.37.tgz"
|
||||
@ -3813,28 +3778,17 @@ css-tree@^1.1.2:
|
||||
mdn-data "2.0.14"
|
||||
source-map "^0.6.1"
|
||||
|
||||
css-tree@^2.3.1:
|
||||
version "2.3.1"
|
||||
resolved "https://registry.npmmirror.com/css-tree/-/css-tree-2.3.1.tgz#10264ce1e5442e8572fc82fbe490644ff54b5c20"
|
||||
integrity sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==
|
||||
dependencies:
|
||||
mdn-data "2.0.30"
|
||||
source-map-js "^1.0.1"
|
||||
|
||||
css-tree@~2.2.0:
|
||||
version "2.2.1"
|
||||
resolved "https://registry.npmmirror.com/css-tree/-/css-tree-2.2.1.tgz#36115d382d60afd271e377f9c5f67d02bd48c032"
|
||||
integrity sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==
|
||||
dependencies:
|
||||
mdn-data "2.0.28"
|
||||
source-map-js "^1.0.1"
|
||||
css-url-regex@^1.1.0:
|
||||
version "1.1.0"
|
||||
resolved "https://registry.yarnpkg.com/css-url-regex/-/css-url-regex-1.1.0.tgz#83834230cc9f74c457de59eebd1543feeb83b7ec"
|
||||
integrity sha512-hLKuvifwoKvwqpctblTp0BovBuOXzxof8JgkA8zeqxxL+vcynHQjtIqqlFfQI1gEAZAjbqKm9gFTa88fxTAX4g==
|
||||
|
||||
css-what@^3.2.1:
|
||||
version "3.4.2"
|
||||
resolved "https://registry.npmmirror.com/css-what/-/css-what-3.4.2.tgz"
|
||||
integrity sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==
|
||||
|
||||
css-what@^6.0.1, css-what@^6.1.0:
|
||||
css-what@^6.0.1:
|
||||
version "6.1.0"
|
||||
resolved "https://registry.npmmirror.com/css-what/-/css-what-6.1.0.tgz"
|
||||
integrity sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==
|
||||
@ -3932,6 +3886,13 @@ cssnano@^4.0.0, cssnano@^4.1.10:
|
||||
is-resolvable "^1.0.0"
|
||||
postcss "^7.0.0"
|
||||
|
||||
csso@^3.5.1:
|
||||
version "3.5.1"
|
||||
resolved "https://registry.yarnpkg.com/csso/-/csso-3.5.1.tgz#7b9eb8be61628973c1b261e169d2f024008e758b"
|
||||
integrity sha512-vrqULLffYU1Q2tLdJvaCYbONStnfkfimRxXNaGjxMldI0C7JPBC4rB1RyjhfdZ4m1frm8pM9uRPKH3d2knZ8gg==
|
||||
dependencies:
|
||||
css-tree "1.0.0-alpha.29"
|
||||
|
||||
csso@^4.0.2:
|
||||
version "4.2.0"
|
||||
resolved "https://registry.npmmirror.com/csso/-/csso-4.2.0.tgz"
|
||||
@ -3939,13 +3900,6 @@ csso@^4.0.2:
|
||||
dependencies:
|
||||
css-tree "^1.1.2"
|
||||
|
||||
csso@^5.0.5:
|
||||
version "5.0.5"
|
||||
resolved "https://registry.npmmirror.com/csso/-/csso-5.0.5.tgz#f9b7fe6cc6ac0b7d90781bb16d5e9874303e2ca6"
|
||||
integrity sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==
|
||||
dependencies:
|
||||
css-tree "~2.2.0"
|
||||
|
||||
cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0":
|
||||
version "0.3.8"
|
||||
resolved "https://registry.npmmirror.com/cssom/-/cssom-0.3.8.tgz"
|
||||
@ -3958,7 +3912,7 @@ cssstyle@^1.0.0:
|
||||
dependencies:
|
||||
cssom "0.3.x"
|
||||
|
||||
csstype@^3.1.0, csstype@^3.1.3:
|
||||
csstype@^3.1.0:
|
||||
version "3.1.3"
|
||||
resolved "https://registry.npmmirror.com/csstype/-/csstype-3.1.3.tgz"
|
||||
integrity sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==
|
||||
@ -4341,15 +4295,6 @@ dom-serializer@^1.0.1:
|
||||
domhandler "^4.2.0"
|
||||
entities "^2.0.0"
|
||||
|
||||
dom-serializer@^2.0.0:
|
||||
version "2.0.0"
|
||||
resolved "https://registry.npmmirror.com/dom-serializer/-/dom-serializer-2.0.0.tgz#e41b802e1eedf9f6cae183ce5e622d789d7d8e53"
|
||||
integrity sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==
|
||||
dependencies:
|
||||
domelementtype "^2.3.0"
|
||||
domhandler "^5.0.2"
|
||||
entities "^4.2.0"
|
||||
|
||||
domain-browser@^1.1.1:
|
||||
version "1.2.0"
|
||||
resolved "https://registry.npmmirror.com/domain-browser/-/domain-browser-1.2.0.tgz"
|
||||
@ -4360,7 +4305,7 @@ domelementtype@1, domelementtype@^1.3.1:
|
||||
resolved "https://registry.npmmirror.com/domelementtype/-/domelementtype-1.3.1.tgz"
|
||||
integrity sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==
|
||||
|
||||
domelementtype@^2.0.1, domelementtype@^2.2.0, domelementtype@^2.3.0:
|
||||
domelementtype@^2.0.1, domelementtype@^2.2.0:
|
||||
version "2.3.0"
|
||||
resolved "https://registry.npmmirror.com/domelementtype/-/domelementtype-2.3.0.tgz"
|
||||
integrity sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==
|
||||
@ -4386,13 +4331,6 @@ domhandler@^4.0.0, domhandler@^4.2.0, domhandler@^4.2.2, domhandler@^4.3.1:
|
||||
dependencies:
|
||||
domelementtype "^2.2.0"
|
||||
|
||||
domhandler@^5.0.2, domhandler@^5.0.3:
|
||||
version "5.0.3"
|
||||
resolved "https://registry.npmmirror.com/domhandler/-/domhandler-5.0.3.tgz#cc385f7f751f1d1fc650c21374804254538c7d31"
|
||||
integrity sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==
|
||||
dependencies:
|
||||
domelementtype "^2.3.0"
|
||||
|
||||
dompurify@^3.1.6:
|
||||
version "3.1.6"
|
||||
resolved "https://registry.npmmirror.com/dompurify/-/dompurify-3.1.6.tgz"
|
||||
@ -4420,15 +4358,6 @@ domutils@^2.5.2, domutils@^2.8.0:
|
||||
domelementtype "^2.2.0"
|
||||
domhandler "^4.2.0"
|
||||
|
||||
domutils@^3.0.1:
|
||||
version "3.1.0"
|
||||
resolved "https://registry.npmmirror.com/domutils/-/domutils-3.1.0.tgz#c47f551278d3dc4b0b1ab8cbb42d751a6f0d824e"
|
||||
integrity sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==
|
||||
dependencies:
|
||||
dom-serializer "^2.0.0"
|
||||
domelementtype "^2.3.0"
|
||||
domhandler "^5.0.3"
|
||||
|
||||
dot-object@^2.1.4:
|
||||
version "2.1.4"
|
||||
resolved "https://registry.npmmirror.com/dot-object/-/dot-object-2.1.4.tgz"
|
||||
@ -4625,11 +4554,6 @@ entities@^3.0.1, entities@~3.0.1:
|
||||
resolved "https://registry.npmmirror.com/entities/-/entities-3.0.1.tgz"
|
||||
integrity sha512-WiyBqoomrwMdFG1e0kqvASYfnlb0lp8M5o5Fw2OFq1hNZxxcNk8Ik0Xm7LxzBhuidnZB/UtBqVCgUz3kBOP51Q==
|
||||
|
||||
entities@^4.2.0:
|
||||
version "4.5.0"
|
||||
resolved "https://registry.npmmirror.com/entities/-/entities-4.5.0.tgz#5d268ea5e7113ec74c4d033b79ea5a35a488fb48"
|
||||
integrity sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==
|
||||
|
||||
env-paths@^2.2.0:
|
||||
version "2.2.1"
|
||||
resolved "https://registry.npmmirror.com/env-paths/-/env-paths-2.2.1.tgz"
|
||||
@ -8585,21 +8509,16 @@ mdn-data@2.0.14:
|
||||
resolved "https://registry.npmmirror.com/mdn-data/-/mdn-data-2.0.14.tgz"
|
||||
integrity sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==
|
||||
|
||||
mdn-data@2.0.28:
|
||||
version "2.0.28"
|
||||
resolved "https://registry.npmmirror.com/mdn-data/-/mdn-data-2.0.28.tgz#5ec48e7bef120654539069e1ae4ddc81ca490eba"
|
||||
integrity sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==
|
||||
|
||||
mdn-data@2.0.30:
|
||||
version "2.0.30"
|
||||
resolved "https://registry.npmmirror.com/mdn-data/-/mdn-data-2.0.30.tgz#ce4df6f80af6cfbe218ecd5c552ba13c4dfa08cc"
|
||||
integrity sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==
|
||||
|
||||
mdn-data@2.0.4:
|
||||
version "2.0.4"
|
||||
resolved "https://registry.npmmirror.com/mdn-data/-/mdn-data-2.0.4.tgz"
|
||||
integrity sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==
|
||||
|
||||
mdn-data@~1.1.0:
|
||||
version "1.1.4"
|
||||
resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-1.1.4.tgz#50b5d4ffc4575276573c4eedb8780812a8419f01"
|
||||
integrity sha512-FSYbp3lyKjyj3E7fMl6rYvUdX0FBXaluGqlFoYESWQlyUTq8R+wp0rkFxoYFqZlHCvsUXGjyJmLQSnXToYhOSA==
|
||||
|
||||
mdurl@^1.0.1, mdurl@~1.0.1:
|
||||
version "1.0.1"
|
||||
resolved "https://registry.npmjs.org/mdurl/-/mdurl-1.0.1.tgz"
|
||||
@ -11903,11 +11822,6 @@ source-list-map@^2.0.0:
|
||||
resolved "https://registry.npmmirror.com/source-list-map/-/source-list-map-2.0.1.tgz"
|
||||
integrity sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==
|
||||
|
||||
source-map-js@^1.0.1:
|
||||
version "1.2.1"
|
||||
resolved "https://registry.npmmirror.com/source-map-js/-/source-map-js-1.2.1.tgz#1ce5650fddd87abc099eda37dcff024c2667ae46"
|
||||
integrity sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==
|
||||
|
||||
source-map-js@^1.0.2:
|
||||
version "1.0.2"
|
||||
resolved "https://registry.npmmirror.com/source-map-js/-/source-map-js-1.0.2.tgz"
|
||||
@ -12443,18 +12357,25 @@ svg-tags@^1.0.0:
|
||||
resolved "https://registry.npmmirror.com/svg-tags/-/svg-tags-1.0.0.tgz"
|
||||
integrity sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==
|
||||
|
||||
svgo@1.2.4:
|
||||
version "3.3.2"
|
||||
resolved "https://registry.npmmirror.com/svgo/-/svgo-3.3.2.tgz#ad58002652dffbb5986fc9716afe52d869ecbda8"
|
||||
integrity sha512-OoohrmuUlBs8B8o6MB2Aevn+pRIH9zDALSR+6hhqVfa6fRwG/Qw9VUMSMW9VNg2CFc/MTIfabtdOVl9ODIJjpw==
|
||||
svgo@1.2.2:
|
||||
version "1.2.2"
|
||||
resolved "https://registry.yarnpkg.com/svgo/-/svgo-1.2.2.tgz#0253d34eccf2aed4ad4f283e11ee75198f9d7316"
|
||||
integrity sha512-rAfulcwp2D9jjdGu+0CuqlrAUin6bBWrpoqXWwKDZZZJfXcUXQSxLJOFJCQCSA0x0pP2U0TxSlJu2ROq5Bq6qA==
|
||||
dependencies:
|
||||
"@trysound/sax" "0.2.0"
|
||||
commander "^7.2.0"
|
||||
css-select "^5.1.0"
|
||||
css-tree "^2.3.1"
|
||||
css-what "^6.1.0"
|
||||
csso "^5.0.5"
|
||||
picocolors "^1.0.0"
|
||||
chalk "^2.4.1"
|
||||
coa "^2.0.2"
|
||||
css-select "^2.0.0"
|
||||
css-select-base-adapter "^0.1.1"
|
||||
css-tree "1.0.0-alpha.28"
|
||||
css-url-regex "^1.1.0"
|
||||
csso "^3.5.1"
|
||||
js-yaml "^3.13.1"
|
||||
mkdirp "~0.5.1"
|
||||
object.values "^1.1.0"
|
||||
sax "~1.2.4"
|
||||
stable "^0.1.8"
|
||||
unquote "~1.1.1"
|
||||
util.promisify "~1.0.0"
|
||||
|
||||
svgo@^1.0.0:
|
||||
version "1.3.2"
|
||||
@ -13408,6 +13329,11 @@ watchpack@^1.5.0:
|
||||
chokidar "^3.4.1"
|
||||
watchpack-chokidar2 "^2.0.1"
|
||||
|
||||
watermark-js-plus@^1.5.8:
|
||||
version "1.5.8"
|
||||
resolved "https://registry.yarnpkg.com/watermark-js-plus/-/watermark-js-plus-1.5.8.tgz#1dc5b16bc3efcc7172e53ba5d2e85a05dbbba4b3"
|
||||
integrity sha512-dSQHNSq8hVe6abEAPGKPcjq88XKWu4wiikeELyUlcs48xqQOWG3eWeWNLHcG6Pegujp8HTLXPzKsDvzFLKC+iA==
|
||||
|
||||
wbuf@^1.1.0, wbuf@^1.7.3:
|
||||
version "1.7.3"
|
||||
resolved "https://registry.npmmirror.com/wbuf/-/wbuf-1.7.3.tgz"
|
||||
|
Loading…
Reference in New Issue
Block a user