63 lines
1.5 KiB
Go
63 lines
1.5 KiB
Go
|
package handlers
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"fmt"
|
||
|
"net/http"
|
||
|
|
||
|
"github.com/PuerkitoBio/goquery"
|
||
|
"github.com/gorilla/mux"
|
||
|
"github.com/rramiachraf/dumb/data"
|
||
|
"github.com/rramiachraf/dumb/views"
|
||
|
"github.com/sirupsen/logrus"
|
||
|
)
|
||
|
|
||
|
func Lyrics(l *logrus.Logger) http.HandlerFunc {
|
||
|
return func(w http.ResponseWriter, r *http.Request) {
|
||
|
id := mux.Vars(r)["id"]
|
||
|
|
||
|
if s, err := getCache[data.Song](id); err == nil {
|
||
|
views.LyricsPage(s).Render(context.Background(), w)
|
||
|
return
|
||
|
}
|
||
|
|
||
|
url := fmt.Sprintf("https://genius.com/%s-lyrics", id)
|
||
|
resp, err := sendRequest(url)
|
||
|
if err != nil {
|
||
|
l.Errorln(err)
|
||
|
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.Errorln(err)
|
||
|
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.Errorln("cloudflare got in the way")
|
||
|
views.ErrorPage(500, "TODO: fix Cloudflare #21").Render(context.Background(), w)
|
||
|
return
|
||
|
}
|
||
|
|
||
|
var s data.Song
|
||
|
s.Parse(doc)
|
||
|
|
||
|
views.LyricsPage(s).Render(context.Background(), w)
|
||
|
setCache(id, s)
|
||
|
}
|
||
|
}
|