mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 13:07:36 +03:00
feat: rename year to max_year and add min_year to album. #118
This commit is contained in:
parent
fc650cd127
commit
53e8a92fed
10 changed files with 95 additions and 14 deletions
80
db/migration/20200327193744_add_year_range_to_album.go
Normal file
80
db/migration/20200327193744_add_year_range_to_album.go
Normal file
|
@ -0,0 +1,80 @@
|
||||||
|
package migration
|
||||||
|
|
||||||
|
import (
|
||||||
|
"database/sql"
|
||||||
|
"github.com/pressly/goose"
|
||||||
|
)
|
||||||
|
|
||||||
|
func init() {
|
||||||
|
goose.AddMigration(Up20200327193744, Down20200327193744)
|
||||||
|
}
|
||||||
|
|
||||||
|
func Up20200327193744(tx *sql.Tx) error {
|
||||||
|
_, err := tx.Exec(`
|
||||||
|
create table album_dg_tmp
|
||||||
|
(
|
||||||
|
id varchar(255) not null
|
||||||
|
primary key,
|
||||||
|
name varchar(255) default '' not null,
|
||||||
|
artist_id varchar(255) default '' not null,
|
||||||
|
cover_art_path varchar(255) default '' not null,
|
||||||
|
cover_art_id varchar(255) default '' not null,
|
||||||
|
artist varchar(255) default '' not null,
|
||||||
|
album_artist varchar(255) default '' not null,
|
||||||
|
min_year int default 0 not null,
|
||||||
|
max_year integer default 0 not null,
|
||||||
|
compilation bool default FALSE not null,
|
||||||
|
song_count integer default 0 not null,
|
||||||
|
duration real default 0 not null,
|
||||||
|
genre varchar(255) default '' not null,
|
||||||
|
created_at datetime,
|
||||||
|
updated_at datetime,
|
||||||
|
full_text varchar(255) default '',
|
||||||
|
album_artist_id varchar(255) default ''
|
||||||
|
);
|
||||||
|
|
||||||
|
insert into album_dg_tmp(id, name, artist_id, cover_art_path, cover_art_id, artist, album_artist, max_year, compilation, song_count, duration, genre, created_at, updated_at, full_text, album_artist_id) select id, name, artist_id, cover_art_path, cover_art_id, artist, album_artist, year, compilation, song_count, duration, genre, created_at, updated_at, full_text, album_artist_id from album;
|
||||||
|
|
||||||
|
drop table album;
|
||||||
|
|
||||||
|
alter table album_dg_tmp rename to album;
|
||||||
|
|
||||||
|
create index album_artist
|
||||||
|
on album (artist);
|
||||||
|
|
||||||
|
create index album_artist_album
|
||||||
|
on album (artist);
|
||||||
|
|
||||||
|
create index album_artist_album_id
|
||||||
|
on album (album_artist_id);
|
||||||
|
|
||||||
|
create index album_artist_id
|
||||||
|
on album (artist_id);
|
||||||
|
|
||||||
|
create index album_full_text
|
||||||
|
on album (full_text);
|
||||||
|
|
||||||
|
create index album_genre
|
||||||
|
on album (genre);
|
||||||
|
|
||||||
|
create index album_name
|
||||||
|
on album (name);
|
||||||
|
|
||||||
|
create index album_min_year
|
||||||
|
on album (min_year);
|
||||||
|
|
||||||
|
create index album_max_year
|
||||||
|
on album (max_year);
|
||||||
|
|
||||||
|
`)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
notice(tx, "A full rescan will be performed!")
|
||||||
|
return forceFullRescan(tx)
|
||||||
|
}
|
||||||
|
|
||||||
|
func Down20200327193744(tx *sql.Tx) error {
|
||||||
|
// This code is executed when the migration is rolled back.
|
||||||
|
return nil
|
||||||
|
}
|
|
@ -161,7 +161,7 @@ func (b *browser) buildAlbumDir(al *model.Album, tracks model.MediaFiles) *Direc
|
||||||
SongCount: al.SongCount,
|
SongCount: al.SongCount,
|
||||||
Duration: int(al.Duration),
|
Duration: int(al.Duration),
|
||||||
Created: al.CreatedAt,
|
Created: al.CreatedAt,
|
||||||
Year: al.Year,
|
Year: al.MaxYear,
|
||||||
Genre: al.Genre,
|
Genre: al.Genre,
|
||||||
CoverArt: al.CoverArtId,
|
CoverArt: al.CoverArtId,
|
||||||
PlayCount: int32(al.PlayCount),
|
PlayCount: int32(al.PlayCount),
|
||||||
|
|
|
@ -65,7 +65,7 @@ func FromAlbum(al *model.Album) Entry {
|
||||||
e.IsDir = true
|
e.IsDir = true
|
||||||
e.Parent = al.AlbumArtistID
|
e.Parent = al.AlbumArtistID
|
||||||
e.Album = al.Name
|
e.Album = al.Name
|
||||||
e.Year = al.Year
|
e.Year = al.MaxYear
|
||||||
e.Artist = al.AlbumArtist
|
e.Artist = al.AlbumArtist
|
||||||
e.Genre = al.Genre
|
e.Genre = al.Genre
|
||||||
e.CoverArt = al.CoverArtId
|
e.CoverArt = al.CoverArtId
|
||||||
|
|
|
@ -11,7 +11,8 @@ type Album struct {
|
||||||
Artist string `json:"artist"`
|
Artist string `json:"artist"`
|
||||||
AlbumArtistID string `json:"albumArtistId" orm:"pk;column(album_artist_id)"`
|
AlbumArtistID string `json:"albumArtistId" orm:"pk;column(album_artist_id)"`
|
||||||
AlbumArtist string `json:"albumArtist"`
|
AlbumArtist string `json:"albumArtist"`
|
||||||
Year int `json:"year"`
|
MaxYear int `json:"maxYear"`
|
||||||
|
MinYear int `json:"minYear"`
|
||||||
Compilation bool `json:"compilation"`
|
Compilation bool `json:"compilation"`
|
||||||
SongCount int `json:"songCount"`
|
SongCount int `json:"songCount"`
|
||||||
Duration float32 `json:"duration"`
|
Duration float32 `json:"duration"`
|
||||||
|
|
|
@ -73,7 +73,7 @@ func (r *albumRepository) Get(id string) (*model.Album, error) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (r *albumRepository) FindByArtist(artistId string) (model.Albums, error) {
|
func (r *albumRepository) FindByArtist(artistId string) (model.Albums, error) {
|
||||||
sq := r.selectAlbum().Where(Eq{"album_artist_id": artistId}).OrderBy("year")
|
sq := r.selectAlbum().Where(Eq{"album_artist_id": artistId}).OrderBy("max_year")
|
||||||
res := model.Albums{}
|
res := model.Albums{}
|
||||||
err := r.queryAll(sq, &res)
|
err := r.queryAll(sq, &res)
|
||||||
return res, err
|
return res, err
|
||||||
|
@ -103,8 +103,8 @@ func (r *albumRepository) Refresh(ids ...string) error {
|
||||||
}
|
}
|
||||||
var albums []refreshAlbum
|
var albums []refreshAlbum
|
||||||
sel := Select(`album_id as id, album as name, f.artist, f.album_artist, f.artist_id, f.album_artist_id,
|
sel := Select(`album_id as id, album as name, f.artist, f.album_artist, f.artist_id, f.album_artist_id,
|
||||||
f.compilation, f.genre, max(f.year) as year, sum(f.duration) as duration, count(*) as song_count, a.id as current_id,
|
f.compilation, f.genre, max(f.year) as max_year, min(f.year) as min_year, sum(f.duration) as duration,
|
||||||
f.id as cover_art_id, f.path as cover_art_path, f.has_cover_art`).
|
count(*) as song_count, a.id as current_id, f.id as cover_art_id, f.path as cover_art_path, f.has_cover_art`).
|
||||||
From("media_file f").
|
From("media_file f").
|
||||||
LeftJoin("album a on f.album_id = a.id").
|
LeftJoin("album a on f.album_id = a.id").
|
||||||
Where(Eq{"f.album_id": ids}).GroupBy("album_id").OrderBy("f.id")
|
Where(Eq{"f.album_id": ids}).GroupBy("album_id").OrderBy("f.id")
|
||||||
|
|
|
@ -40,8 +40,8 @@ var (
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
albumSgtPeppers = model.Album{ID: "1", Name: "Sgt Peppers", Artist: "The Beatles", AlbumArtistID: "3", Genre: "Rock", CoverArtId: "1", CoverArtPath: P("/beatles/1/sgt/a day.mp3"), SongCount: 1, Year: 1967, FullText: "sgt peppers the beatles"}
|
albumSgtPeppers = model.Album{ID: "1", Name: "Sgt Peppers", Artist: "The Beatles", AlbumArtistID: "3", Genre: "Rock", CoverArtId: "1", CoverArtPath: P("/beatles/1/sgt/a day.mp3"), SongCount: 1, MaxYear: 1967, FullText: "sgt peppers the beatles"}
|
||||||
albumAbbeyRoad = model.Album{ID: "2", Name: "Abbey Road", Artist: "The Beatles", AlbumArtistID: "3", Genre: "Rock", CoverArtId: "2", CoverArtPath: P("/beatles/1/come together.mp3"), SongCount: 1, Year: 1969, FullText: "abbey road the beatles"}
|
albumAbbeyRoad = model.Album{ID: "2", Name: "Abbey Road", Artist: "The Beatles", AlbumArtistID: "3", Genre: "Rock", CoverArtId: "2", CoverArtPath: P("/beatles/1/come together.mp3"), SongCount: 1, MaxYear: 1969, FullText: "abbey road the beatles"}
|
||||||
albumRadioactivity = model.Album{ID: "3", Name: "Radioactivity", Artist: "Kraftwerk", AlbumArtistID: "2", Genre: "Electronic", CoverArtId: "3", CoverArtPath: P("/kraft/radio/radio.mp3"), SongCount: 2, FullText: "radioactivity kraftwerk"}
|
albumRadioactivity = model.Album{ID: "3", Name: "Radioactivity", Artist: "Kraftwerk", AlbumArtistID: "2", Genre: "Electronic", CoverArtId: "3", CoverArtPath: P("/kraft/radio/radio.mp3"), SongCount: 2, FullText: "radioactivity kraftwerk"}
|
||||||
testAlbums = model.Albums{
|
testAlbums = model.Albums{
|
||||||
albumSgtPeppers,
|
albumSgtPeppers,
|
||||||
|
|
|
@ -11,8 +11,8 @@ const AlbumDetails = ({ classes, record }) => {
|
||||||
if (record.genre) {
|
if (record.genre) {
|
||||||
genreDateLine.push(record.genre)
|
genreDateLine.push(record.genre)
|
||||||
}
|
}
|
||||||
if (record.year) {
|
if (record.maxYear) {
|
||||||
genreDateLine.push(record.year)
|
genreDateLine.push(record.maxYear)
|
||||||
}
|
}
|
||||||
return genreDateLine.join(' · ')
|
return genreDateLine.join(' · ')
|
||||||
}
|
}
|
||||||
|
|
|
@ -31,7 +31,7 @@ const AlbumFilter = (props) => (
|
||||||
<AutocompleteInput emptyText="-- None --" />
|
<AutocompleteInput emptyText="-- None --" />
|
||||||
</ReferenceInput>
|
</ReferenceInput>
|
||||||
<NullableBooleanInput source="compilation" />
|
<NullableBooleanInput source="compilation" />
|
||||||
<NumberInput source="year" />
|
<NumberInput source="max_year" />
|
||||||
</Filter>
|
</Filter>
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -68,7 +68,7 @@ const AlbumList = (props) => {
|
||||||
render={(r) => (r.albumArtist ? r.albumArtist : r.artist)}
|
render={(r) => (r.albumArtist ? r.albumArtist : r.artist)}
|
||||||
/>
|
/>
|
||||||
{isDesktop && <NumberField source="songCount" />}
|
{isDesktop && <NumberField source="songCount" />}
|
||||||
<TextField source="year" />
|
<TextField source="maxYear" />
|
||||||
{isDesktop && <DurationField source="duration" />}
|
{isDesktop && <DurationField source="duration" />}
|
||||||
</Datagrid>
|
</Datagrid>
|
||||||
</List>
|
</List>
|
||||||
|
|
|
@ -19,7 +19,7 @@ const artistRowClick = (id, basePath, record) => {
|
||||||
const filter = { artist_id: id }
|
const filter = { artist_id: id }
|
||||||
return `/album?filter=${JSON.stringify(
|
return `/album?filter=${JSON.stringify(
|
||||||
filter
|
filter
|
||||||
)}&order=ASC&sort=year&displayedFilters={"compilation":true}`
|
)}&order=ASC&sort=maxYear&displayedFilters={"compilation":true}`
|
||||||
}
|
}
|
||||||
|
|
||||||
const ArtistList = (props) => (
|
const ArtistList = (props) => (
|
||||||
|
|
|
@ -83,7 +83,7 @@ const SongList = (props) => {
|
||||||
{isDesktop && <TextField source="album" />}
|
{isDesktop && <TextField source="album" />}
|
||||||
<TextField source="artist" />
|
<TextField source="artist" />
|
||||||
{isDesktop && <NumberField source="trackNumber" />}
|
{isDesktop && <NumberField source="trackNumber" />}
|
||||||
{isDesktop && <TextField source="year" />}
|
{isDesktop && <TextField source="maxYear" />}
|
||||||
<DurationField source="duration" />
|
<DurationField source="duration" />
|
||||||
</Datagrid>
|
</Datagrid>
|
||||||
)}
|
)}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue