-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
470 lines (451 loc) · 14.3 KB
/
Copy pathindex.js
File metadata and controls
470 lines (451 loc) · 14.3 KB
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
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
import React, { Component } from 'react';
import {
Container,
Content,
Button,
Left,
Body,
Icon,
Text,
Right,
List,
ListItem,
Card,
Spinner,
CardItem,
SwipeRow,
View
} from 'native-base';
import styles from './styles';
import { default as FAIcon } from 'react-native-vector-icons/FontAwesome';
import { NativeModules } from 'react-native';
import axios from 'axios';
import Database from '../../../utils/database';
import Prompt from 'react-native-prompt';
import * as firebase from 'firebase';
const SpotifyModule = NativeModules.SpotifyModule;
export default class Profile extends Component {
constructor(props) {
super(props);
this.state = {
playlist: '',
promptVisible: false,
token: '',
id: '',
usersPlaylists: {},
appleAuth: false,
name: '',
username: ''
};
}
componentDidMount() {
firebase
.database()
.ref(`users/${firebase.auth().currentUser.uid}`)
.once('value')
.then(snapshot => {
this.setState({
username: firebase.auth().currentUser.displayName,
name: snapshot.val().fullname,
id: snapshot.val().spotifyId,
token: snapshot.val().accessToken,
appleAuth: snapshot.val().appleAuth
});
});
}
signOut = async () => {
try {
await firebase.auth().signOut();
this.props.navigation.navigate('SignedOut');
} catch (err) {
Toast.show({
text: `${err}`,
position: 'top',
buttonText: 'Okay',
duration: 2000
});
}
};
authSpotify = () => {
try {
SpotifyModule.authenticate(data => {
this.setState({ token: data.accessToken }, this.whoamI);
});
} catch (err) {
console.error('Spotify authentication failed: ', err);
}
};
whoamI = () => {
axios
.get('https://api.spotify.com/v1/me', {
headers: {
Authorization: `Bearer ${this.state.token}`
}
})
.then(response => {
this.setState({ id: response.data.id }, this.saveUserInfoToDatabase);
})
.catch(error => console.log(error));
};
persistAppleMusic = () => {
let appleAuth = true
firebase.auth().onAuthStateChanged(function(user) {
if (user) {
console.log(user);
firebase.database().ref('users/' + user.uid).update({
appleAuth
});
} else {
console.log('No user is signed in');
}
});
}
saveUserInfoToDatabase = () => {
let accessToken = this.state.token;
let spotifyId = this.state.id;
firebase.auth().onAuthStateChanged(function(user) {
if (user) {
console.log(user);
firebase.database().ref('users/' + user.uid).update({
accessToken,
spotifyId
});
} else {
console.log('No user is signed in');
}
});
this.fetchPlaylists();
};
fetchPlaylists = async () => {
try {
const responseData = await axios.get(
'https://api.spotify.com/v1/me/playlists',
{
headers: {
Authorization: `Bearer ${this.state.token}`
}
}
);
const returnedPlaylist = responseData.data;
returnedPlaylist.items.forEach(async item => {
let playlist = {};
playlist.name = item.name;
let songsData = await axios.get(`${item.tracks.href}`, {
headers: {
Authorization: `Bearer ${this.state.token}`
}
});
let songs = songsData.data.items;
let songsArr = [];
songs.forEach(song => {
let songObj = {};
songObj.title = song.track.name;
songObj.image =
!song.track.album.images ||
!song.track.album ||
!song.track.album.images[0]
? 'https://orig01.deviantart.net/26aa/f/2011/185/f/9/no_cover_itunes_by_stainless2-d3kxnbe.png'
: song.track.album.images[0].url;
console.log(songObj.image);
songObj.artist = song.track.album.artists[0].name;
songObj.id = song.track.uri;
songsArr.push(songObj);
});
playlist.songs = songsArr;
Database.savePlaylistToDatabase([playlist], 'spotifyId');
});
} catch (error) {
console.log(error);
}
};
createPlaylists = () => {
axios
.post(
`https://api.spotify.com/v1/users/${this.state.id}/playlists`,
`{\"name\":\"${this.state.playlist}\", \"public\":false}`,
{
headers: {
Authorization: `Bearer ${this.state.token}`,
'Content-Type': 'application/json'
}
}
)
.catch(error => console.log(error));
};
requestAppleMusic = () => {
NativeModules.AuthorizationManager.requestMediaLibraryAuthorization(str => {
this.setState({ appleAuth: true }, () => this.getPlaylists());
});
};
getPlaylists = () => {
NativeModules.MediaLibraryManager.getPlaylists(playlists => {
Database.savePlaylistToDatabase(JSON.parse(playlists), 'appleId');
this.persistAppleMusic()
});
};
appleConnected = () => {
if (this.state.appleAuth)
return <Icon name="ios-checkmark-circle" style={styles.headerIcondisabled} />;
else return <Icon name="ios-add" style={styles.header} />;
};
disconnectApple = () => {
let appleAuth = false
this.setState({appleAuth: false})
firebase.auth().onAuthStateChanged(function(user) {
if (user) {
console.log(user);
firebase.database().ref('users/' + user.uid).update({
appleAuth
});
Database.deleteAllUserPlaylists(user.uid, "appleId")
} else {
console.log('No user is signed in');
}
});
}
disconnectSpotify = () => {
let accessToken = '';
let spotifyId = '';
this.setState({token: accessToken, id: spotifyId})
firebase.auth().onAuthStateChanged(function(user) {
if (user) {
console.log(user);
firebase.database().ref('users/' + user.uid).update({
accessToken,
spotifyId
});
Database.deleteAllUserPlaylists(user.uid, "spotifyId")
} else {
console.log('No user is signed in');
}
});
}
render() {
return (
<Container>
{this.state.name
? <Content>
<Card>
<CardItem header>
<Icon active name="ios-person" style={styles.headerIcon} />
<Text style={styles.header}>Personal Information</Text>
</CardItem>
<CardItem>
<Body>
<Text style={styles.bodytxt}>Name</Text>
</Body>
<Right>
<Text style={styles.bodytxt}>
{this.state.name}
</Text>
</Right>
</CardItem>
<CardItem>
<Body>
<Text style={styles.bodytxt}>Username</Text>
</Body>
<Right>
<Text style={styles.bodytxt}>
{this.state.username}
</Text>
</Right>
</CardItem>
</Card>
<Card>
<CardItem header>
<Icon
active
name="ios-musical-notes"
style={styles.headerIcon}
/>
<Text style={styles.header}>Integrations</Text>
</CardItem>
{this.state.appleAuth ?
<SwipeRow
rightOpenValue={-75}
body={
<CardItem
disabled
>
<Left>
<FAIcon name="apple" size={25} color="#FF4B63" />
</Left>
<Body>
<Text style={styles.bodytxtdisabled}>Apple Music</Text>
</Body>
<Right>
{this.appleConnected()}
</Right>
</CardItem>
}
right={
<Button danger onPress={this.disconnectApple}>
<Icon active name="md-close-circle" />
</Button>
}
/>
:
<SwipeRow
body={
<CardItem
button
onPress={
this.state.appleAuth
? console.log('already authorized')
: this.requestAppleMusic
}
>
<Left>
<FAIcon name="apple" size={25} color="#FF4B63" />
</Left>
<Body>
<Text style={styles.bodytxt}>Apple Music</Text>
</Body>
<Right>
{this.appleConnected()}
</Right>
</CardItem>
}
/>
}
{this.state.token ?
// OB/TL: maybe this an be condensed via refactoring
<SwipeRow
rightOpenValue={-75}
body={
<CardItem
disabled
>
<Left>
<FAIcon name="spotify" size={25} color="#1db954" />
</Left>
<Body>
<Text style={styles.bodytxtdisabled}>Spotify</Text>
</Body>
<Right>
{this.state.token
? <Icon
name="ios-checkmark-circle"
style={styles.headerIcondisabled}
/>
: <Icon name="ios-add" style={styles.header} />}
</Right>
</CardItem>
}
right={
<Button
danger
onPress={this.disconnectSpotify}
>
<Icon active name="md-close-circle" />
</Button>
}
/>
:
<SwipeRow
body={
<CardItem
button
onPress={
this.state.token
? () => console.log('already authorized')
: this.authSpotify
}
>
<Left>
<FAIcon name="spotify" size={25} color="#1db954" />
</Left>
<Body>
<Text style={styles.bodytxt}>Spotify</Text>
</Body>
<Right>
{this.state.token
? <Icon
name="ios-checkmark-circle"
style={styles.header}
/>
: <Icon name="ios-add" style={styles.header} />}
</Right>
</CardItem>
}
/>}
<SwipeRow
rightOpenValue={-75}
body={
<CardItem>
<Left>
<FAIcon name="youtube-play" size={25} color="#FF0404" />
</Left>
<Body>
<Text style={styles.bodytxt}>Youtube</Text>
</Body>
<Right>
<Icon
onPress={() => console.log('hello')}
name="ios-add"
style={styles.header}
/>
</Right>
</CardItem>
}
right={
<Button danger onPress={() => console.log('Coming soon!')}>
<Icon active name="ios-close-circle-outline" />
</Button>
}
/>
</Card>
<Card>
<CardItem header>
<Icon active name="ios-settings" style={styles.headerIcon} />
<Text style={styles.header}>Settings</Text>
</CardItem>
<CardItem
button
onPress={() =>
this.props.navigation.navigate('UpdatePassword')}
>
<Body>
<Text style={styles.bodytxt}>Update Password</Text>
</Body>
<Right>
<Icon name="arrow-forward" style={styles.arrow} />
</Right>
</CardItem>
<Prompt
title="Enter a playlist name"
placeholder="My New Playlist"
visible={this.state.promptVisible}
onCancel={() => this.setState({ promptVisible: false })}
onSubmit={value =>
this.setState(
{ promptVisible: false, playlist: `${value}` },
this.createPlaylists
)}
/>
<CardItem
button
onPress={() => this.setState({ promptVisible: true })}
>
<Body>
<Text style={styles.bodytxt}>New Spotify Playlist</Text>
</Body>
<Right>
<Icon name="arrow-forward" style={styles.arrow} />
</Right>
</CardItem>
<CardItem button onPress={this.signOut}>
<Body>
<Text style={styles.bodytxt}>Sign Out</Text>
</Body>
<Right>
<Icon name="arrow-forward" style={styles.arrow} />
</Right>
</CardItem>
</Card>
</Content>
: <Spinner color="#FC642D" /> /* OB/TL: invert this ternary */}
</Container>
);
}
}