-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspotify.ts
79 lines (69 loc) · 2.32 KB
/
spotify.ts
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
import { AccessTokenResponse } from '../types';
import { makeRedirectUri } from 'expo-auth-session';
import AsyncStorage from '@react-native-async-storage/async-storage';
const ACCESS_TOKEN_KEY = 'spotify-access-token';
const EXPIRATION_KEY = 'spotify-expiration';
const REFRESH_TOKEN_KEY = 'spotify-refresh-token';
export const getClientId = () => {
return process.env.EXPO_PUBLIC_SPOTIFY_CLIENT_ID;
};
const getClientSecret = () => {
return process.env.EXPO_PUBLIC_SPOTIFY_CLIENT_SECRET;
};
const generateAccessTokenParams = (code: string) => {
const params = new URLSearchParams();
params.append('grant_type', 'authorization_code');
params.append('code', code);
params.append('redirect_uri', makeRedirectUri());
return params.toString();
};
export const fetchAccessToken = async (code: string) => {
const response = await fetch('https://accounts.spotify.com/api/token', {
method: 'POST',
body: generateAccessTokenParams(code),
headers: {
'content-type': 'application/x-www-form-urlencoded',
Authorization: 'Basic ' + btoa(getClientId() + ':' + getClientSecret()),
},
});
const json = (await response.json()) as AccessTokenResponse;
saveSpotifyCredentials(
json.access_token,
json.expires_in,
json.refresh_token
);
console.log(json);
return {
accessToken: json.access_token,
expiration: json.expires_in,
refreshToken: json.refresh_token,
};
};
export const saveSpotifyCredentials = async (
accessToken: string,
expiration: number,
refreshToken: string
) => {
await AsyncStorage.setItem(ACCESS_TOKEN_KEY, accessToken);
await AsyncStorage.setItem(
EXPIRATION_KEY,
(Date.now() + expiration).toString()
);
await AsyncStorage.setItem(REFRESH_TOKEN_KEY, refreshToken);
};
export const getSpotifyCredentials = async () => {
const storedExpiration = await AsyncStorage.getItem(EXPIRATION_KEY);
return {
accessToken: await AsyncStorage.getItem(ACCESS_TOKEN_KEY),
expiration: storedExpiration ? parseInt(storedExpiration) : null,
refreshToken: await AsyncStorage.getItem(REFRESH_TOKEN_KEY),
};
};
export const validateSpotifyCredentials = async () => {
const { accessToken, expiration, refreshToken } =
await getSpotifyCredentials();
if (!expiration || expiration > Date.now()) {
return false;
}
return !!accessToken && !!refreshToken;
};