May be it is let, but might help some one. Here is the code to upload image in amazone-s3
constant.h
#import <Foundation/Foundation.h>
#define SECRET_KEY @"your secret kry"
#define ACCESS_KEY_ID @"your access id"
#define PICTURE_BUCKET @"bucket name"
#define PICTURE_NAME @"any word"
#define CREDENTIALS_ERROR_TITLE @"Missing Credentials"
#define CREDENTIALS_ERROR_MESSAGE @"AWS Credentials not configured correctly. Please review the README file."
@interface Constant : NSObject
+(NSString *)pictureBucket;
@end
In constant.m
#import "Constant.h"
@implementation Constant
+(NSString *)pictureBucket
{
return [[NSString stringWithFormat:@"%@-%@", PICTURE_BUCKET, ACCESS_KEY_ID] lowercaseString];
}
@end
In UploadViewController.h
typedef enum {
GrandCentralDispatch,
Delegate,
BackgroundThread
} UploadType;
@interface UploadPhotoViewController : UIViewController<UIImagePickerControllerDelegate,UINavigationControllerDelegate,UINavigationControllerDelegate, AmazonServiceRequestDelegate>
{
UploadType _uploadType;
}
@property (strong, nonatomic) IBOutlet UIButton *buttonSelectPhoto;
@property (nonatomic, retain) AmazonS3Client *s3;
In UploadViewController.m
#import "UploadPhotoViewController.h"
#import <AWSRuntime/AWSRuntime.h>
#import "Constant.h"
@interface UploadPhotoViewController ()
@end
@implementation UploadPhotoViewController
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self) {
// Custom initialization
}
return self;
}
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view from its nib.
#ifdef DEBUG
[AmazonLogger verboseLogging];
#else
[AmazonLogger turnLoggingOff];
#endif
[AmazonErrorHandler shouldNotThrowExceptions];
if(![ACCESS_KEY_ID isEqualToString:@"CHANGE ME"]
&& self.s3 == nil)
{
// Initial the S3 Client.
//!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
// This sample App is for demonstration purposes only.
// It is not secure to embed your credentials into source code.
// DO NOT EMBED YOUR CREDENTIALS IN PRODUCTION APPS.
// We offer two solutions for getting credentials to your mobile App.
// Please read the following article to learn about Token Vending Machine:
// * http://aws.amazon.com/articles/Mobile/4611615499399490
// Or consider using web identity federation:
// * http://aws.amazon.com/articles/Mobile/4617974389850313
//!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
self.s3 = [[AmazonS3Client alloc] initWithAccessKey:ACCESS_KEY_ID withSecretKey:SECRET_KEY] ;
self.s3.endpoint = [AmazonEndpoints s3Endpoint:US_WEST_2];
// Create the picture bucket.
S3CreateBucketRequest *createBucketRequest = [[S3CreateBucketRequest alloc] initWithName:[Constant pictureBucket] andRegion:[S3Region USWest2]];
S3CreateBucketResponse *createBucketResponse = [self.s3 createBucket:createBucketRequest];
if(createBucketResponse.error != nil)
{
NSLog(@"Error: %@", createBucketResponse.error);
}
}
}
-(void)viewDidAppear:(BOOL)animated
{
[super viewDidAppear:animated];
if ([ACCESS_KEY_ID isEqualToString:@"CHANGE ME"])
{
[self showAlertMessage:CREDENTIALS_ERROR_MESSAGE withTitle:CREDENTIALS_ERROR_TITLE];
}
}
- (void)showAlertMessage:(NSString *)message withTitle:(NSString *)title
{
UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:title
message:message
delegate:nil
cancelButtonTitle:@"OK"
otherButtonTitles:nil];
alertView.delegate=self;
[alertView show];
}
- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex {
dispatch_queue_t queue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0);
dispatch_async(queue, ^{
// Set the content type so that the browser will treat the URL as an image.
S3ResponseHeaderOverrides *override = [[S3ResponseHeaderOverrides alloc] init];
override.contentType = @"image/jpeg";
// Request a pre-signed URL to picture that has been uplaoded.
S3GetPreSignedURLRequest *gpsur = [[S3GetPreSignedURLRequest alloc] init];
gpsur.key = PICTURE_NAME;
gpsur.bucket = [Constant pictureBucket];
gpsur.expires = [NSDate dateWithTimeIntervalSinceNow:(NSTimeInterval) 3600]; // Added an hour's worth of seconds to the current time.
gpsur.responseHeaderOverrides = override;
// Get the URL
NSError *error = nil;
NSURL *url = [self.s3 getPreSignedURL:gpsur error:&error];
if(url == nil)
{
if(error != nil)
{
dispatch_async(dispatch_get_main_queue(), ^{
NSLog(@"Error: %@", error);
[self showAlertMessage:[error.userInfo objectForKey:@"message"] withTitle:@"Browser Error"];
});
}
}
else
{
/*dispatch_async(dispatch_get_main_queue(), ^{
// Display the URL in Safari
[[UIApplication sharedApplication] openURL:url];
});*/
}NSLog(@"url is %@",url);
});
}
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
- (IBAction)buttonTakePhoto:(id)sender
{
UIImagePickerController *picker = [[UIImagePickerController alloc] init];
picker.delegate = self;
picker.allowsEditing = YES;
picker.sourceType = UIImagePickerControllerSourceTypeCamera;
[self presentViewController:picker animated:YES completion:NULL];
}
- (IBAction)buttonSelectPhoto:(id)sender
{
[self showImagePicker:Delegate];
}
- (void)showImagePicker:(UploadType)uploadType
{
UIImagePickerController *imagePicker = [[UIImagePickerController alloc] init] ;
imagePicker.delegate = self;
_uploadType = uploadType;
[self presentViewController:imagePicker animated:YES completion:NULL];
}
- (void)processDelegateUpload:(NSData *)imageData
{
// Upload image data. Remember to set the content type.
S3PutObjectRequest *por = [[S3PutObjectRequest alloc] initWithKey:PICTURE_NAME
inBucket:[Constant pictureBucket]];
por.contentType = @"image/jpeg";
por.data = imageData;
por.delegate = self;
// Put the image data into the specified s3 bucket and object.
[self.s3 putObject:por];
}
-(void)request:(AmazonServiceRequest *)request didCompleteWithResponse:(AmazonServiceResponse *)response
{
[self showAlertMessage:@"The image was successfully uploaded." withTitle:@"Upload Completed"];
[[UIApplication sharedApplication] setNetworkActivityIndicatorVisible:NO];
}
-(void)request:(AmazonServiceRequest *)request didFailWithError:(NSError *)error
{
NSLog(@"Error: %@", error);
[self showAlertMessage:error.description withTitle:@"Upload Error"];
[[UIApplication sharedApplication] setNetworkActivityIndicatorVisible:NO];
}
#pragma mark - UIImagePickerControllerDelegate methods
-(void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info
{
// Get the selected image.
UIImage *image = [info objectForKey:UIImagePickerControllerOriginalImage];
// Convert the image to JPEG data.
NSData *imageData = UIImageJPEGRepresentation(image, 1.0);
if(_uploadType == Delegate)
{
[self processDelegateUpload:imageData];
}
[[UIApplication sharedApplication] setNetworkActivityIndicatorVisible:YES];
[picker dismissViewControllerAnimated:YES completion:NULL];
}
-(void)imagePickerControllerDidCancel:(UIImagePickerController *)picker
{
[picker dismissViewControllerAnimated:YES completion:NULL];
}
- (IBAction)buttonBack:(id)sender
{
[self.navigationController popViewControllerAnimated:YES];
}
@end