This repository has been archived by the owner on Oct 6, 2020. It is now read-only.
forked from GreenAsJade/s3-swf-upload-plugin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
README
89 lines (63 loc) · 3.28 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
S3SwfUpload
===========
S3SwfUpload allow user uploading a file to S3 directly, so you can save the cost of uploading process in your app server.
This version of the plugin features the ability to upload multiple files.
It currently has some hard coded constrains on file type and size that are PRX specific, but those will be removed presently.
Install
=======
./script/plugin install git://github.com/PRX/s3-swf-upload-plugin.git
Usage
=======
1. $ script/generate s3_swf_upload
2. Edit app/controller/s3_uploads_controller.rb
You need to skip any authentication for this controller, the flash
needs to be able to access it. There's a big comment showing you
where to do this :)
3. Configure your amazon parameters. Either set these through the
following environment variables:
AMAZON_S3_SWF_UPLOAD_BUCKET => my_public_bucket
AMAZON_ACCESS_KEY_ID => secret
AMAZON_SECRET_ACCESS_KEY => very secret
AMAZON_S3_SWF_UPLOAD_ACL => public-read
AMAZON_S3_SWF_MAX_FILE_SIZE => 209715200
or hardcode them in config/amazon_s3.yml
(The corresponding yml vars are:
bucket_name, access_key_id, secret_access_key, acl, max_file_size)
The acl will default to private.
Your rails app can also change bucket, acl and max file size like
this:
S3SwfUpload::S3Config.bucket = 'different_one'
S3SwfUpload::S3Config.acl = 'private'
S3SwfUpload::S3Config.max_file_size = 1024
4. Upload a crossdomain.xml in your bucket and make it public-read.
You can find what you need in generators/s3-swf-upload/templates in
the plugin!
5. init s3_swf object:
<%= s3_swf_upload_tag %>
6. When you click upload, your file will be upload to http://bucket.s3.amazonasw.com/ by default.
IE the default prefix is '' (no prefix)
7. If you want to customize its behavior, here's a more complex example:
<%= raw s3_swf_upload_tag(
:width => 390,
:height => 150,
:file_types=>'*.jpg;*.gif;*.png;',
:file_type_descriptions =>"Image files.",
:success => "$.post('/attachments.js',{'filename':filename,
'filesize':filesize,
'content_type':contenttype,
'authenticity_token':'#{form_authenticity_token}'},
null, 'script');",
:failed => 'alert("failed: " + status);',
:info => '$("#upload-messages").html(status);',
:prefix => "public/attachment",
:cleared => "alert('removed all pending uploads!')",
:removed => "alert('removed a pending upload!')",
:initial_message=> 'Click "Browse..." to find files to upload.')
%>
</div>
<div id="upload-messages" name="upload-messages" class="notice"></div>
In this case, files will be uploaded to:
http://bucket.s3.amazonasw.com/public/attachment
and when successful, will post the information about the file uploaded to the attachments controller as a json post using JQuery.
Original plugin is Copyright (c) 2008 elctech, released under the MIT license
Updates to plugin for multiple file uploader are Copyright (c) 2010 PRX, released under the MIT license