209 lines
5.6 KiB
Go
209 lines
5.6 KiB
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"log"
|
|
"time"
|
|
"errors"
|
|
"strings"
|
|
"strconv"
|
|
"net/http"
|
|
"encoding/json"
|
|
"github.com/gofiber/fiber/v2"
|
|
"github.com/undertideco/bandcamp"
|
|
"github.com/gofiber/template/html"
|
|
"github.com/gofiber/fiber/v2/middleware/session"
|
|
)
|
|
|
|
var MyClient = &http.Client{}
|
|
var MyResp = &RespBandcamp{}
|
|
var SpotifyAPI = newTokenUser()
|
|
//var SpotifyAPI = &TokenUser{}
|
|
var Session = session.New()
|
|
var Errors string
|
|
|
|
/*
|
|
check artist and album
|
|
items[x].track.album.name et items[x].track.album.artists[0].name
|
|
*/
|
|
func searchAlbumBandcamp(album string, artist string) (bool, string) {
|
|
bandcampClient := bandcamp.NewClient()
|
|
|
|
results, err := bandcampClient.Search(album)
|
|
if err != nil {
|
|
log.Println(err)
|
|
return false, ""
|
|
}
|
|
|
|
if (strings.Contains(results[0].Title, album) || strings.Contains(album, results[0].Title)) && strings.Compare(results[0].Artist, artist) == 0 {
|
|
return true, results[0].URL
|
|
} else {
|
|
return false, ""
|
|
}
|
|
}
|
|
|
|
func searchArtistBandcamp(artist string) (bool, string) {
|
|
bandcampClient := bandcamp.NewClient()
|
|
|
|
results, err := bandcampClient.Search(artist)
|
|
if err != nil {
|
|
log.Println(err)
|
|
return false, ""
|
|
}
|
|
|
|
if strings.Compare(results[0].Artist, artist) == 0 {
|
|
return true, strings.Split(results[0].URL, "/album/")[0]
|
|
} else {
|
|
return false, ""
|
|
}
|
|
}
|
|
|
|
func getAllTracksPlaylist(id string, offset int) (SpotifyPlaylist, error) {
|
|
ret := SpotifyPlaylist{}
|
|
req, e := http.NewRequest("GET",
|
|
"https://api.spotify.com/v1/playlists/"+id+"/tracks?offset="+strconv.FormatInt(int64(offset), 10),
|
|
nil)
|
|
if e != nil {
|
|
fmt.Printf("%+v", e)
|
|
}
|
|
req.Header.Add("Accept", "application/json")
|
|
req.Header.Add("Content-Type", "application/json")
|
|
req.Header.Add("Authorization", SpotifyAPI.TokenType + " " + SpotifyAPI.Token)
|
|
res, err := MyClient.Do(req)
|
|
|
|
if err != nil {
|
|
return ret, err
|
|
}
|
|
|
|
if res.StatusCode > 300 {
|
|
fmt.Printf("code %d\n", res.StatusCode)
|
|
return ret, errors.New("Erreur token ou playlist inexistante.")
|
|
}
|
|
|
|
playlist := &SpotifyPlaylist{}
|
|
defer res.Body.Close()
|
|
err = json.NewDecoder(res.Body).Decode(&playlist)
|
|
if err != nil {
|
|
return ret, err
|
|
fmt.Printf("error:", err)
|
|
}
|
|
|
|
ret = *playlist
|
|
if ret.Total > offset {
|
|
r, e := getAllTracksPlaylist(id, offset + 100)
|
|
if e != nil {
|
|
return ret, e
|
|
}
|
|
|
|
ret.Items = append(ret.Items, r.Items...)
|
|
}
|
|
|
|
return ret, nil
|
|
}
|
|
|
|
/*
|
|
id de la playlist
|
|
*/
|
|
func getListPlaylist(id string) {
|
|
playlist, err := getAllTracksPlaylist(id, 0)
|
|
if err != nil {
|
|
fmt.Printf("Erreru!!\n")
|
|
fmt.Printf("%+v", err)
|
|
return
|
|
}
|
|
var find bool
|
|
var tmp string
|
|
MyResp.Todo = len(playlist.Items)
|
|
MyResp.Done = 0
|
|
|
|
for i := 0; i < len(playlist.Items); i++ {
|
|
find, tmp = searchAlbumBandcamp(playlist.Items[i].Track.Album.Name,
|
|
playlist.Items[i].Track.Album.Artists[0].Name)
|
|
if find {
|
|
MyResp.AddAlbum(newUrlBandcamp(
|
|
playlist.Items[i].Track.Album.Artists[0].Name,
|
|
playlist.Items[i].Track.Album.Name,
|
|
playlist.Items[i].Track.Album.ExternalUrls.Spotify,
|
|
tmp))
|
|
} else {
|
|
find, tmp = searchArtistBandcamp(playlist.Items[i].Track.Album.Artists[0].Name)
|
|
if find {
|
|
MyResp.AddArtist(newUrlBandcamp(
|
|
playlist.Items[i].Track.Album.Artists[0].Name,
|
|
playlist.Items[i].Track.Album.Name,
|
|
playlist.Items[i].Track.Album.ExternalUrls.Spotify,
|
|
tmp))
|
|
} else {
|
|
MyResp.AddNotfound(newUrlWoBandcamp(
|
|
playlist.Items[i].Track.Album.Artists[0].Name,
|
|
playlist.Items[i].Track.Album.Name,
|
|
playlist.Items[i].Track.Album.ExternalUrls.Spotify))
|
|
}
|
|
}
|
|
|
|
MyResp.Done++
|
|
|
|
if i % 10 == 0 {
|
|
time.Sleep(5 * time.Second)
|
|
}
|
|
}
|
|
fmt.Printf("\nFinish\n")
|
|
}
|
|
|
|
func formHandler (c *fiber.Ctx) error {
|
|
c.Set("Location", "/feudecamp.html")
|
|
go getListPlaylist(c.FormValue("id"))
|
|
return c.SendStatus(303)
|
|
}
|
|
|
|
func getNew(c *fiber.Ctx) error {
|
|
c.JSON(MyResp)
|
|
MyResp.Albums = nil
|
|
MyResp.Artists = nil
|
|
MyResp.Notfound = nil
|
|
return c.SendStatus(201)
|
|
}
|
|
|
|
func mytoken(c *fiber.Ctx) error {
|
|
err := c.BodyParser(&SpotifyAPI)
|
|
if err != nil {
|
|
Errors = err.Error()
|
|
}
|
|
return c.SendStatus(201)
|
|
}
|
|
|
|
func spotifyCallback(c *fiber.Ctx) error {
|
|
if c.Query("error") != "" {
|
|
return c.Render("index", fiber.Map{"error": "Erreur lors de la connexion.",})
|
|
} else {
|
|
return c.Render("spotify-token", fiber.Map{})
|
|
}
|
|
}
|
|
|
|
func index(c *fiber.Ctx) error {
|
|
if Errors == "" {
|
|
return c.Render("index", fiber.Map{"connected": !SpotifyAPI.CheckEmpty(),
|
|
"url": SpotifyURL})
|
|
} else {
|
|
tmp := Errors
|
|
Errors = ""
|
|
return c.Render("index", fiber.Map{"connected": !SpotifyAPI.CheckEmpty(),
|
|
"error": tmp,
|
|
"url": SpotifyURL})
|
|
}
|
|
}
|
|
|
|
func main() {
|
|
//app := fiber.New(fiber.Config(Views: html, ViewsLayout: "layouts/main"))
|
|
app := fiber.New(fiber.Config{Views: html.New("./views", ".html"),})
|
|
app.Static("/", "./static")
|
|
|
|
app.Get("/", index)
|
|
app.Post("/", mytoken)
|
|
app.Post("/feudecamp", getNew)
|
|
app.Post("/back", formHandler)
|
|
app.Get("/callback", spotifyCallback)
|
|
//app.Post("/mytoken", mytoken)
|
|
|
|
app.Listen(":8080")
|
|
}
|