+- (void)submitTrack:(NSString *)title artist:(NSString *)artist album:(NSString *)album length:(int)length
+{
+ if (!_handshakeCompleted) {
+ [self attemptHandshake];
+ return;
+ }
+ ITDebugLog(@"Audioscrobbler: Adding a new track to the submission queue.");
+ NSDictionary *newTrack = [NSDictionary dictionaryWithObjectsAndKeys:title,
+ @"title",
+ artist,
+ @"artist",
+ album,
+ @"album",
+ [NSString stringWithFormat:@"%i", length],
+ @"length",
+ [[NSDate date] descriptionWithCalendarFormat:@"%Y-%m-%d %H:%M:%S" timeZone:nil locale:nil],
+ @"time",
+ nil, nil];
+ [_tracks addObject:newTrack];
+}
+
+- (void)submitTracks
+{
+ NSTimeInterval interval = [_delayDate timeIntervalSinceNow];
+ if (interval > 0) {
+ ITDebugLog(@"Audioscrobbler: Delaying track submission for %i seconds", interval);
+ [self performSelector:@selector(attemptHandshake) withObject:nil afterDelay:interval + 1];
+ return;
+ }
+
+ int i;
+ NSMutableString *requestString;
+ NSString *authString, *responseHash;
+ char *pass = "waffles";
+ unsigned char *buffer;
+ EVP_MD_CTX ctx;
+
+ if (!_handshakeCompleted) {
+ [self attemptHandshake];
+ return;
+ }
+
+ ITDebugLog(@"Audioscrobbler: Submitting queued tracks");
+
+ if ([_tracks count] == 0) {
+ ITDebugLog(@"Audioscrobbler: No queued tracks to submit.");
+ return;
+ }
+
+ //Build the MD5 response string we send along with the request
+ buffer = malloc(EVP_MD_size(EVP_md5()));
+ EVP_DigestInit(&ctx, EVP_md5());
+ EVP_DigestUpdate(&ctx, pass, strlen(pass));
+ EVP_DigestFinal(&ctx, buffer, NULL);
+
+ for (i = 0; i < 16; i++) {
+ responseHash = [responseHash stringByAppendingFormat:@"%0.2x", buffer[i]];
+ }
+
+ free(buffer);
+ buffer = malloc(EVP_MD_size(EVP_md5()));
+ char *cat = (char *)[[responseHash stringByAppendingString:_md5Challenge] UTF8String];
+ EVP_DigestInit(&ctx, EVP_md5());
+ EVP_DigestUpdate(&ctx, cat, strlen(cat));
+ EVP_DigestFinal(&ctx, buffer, NULL);
+
+ responseHash = @"";
+ for (i = 0; i < 16; i++) {
+ responseHash = [responseHash stringByAppendingFormat:@"%0.2x", buffer[i]];
+ }
+ free(buffer);
+
+ authString = (NSString *)CFURLCreateStringByAddingPercentEscapes(NULL, (CFStringRef)[NSString stringWithFormat:@"u=%@&s=%@", @"Tristrex", responseHash], NULL, NULL, kCFStringEncodingUTF8);
+ requestString = [[NSMutableString alloc] initWithString:authString];
+ [authString release];
+
+ //We can only submit ten tracks at a time
+ for (i = 0; ([_tracks count] > 0) && (i < 10); i++) {
+ NSDictionary *nextTrack = [_tracks objectAtIndex:i];
+ NSString *trackString;
+
+ trackString = (NSString *)CFURLCreateStringByAddingPercentEscapes(NULL, (CFStringRef)[NSString stringWithFormat:@"&a[%i]=%@&t[%i]=%@&b[%i]=%@&m[%i]=&l[%i]=%@&i[%i]=%@", i, [nextTrack objectForKey:@"artist"], i, [nextTrack objectForKey:@"title"], i, [nextTrack objectForKey:@"album"], i, i, [nextTrack objectForKey:@"length"], i, [nextTrack objectForKey:@"time"]], NULL, NULL, kCFStringEncodingUTF8);
+ [requestString appendString:trackString];
+ [trackString release];
+ }
+
+ //Create and send the request
+ NSMutableURLRequest *request = [[NSURLRequest requestWithURL:_postURL cachePolicy:NSURLRequestReloadIgnoringCacheData timeoutInterval:30] mutableCopy];
+ [request setHTTPMethod:@"POST"];
+ [request setHTTPBody:[requestString dataUsingEncoding:NSUTF8StringEncoding]];
+ _currentStatus = AudioscrobblerSubmittingTracksStatus;
+ //[NSURLConnection connectionWithRequest:request delegate:self];
+ [requestString release];
+ [request release];
+
+ //If we have tracks left, submit again after the interval seconds
+}
+
+- (void)handleAudioscrobblerNotification:(NSNotification *)note
+{
+ if ([[note name] isEqualToString:@"AudioscrobblerHandshakeComplete"]) {
+ if ([_tracks count] > 0) {
+ [self submitTracks];
+ }
+ [self submitTrack:@"Immigrant Song" artist:@"Led Zeppelin" album:@"How The West Was Won" length:221];
+ [self submitTrack:@"Comfortably Numb" artist:@"Pink Floyd" album:@"The Wall" length:384];
+ [self submitTracks];
+ }
+}
+