mirror of
https://github.com/owntone/owntone-server.git
synced 2025-01-06 12:33:22 -05:00
163 lines
3.7 KiB
JavaScript
163 lines
3.7 KiB
JavaScript
|
import axios from 'axios'
|
||
|
import store from '@/store'
|
||
|
|
||
|
axios.interceptors.response.use(function (response) {
|
||
|
return response
|
||
|
}, function (error) {
|
||
|
store.dispatch('add_notification', { text: 'Request failed (status: ' + error.request.status + ' ' + error.request.statusText + ', url: ' + error.request.responseURL + ')', type: 'danger' })
|
||
|
return Promise.reject(error)
|
||
|
})
|
||
|
|
||
|
export default {
|
||
|
config () {
|
||
|
return axios.get('/api/config')
|
||
|
},
|
||
|
|
||
|
library_stats () {
|
||
|
return axios.get('/api/library')
|
||
|
},
|
||
|
|
||
|
library_update () {
|
||
|
return axios.get('/api/update')
|
||
|
},
|
||
|
|
||
|
library_count (expression) {
|
||
|
return axios.get('/api/library/count?expression=' + expression)
|
||
|
},
|
||
|
|
||
|
queue () {
|
||
|
return axios.get('/api/queue')
|
||
|
},
|
||
|
|
||
|
queue_clear () {
|
||
|
return axios.put('/api/queue/clear')
|
||
|
},
|
||
|
|
||
|
queue_remove (itemId) {
|
||
|
return axios.delete('/api/queue/items/' + itemId)
|
||
|
},
|
||
|
|
||
|
queue_move (itemId, newPosition) {
|
||
|
return axios.put('/api/queue/items/' + itemId + '?new_position=' + newPosition)
|
||
|
},
|
||
|
|
||
|
queue_add (uri) {
|
||
|
return axios.post('/api/queue/items/add?uris=' + uri)
|
||
|
},
|
||
|
|
||
|
player_status () {
|
||
|
return axios.get('/api/player')
|
||
|
},
|
||
|
|
||
|
player_play () {
|
||
|
return axios.put('/api/player/play')
|
||
|
},
|
||
|
|
||
|
player_playpos (position) {
|
||
|
return axios.put('/api/player/play?position=' + position)
|
||
|
},
|
||
|
|
||
|
player_playid (itemId) {
|
||
|
return axios.put('/api/player/play?item_id=' + itemId)
|
||
|
},
|
||
|
|
||
|
player_pause () {
|
||
|
return axios.put('/api/player/pause')
|
||
|
},
|
||
|
|
||
|
player_next () {
|
||
|
return axios.put('/api/player/next')
|
||
|
},
|
||
|
|
||
|
player_previous () {
|
||
|
return axios.put('/api/player/previous')
|
||
|
},
|
||
|
|
||
|
player_shuffle (newState) {
|
||
|
var shuffle = newState ? 'true' : 'false'
|
||
|
return axios.put('/api/player/shuffle?state=' + shuffle)
|
||
|
},
|
||
|
|
||
|
player_consume (newState) {
|
||
|
var consume = newState ? 'true' : 'false'
|
||
|
return axios.put('/api/player/consume?state=' + consume)
|
||
|
},
|
||
|
|
||
|
player_repeat (newRepeatMode) {
|
||
|
return axios.put('/api/player/repeat?state=' + newRepeatMode)
|
||
|
},
|
||
|
|
||
|
player_volume (volume) {
|
||
|
return axios.put('/api/player/volume?volume=' + volume)
|
||
|
},
|
||
|
|
||
|
player_output_volume (outputId, outputVolume) {
|
||
|
return axios.put('/api/player/volume?volume=' + outputVolume + '&output_id=' + outputId)
|
||
|
},
|
||
|
|
||
|
player_seek (newPosition) {
|
||
|
return axios.put('/api/player/seek?position_ms=' + newPosition)
|
||
|
},
|
||
|
|
||
|
outputs () {
|
||
|
return axios.get('/api/outputs')
|
||
|
},
|
||
|
|
||
|
output_update (outputId, output) {
|
||
|
return axios.put('/api/outputs/' + outputId, output)
|
||
|
},
|
||
|
|
||
|
library_artists () {
|
||
|
return axios.get('/api/library/artists?media_kind=music')
|
||
|
},
|
||
|
|
||
|
library_artist (artistId) {
|
||
|
return axios.get('/api/library/artists/' + artistId)
|
||
|
},
|
||
|
|
||
|
library_albums (artistId) {
|
||
|
if (artistId) {
|
||
|
return axios.get('/api/library/artists/' + artistId + '/albums')
|
||
|
}
|
||
|
return axios.get('/api/library/albums?media_kind=music')
|
||
|
},
|
||
|
|
||
|
library_album (albumId) {
|
||
|
return axios.get('/api/library/albums/' + albumId)
|
||
|
},
|
||
|
|
||
|
library_album_tracks (albumId) {
|
||
|
return axios.get('/api/library/albums/' + albumId + '/tracks')
|
||
|
},
|
||
|
|
||
|
library_podcasts () {
|
||
|
return axios.get('/api/library/albums?media_kind=podcast')
|
||
|
},
|
||
|
|
||
|
library_audiobooks () {
|
||
|
return axios.get('/api/library/albums?media_kind=audiobook')
|
||
|
},
|
||
|
|
||
|
library_playlists () {
|
||
|
return axios.get('/api/library/playlists')
|
||
|
},
|
||
|
|
||
|
library_playlist (playlistId) {
|
||
|
return axios.get('/api/library/playlists/' + playlistId)
|
||
|
},
|
||
|
|
||
|
library_playlist_tracks (playlistId) {
|
||
|
return axios.get('/api/library/playlists/' + playlistId + '/tracks')
|
||
|
},
|
||
|
|
||
|
search (searchParams) {
|
||
|
return axios.get('/api/search', {
|
||
|
params: searchParams
|
||
|
})
|
||
|
},
|
||
|
|
||
|
spotify () {
|
||
|
return axios.get('/api/spotify')
|
||
|
}
|
||
|
}
|