forked from Fascinated/Bat
disable spotify linking (until they accept out application)
This commit is contained in:
@ -117,10 +117,13 @@ public class SpotifyService {
|
||||
* @param user the user to start playback for
|
||||
* @return if the playback was paused
|
||||
*/
|
||||
@SneakyThrows
|
||||
public boolean resumePlayback(BatUser user) {
|
||||
getSpotifyApi(user).startResumeUsersPlayback().build().execute();
|
||||
return true;
|
||||
try {
|
||||
getSpotifyApi(user).startResumeUsersPlayback().build().execute();
|
||||
return true;
|
||||
} catch (Exception e) {
|
||||
throw new RuntimeException("Failed to resume playback", e);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
@ -133,12 +136,17 @@ public class SpotifyService {
|
||||
@SneakyThrows
|
||||
public String authorize(String code) {
|
||||
if (code == null) {
|
||||
return "Missing code param";
|
||||
return """
|
||||
<a href="%s">Click here to authorize your Spotify account</a>
|
||||
""".formatted(authorizationUrl);
|
||||
}
|
||||
AuthorizationCodeCredentials credentials = spotifyApi.authorizationCode(code).build().execute();
|
||||
String key = StringUtils.randomString(16);
|
||||
accessToken.put(key, credentials);
|
||||
return "Authorization Key: " + key;
|
||||
return """
|
||||
<p>Successfully authorized your Spotify account!</p>
|
||||
<p>Your key is: <strong>%s</strong></p>
|
||||
""".formatted(key);
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user