Fixxed Login Issues |

This commit is contained in:
Johnny @PC 2014-02-14 13:04:45 +01:00
parent 968bbad18e
commit 659a45fdf5
3 changed files with 19 additions and 13 deletions

View File

@ -31,10 +31,13 @@ namespace SpotifyAPIv1
wc.Headers.Add("Origin", "https://embed.spotify.com"); wc.Headers.Add("Origin", "https://embed.spotify.com");
wc.Headers.Add("Referer", "https://embed.spotify.com/?uri=spotify:track:5Zp4SWOpbuOdnsxLqwgutt"); wc.Headers.Add("Referer", "https://embed.spotify.com/?uri=spotify:track:5Zp4SWOpbuOdnsxLqwgutt");
} }
internal void Init() internal Boolean Init()
{ {
oauthKey = GetOAuthKey(); oauthKey = GetOAuthKey();
cfidKey = GetCFID(); cfidKey = GetCFID();
if (cfidKey == "")
return false;
return true;
} }
internal void SendPauseRequest() internal void SendPauseRequest()
{ {
@ -81,7 +84,7 @@ namespace SpotifyAPIv1
if (d.Count != 1) if (d.Count != 1)
throw new Exception("CFID couldn't be loaded"); throw new Exception("CFID couldn't be loaded");
if (d[0].error != null) if (d[0].error != null)
throw new Exception("SpotifyWebHelper Error: " + d[0].error.message); return "";
return d[0].token; return d[0].token;
} }
internal string query(string request, bool oauth, bool cfid, int wait) internal string query(string request, bool oauth, bool cfid, int wait)
@ -111,6 +114,8 @@ namespace SpotifyAPIv1
string response = ""; string response = "";
try try
{ {
//Need to find a better solution...
if(SpotifyAPI.IsSpotifyRunning())
response = "[ " + wc.DownloadString(a) + " ]"; response = "[ " + wc.DownloadString(a) + " ]";
} }
catch (Exception z) catch (Exception z)

View File

@ -21,9 +21,9 @@ namespace SpotifyAPIv1
/// <summary> /// <summary>
/// Connects with Spotify. Needs to be called before all other SpotifyAPI functions /// Connects with Spotify. Needs to be called before all other SpotifyAPI functions
/// </summary> /// </summary>
public void Connect() public Boolean Connect()
{ {
rh.Init(); return rh.Init();
} }
/// <summary> /// <summary>
/// Returns the MusicHandler /// Returns the MusicHandler
@ -95,7 +95,7 @@ namespace SpotifyAPIv1
/// </summary> /// </summary>
public void Update() public void Update()
{ {
if (!SpotifyAPI.IsSpotifyWebHelperRunning()) if (!SpotifyAPI.IsSpotifyWebHelperRunning() || !SpotifyAPI.IsSpotifyRunning())
return; return;
mh.Update(rh.Update()); mh.Update(rh.Update());
} }

View File

@ -42,8 +42,6 @@ namespace SpotifyAPIv1
public void ListenForEvents(Boolean listen) public void ListenForEvents(Boolean listen)
{ {
timer.Enabled = listen; timer.Enabled = listen;
if (listen)
timer.Start();
} }
/// <summary> /// <summary>
/// Sets a synchronizing object, so you don't need to Invoke /// Sets a synchronizing object, so you don't need to Invoke
@ -65,6 +63,8 @@ namespace SpotifyAPIv1
StatusResponse new_response = mh.GetStatusResponse(); StatusResponse new_response = mh.GetStatusResponse();
if (!new_response.running && new_response.track == null) if (!new_response.running && new_response.track == null)
return; return;
if (new_response.track != null && response.track != null)
{
if (new_response.track.GetTrackName() != response.track.GetTrackName() && OnTrackChange != null) if (new_response.track.GetTrackName() != response.track.GetTrackName() && OnTrackChange != null)
{ {
OnTrackChange(new TrackChangeEventArgs() OnTrackChange(new TrackChangeEventArgs()
@ -73,6 +73,7 @@ namespace SpotifyAPIv1
new_track = new_response.track new_track = new_response.track
}); });
} }
}
if (new_response.playing != response.playing && OnPlayStateChange != null) if (new_response.playing != response.playing && OnPlayStateChange != null)
{ {
OnPlayStateChange(new PlayStateEventArgs() OnPlayStateChange(new PlayStateEventArgs()