forked from SW/traefik
48 lines
1.4 KiB
JavaScript
48 lines
1.4 KiB
JavaScript
import { APP } from '../_helpers/APP'
|
|
import { getTotal } from './utils'
|
|
|
|
const apiBase = '/tcp'
|
|
|
|
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 -> TcpService -> getAllRouters', response.data)
|
|
return { data, total }
|
|
})
|
|
}
|
|
|
|
function getRouterByName (name) {
|
|
return APP.api.get(`${apiBase}/routers/${name}`)
|
|
.then(body => {
|
|
console.log('Success -> TcpService -> 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 -> TcpService -> getAllServices', response.data)
|
|
return { data, total }
|
|
})
|
|
}
|
|
|
|
function getServiceByName (name) {
|
|
return APP.api.get(`${apiBase}/services/${name}`)
|
|
.then(body => {
|
|
console.log('Success -> TcpService -> getServiceByName', body.data)
|
|
return body.data
|
|
})
|
|
}
|
|
|
|
export default {
|
|
getAllRouters,
|
|
getRouterByName,
|
|
getAllServices,
|
|
getServiceByName
|
|
}
|