Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added x-amz-acl support #3

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions server/Uploader.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ class @Uploader
_configuration: null
@config: (config) ->
@_configuration = config
_aclList = ["private", "public-read", "public-read-write", "authenticated-read",
"bucket-owner-read", "bucket-owner-full-control"]
config.acl = config.acl or "private"
throw new Meteor.Error("Unknown acl param!") unless config.acl in _aclList

@getConfig: ->
if @_configuration?
Expand Down
1 change: 1 addition & 0 deletions server/server.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ Meteor.methods
headers =
"Content-Type": file.type
"Content-Length": buffer.length
"x-amz-acl": config.acl

# Pipe file buffer to cloud
put = knox.putStream file_stream_buffer, path, headers, (error, response) ->
Expand Down