2021-08-28 16:08:54 +02:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"log"
|
2021-08-31 18:39:56 +02:00
|
|
|
"time"
|
2021-09-01 23:44:09 +02:00
|
|
|
"errors"
|
2021-08-29 13:16:05 +02:00
|
|
|
"strings"
|
2021-09-01 23:44:09 +02:00
|
|
|
"strconv"
|
2021-08-28 16:08:54 +02:00
|
|
|
"net/http"
|
2021-08-28 19:20:52 +02:00
|
|
|
"encoding/json"
|
2021-08-29 13:16:05 +02:00
|
|
|
"github.com/undertideco/bandcamp"
|
2021-08-28 16:08:54 +02:00
|
|
|
)
|
|
|
|
|
2021-08-29 21:12:17 +02:00
|
|
|
var MyClient = &http.Client{}
|
|
|
|
var MyResp = &RespBandcamp{}
|
|
|
|
|
2021-08-29 13:16:05 +02:00
|
|
|
/*
|
|
|
|
check artist and album
|
|
|
|
items[x].track.album.name et items[x].track.album.artists[0].name
|
|
|
|
*/
|
2021-09-01 16:00:07 +02:00
|
|
|
func searchAlbumBandcamp(album string, artist string) BandcampAlbum{
|
2021-08-29 13:16:05 +02:00
|
|
|
bandcampClient := bandcamp.NewClient()
|
|
|
|
|
|
|
|
results, err := bandcampClient.Search(album)
|
|
|
|
if err != nil {
|
|
|
|
log.Println(err)
|
|
|
|
return BandcampAlbum{false, ""}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strings.Contains(results[0].Title, album) || strings.Contains(album, results[0].Title)) && strings.Compare(results[0].Artist, artist) == 0 {
|
|
|
|
return BandcampAlbum{true, results[0].URL}
|
|
|
|
} else {
|
|
|
|
return BandcampAlbum{false, ""}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-01 16:00:07 +02:00
|
|
|
func searchArtistBandcamp(artist string) BandcampAlbum {
|
|
|
|
bandcampClient := bandcamp.NewClient()
|
|
|
|
|
|
|
|
results, err := bandcampClient.Search(artist)
|
|
|
|
if err != nil {
|
|
|
|
log.Println(err)
|
|
|
|
return BandcampAlbum{false, ""}
|
|
|
|
}
|
|
|
|
|
|
|
|
if strings.Compare(results[0].Artist, artist) == 0 {
|
|
|
|
return BandcampAlbum{true, strings.Split(results[0].URL, "/album/")[0]}
|
|
|
|
} else {
|
|
|
|
return BandcampAlbum{false, ""}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-01 23:44:09 +02:00
|
|
|
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)
|
|
|
|
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
|
|
|
|
fmt.Printf("\n%d cc %d\n", ret.Total, offset)
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
2021-08-28 19:20:52 +02:00
|
|
|
/*
|
|
|
|
id de la playlist
|
|
|
|
*/
|
|
|
|
func getListPlaylist(id string) {
|
2021-08-29 15:53:56 +02:00
|
|
|
/*
|
|
|
|
req, _ := http.NewRequest("GET",
|
|
|
|
"https://api.spotify.com/v1/playlists/"+id+"/tracks",
|
|
|
|
nil)
|
2021-08-31 18:39:56 +02:00
|
|
|
*/
|
2021-09-01 23:44:09 +02:00
|
|
|
/*
|
2021-08-29 15:53:56 +02:00
|
|
|
req, _ := http.NewRequest("GET",
|
|
|
|
"http://localhost:8001",
|
|
|
|
nil)
|
2021-08-28 19:20:52 +02:00
|
|
|
req.Header.Add("Accept", "application/json")
|
|
|
|
req.Header.Add("Content-Type", "application/json")
|
|
|
|
req.Header.Add("Authorization", SpotifyAPI)
|
|
|
|
|
|
|
|
res, err := MyClient.Do(req)
|
|
|
|
if err != nil {
|
|
|
|
fmt.Printf("error:", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-08-28 23:46:45 +02:00
|
|
|
if res.StatusCode > 300 {
|
|
|
|
fmt.Printf("Erreur !!\n")
|
|
|
|
return
|
|
|
|
}
|
2021-08-28 19:20:52 +02:00
|
|
|
|
2021-09-01 00:34:07 +02:00
|
|
|
playlist := &SpotifyPlaylist{}
|
2021-08-28 23:46:45 +02:00
|
|
|
defer res.Body.Close()
|
2021-09-01 00:34:07 +02:00
|
|
|
err = json.NewDecoder(res.Body).Decode(&playlist)
|
2021-08-28 21:05:38 +02:00
|
|
|
if err != nil {
|
|
|
|
fmt.Printf("error:", err)
|
|
|
|
return
|
|
|
|
}
|
2021-09-01 23:44:09 +02:00
|
|
|
*/
|
2021-08-28 21:05:38 +02:00
|
|
|
|
2021-09-01 23:44:09 +02:00
|
|
|
playlist, err := getAllTracksPlaylist(id, 0)
|
|
|
|
if err != nil {
|
|
|
|
fmt.Printf("Erreru!!\n")
|
|
|
|
fmt.Printf("%+v", err)
|
|
|
|
return
|
|
|
|
}
|
2021-08-29 13:16:05 +02:00
|
|
|
tmp := BandcampAlbum{}
|
2021-09-01 00:34:07 +02:00
|
|
|
MyResp.Todo = len(playlist.Items)
|
2021-08-31 18:39:56 +02:00
|
|
|
MyResp.Done = 0
|
2021-08-29 13:16:05 +02:00
|
|
|
|
2021-09-01 00:34:07 +02:00
|
|
|
for i := 0; i < len(playlist.Items); i++ {
|
2021-09-01 16:00:07 +02:00
|
|
|
tmp = searchAlbumBandcamp(playlist.Items[i].Track.Album.Name,
|
|
|
|
playlist.Items[i].Track.Album.Artists[0].Name)
|
2021-08-29 13:16:05 +02:00
|
|
|
if tmp.find {
|
2021-08-29 21:12:17 +02:00
|
|
|
//fmt.Printf("Find !! url: %s\n", tmp.url)
|
|
|
|
//MyResp.url = append(MyResp.url, tmp.url)
|
|
|
|
//MyResp.url = append (MyResp.url, tmp.url)
|
2021-09-01 00:34:07 +02:00
|
|
|
//MyResp.Add(tmp.url)
|
2021-09-01 16:00:07 +02:00
|
|
|
MyResp.AddAlbum(newUrlBandcamp(
|
2021-09-01 00:34:07 +02:00
|
|
|
playlist.Items[i].Track.Album.Artists[0].Name,
|
|
|
|
playlist.Items[i].Track.Album.Name,
|
|
|
|
playlist.Items[i].Track.Album.ExternalUrls.Spotify,
|
|
|
|
tmp.url))
|
2021-08-29 21:12:17 +02:00
|
|
|
//fmt.Printf("tmp %s \n", MyResp.url[0])
|
|
|
|
//fmt.Printf("len=%d cap=%d %v\n", len(MyResp.url), cap(MyResp.url), MyResp.url)
|
2021-09-01 16:00:07 +02:00
|
|
|
} else {
|
|
|
|
tmp = searchArtistBandcamp(playlist.Items[i].Track.Album.Artists[0].Name)
|
|
|
|
if tmp.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.url))
|
|
|
|
} 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))
|
|
|
|
}
|
2021-08-29 13:16:05 +02:00
|
|
|
}
|
2021-09-01 16:00:07 +02:00
|
|
|
|
|
|
|
MyResp.Done++
|
|
|
|
|
|
|
|
if i % 10 == 0 {
|
2021-08-31 18:39:56 +02:00
|
|
|
time.Sleep(5 * time.Second)
|
|
|
|
}
|
2021-08-29 13:16:05 +02:00
|
|
|
}
|
2021-08-31 18:39:56 +02:00
|
|
|
fmt.Printf("\nFinish\n")
|
2021-08-28 19:20:52 +02:00
|
|
|
}
|
|
|
|
|
2021-08-28 16:08:54 +02:00
|
|
|
func formHandler(w http.ResponseWriter, r *http.Request) {
|
|
|
|
if err := r.ParseForm(); err != nil {
|
|
|
|
fmt.Fprintf(w, "ParseForm() err: %v", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-08-31 19:26:03 +02:00
|
|
|
w.Header().Set("Location", "/feudecamp.html")
|
2021-08-29 21:12:17 +02:00
|
|
|
w.WriteHeader(http.StatusSeeOther)
|
2021-08-31 18:39:56 +02:00
|
|
|
go getListPlaylist(r.FormValue("id"))
|
2021-08-28 16:08:54 +02:00
|
|
|
}
|
|
|
|
|
2021-09-01 12:13:40 +02:00
|
|
|
func hello(w http.ResponseWriter, r *http.Request) {
|
2021-08-28 16:08:54 +02:00
|
|
|
if r.URL.Path != "/hello" {
|
|
|
|
http.Error(w, "404", http.StatusNotFound)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if r.Method != "GET" {
|
|
|
|
http.Error(w, "Use GET pls", http.StatusNotFound)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
fmt.Fprintf(w, "Helo!")
|
|
|
|
}
|
|
|
|
|
2021-08-29 21:12:17 +02:00
|
|
|
func getNew(w http.ResponseWriter, r *http.Request) {
|
|
|
|
w.Header().Set("Content-Type", "application/json")
|
|
|
|
w.WriteHeader(http.StatusCreated)
|
|
|
|
json.NewEncoder(w).Encode(MyResp)
|
2021-09-01 16:00:07 +02:00
|
|
|
MyResp.Albums = nil
|
|
|
|
MyResp.Artists = nil
|
|
|
|
MyResp.Notfound = nil
|
2021-08-29 21:12:17 +02:00
|
|
|
}
|
|
|
|
|
2021-08-29 15:53:56 +02:00
|
|
|
func main() {
|
2021-08-28 16:08:54 +02:00
|
|
|
fileServer := http.FileServer(http.Dir("./static"))
|
|
|
|
http.Handle("/", fileServer)
|
2021-09-01 12:13:40 +02:00
|
|
|
http.HandleFunc("/hello", hello)
|
2021-08-28 16:08:54 +02:00
|
|
|
http.HandleFunc("/back", formHandler)
|
2021-08-29 21:12:17 +02:00
|
|
|
http.HandleFunc("/refresh", getNew)
|
2021-08-28 16:08:54 +02:00
|
|
|
|
|
|
|
fmt.Printf("Starting the server…\n")
|
|
|
|
if err := http.ListenAndServe(":8080", nil); err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
|
|
|
}
|