Merge branch 'develop' of ssh://code.eliotberriot.com:2222/funkwhale/funkwhale into develop
This commit is contained in:
commit
4d9dc77735
|
@ -54,6 +54,7 @@ THIRD_PARTY_APPS = (
|
||||||
'rest_auth.registration',
|
'rest_auth.registration',
|
||||||
'mptt',
|
'mptt',
|
||||||
'dynamic_preferences',
|
'dynamic_preferences',
|
||||||
|
'django_filters',
|
||||||
)
|
)
|
||||||
|
|
||||||
# Apps specific for this project go here.
|
# Apps specific for this project go here.
|
||||||
|
@ -298,7 +299,7 @@ REST_FRAMEWORK = {
|
||||||
'DEFAULT_PERMISSION_CLASSES': (
|
'DEFAULT_PERMISSION_CLASSES': (
|
||||||
'rest_framework.permissions.IsAuthenticated',
|
'rest_framework.permissions.IsAuthenticated',
|
||||||
),
|
),
|
||||||
'DEFAULT_PAGINATION_CLASS': 'rest_framework.pagination.PageNumberPagination',
|
'DEFAULT_PAGINATION_CLASS': 'funkwhale_api.common.pagination.FunkwhalePagination',
|
||||||
'PAGE_SIZE': 25,
|
'PAGE_SIZE': 25,
|
||||||
|
|
||||||
'DEFAULT_AUTHENTICATION_CLASSES': (
|
'DEFAULT_AUTHENTICATION_CLASSES': (
|
||||||
|
@ -309,6 +310,7 @@ REST_FRAMEWORK = {
|
||||||
),
|
),
|
||||||
'DEFAULT_FILTER_BACKENDS': (
|
'DEFAULT_FILTER_BACKENDS': (
|
||||||
'rest_framework.filters.OrderingFilter',
|
'rest_framework.filters.OrderingFilter',
|
||||||
|
'django_filters.rest_framework.DjangoFilterBackend',
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,6 @@
|
||||||
|
from rest_framework.pagination import PageNumberPagination
|
||||||
|
|
||||||
|
|
||||||
|
class FunkwhalePagination(PageNumberPagination):
|
||||||
|
page_size_query_param = 'page_size'
|
||||||
|
max_page_size = 25
|
|
@ -0,0 +1,12 @@
|
||||||
|
import django_filters
|
||||||
|
|
||||||
|
from . import models
|
||||||
|
|
||||||
|
|
||||||
|
class ArtistFilter(django_filters.FilterSet):
|
||||||
|
|
||||||
|
class Meta:
|
||||||
|
model = models.Artist
|
||||||
|
fields = {
|
||||||
|
'name': ['exact', 'iexact', 'startswith']
|
||||||
|
}
|
|
@ -182,6 +182,21 @@ class TestAPI(TMPDirTestCaseMixin, TestCase):
|
||||||
|
|
||||||
self.assertJSONEqual(expected, json.loads(response.content.decode('utf-8')))
|
self.assertJSONEqual(expected, json.loads(response.content.decode('utf-8')))
|
||||||
|
|
||||||
|
def test_can_search_artist_by_name_start(self):
|
||||||
|
artist1 = factories.ArtistFactory(name='alpha')
|
||||||
|
artist2 = factories.ArtistFactory(name='beta')
|
||||||
|
results = {
|
||||||
|
'next': None,
|
||||||
|
'previous': None,
|
||||||
|
'count': 1,
|
||||||
|
'results': [serializers.ArtistSerializerNested(artist1).data]
|
||||||
|
}
|
||||||
|
expected = json.dumps(results)
|
||||||
|
url = self.reverse('api:v1:artists-list')
|
||||||
|
response = self.client.get(url, {'name__startswith': 'a'})
|
||||||
|
|
||||||
|
self.assertJSONEqual(expected, json.loads(response.content.decode('utf-8')))
|
||||||
|
|
||||||
def test_can_search_tracks(self):
|
def test_can_search_tracks(self):
|
||||||
artist1 = models.Artist.objects.create(name='Test1')
|
artist1 = models.Artist.objects.create(name='Test1')
|
||||||
artist2 = models.Artist.objects.create(name='Test2')
|
artist2 = models.Artist.objects.create(name='Test2')
|
||||||
|
|
|
@ -21,8 +21,10 @@ from taggit.models import Tag
|
||||||
from . import models
|
from . import models
|
||||||
from . import serializers
|
from . import serializers
|
||||||
from . import importers
|
from . import importers
|
||||||
|
from . import filters
|
||||||
from . import utils
|
from . import utils
|
||||||
|
|
||||||
|
|
||||||
class SearchMixin(object):
|
class SearchMixin(object):
|
||||||
search_fields = []
|
search_fields = []
|
||||||
|
|
||||||
|
@ -52,7 +54,8 @@ class ArtistViewSet(SearchMixin, viewsets.ReadOnlyModelViewSet):
|
||||||
serializer_class = serializers.ArtistSerializerNested
|
serializer_class = serializers.ArtistSerializerNested
|
||||||
permission_classes = [ConditionalAuthentication]
|
permission_classes = [ConditionalAuthentication]
|
||||||
search_fields = ['name']
|
search_fields = ['name']
|
||||||
ordering_fields = ('creation_date',)
|
ordering_fields = ('creation_date', 'name')
|
||||||
|
filter_class = filters.ArtistFilter
|
||||||
|
|
||||||
|
|
||||||
class AlbumViewSet(SearchMixin, viewsets.ReadOnlyModelViewSet):
|
class AlbumViewSet(SearchMixin, viewsets.ReadOnlyModelViewSet):
|
||||||
|
|
|
@ -45,6 +45,7 @@ django-taggit==0.22.1
|
||||||
persisting-theory==0.2.1
|
persisting-theory==0.2.1
|
||||||
django-versatileimagefield==1.7.1
|
django-versatileimagefield==1.7.1
|
||||||
django-cachalot==1.5.0
|
django-cachalot==1.5.0
|
||||||
|
django-filter==1.1
|
||||||
django-rest-auth==0.9.1
|
django-rest-auth==0.9.1
|
||||||
beautifulsoup4==4.6.0
|
beautifulsoup4==4.6.0
|
||||||
Markdown==2.6.8
|
Markdown==2.6.8
|
||||||
|
|
|
@ -19,6 +19,7 @@
|
||||||
"lodash": "^4.17.4",
|
"lodash": "^4.17.4",
|
||||||
"semantic-ui-css": "^2.2.10",
|
"semantic-ui-css": "^2.2.10",
|
||||||
"vue": "^2.3.3",
|
"vue": "^2.3.3",
|
||||||
|
"vue-lazyload": "^1.1.4",
|
||||||
"vue-resource": "^1.3.4",
|
"vue-resource": "^1.3.4",
|
||||||
"vue-router": "^2.3.1",
|
"vue-router": "^2.3.1",
|
||||||
"vuedraggable": "^2.14.1"
|
"vuedraggable": "^2.14.1"
|
||||||
|
|
|
@ -7,14 +7,14 @@
|
||||||
<img v-else src="../../assets/audio/default-cover.png">
|
<img v-else src="../../assets/audio/default-cover.png">
|
||||||
</div>
|
</div>
|
||||||
<div class="middle aligned content">
|
<div class="middle aligned content">
|
||||||
<router-link class="small header discrete link track" :to="{name: 'library.track', params: {id: queue.currentTrack.id }}">
|
<router-link class="small header discrete link track" :to="{name: 'library.tracks.detail', params: {id: queue.currentTrack.id }}">
|
||||||
{{ queue.currentTrack.title }}
|
{{ queue.currentTrack.title }}
|
||||||
</router-link>
|
</router-link>
|
||||||
<div class="meta">
|
<div class="meta">
|
||||||
<router-link class="artist" :to="{name: 'library.artist', params: {id: queue.currentTrack.artist.id }}">
|
<router-link class="artist" :to="{name: 'library.artists.detail', params: {id: queue.currentTrack.artist.id }}">
|
||||||
{{ queue.currentTrack.artist.name }}
|
{{ queue.currentTrack.artist.name }}
|
||||||
</router-link> /
|
</router-link> /
|
||||||
<router-link class="album" :to="{name: 'library.album', params: {id: queue.currentTrack.album.id }}">
|
<router-link class="album" :to="{name: 'library.albums.detail', params: {id: queue.currentTrack.album.id }}">
|
||||||
{{ queue.currentTrack.album.title }}
|
{{ queue.currentTrack.album.title }}
|
||||||
</router-link>
|
</router-link>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -35,7 +35,7 @@ export default {
|
||||||
let categories = [
|
let categories = [
|
||||||
{
|
{
|
||||||
code: 'artists',
|
code: 'artists',
|
||||||
route: 'library.artist',
|
route: 'library.artists.detail',
|
||||||
name: 'Artist',
|
name: 'Artist',
|
||||||
getTitle (r) {
|
getTitle (r) {
|
||||||
return r.name
|
return r.name
|
||||||
|
@ -46,7 +46,7 @@ export default {
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
code: 'albums',
|
code: 'albums',
|
||||||
route: 'library.album',
|
route: 'library.albums.detail',
|
||||||
name: 'Album',
|
name: 'Album',
|
||||||
getTitle (r) {
|
getTitle (r) {
|
||||||
return r.title
|
return r.title
|
||||||
|
@ -57,7 +57,7 @@ export default {
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
code: 'tracks',
|
code: 'tracks',
|
||||||
route: 'library.track',
|
route: 'library.tracks.detail',
|
||||||
name: 'Track',
|
name: 'Track',
|
||||||
getTitle (r) {
|
getTitle (r) {
|
||||||
return r.title
|
return r.title
|
||||||
|
|
|
@ -2,14 +2,14 @@
|
||||||
<div class="ui card">
|
<div class="ui card">
|
||||||
<div class="content">
|
<div class="content">
|
||||||
<div class="right floated tiny ui image">
|
<div class="right floated tiny ui image">
|
||||||
<img v-if="album.cover" :src="backend.absoluteUrl(album.cover)">
|
<img v-if="album.cover" v-lazy="backend.absoluteUrl(album.cover)">
|
||||||
<img v-else src="../../../assets/audio/default-cover.png">
|
<img v-else src="../../../assets/audio/default-cover.png">
|
||||||
</div>
|
</div>
|
||||||
<div class="header">
|
<div class="header">
|
||||||
<router-link class="discrete link" :to="{name: 'library.album', params: {id: album.id }}">{{ album.title }}</router-link>
|
<router-link class="discrete link" :to="{name: 'library.albums.detail', params: {id: album.id }}">{{ album.title }}</router-link>
|
||||||
</div>
|
</div>
|
||||||
<div class="meta">
|
<div class="meta">
|
||||||
By <router-link :to="{name: 'library.artist', params: {id: album.artist.id }}">
|
By <router-link :to="{name: 'library.artists.detail', params: {id: album.artist.id }}">
|
||||||
{{ album.artist.name }}
|
{{ album.artist.name }}
|
||||||
</router-link>
|
</router-link>
|
||||||
</div>
|
</div>
|
||||||
|
@ -21,7 +21,7 @@
|
||||||
<play-button class="basic icon" :track="track" :discrete="true"></play-button>
|
<play-button class="basic icon" :track="track" :discrete="true"></play-button>
|
||||||
</td>
|
</td>
|
||||||
<td colspan="6">
|
<td colspan="6">
|
||||||
<router-link class="track discrete link" :to="{name: 'library.track', params: {id: track.id }}">
|
<router-link class="track discrete link" :to="{name: 'library.tracks.detail', params: {id: track.id }}">
|
||||||
<template v-if="track.position">
|
<template v-if="track.position">
|
||||||
{{ track.position }}.
|
{{ track.position }}.
|
||||||
</template>
|
</template>
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
<div class="ui card">
|
<div class="ui card">
|
||||||
<div class="content">
|
<div class="content">
|
||||||
<div class="header">
|
<div class="header">
|
||||||
<router-link class="discrete link" :to="{name: 'library.artist', params: {id: artist.id }}">
|
<router-link class="discrete link" :to="{name: 'library.artists.detail', params: {id: artist.id }}">
|
||||||
{{ artist.name }}
|
{{ artist.name }}
|
||||||
</router-link>
|
</router-link>
|
||||||
</div>
|
</div>
|
||||||
|
@ -15,7 +15,7 @@
|
||||||
<img class="ui mini image" v-else src="../../../assets/audio/default-cover.png">
|
<img class="ui mini image" v-else src="../../../assets/audio/default-cover.png">
|
||||||
</td>
|
</td>
|
||||||
<td colspan="4">
|
<td colspan="4">
|
||||||
<router-link class="discrete link":to="{name: 'library.album', params: {id: album.id }}">
|
<router-link class="discrete link":to="{name: 'library.albums.detail', params: {id: album.id }}">
|
||||||
<strong>{{ album.title }}</strong>
|
<strong>{{ album.title }}</strong>
|
||||||
</router-link><br />
|
</router-link><br />
|
||||||
{{ album.tracks.length }} tracks
|
{{ album.tracks.length }} tracks
|
||||||
|
|
|
@ -16,11 +16,11 @@
|
||||||
<play-button class="basic icon" :discrete="true" :track="track"></play-button>
|
<play-button class="basic icon" :discrete="true" :track="track"></play-button>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<img class="ui mini image" v-if="track.album.cover" :src="backend.absoluteUrl(track.album.cover)">
|
<img class="ui mini image" v-if="track.album.cover" v-lazy="backend.absoluteUrl(track.album.cover)">
|
||||||
<img class="ui mini image" v-else src="../../..//assets/audio/default-cover.png">
|
<img class="ui mini image" v-else src="../../..//assets/audio/default-cover.png">
|
||||||
</td>
|
</td>
|
||||||
<td colspan="6">
|
<td colspan="6">
|
||||||
<router-link class="track" :to="{name: 'library.track', params: {id: track.id }}">
|
<router-link class="track" :to="{name: 'library.tracks.detail', params: {id: track.id }}">
|
||||||
<template v-if="displayPosition && track.position">
|
<template v-if="displayPosition && track.position">
|
||||||
{{ track.position }}.
|
{{ track.position }}.
|
||||||
</template>
|
</template>
|
||||||
|
@ -28,12 +28,12 @@
|
||||||
</router-link>
|
</router-link>
|
||||||
</td>
|
</td>
|
||||||
<td colspan="6">
|
<td colspan="6">
|
||||||
<router-link class="artist discrete link" :to="{name: 'library.artist', params: {id: track.artist.id }}">
|
<router-link class="artist discrete link" :to="{name: 'library.artists.detail', params: {id: track.artist.id }}">
|
||||||
{{ track.artist.name }}
|
{{ track.artist.name }}
|
||||||
</router-link>
|
</router-link>
|
||||||
</td>
|
</td>
|
||||||
<td colspan="6">
|
<td colspan="6">
|
||||||
<router-link class="album discrete link" :to="{name: 'library.album', params: {id: track.album.id }}">
|
<router-link class="album discrete link" :to="{name: 'library.albums.detail', params: {id: track.album.id }}">
|
||||||
{{ track.album.title }}
|
{{ track.album.title }}
|
||||||
</router-link>
|
</router-link>
|
||||||
</td>
|
</td>
|
||||||
|
|
|
@ -18,6 +18,7 @@
|
||||||
v-if="results && results.count > 0"
|
v-if="results && results.count > 0"
|
||||||
@page-changed="selectPage"
|
@page-changed="selectPage"
|
||||||
:current="page"
|
:current="page"
|
||||||
|
:paginate-by="paginateBy"
|
||||||
:total="results.count"
|
:total="results.count"
|
||||||
></pagination>
|
></pagination>
|
||||||
</div>
|
</div>
|
||||||
|
@ -49,6 +50,7 @@ export default {
|
||||||
nextLink: null,
|
nextLink: null,
|
||||||
previousLink: null,
|
previousLink: null,
|
||||||
page: 1,
|
page: 1,
|
||||||
|
paginateBy: 25,
|
||||||
favoriteTracks
|
favoriteTracks
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -61,7 +63,8 @@ export default {
|
||||||
this.isLoading = true
|
this.isLoading = true
|
||||||
let params = {
|
let params = {
|
||||||
favorites: 'true',
|
favorites: 'true',
|
||||||
page: this.page
|
page: this.page,
|
||||||
|
page_size: this.paginateBy
|
||||||
}
|
}
|
||||||
logger.default.time('Loading user favorites')
|
logger.default.time('Loading user favorites')
|
||||||
this.$http.get(url, {params: params}).then((response) => {
|
this.$http.get(url, {params: params}).then((response) => {
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
{{ album.title }}
|
{{ album.title }}
|
||||||
<div class="sub header">
|
<div class="sub header">
|
||||||
Album containing {{ album.tracks.length }} tracks,
|
Album containing {{ album.tracks.length }} tracks,
|
||||||
by <router-link :to="{name: 'library.artist', params: {id: album.artist.id }}">
|
by <router-link :to="{name: 'library.artists.detail', params: {id: album.artist.id }}">
|
||||||
{{ album.artist.name }}
|
{{ album.artist.name }}
|
||||||
</router-link>
|
</router-link>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -2,8 +2,11 @@
|
||||||
<div class="main library pusher">
|
<div class="main library pusher">
|
||||||
<div class="ui secondary pointing menu">
|
<div class="ui secondary pointing menu">
|
||||||
<router-link class="ui item" to="/library" exact>Browse</router-link>
|
<router-link class="ui item" to="/library" exact>Browse</router-link>
|
||||||
<router-link v-if="auth.user.availablePermissions['import.launch']" class="ui item" to="/library/import/launch" exact>Import</router-link>
|
<router-link class="ui item" to="/library/artists" exact>Artists</router-link>
|
||||||
<router-link v-if="auth.user.availablePermissions['import.launch']" class="ui item" to="/library/import/batches">Import batches</router-link>
|
<div class="ui secondary right menu">
|
||||||
|
<router-link v-if="auth.user.availablePermissions['import.launch']" class="ui item" to="/library/import/launch" exact>Import</router-link>
|
||||||
|
<router-link v-if="auth.user.availablePermissions['import.launch']" class="ui item" to="/library/import/batches">Import batches</router-link>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<router-view></router-view>
|
<router-view></router-view>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -12,10 +12,10 @@
|
||||||
{{ track.title }}
|
{{ track.title }}
|
||||||
<div class="sub header">
|
<div class="sub header">
|
||||||
From album
|
From album
|
||||||
<router-link :to="{name: 'library.album', params: {id: track.album.id }}">
|
<router-link :to="{name: 'library.albums.detail', params: {id: track.album.id }}">
|
||||||
{{ track.album.title }}
|
{{ track.album.title }}
|
||||||
</router-link>
|
</router-link>
|
||||||
by <router-link :to="{name: 'library.artist', params: {id: track.artist.id }}">
|
by <router-link :to="{name: 'library.artists.detail', params: {id: track.artist.id }}">
|
||||||
{{ track.artist.name }}
|
{{ track.artist.name }}
|
||||||
</router-link>
|
</router-link>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -10,6 +10,7 @@ import App from './App'
|
||||||
import router from './router'
|
import router from './router'
|
||||||
import VueResource from 'vue-resource'
|
import VueResource from 'vue-resource'
|
||||||
import auth from './auth'
|
import auth from './auth'
|
||||||
|
import VueLazyload from 'vue-lazyload'
|
||||||
|
|
||||||
window.$ = window.jQuery = require('jquery')
|
window.$ = window.jQuery = require('jquery')
|
||||||
|
|
||||||
|
@ -19,6 +20,7 @@ window.$ = window.jQuery = require('jquery')
|
||||||
require('semantic-ui-css/semantic.js')
|
require('semantic-ui-css/semantic.js')
|
||||||
|
|
||||||
Vue.use(VueResource)
|
Vue.use(VueResource)
|
||||||
|
Vue.use(VueLazyload)
|
||||||
Vue.config.productionTip = false
|
Vue.config.productionTip = false
|
||||||
|
|
||||||
Vue.http.interceptors.push(function (request, next) {
|
Vue.http.interceptors.push(function (request, next) {
|
||||||
|
|
|
@ -7,6 +7,7 @@ import Logout from '@/components/auth/Logout'
|
||||||
import Library from '@/components/library/Library'
|
import Library from '@/components/library/Library'
|
||||||
import LibraryHome from '@/components/library/Home'
|
import LibraryHome from '@/components/library/Home'
|
||||||
import LibraryArtist from '@/components/library/Artist'
|
import LibraryArtist from '@/components/library/Artist'
|
||||||
|
import LibraryArtists from '@/components/library/Artists'
|
||||||
import LibraryAlbum from '@/components/library/Album'
|
import LibraryAlbum from '@/components/library/Album'
|
||||||
import LibraryTrack from '@/components/library/Track'
|
import LibraryTrack from '@/components/library/Track'
|
||||||
import LibraryImport from '@/components/library/import/Main'
|
import LibraryImport from '@/components/library/import/Main'
|
||||||
|
@ -51,9 +52,10 @@ export default new Router({
|
||||||
component: Library,
|
component: Library,
|
||||||
children: [
|
children: [
|
||||||
{ path: '', component: LibraryHome },
|
{ path: '', component: LibraryHome },
|
||||||
{ path: 'artist/:id', name: 'library.artist', component: LibraryArtist, props: true },
|
{ path: 'artists/', name: 'library.artists.browse', component: LibraryArtists },
|
||||||
{ path: 'album/:id', name: 'library.album', component: LibraryAlbum, props: true },
|
{ path: 'artists/:id', name: 'library.artists.detail', component: LibraryArtist, props: true },
|
||||||
{ path: 'track/:id', name: 'library.track', component: LibraryTrack, props: true },
|
{ path: 'albums/:id', name: 'library.albums.detail', component: LibraryAlbum, props: true },
|
||||||
|
{ path: 'tracks/:id', name: 'library.tracks.detail', component: LibraryTrack, props: true },
|
||||||
{
|
{
|
||||||
path: 'import/launch',
|
path: 'import/launch',
|
||||||
name: 'library.import.launch',
|
name: 'library.import.launch',
|
||||||
|
|
Loading…
Reference in New Issue