Can upload new track
This commit is contained in:
parent
46e8d1a1d2
commit
f0967f3b9d
@ -3,6 +3,9 @@ package api
|
|||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"net/http"
|
"net/http"
|
||||||
|
"os"
|
||||||
|
"path"
|
||||||
|
"strings"
|
||||||
|
|
||||||
"github.com/gin-gonic/gin"
|
"github.com/gin-gonic/gin"
|
||||||
|
|
||||||
@ -21,7 +24,43 @@ func declareTracksRoutes(cfg *config.Config, router *gin.RouterGroup) {
|
|||||||
c.JSON(http.StatusOK, tracks)
|
c.JSON(http.StatusOK, tracks)
|
||||||
})
|
})
|
||||||
router.POST("/tracks", func(c *gin.Context) {
|
router.POST("/tracks", func(c *gin.Context) {
|
||||||
c.AbortWithStatusJSON(http.StatusNotImplemented, gin.H{"errmsg": "TODO"})
|
ftrack, err := c.FormFile("trackfile")
|
||||||
|
if err != nil {
|
||||||
|
c.AbortWithStatusJSON(http.StatusBadRequest, gin.H{"errmsg": "No track found"})
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// Check file extension
|
||||||
|
if path.Ext(ftrack.Filename) != ".mp3" && path.Ext(ftrack.Filename) != ".flac" {
|
||||||
|
c.AbortWithStatusJSON(http.StatusBadRequest, gin.H{"errmsg": "Bad file type. You should only upload .mp3 or .flac files."})
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
if strings.Contains(ftrack.Filename, "/") {
|
||||||
|
c.AbortWithStatusJSON(http.StatusBadRequest, gin.H{"errmsg": "Bad file name."})
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
dst := path.Join(cfg.TracksDir, ftrack.Filename)
|
||||||
|
err = c.SaveUploadedFile(ftrack, dst)
|
||||||
|
if err != nil {
|
||||||
|
c.AbortWithStatusJSON(http.StatusInternalServerError, gin.H{"errmsg": fmt.Sprintf("Something goes wrong when saving the track: %s", err.Error())})
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
d, err := os.Stat(dst)
|
||||||
|
if err != nil {
|
||||||
|
c.AbortWithStatusJSON(http.StatusInternalServerError, gin.H{"errmsg": fmt.Sprintf("Something goes wrong when saving the track: %s", err.Error())})
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
track, err := reveil.LoadTrack(dst, d)
|
||||||
|
if err != nil {
|
||||||
|
c.AbortWithStatusJSON(http.StatusInternalServerError, gin.H{"errmsg": fmt.Sprintf("Unable to load track: %s", err.Error())})
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
c.JSON(http.StatusOK, track)
|
||||||
})
|
})
|
||||||
|
|
||||||
tracksRoutes := router.Group("/tracks/:tid")
|
tracksRoutes := router.Group("/tracks/:tid")
|
||||||
|
@ -18,6 +18,16 @@ type Track struct {
|
|||||||
Enabled bool `json:"enabled"`
|
Enabled bool `json:"enabled"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func LoadTrack(path string, d fs.FileInfo) (track *Track, err error) {
|
||||||
|
hash := sha512.Sum512([]byte(path))
|
||||||
|
return &Track{
|
||||||
|
Id: hash[:],
|
||||||
|
Name: strings.TrimSuffix(d.Name(), filepath.Ext(d.Name())),
|
||||||
|
Path: path,
|
||||||
|
Enabled: len(strings.Split(path, "/")) == 2,
|
||||||
|
}, nil
|
||||||
|
}
|
||||||
|
|
||||||
func LoadTracks(cfg *config.Config) (tracks []*Track, err error) {
|
func LoadTracks(cfg *config.Config) (tracks []*Track, err error) {
|
||||||
err = filepath.Walk(cfg.TracksDir, func(path string, d fs.FileInfo, err error) error {
|
err = filepath.Walk(cfg.TracksDir, func(path string, d fs.FileInfo, err error) error {
|
||||||
if d.Mode().IsRegular() {
|
if d.Mode().IsRegular() {
|
||||||
|
@ -46,6 +46,25 @@ export class Track {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export async function uploadTrack(files, meta) {
|
||||||
|
for (const file of files) {
|
||||||
|
const formData = new FormData();
|
||||||
|
formData.append("trackfile", file);
|
||||||
|
formData.append("meta", JSON.stringify(meta));
|
||||||
|
|
||||||
|
const res = await fetch('/api/tracks', {
|
||||||
|
method: 'POST',
|
||||||
|
body: formData,
|
||||||
|
});
|
||||||
|
if (res.ok) {
|
||||||
|
const data = await res.json();
|
||||||
|
return new Track(data)
|
||||||
|
} else {
|
||||||
|
throw new Error((await res.json()).errmsg);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
export async function getTracks() {
|
export async function getTracks() {
|
||||||
const res = await fetch(`api/tracks`, {headers: {'Accept': 'application/json'}})
|
const res = await fetch(`api/tracks`, {headers: {'Accept': 'application/json'}})
|
||||||
if (res.status == 200) {
|
if (res.status == 200) {
|
||||||
|
@ -1,3 +1,45 @@
|
|||||||
|
<script>
|
||||||
|
import { goto } from '$app/navigation';
|
||||||
|
|
||||||
|
import {
|
||||||
|
Button,
|
||||||
|
Container,
|
||||||
|
Form,
|
||||||
|
Icon,
|
||||||
|
Input,
|
||||||
|
ListGroup,
|
||||||
|
ListGroupItem,
|
||||||
|
Spinner,
|
||||||
|
} from 'sveltestrap';
|
||||||
|
|
||||||
|
import { tracks } from '$lib/stores/tracks';
|
||||||
|
import { uploadTrack } from '$lib/track';
|
||||||
|
|
||||||
|
function submitTrack() {
|
||||||
|
if (files.length == 0) {
|
||||||
|
alert("Vous n'avez sélectionné aucun fichier !")
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
uploadTrack(files).then((track) => {
|
||||||
|
tracks.refresh();
|
||||||
|
goto('musiks/tracks/' + track.id);
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
export let files = [];
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<Container>
|
||||||
<h2>
|
<h2>
|
||||||
Nouvelle musique
|
Nouvelle musique
|
||||||
</h2>
|
</h2>
|
||||||
|
|
||||||
|
<form on:submit|preventDefault={submitTrack}>
|
||||||
|
<Input type="file" bind:files />
|
||||||
|
|
||||||
|
<Button type="submit" color="primary" class="mt-2" disabled={files.length == 0}>
|
||||||
|
Ajouter cette musique
|
||||||
|
</Button>
|
||||||
|
</form>
|
||||||
|
</Container>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user