-
Notifications
You must be signed in to change notification settings - Fork 0
/
handlers.go
219 lines (194 loc) · 5.11 KB
/
handlers.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
package main
import (
"encoding/json"
"fmt"
"html/template"
"log"
"net/http"
"path/filepath"
"github.com/gorilla/websocket"
"github.com/markbates/goth/gothic"
"github.com/paulombcosta/waltz/provider"
"github.com/paulombcosta/waltz/provider/spotify"
"github.com/paulombcosta/waltz/provider/youtube"
"github.com/paulombcosta/waltz/token"
"github.com/paulombcosta/waltz/transfer"
"golang.org/x/oauth2"
)
const (
PROVIDER_GOOGLE = "google"
PROVIDER_SPOTIFY = "spotify"
)
type PlaylistsContent struct {
Playlists []provider.Playlist
Err string
}
type PageState struct {
LoggedInSpotify bool
LoggedInYoutube bool
PlaylistsContent PlaylistsContent
}
type TransferPayload struct {
Playlists []TransferPlaylist `json:"playlists"`
}
func (t TransferPayload) ToProviderPlaylist() []provider.Playlist {
providerPlaylist := []provider.Playlist{}
for _, p := range t.Playlists {
providerPlaylist = append(providerPlaylist, provider.Playlist{
ID: provider.PlaylistID(p.ID),
Name: p.Name,
})
}
return providerPlaylist
}
type TransferPlaylist struct {
ID string `json:"id"`
Name string `json:"name"`
}
var upgrader = websocket.Upgrader{}
func (a application) transferHandler(w http.ResponseWriter, r *http.Request) {
c, err := upgrader.Upgrade(w, r, nil)
if err != nil {
log.Print("upgrade:", err)
return
}
defer c.Close()
publisher := transfer.NewWebSocketProgressPublisher(c)
for {
_, message, err := c.ReadMessage()
if err != nil {
publisher.Error(err.Error())
break
}
payload, err := parseMessage(message)
if err != nil {
publisher.Error(err.Error())
break
}
if len(payload.Playlists) == 0 {
publisher.Error("failure: no playlists selected")
break
}
origin, err := a.getProvider(PROVIDER_SPOTIFY, r, w)
if err != nil {
publisher.Error(err.Error())
break
}
destination, err := a.getProvider(PROVIDER_GOOGLE, r, w)
if err != nil {
publisher.Error(err.Error())
break
}
err = transfer.Transfer().
Playlists(payload.ToProviderPlaylist()).
From(origin).
To(destination).
WithProgressPublisher(publisher).
Build().Start()
if err != nil {
publisher.Error(err.Error())
break
}
}
}
func parseMessage(payload []byte) (*TransferPayload, error) {
var data TransferPayload
err := json.Unmarshal(payload, &data)
if err != nil {
return nil, err
}
return &data, err
}
func (a application) getProvider(name string, r *http.Request, w http.ResponseWriter) (provider.Provider, error) {
tokenProvider := token.New(name, r, w, a.sessionManager)
if name == PROVIDER_GOOGLE {
return youtube.New(tokenProvider), nil
} else if name == PROVIDER_SPOTIFY {
return spotify.New(tokenProvider), nil
} else {
return nil, fmt.Errorf("invalid provider %s", name)
}
}
func (a application) homepageHandler(w http.ResponseWriter, r *http.Request) {
pageState := PageState{
LoggedInSpotify: false,
LoggedInYoutube: false,
PlaylistsContent: PlaylistsContent{},
}
spotifyProvider, err := a.getProvider(PROVIDER_SPOTIFY, r, w)
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
if spotifyProvider.IsLoggedIn() {
pageState.LoggedInSpotify = true
}
youtubeProvider, err := a.getProvider(PROVIDER_GOOGLE, r, w)
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
if youtubeProvider.IsLoggedIn() {
pageState.LoggedInYoutube = true
}
if pageState.LoggedInSpotify && pageState.LoggedInYoutube {
playlists, err := spotifyProvider.GetPlaylists()
var content PlaylistsContent
if err != nil {
content = PlaylistsContent{
Playlists: []provider.Playlist{},
Err: err.Error(),
}
} else {
content = PlaylistsContent{
Playlists: playlists,
Err: "",
}
}
pageState.PlaylistsContent = content
tmpl := template.Must(loadPage("playlist"))
err = tmpl.Execute(w, pageState)
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
} else {
tmpl := template.Must(loadPage("login"))
err = tmpl.Execute(w, pageState)
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
}
}
func loadPage(templateName string) (*template.Template, error) {
name := fmt.Sprintf("./ui/html/%s.page.tmpl", templateName)
ts, err := template.New(filepath.Base(name)).ParseFiles(name)
if err != nil {
return nil, err
}
ts, err = ts.ParseGlob(filepath.Join("./ui/html/", "*.layout.tmpl"))
if err != nil {
return nil, err
}
return ts, nil
}
func (a application) authCallbackHandler(w http.ResponseWriter, r *http.Request) {
provider := r.URL.Query().Get("provider")
if provider == "" {
http.Error(w, "provider was not specified", http.StatusInternalServerError)
return
}
user, err := gothic.CompleteUserAuth(w, r)
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
tokens := oauth2.Token{AccessToken: user.AccessToken, RefreshToken: user.RefreshToken}
err = a.sessionManager.UpdateTokens(provider, &tokens, r, w)
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
http.Redirect(w, r, "/", http.StatusSeeOther)
}