48 lines
1.4 KiB
JavaScript
48 lines
1.4 KiB
JavaScript
|
import { APP } from '../_helpers/APP'
|
||
|
import { getTotal } from './utils'
|
||
|
|
||
|
const apiBase = '/udp'
|
||
|
|
||
|
function getAllRouters (params) {
|
||
|
return APP.api.get(`${apiBase}/routers?search=${params.query}&status=${params.status}&per_page=${params.limit}&page=${params.page}`)
|
||
|
.then(response => {
|
||
|
const { data = [], headers } = response
|
||
|
const total = getTotal(headers, params)
|
||
|
console.log('Success -> UdpService -> getAllRouters', response.data)
|
||
|
return { data, total }
|
||
|
})
|
||
|
}
|
||
|
|
||
|
function getRouterByName (name) {
|
||
|
return APP.api.get(`${apiBase}/routers/${name}`)
|
||
|
.then(body => {
|
||
|
console.log('Success -> UdpService -> getRouterByName', body.data)
|
||
|
return body.data
|
||
|
})
|
||
|
}
|
||
|
|
||
|
function getAllServices (params) {
|
||
|
return APP.api.get(`${apiBase}/services?search=${params.query}&status=${params.status}&per_page=${params.limit}&page=${params.page}`)
|
||
|
.then(response => {
|
||
|
const { data = [], headers } = response
|
||
|
const total = getTotal(headers, params)
|
||
|
console.log('Success -> UdpService -> getAllServices', response.data)
|
||
|
return { data, total }
|
||
|
})
|
||
|
}
|
||
|
|
||
|
function getServiceByName (name) {
|
||
|
return APP.api.get(`${apiBase}/services/${name}`)
|
||
|
.then(body => {
|
||
|
console.log('Success -> UdpService -> getServiceByName', body.data)
|
||
|
return body.data
|
||
|
})
|
||
|
}
|
||
|
|
||
|
export default {
|
||
|
getAllRouters,
|
||
|
getRouterByName,
|
||
|
getAllServices,
|
||
|
getServiceByName
|
||
|
}
|