2FAuth/resources/js_vue3/services/twofaccountService.js

58 lines
1.7 KiB
JavaScript
Raw Normal View History

2023-10-19 11:45:21 +02:00
import { httpClientFactory } from '@/services/httpClientFactory'
const apiClient = httpClientFactory('api')
export default {
getAll(withOtp = false) {
return apiClient.get('/twofaccounts' + (withOtp ? '?withOtp=1' : ''))
2023-10-19 11:45:21 +02:00
},
2023-10-24 13:27:50 +02:00
getByIds(ids, withOtp = false) {
return apiClient.get('/twofaccounts?ids=' + ids + (withOtp ? '&withOtp=1' : ''))
},
2023-10-19 11:45:21 +02:00
get(id, config = {}) {
return apiClient.get('/twofaccounts/' + id, { ...config })
},
preview(uri, config = {}) {
return apiClient.post('/twofaccounts/preview', { uri: uri }, { ...config })
},
getLogo(service, config = {}) {
return apiClient.post('/icons/default', { service: service }, { ...config })
},
deleteIcon(icon, config = {}) {
return apiClient.delete('/icons/' + icon, { ...config })
},
getOtpById(id, config = {}) {
return apiClient.get('/twofaccounts/' + id + '/otp', { ...config })
},
getOtpByUri(uri, config = {}) {
return apiClient.post('/twofaccounts/otp', { uri: uri }, { ...config })
},
getOtpByParams(params, config = {}) {
return apiClient.post('/twofaccounts/otp', params, { ...config })
},
withdraw(ids, config = {}) {
return apiClient.patch('/twofaccounts/withdraw?ids=' + ids.join())
},
saveOrder(orderedIds, config = {}) {
2023-10-20 17:20:04 +02:00
return apiClient.post('/twofaccounts/reorder', { orderedIds: orderedIds })
},
batchDelete(ids, config = {}) {
return apiClient.delete('/twofaccounts?ids=' + ids, { ...config })
},
export(ids, config = {}) {
return apiClient.delete('/twofaccounts/export?ids=' + ids, { ...config })
},
2023-10-19 11:45:21 +02:00
}