WLBaseItem.m 3.19 KB
/*
 Copyright 2010-2016 Warply Inc. All rights reserved.
 
 Redistribution and use in source and binary forms, 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 with the distribution.
 
 THIS SOFTWARE IS PROVIDED BY THE WARPLY LTD ``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
 EVENT SHALL WARPLY LTD OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
 INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
 BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
 LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
 OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
 ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */

#import "WLBaseItem.h"
#import "WLGlobals.h"

#import "Warply.h"

@implementation WLBaseItem

@synthesize action = _action;
@synthesize session_uuid = _session_uuid;
@synthesize trace = _trace;
@synthesize message = _message;
@synthesize apsItem = _apsItem;
@synthesize customData = _customData;

#pragma mark - Initialization
///////////////////////////////////////////////////////////////////////////////
- (id)initWithAttributes:(NSDictionary *)attributes 
{
    self = [super init];
    if (self) { 
        self.customData = [NSMutableDictionary dictionary];
        NSObject *idx = nil;
		for (NSString *key in [attributes allKeys]) {
			idx = [attributes objectForKey:key];
			@try {
				if ([idx isKindOfClass:[NSNull class]] )
					continue;
                
				if ([key isEqualToString:@"_a"])
                    [self setValue:idx forKey:@"action"];
                else if ([key isEqualToString:@"aps"])
                    _apsItem = [[WLAPSItem alloc] initWithAttributes:(NSDictionary*)idx];
                else
                    [self setValue:idx forKey:key];
			}
			@catch (NSException *e) { 
                [_customData setValue:idx forKey:key];
                WLLOG(@"%@: UnKnown Key:%@ - Value:%@", [e name], key, idx); }
			@finally { }
		} 
    }
    
    return self;
}

#pragma mark - Properties
///////////////////////////////////////////////////////////////////////////////
- (NSString*)message
{
    if (_apsItem != nil)
        return _apsItem.alert;

    return _message;
}

#pragma mark - Public Methods
///////////////////////////////////////////////////////////////////////////////
- (NSString *)getPageURL 
{
    return [NSString stringWithFormat:WARP_PAGE_URL_FORMAT, [[Warply sharedService] baseURL], _session_uuid];
}

///////////////////////////////////////////////////////////////////////////////
- (NSString *)getImageURL
{
    return [NSString stringWithFormat:WARP_IMAGE_URL_FORMAT, [[Warply sharedService] baseURL], _session_uuid];
}

@end