Skip to content

Commit

Permalink
Merge pull request #3 from Toura/master
Browse files Browse the repository at this point in the history
Fix to escape quotes in alert string of notification
  • Loading branch information
Jeff Towle committed Nov 22, 2011
2 parents 62c3c44 + 1eff5cd commit 6a3275d
Showing 1 changed file with 29 additions and 27 deletions.
56 changes: 29 additions & 27 deletions UAPhoneGap/Plugins/PushNotification.m
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
/*
Copyright 2009-2011 Urban Airship Inc. All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
2. Redistributions in binaryform must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided withthe distribution.
THIS SOFTWARE IS PROVIDED BY THE URBAN AIRSHIP INC``AS IS'' AND ANY EXPRESS OR
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
Expand Down Expand Up @@ -39,27 +39,27 @@ - (void)dealloc {
[notificationMessage release];
[registerSuccessCallback release];
[registerErrorCallback release];

self.notificationCallbackId = nil;

[super dealloc];
}

- (void)registerAPN:(NSMutableArray *)arguments
- (void)registerAPN:(NSMutableArray *)arguments
withDict:(NSMutableDictionary *)options {
//NSLog(@"registerAPN:%@\n withDict:%@", [arguments description], [options description]);

NSUInteger argc = [arguments count];
if (argc > 0 && [[arguments objectAtIndex:0] length] > 0) {
NSLog(@"Register success callback set");
//self.registerSuccessCallback = [arguments objectAtIndex:0];
self.callbackId = [arguments objectAtIndex:0];
}

if (argc > 1 && [[arguments objectAtIndex:1] length] > 0) {
self.registerErrorCallback = [arguments objectAtIndex:1];
}

UIRemoteNotificationType notificationTypes = UIRemoteNotificationTypeNone;
if ([options objectForKey:@"badge"]) {
notificationTypes |= UIRemoteNotificationTypeBadge;
Expand All @@ -70,27 +70,27 @@ - (void)registerAPN:(NSMutableArray *)arguments
if ([options objectForKey:@"alert"]) {
notificationTypes |= UIRemoteNotificationTypeAlert;
}

if (notificationTypes == UIRemoteNotificationTypeNone)
NSLog(@"PushNotification.registerAPN: Push notification type is set to none");

[[UIApplication sharedApplication] registerForRemoteNotificationTypes:notificationTypes];

}

- (void)startNotify:(NSMutableArray *)arguments withDict:(NSMutableDictionary *)options {
NSLog(@"startNotify");

ready = YES;

// NSUInteger argc = [arguments count];
// if (argc > 0 && [[arguments objectAtIndex:0] length] > 0) {
// NSLog(@"Register success callback set");
// //self.registerSuccessCallback = [arguments objectAtIndex:0];
// self.notificationCallbackId = [arguments objectAtIndex:0];
// }


// Check if there is cached notification before JS PushNotification messageCallback is set
if (notificationMessage) {
[self notificationReceived];
Expand All @@ -111,26 +111,26 @@ - (void)didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken
host:(NSString *)host
appKey:(NSString *)appKey
appSecret:(NSString *)appSecret {
NSString *token = [[[[deviceToken description] stringByReplacingOccurrencesOfString:@"<"withString:@""]
stringByReplacingOccurrencesOfString:@">" withString:@""]
NSString *token = [[[[deviceToken description] stringByReplacingOccurrencesOfString:@"<"withString:@""]
stringByReplacingOccurrencesOfString:@">" withString:@""]
stringByReplacingOccurrencesOfString: @" " withString: @""];

NSLog(@"didRegisterForRemoteNotificationsWithDeviceToken:%@", token);

NSMutableDictionary *results = [NSMutableDictionary dictionary];
[results setValue:token forKey:@"deviceToken"];
[results setValue:host forKey:@"host"];
[results setValue:appKey forKey:@"appKey"];
[results setValue:appSecret forKey:@"appSecret"];

PluginResult* pluginResult = [PluginResult resultWithStatus:PGCommandStatus_OK messageAsDictionary:results];
[self writeJavascript:[pluginResult toSuccessCallbackString:self.callbackId]];

}

- (void)didFailToRegisterForRemoteNotificationsWithError:(NSError *)error {
NSLog(@"didFailToRegisterForRemoteNotificationsWithError:%@", error);

if (registerErrorCallback) {
NSString *jsStatement = [NSString stringWithFormat:@"%@({error:'%@'});",
registerErrorCallback, error];
Expand All @@ -142,11 +142,13 @@ - (void)notificationReceived {
NSLog(@"Notification received");
NSLog(@"Ready: %d",ready);
NSLog(@"Msg: %@", [notificationMessage descriptionWithLocale:[NSLocale currentLocale] indent:4]);

if (ready && notificationMessage) {
NSMutableString *jsonStr = [NSMutableString stringWithString:@"{"];
if ([notificationMessage objectForKey:@"alert"]) {
[jsonStr appendFormat:@"alert:'%@',", [notificationMessage objectForKey:@"alert"]];
[jsonStr appendFormat:@"alert:'%@',", [[notificationMessage objectForKey:@"alert"]
stringByReplacingOccurrencesOfString:@"'"
withString:@"\\'"]];
}
if ([notificationMessage objectForKey:@"badge"]) {
[jsonStr appendFormat:@"badge:%d,", [[notificationMessage objectForKey:@"badge"] intValue]];
Expand All @@ -155,14 +157,14 @@ - (void)notificationReceived {
[jsonStr appendFormat:@"sound:'%@',", [notificationMessage objectForKey:@"sound"]];
}
[jsonStr appendString:@"}"];

NSString *jsStatement = [NSString stringWithFormat:@"window.plugins.pushNotification.notificationCallback(%@);", jsonStr];
[self writeJavascript:jsStatement];
NSLog(@"run JS: %@", jsStatement);

// PluginResult* pluginResult = [PluginResult resultWithStatus:PGCommandStatus_OK messageAsDictionary:notificationMessage];
// [self writeJavascript:[pluginResult toSuccessCallbackString:self.]];
//
//
self.notificationMessage = nil;
}
}
Expand Down

0 comments on commit 6a3275d

Please sign in to comment.