1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
Commit graph

24 commits

Author SHA1 Message Date
Brian Hartsock
4f29f79e9d Merge pull request #1000 from yob/rackspace_temp_urls
Rackspace Temp/Expiring URLs
2012-08-07 16:10:24 -07:00
Max Stepanov
22f5d4d567 Should not modify passed in "params" variable since block might run several times due to authentication failure producing erroneous path 2012-07-08 15:07:02 +03:00
James Healy
179fd51038 Rackspace Storage: new request, post_set_meta_temp_url_key
* Sets the account-wide Temp URL Key
* The key is used to sign any expiring URLs to otherwise private objects
* Once the key has been set, you need to pass it in when creating a new
  Rackspace Storage object like so:

      storage = Fog::Storage.new(:rackspace_username     => 'username',
                                 :rackspace_api_key      => 'api_key',
                                 :rackspace_temp_url_key => 'secret-key',
                                 :provider               => 'Rackspace')

* After this has been set, create an expiring URL like so:

      storage.get_object_https_url("container","object_key", Time.now + 60)
2012-06-12 18:51:12 +10:00
James Healy
d2b640ef15 Rackspace Storage: new request, get_object_https_url
* returns a signed, expiring URL for the requested object
* useful for providing temporary public access to an otherwise private
  object
* same function as the request of the same name for AWS Storage

* Create an expiring URL like so:

    storage = Fog::Storage.new(:rackspace_username     => 'username',
                               :rackspace_api_key      => 'api_key',
                               :rackspace_temp_url_key => 'secret-key',
                               :provider               => 'Rackspace')
    storage.get_object_https_url("container","object_key", Time.now + 60)
2012-06-12 18:51:04 +10:00
Wesley Beary
dd2c3827f6 Merge pull request #970 from stormsilver/rackspace_stale_tokens
Copied auth token reauthentication from rackspace|compute
2012-06-11 08:53:40 -07:00
James Herdman
97b16d08d2 Remove absolute path when requiring 2012-05-26 11:27:28 -04:00
Eric Hankins
7487cf356f Copied auth token reauthentication from rackspace|compute 2012-05-17 11:07:30 -05:00
Kevin Menard
dcefc2d7de Fixed #875: Loosen multi_json version. 2012-04-25 10:31:28 -04:00
Steve Smith
d89dd56fe7 Use MultiJSON #dump and #load rather than #encode and #decode
MultiJSON deprecated these methods in 1.3.0 in favour of the new ones.
This requires an update to the gemspec to ensure ~>1.3
2012-04-20 13:09:14 +01:00
Benjamin Manns
4a97db0f2b [rackspace|storage] Add copy_object request. 2012-02-16 14:44:31 -05:00
geemus
ffd01e51dd [core] pass connection_options through service init
closes #411
2011-09-12 10:01:56 -05:00
geemus
b2c8ff0388 [core] work toward separate requires
Should facilitate the following:

    require 'fog/aws'
    require 'fog/compute'
    require 'fog/aws/compute'

I think once you `require 'rubygems'` those should work.

further cleanup should reduce common requires (ie nokogiri)
2011-08-31 15:52:53 -05:00
geemus
ff6e439727 [storage|rackspace] move rackspace storage to its own shared area (namespacing should probably be corrected) 2011-08-24 14:12:29 -05:00
geemus
ac480ad928 [storage] consolidate 2011-01-07 15:34:20 -08:00
geemus
3ea111c7f8 [core] fix/cleanup requires/recognizes for service
closes #113
2010-12-16 15:31:24 -08:00
Juris Galang
c37629e742 requires and recognizes clauses for services now receives a block so that the declared parameters are applied to their Real implementation. 2010-12-08 11:09:13 -08:00
Juris Galang
827c029a99 This is a combination of 23 commits (included merges from upstream); this commit(s) include changes to enforces recognizes/requires parameters for all supported services. Comments from the included commits follow:
- Added google_storage_* keys
- Fixed indentations.
- Factored out requires and recognizes method implementation (now relies on the requires and recognizes clause from the NamedParameters module)
- Added dependency to named-parameters gem.
- Added recognizes declaration to classes for all supported services to enforce parameter name checks -
- passing an unrecognized key when instantiating a service object will now cause an ArgumentError to be raised.
- Added NOTE
- comment added
- check/filter-out keys from credentials that are not required by the class being instantiated
- [local|storage] properly write out file contents
- Added google_storage_* keys
- Fixed indentations.
- added put_object_acl request (ref: https://github.com/geemus/fog/issues#issue/74)
- Release 0.3.24
- remove tracker reference from README
- issues is now the goto for bugs/todo
- notify and gracefully skip credential-less testsa
- [rackspace|storage] fixes for directory/files
- [local|storage] CGI.escape file names
- Release 0.3.25
- updated deps; recognized_parameters -> declared_parameters; restored options filtering if Fog.bin
- Added requires/recognizes to Fog::Terremark::Ecloud
- Updted to use latest named-parameters gem.
- Filter out unwanted parameters when Fog.bin
- Updated to latest named-parameters gem
- commented out unnecessary code
- fix missing "volume" parameter error when setting Fog::AWS::Volume#server to nil (in order to detach it)
- documentation update for key_pairs and helper
- [aws|compute] commented/documented flavors/volumes
- Fixes for issue 38 and 39
Closes #96
2010-12-01 14:34:42 -08:00
Nathan Sutton
ee4f95e4ce Change to use new Excon::Errors::HTTPStatusError class 2010-12-01 03:16:41 +08:00
geemus
93b8d32845 [storage] add public= and public_url for directory, public_url for file 2010-11-05 15:31:44 -07:00
geemus
868ace8347 [rackspace|cdn&storage] split cdn into it's own service 2010-11-01 11:50:30 -07:00
geemus
a975a6ef79 push most dependencies out toward leaves to lessen initial load requirements 2010-10-29 14:58:28 -07:00
geemus
8a651fe1c6 [rackspace|storage] first pass of cdn support 2010-10-20 16:58:15 -07:00
geemus
f0e2cfd21d rely on service to include collections 2010-09-14 10:51:13 -07:00
geemus
a5411d8cf9 [rackspace] rename files/servers to storage/compute 2010-09-08 13:50:23 -07:00