feat: add artist page

This commit is contained in:
qvalentin 2024-06-08 15:16:13 +02:00
parent 0381b6e4ae
commit 840d23e931
11 changed files with 264 additions and 21 deletions

70
handlers/artist.go Normal file
View file

@ -0,0 +1,70 @@
package handlers
import (
"context"
"fmt"
"net/http"
"github.com/PuerkitoBio/goquery"
"github.com/gorilla/mux"
"github.com/rramiachraf/dumb/data"
"github.com/rramiachraf/dumb/utils"
"github.com/rramiachraf/dumb/views"
)
func artist(l *utils.Logger) http.HandlerFunc {
return func(w http.ResponseWriter, r *http.Request) {
artistName := mux.Vars(r)["artist"]
id := fmt.Sprintf("artist:%s", artistName)
if a, err := getCache[data.Artist](id); err == nil {
views.ArtistPage(a).Render(context.Background(), w)
return
}
url := fmt.Sprintf("https://genius.com/artists/%s", artistName)
resp, err := utils.SendRequest(url)
if err != nil {
l.Error(err.Error())
w.WriteHeader(http.StatusInternalServerError)
views.ErrorPage(500, "cannot reach Genius servers").Render(context.Background(), w)
return
}
defer resp.Body.Close()
if resp.StatusCode == http.StatusNotFound {
w.WriteHeader(http.StatusNotFound)
views.ErrorPage(404, "page not found").Render(context.Background(), w)
return
}
doc, err := goquery.NewDocumentFromReader(resp.Body)
if err != nil {
l.Error(err.Error())
w.WriteHeader(http.StatusInternalServerError)
views.ErrorPage(500, "something went wrong").Render(context.Background(), w)
return
}
cf := doc.Find(".cloudflare_content").Length()
if cf > 0 {
l.Error("cloudflare got in the way")
views.ErrorPage(500, "cloudflare is detected").Render(context.Background(), w)
return
}
var a data.Artist
if err = a.Parse(doc); err != nil {
l.Error(err.Error())
}
views.ArtistPage(a).Render(context.Background(), w)
if err = setCache(id, a); err != nil {
l.Error(err.Error())
}
}
}

50
handlers/artist_test.go Normal file
View file

@ -0,0 +1,50 @@
package handlers
import (
"net/http"
"net/http/httptest"
"os"
"testing"
"github.com/PuerkitoBio/goquery"
"github.com/rramiachraf/dumb/utils"
)
func TestArtist(t *testing.T) {
url := "/artists/Red-hot-chili-peppers"
name := "Red Hot Chili Peppers"
firstAlbumName := "Cardiff, Wales: 6/23/04"
r, err := http.NewRequest(http.MethodGet, url, nil)
if err != nil {
t.Fatal(err)
}
rr := httptest.NewRecorder()
l := utils.NewLogger(os.Stdout)
m := New(l, &assets{})
m.ServeHTTP(rr, r)
defer rr.Result().Body.Close()
if rr.Result().StatusCode != http.StatusOK {
t.Fatalf("expected %d, got %d\n", http.StatusOK, rr.Result().StatusCode)
}
doc, err := goquery.NewDocumentFromReader(rr.Result().Body)
if err != nil {
t.Fatal(err)
}
artistName := doc.Find("#metadata-info > h1").First().Text()
if artistName != name {
t.Fatalf("expected %q, got %q\n", name, artistName)
}
albumName := doc.Find("#artist-albumlist > a > p").First().Text()
if albumName != firstAlbumName {
t.Fatalf("expected %q, got %q\n", firstAlbumName, albumName)
}
}

View file

@ -10,7 +10,7 @@ import (
)
type cachable interface {
data.Album | data.Song | data.Annotation | []byte
data.Album | data.Song | data.Annotation | data.Artist | []byte
}
var c, _ = bigcache.New(context.Background(), bigcache.DefaultConfig(time.Hour*24))

View file

@ -22,6 +22,7 @@ func New(logger *utils.Logger, staticFiles static) *mux.Router {
w.Write([]byte("User-agent: *\nDisallow: /\n"))
})
r.HandleFunc("/albums/{artist}/{albumName}", album(logger)).Methods("GET")
r.HandleFunc("/artists/{artist}", artist(logger)).Methods("GET")
r.HandleFunc("/images/{filename}.{ext}", imageProxy(logger)).Methods("GET")
r.HandleFunc("/search", search(logger)).Methods("GET")
r.HandleFunc("/{annotation-id}/{artist-song}/{verse}/annotations", annotations(logger)).Methods("GET")