mirror of
https://github.com/lnbits/lnbits-legend.git
synced 2025-02-25 23:21:21 +01:00
462 lines
12 KiB
JavaScript
462 lines
12 KiB
JavaScript
window.app = Vue.createApp({
|
|
el: '#vue',
|
|
mixins: [window.windowMixin],
|
|
data: function () {
|
|
return {
|
|
paymentsWallet: {},
|
|
wallet: {},
|
|
cancel: {},
|
|
users: [],
|
|
wallets: [],
|
|
searchData: {
|
|
user: '',
|
|
username: '',
|
|
email: '',
|
|
pubkey: ''
|
|
},
|
|
paymentPage: {
|
|
show: false
|
|
},
|
|
activeWallet: {
|
|
userId: null,
|
|
show: false
|
|
},
|
|
topupDialog: {
|
|
show: false
|
|
},
|
|
activeUser: {
|
|
data: null,
|
|
showUserId: false,
|
|
show: false
|
|
},
|
|
|
|
createWalletDialog: {
|
|
data: {},
|
|
show: false
|
|
},
|
|
walletTable: {
|
|
columns: [
|
|
{
|
|
name: 'name',
|
|
align: 'left',
|
|
label: 'Name',
|
|
field: 'name'
|
|
},
|
|
{
|
|
name: 'id',
|
|
align: 'left',
|
|
label: 'Wallet Id',
|
|
field: 'id'
|
|
},
|
|
{
|
|
name: 'currency',
|
|
align: 'left',
|
|
label: 'Currency',
|
|
field: 'currency'
|
|
},
|
|
{
|
|
name: 'balance_msat',
|
|
align: 'left',
|
|
label: 'Balance',
|
|
field: 'balance_msat'
|
|
}
|
|
],
|
|
pagination: {
|
|
sortBy: 'name',
|
|
rowsPerPage: 10,
|
|
page: 1,
|
|
descending: true,
|
|
rowsNumber: 10
|
|
},
|
|
search: null,
|
|
hideEmpty: true,
|
|
loading: false
|
|
},
|
|
usersTable: {
|
|
columns: [
|
|
{
|
|
name: 'admin',
|
|
align: 'left',
|
|
label: 'Admin',
|
|
field: 'admin',
|
|
sortable: false
|
|
},
|
|
{
|
|
name: 'wallet_id',
|
|
align: 'left',
|
|
label: 'Wallets',
|
|
field: 'wallet_id',
|
|
sortable: false
|
|
},
|
|
{
|
|
name: 'user',
|
|
align: 'left',
|
|
label: 'User Id',
|
|
field: 'user',
|
|
sortable: false
|
|
},
|
|
|
|
{
|
|
name: 'username',
|
|
align: 'left',
|
|
label: 'Username',
|
|
field: 'username',
|
|
sortable: false
|
|
},
|
|
|
|
{
|
|
name: 'email',
|
|
align: 'left',
|
|
label: 'Email',
|
|
field: 'email',
|
|
sortable: false
|
|
},
|
|
{
|
|
name: 'pubkey',
|
|
align: 'left',
|
|
label: 'Public Key',
|
|
field: 'pubkey',
|
|
sortable: false
|
|
},
|
|
{
|
|
name: 'balance_msat',
|
|
align: 'left',
|
|
label: 'Balance',
|
|
field: 'balance_msat',
|
|
sortable: true
|
|
},
|
|
|
|
{
|
|
name: 'transaction_count',
|
|
align: 'left',
|
|
label: 'Payments',
|
|
field: 'transaction_count',
|
|
sortable: true
|
|
},
|
|
|
|
{
|
|
name: 'last_payment',
|
|
align: 'left',
|
|
label: 'Last Payment',
|
|
field: 'last_payment',
|
|
sortable: true
|
|
}
|
|
],
|
|
pagination: {
|
|
sortBy: 'balance_msat',
|
|
rowsPerPage: 10,
|
|
page: 1,
|
|
descending: true,
|
|
rowsNumber: 10
|
|
},
|
|
search: null,
|
|
hideEmpty: true,
|
|
loading: false
|
|
}
|
|
}
|
|
},
|
|
watch: {
|
|
'usersTable.hideEmpty': function (newVal, _) {
|
|
if (newVal) {
|
|
this.usersTable.filter = {
|
|
'transaction_count[gt]': 0
|
|
}
|
|
} else {
|
|
this.usersTable.filter = {}
|
|
}
|
|
this.fetchUsers()
|
|
}
|
|
},
|
|
created() {
|
|
this.fetchUsers()
|
|
},
|
|
|
|
methods: {
|
|
formatDate: function (value) {
|
|
return LNbits.utils.formatDate(value)
|
|
},
|
|
formatSat: function (value) {
|
|
return LNbits.utils.formatSat(Math.floor(value / 1000))
|
|
},
|
|
backToUsersPage() {
|
|
this.activeUser.show = false
|
|
this.paymentPage.show = false
|
|
this.activeWallet.show = false
|
|
this.fetchUsers()
|
|
},
|
|
resetPassword(user_id) {
|
|
return LNbits.api
|
|
.request('PUT', `/users/api/v1/user/${user_id}/reset_password`)
|
|
.then(res => {
|
|
LNbits.utils
|
|
.confirmDialog(
|
|
'A reset key has been generated. Click OK to copy the rest key to your clipboard.'
|
|
)
|
|
.onOk(() => {
|
|
const url = window.location.origin + '?reset_key=' + res.data
|
|
this.copyText(url)
|
|
})
|
|
})
|
|
.catch(function (error) {
|
|
LNbits.utils.notifyApiError(error)
|
|
})
|
|
},
|
|
createUser() {
|
|
LNbits.api
|
|
.request('POST', '/users/api/v1/user', null, this.activeUser.data)
|
|
.then(resp => {
|
|
Quasar.Notify.create({
|
|
type: 'positive',
|
|
message: 'User created!',
|
|
icon: null
|
|
})
|
|
|
|
this.activeUser.setPassword = true
|
|
this.activeUser.data = resp.data
|
|
this.fetchUsers()
|
|
})
|
|
.catch(function (error) {
|
|
LNbits.utils.notifyApiError(error)
|
|
})
|
|
},
|
|
updateUser() {
|
|
LNbits.api
|
|
.request(
|
|
'PUT',
|
|
`/users/api/v1/user/${this.activeUser.data.id}`,
|
|
null,
|
|
this.activeUser.data
|
|
)
|
|
.then(() => {
|
|
Quasar.Notify.create({
|
|
type: 'positive',
|
|
message: 'User updated!',
|
|
icon: null
|
|
})
|
|
this.activeUser.data = null
|
|
this.activeUser.show = false
|
|
this.fetchUsers()
|
|
})
|
|
.catch(function (error) {
|
|
LNbits.utils.notifyApiError(error)
|
|
})
|
|
},
|
|
createWallet() {
|
|
const userId = this.activeWallet.userId
|
|
if (!userId) {
|
|
Quasar.Notify.create({
|
|
type: 'warning',
|
|
message: 'No user selected!',
|
|
icon: null
|
|
})
|
|
return
|
|
}
|
|
LNbits.api
|
|
.request(
|
|
'POST',
|
|
`/users/api/v1/user/${userId}/wallet`,
|
|
null,
|
|
this.createWalletDialog.data
|
|
)
|
|
.then(() => {
|
|
this.fetchWallets(userId)
|
|
Quasar.Notify.create({
|
|
type: 'positive',
|
|
message: 'Wallet created!'
|
|
})
|
|
})
|
|
.catch(function (error) {
|
|
LNbits.utils.notifyApiError(error)
|
|
})
|
|
},
|
|
deleteUser(user_id) {
|
|
LNbits.utils
|
|
.confirmDialog('Are you sure you want to delete this user?')
|
|
.onOk(() => {
|
|
LNbits.api
|
|
.request('DELETE', `/users/api/v1/user/${user_id}`)
|
|
.then(() => {
|
|
this.fetchUsers()
|
|
Quasar.Notify.create({
|
|
type: 'positive',
|
|
message: 'User deleted!',
|
|
icon: null
|
|
})
|
|
this.activeUser.data = null
|
|
this.activeUser.show = false
|
|
})
|
|
.catch(function (error) {
|
|
LNbits.utils.notifyApiError(error)
|
|
})
|
|
})
|
|
},
|
|
undeleteUserWallet(user_id, wallet) {
|
|
LNbits.api
|
|
.request(
|
|
'PUT',
|
|
`/users/api/v1/user/${user_id}/wallet/${wallet}/undelete`
|
|
)
|
|
.then(() => {
|
|
this.fetchWallets(user_id)
|
|
Quasar.Notify.create({
|
|
type: 'positive',
|
|
message: 'Undeleted user wallet!',
|
|
icon: null
|
|
})
|
|
})
|
|
.catch(function (error) {
|
|
LNbits.utils.notifyApiError(error)
|
|
})
|
|
},
|
|
deleteUserWallet(user_id, wallet, deleted) {
|
|
const dialogText = deleted
|
|
? 'Wallet is already deleted, are you sure you want to permanently delete this user wallet?'
|
|
: 'Are you sure you want to delete this user wallet?'
|
|
LNbits.utils.confirmDialog(dialogText).onOk(() => {
|
|
LNbits.api
|
|
.request('DELETE', `/users/api/v1/user/${user_id}/wallet/${wallet}`)
|
|
.then(() => {
|
|
this.fetchWallets(user_id)
|
|
Quasar.Notify.create({
|
|
type: 'positive',
|
|
message: 'User wallet deleted!',
|
|
icon: null
|
|
})
|
|
})
|
|
.catch(function (error) {
|
|
LNbits.utils.notifyApiError(error)
|
|
})
|
|
})
|
|
},
|
|
copyWalletLink(walletId) {
|
|
const url = `${window.location.origin}/wallet?usr=${this.activeWallet.userId}&wal=${walletId}`
|
|
this.copyText(url)
|
|
},
|
|
|
|
fetchUsers(props) {
|
|
const params = LNbits.utils.prepareFilterQuery(this.usersTable, props)
|
|
LNbits.api
|
|
.request('GET', `/users/api/v1/user?${params}`)
|
|
.then(res => {
|
|
this.usersTable.loading = false
|
|
this.usersTable.pagination.rowsNumber = res.data.total
|
|
this.users = res.data.data
|
|
})
|
|
.catch(function (error) {
|
|
LNbits.utils.notifyApiError(error)
|
|
})
|
|
},
|
|
fetchWallets(userId) {
|
|
LNbits.api
|
|
.request('GET', `/users/api/v1/user/${userId}/wallet`)
|
|
.then(res => {
|
|
this.wallets = res.data
|
|
this.activeWallet.userId = userId
|
|
this.activeWallet.show = true
|
|
})
|
|
.catch(function (error) {
|
|
LNbits.utils.notifyApiError(error)
|
|
})
|
|
},
|
|
|
|
toggleAdmin(userId) {
|
|
LNbits.api
|
|
.request('GET', `/users/api/v1/user/${userId}/admin`)
|
|
.then(() => {
|
|
this.fetchUsers()
|
|
Quasar.Notify.create({
|
|
type: 'positive',
|
|
message: 'Toggled admin!',
|
|
icon: null
|
|
})
|
|
})
|
|
.catch(function (error) {
|
|
LNbits.utils.notifyApiError(error)
|
|
})
|
|
},
|
|
exportUsers() {
|
|
console.log('export users')
|
|
},
|
|
async showAccountPage(user_id) {
|
|
this.activeUser.showPassword = false
|
|
this.activeUser.showUserId = false
|
|
this.activeUser.setPassword = false
|
|
if (!user_id) {
|
|
this.activeUser.data = {extra: {}}
|
|
this.activeUser.show = true
|
|
return
|
|
}
|
|
try {
|
|
const {data} = await LNbits.api.request(
|
|
'GET',
|
|
`/users/api/v1/user/${user_id}`
|
|
)
|
|
this.activeUser.data = data
|
|
|
|
this.activeUser.show = true
|
|
} catch (error) {
|
|
console.warn(error)
|
|
Quasar.Notify.create({
|
|
type: 'warning',
|
|
message: 'Failed to get user!'
|
|
})
|
|
this.activeUser.show = false
|
|
}
|
|
},
|
|
showTopupDialog(walletId) {
|
|
this.wallet.id = walletId
|
|
this.topupDialog.show = true
|
|
},
|
|
showPayments(wallet_id) {
|
|
this.paymentsWallet = this.wallets.find(wallet => wallet.id === wallet_id)
|
|
this.paymentPage.show = true
|
|
},
|
|
topupCallback(res) {
|
|
if (res.success) {
|
|
this.wallets.forEach(wallet => {
|
|
if (res.wallet_id === wallet.id) {
|
|
wallet.balance_msat += res.credit * 1000
|
|
}
|
|
})
|
|
this.fetchUsers()
|
|
}
|
|
},
|
|
topupWallet() {
|
|
LNbits.api
|
|
.request(
|
|
'PUT',
|
|
'/users/api/v1/topup',
|
|
this.g.user.wallets[0].adminkey,
|
|
this.wallet
|
|
)
|
|
.then(_ => {
|
|
Quasar.Notify.create({
|
|
type: 'positive',
|
|
message: `Added ${this.wallet.amount} to ${this.wallet.id}`,
|
|
icon: null
|
|
})
|
|
this.wallet = {}
|
|
this.fetchWallets(this.activeWallet.userId)
|
|
})
|
|
.catch(function (error) {
|
|
LNbits.utils.notifyApiError(error)
|
|
})
|
|
},
|
|
searchUserBy(fieldName) {
|
|
const fieldValue = this.searchData[fieldName]
|
|
this.usersTable.filter = {}
|
|
if (fieldValue) {
|
|
this.usersTable.filter[fieldName] = fieldValue
|
|
}
|
|
|
|
this.fetchUsers()
|
|
},
|
|
shortify(value) {
|
|
valueLength = (value || '').length
|
|
if (valueLength <= 10) {
|
|
return value
|
|
}
|
|
return `${value.substring(0, 5)}...${value.substring(valueLength - 5, valueLength)}`
|
|
}
|
|
}
|
|
})
|