Merge branch '82-instance-stats' into 'develop'
Fixed #82: Basic instance states are now available on /about Closes #82 See merge request funkwhale/funkwhale!68
This commit is contained in:
commit
6cc12a4cba
|
@ -0,0 +1,51 @@
|
||||||
|
from django.db.models import Sum
|
||||||
|
|
||||||
|
from funkwhale_api.favorites.models import TrackFavorite
|
||||||
|
from funkwhale_api.history.models import Listening
|
||||||
|
from funkwhale_api.music import models
|
||||||
|
from funkwhale_api.users.models import User
|
||||||
|
|
||||||
|
|
||||||
|
def get():
|
||||||
|
return {
|
||||||
|
'users': get_users(),
|
||||||
|
'tracks': get_tracks(),
|
||||||
|
'albums': get_albums(),
|
||||||
|
'artists': get_artists(),
|
||||||
|
'track_favorites': get_track_favorites(),
|
||||||
|
'listenings': get_listenings(),
|
||||||
|
'music_duration': get_music_duration(),
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
def get_users():
|
||||||
|
return User.objects.count()
|
||||||
|
|
||||||
|
|
||||||
|
def get_listenings():
|
||||||
|
return Listening.objects.count()
|
||||||
|
|
||||||
|
|
||||||
|
def get_track_favorites():
|
||||||
|
return TrackFavorite.objects.count()
|
||||||
|
|
||||||
|
|
||||||
|
def get_tracks():
|
||||||
|
return models.Track.objects.count()
|
||||||
|
|
||||||
|
|
||||||
|
def get_albums():
|
||||||
|
return models.Album.objects.count()
|
||||||
|
|
||||||
|
|
||||||
|
def get_artists():
|
||||||
|
return models.Artist.objects.count()
|
||||||
|
|
||||||
|
|
||||||
|
def get_music_duration():
|
||||||
|
seconds = models.TrackFile.objects.aggregate(
|
||||||
|
d=Sum('duration'),
|
||||||
|
)['d']
|
||||||
|
if seconds:
|
||||||
|
return seconds / 3600
|
||||||
|
return 0
|
|
@ -1,7 +1,11 @@
|
||||||
from django.conf.urls import url
|
from django.conf.urls import url
|
||||||
|
from django.views.decorators.cache import cache_page
|
||||||
|
|
||||||
from . import views
|
from . import views
|
||||||
|
|
||||||
|
|
||||||
urlpatterns = [
|
urlpatterns = [
|
||||||
url(r'^settings/$', views.InstanceSettings.as_view(), name='settings'),
|
url(r'^settings/$', views.InstanceSettings.as_view(), name='settings'),
|
||||||
|
url(r'^stats/$',
|
||||||
|
cache_page(60 * 5)(views.InstanceStats.as_view()), name='stats'),
|
||||||
]
|
]
|
||||||
|
|
|
@ -4,6 +4,8 @@ from rest_framework.response import Response
|
||||||
from dynamic_preferences.api import serializers
|
from dynamic_preferences.api import serializers
|
||||||
from dynamic_preferences.registries import global_preferences_registry
|
from dynamic_preferences.registries import global_preferences_registry
|
||||||
|
|
||||||
|
from . import stats
|
||||||
|
|
||||||
|
|
||||||
class InstanceSettings(views.APIView):
|
class InstanceSettings(views.APIView):
|
||||||
permission_classes = []
|
permission_classes = []
|
||||||
|
@ -23,3 +25,12 @@ class InstanceSettings(views.APIView):
|
||||||
data = serializers.GlobalPreferenceSerializer(
|
data = serializers.GlobalPreferenceSerializer(
|
||||||
api_preferences, many=True).data
|
api_preferences, many=True).data
|
||||||
return Response(data, status=200)
|
return Response(data, status=200)
|
||||||
|
|
||||||
|
|
||||||
|
class InstanceStats(views.APIView):
|
||||||
|
permission_classes = []
|
||||||
|
authentication_classes = []
|
||||||
|
|
||||||
|
def get(self, request, *args, **kwargs):
|
||||||
|
data = stats.get()
|
||||||
|
return Response(data, status=200)
|
||||||
|
|
|
@ -0,0 +1,84 @@
|
||||||
|
from django.urls import reverse
|
||||||
|
|
||||||
|
from funkwhale_api.instance import stats
|
||||||
|
|
||||||
|
|
||||||
|
def test_can_get_stats_via_api(db, api_client, mocker):
|
||||||
|
stats = {
|
||||||
|
'foo': 'bar'
|
||||||
|
}
|
||||||
|
mocker.patch('funkwhale_api.instance.stats.get', return_value=stats)
|
||||||
|
url = reverse('api:v1:instance:stats')
|
||||||
|
response = api_client.get(url)
|
||||||
|
assert response.data == stats
|
||||||
|
|
||||||
|
|
||||||
|
def test_get_users(mocker):
|
||||||
|
mocker.patch(
|
||||||
|
'funkwhale_api.users.models.User.objects.count', return_value=42)
|
||||||
|
|
||||||
|
assert stats.get_users() == 42
|
||||||
|
|
||||||
|
|
||||||
|
def test_get_music_duration(factories):
|
||||||
|
factories['music.TrackFile'].create_batch(size=5, duration=360)
|
||||||
|
|
||||||
|
# duration is in hours
|
||||||
|
assert stats.get_music_duration() == 0.5
|
||||||
|
|
||||||
|
|
||||||
|
def test_get_listenings(mocker):
|
||||||
|
mocker.patch(
|
||||||
|
'funkwhale_api.history.models.Listening.objects.count',
|
||||||
|
return_value=42)
|
||||||
|
assert stats.get_listenings() == 42
|
||||||
|
|
||||||
|
|
||||||
|
def test_get_track_favorites(mocker):
|
||||||
|
mocker.patch(
|
||||||
|
'funkwhale_api.favorites.models.TrackFavorite.objects.count',
|
||||||
|
return_value=42)
|
||||||
|
assert stats.get_track_favorites() == 42
|
||||||
|
|
||||||
|
|
||||||
|
def test_get_tracks(mocker):
|
||||||
|
mocker.patch(
|
||||||
|
'funkwhale_api.music.models.Track.objects.count',
|
||||||
|
return_value=42)
|
||||||
|
assert stats.get_tracks() == 42
|
||||||
|
|
||||||
|
|
||||||
|
def test_get_albums(mocker):
|
||||||
|
mocker.patch(
|
||||||
|
'funkwhale_api.music.models.Album.objects.count',
|
||||||
|
return_value=42)
|
||||||
|
assert stats.get_albums() == 42
|
||||||
|
|
||||||
|
|
||||||
|
def test_get_artists(mocker):
|
||||||
|
mocker.patch(
|
||||||
|
'funkwhale_api.music.models.Artist.objects.count',
|
||||||
|
return_value=42)
|
||||||
|
assert stats.get_artists() == 42
|
||||||
|
|
||||||
|
|
||||||
|
def test_get(mocker):
|
||||||
|
keys = [
|
||||||
|
'users',
|
||||||
|
'tracks',
|
||||||
|
'albums',
|
||||||
|
'artists',
|
||||||
|
'track_favorites',
|
||||||
|
'listenings',
|
||||||
|
'music_duration',
|
||||||
|
]
|
||||||
|
mocks = [
|
||||||
|
mocker.patch.object(stats, 'get_{}'.format(k), return_value=i)
|
||||||
|
for i, k in enumerate(keys)
|
||||||
|
]
|
||||||
|
|
||||||
|
expected = {
|
||||||
|
k: i for i, k in enumerate(keys)
|
||||||
|
}
|
||||||
|
|
||||||
|
assert stats.get() == expected
|
|
@ -6,6 +6,7 @@
|
||||||
<template v-if="instance.name.value">About {{ instance.name.value }}</template>
|
<template v-if="instance.name.value">About {{ instance.name.value }}</template>
|
||||||
<template v-else="instance.name.value">About this instance</template>
|
<template v-else="instance.name.value">About this instance</template>
|
||||||
</h1>
|
</h1>
|
||||||
|
<stats></stats>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="ui vertical stripe segment">
|
<div class="ui vertical stripe segment">
|
||||||
|
@ -27,8 +28,12 @@
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import {mapState} from 'vuex'
|
import {mapState} from 'vuex'
|
||||||
|
import Stats from '@/components/instance/Stats'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
|
components: {
|
||||||
|
Stats
|
||||||
|
},
|
||||||
created () {
|
created () {
|
||||||
this.$store.dispatch('instance/fetchSettings')
|
this.$store.dispatch('instance/fetchSettings')
|
||||||
},
|
},
|
||||||
|
|
|
@ -0,0 +1,104 @@
|
||||||
|
<template>
|
||||||
|
<div>
|
||||||
|
<div v-if="stats" class="ui stackable two column grid">
|
||||||
|
<div class="column">
|
||||||
|
<h3 class="ui left aligned header">User activity</h3>
|
||||||
|
<div class="ui mini horizontal statistics">
|
||||||
|
<div class="statistic">
|
||||||
|
<div class="value">
|
||||||
|
<i class="green user icon"></i>
|
||||||
|
{{ stats.users }}
|
||||||
|
</div>
|
||||||
|
<div class="label">
|
||||||
|
Users
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="statistic">
|
||||||
|
<div class="value">
|
||||||
|
<i class="orange sound icon"></i> {{ stats.listenings }}
|
||||||
|
</div>
|
||||||
|
<div class="label">
|
||||||
|
tracks listened
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="statistic">
|
||||||
|
<div class="value">
|
||||||
|
<i class="pink heart icon"></i> {{ stats.track_favorites }}
|
||||||
|
</div>
|
||||||
|
<div class="label">
|
||||||
|
Tracks favorited
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="column">
|
||||||
|
<h3 class="ui left aligned header">Library</h3>
|
||||||
|
<div class="ui mini horizontal statistics">
|
||||||
|
<div class="statistic">
|
||||||
|
<div class="value">
|
||||||
|
{{ parseInt(stats.music_duration) }}
|
||||||
|
</div>
|
||||||
|
<div class="label">
|
||||||
|
hours of music
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="statistic">
|
||||||
|
<div class="value">
|
||||||
|
{{ stats.artists }}
|
||||||
|
</div>
|
||||||
|
<div class="label">
|
||||||
|
Artists
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="statistic">
|
||||||
|
<div class="value">
|
||||||
|
{{ stats.albums }}
|
||||||
|
</div>
|
||||||
|
<div class="label">
|
||||||
|
Albums
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="statistic">
|
||||||
|
<div class="value">
|
||||||
|
{{ stats.tracks }}
|
||||||
|
</div>
|
||||||
|
<div class="label">
|
||||||
|
tracks
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import axios from 'axios'
|
||||||
|
import logger from '@/logging'
|
||||||
|
|
||||||
|
export default {
|
||||||
|
data () {
|
||||||
|
return {
|
||||||
|
stats: null
|
||||||
|
}
|
||||||
|
},
|
||||||
|
created () {
|
||||||
|
this.fetchData()
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
fetchData () {
|
||||||
|
var self = this
|
||||||
|
this.isLoading = true
|
||||||
|
logger.default.debug('Fetching instance stats...')
|
||||||
|
axios.get('instance/stats/').then((response) => {
|
||||||
|
self.stats = response.data
|
||||||
|
self.isLoading = false
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<!-- Add "scoped" attribute to limit CSS to this component only -->
|
||||||
|
<style scoped>
|
||||||
|
</style>
|
Loading…
Reference in New Issue