https://github.com/fog/fog-aliyun
Fog provider for aliyun
https://github.com/fog/fog-aliyun
Keywords from Contributors
cloud-sql fog gce gcp gcs google-cloud-monitoring google-cloud-platform
Last synced: about 6 hours ago
JSON representation
Repository metadata
Fog provider for aliyun
- Host: GitHub
- URL: https://github.com/fog/fog-aliyun
- Owner: fog
- License: mit
- Created: 2015-09-22T06:12:35.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2025-09-07T16:01:45.000Z (3 months ago)
- Last Synced: 2025-11-21T10:04:16.913Z (21 days ago)
- Language: Ruby
- Size: 364 KB
- Stars: 38
- Watchers: 9
- Forks: 24
- Open Issues: 14
- Releases: 6
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.txt
- Code of conduct: CODE_OF_CONDUCT.md
- Security: SECURITY.md
README.md
Fog::Aliyun
Installation
Add this line to your application's Gemfile:
gem 'fog-aliyun'
And then execute:
$ bundle
Or install it yourself as:
$ gem install fog-aliyun
Usage
Before you can use fog-aliyun, you must require it in your application:
require 'fog/aliyun'
Since it's a bad practice to have your credentials in source code, you should load them from default fog configuration file: ~/.fog. This file could look like this:
default:
aliyun_accesskey_id: "<YOUR_ACCESS_KEY_ID>"
aliyun_accesskey_secret: "<YOUR_SECRET_ACCESS_KEY>"
aliyun_region_id: "<YOUR_TARGET_REGION>"
Connecting to OSS
conn = Fog::Storage[:aliyun]
If you haven't modified your default fog configuration file or you don't want to use it, you can load your credentials by this way:
opt = {
:provider => 'aliyun',
:aliyun_accesskey_id => <YOUR_ACCESS_KEY_ID>,
:aliyun_accesskey_secret => <YOUR_SECRET_ACCESS_KEY>,
:aliyun_oss_bucket => <YOUR_OSS_BUCKET>,
:aliyun_region_id => <YOUR_TARGET_REGION>,
:aliyun_oss_endpoint => <YOUR_OSS_ENDPOINT>,
}
conn = Fog::Storage.new(opt)
-> Note: :aliyun_region_id is optional and default to "cn-hangzhou".
-> Note: :aliyun_oss_endpoint is optional. If it is not specified, it will be generated automatically by :aliyun_region_id.
Its basic format is oss-<region-id>.aliyuncs.com and with default schema "http" and default port "80".
If you want to use https or 443 port, you can use a format <schema>://oss-<region-id>.aliyuncs.com:<port>.
Fog::Aliyun Abstractions
Fog::Aliyun provides both a model and request abstraction. The request abstraction provides the most efficient interface and the model abstraction wraps the request abstraction to provide a convenient ActiveModel like interface.
Request Layer
The Fog::Storage object supports a number of methods that wrap individual HTTP requests to the OSS API.
To see a list of requests supported by the storage service:
conn.requests
This returns:
[[nil, :copy_object], [nil, :delete_bucket], [nil, :delete_object], [nil, :get_bucket], [nil, :get_object], [nil, :get_object_http_url], [nil, :get_object_https_url], [nil, :head_object], [nil, :put_bucket], [nil, :put_object], [nil, :list_buckets], [nil, :list_objects], [nil, :get_containers], [nil, :get_container], [nil, :delete_container], [nil, :put_container]]
Example Requests(list_buckets)
To request all of buckets:
conn.list_buckets
And this returns like the flowing;
[{"Location"=>"oss-cn-beijing", "Name"=>"dt1", "CreationDate"=>"2015-07-30T08:38:02.000Z"}, {"Location"=>"oss-cn-shenzhen", "Name"=>"ruby1", "CreationDate"=>"2015-07-30T02:22:34.000Z"}, {"Location"=>"oss-cn-qingdao", "Name"=>"yuanhang123", "CreationDate"=>"2015-05-18T03:06:31.000Z"}]
You can also request in this way;
conn.list_buckets(:prefix=>"pre")
Here is a summary of the optional parameters:
To learn more about Fog::Aliyun request methods, you can refer to our source code. To learn more about OSS API, refer to AliYun OSS API.
Model Layer
Fog models behave in a manner similar to ActiveModel. Models will generally respond to create, save, destroy, reload and attributes methods. Additionally, fog will automatically create attribute accessors.
Here is a summary of common model methods:
The remainder of this document details the model abstraction.
Note: Fog sometimes refers to OSS containers as directories.
List Directories
To retrieve a list of directories:
dirs = conn.directories
This returns a collection of Fog::Storage::Aliyun::Directory models:
Get Directory
To retrieve a specific directory:
dir = dirs.get "dir"
This returns a Fog::Storage::Aliyun::Directory instance:
Create Directory
To create a directory:
dirs.create :key => 'backups'
Delete Directory
To delete a directory:
directory.destroy
Note: Directory must be empty before it can be deleted.
Directory URL
To get a directory's URL:
directory.public_url
List Files
To list files in a directory:
directory.files
Note: File contents is not downloaded until body attribute is called.
Upload Files
To upload a file into a directory:
file = directory.files.create :key => 'space.jpg', :body => File.open "space.jpg"
Note: For files larger than 5 GB please refer to the Upload Large Files section.
Upload Large Files
OSS requires files larger than 5 GB (the OSS default limit) to be uploaded into segments along with an accompanying manifest file. All of the segments must be uploaded to the same container.
Segmented files are downloaded like ordinary files. See Download Files section for more information.
Download Files
The most efficient way to download files from a private or public directory is as follows:
File.open('downloaded-file.jpg', 'w') do | f |
directory.files.get("my_big_file.jpg") do | data, remaining, content_length |
f.syswrite data
end
end
This will download and save the file.
Note: The body attribute of file will be empty if a file has been downloaded using this method.
If a file object has already been loaded into memory, you can save it as follows:
File.open('germany.jpg', 'w') {|f| f.write(file_object.body) }
Note: This method is more memory intensive as the entire object is loaded into memory before saving the file as in the example above.
File URL
To get a file's URL:
file.public_url
Copy File
Cloud Files supports copying files. To copy files into a container named "trip" with a name of "europe.jpg" do the following:
file.copy("trip", "europe.jpg")
To move or rename a file, perform a copy operation and then delete the old file:
file.copy("trip", "germany.jpg")
file.destroy
Delete File
To delete a file:
file.destroy
Development
After checking out the repo, run bin/setup to install dependencies. Then, run rake spec to run the tests. You can also run bin/console for an interactive prompt that will allow you to experiment.
To install this gem onto your local machine, run bundle exec rake install. To release a new version, update the version number in version.rb, and then run bundle exec rake release, which will create a git tag for the version, push git commits and tags, and push the .gem file to rubygems.org.
Testing
To run test suite use the following command:
rake spec
Code coverage
To run test suite with code coverage:
export COVERAGE=true
rake spec
The result will be generated in coverage folder.
Integration tests
To run integration tests please prepare a set of AliCloud credentials to be used by integration tests.
Define the credentials and bucket in ~/.fog file in using following format:
default:
aliyun_accesskey_id: "...access key..." # You can create a set of credentials
aliyun_accesskey_secret: "...secret..." # using Alicloud console portal
aliyun_region_id: "...region name..." # Example: cn-shanghai
aliyun_oss_bucket: "...name of the bucket..." # Example: fog-integration-test-bucket
WARNING: Do NOT use any productive account credentials and buckets for the testing, it may be harmful to your data!
The tests are using [https://github.com/aliyun/aliyun-cli#installation](Aliyun CLI) to setup integration bucket and content for tests,
please install it locally before running integration tests.
Aliyun CLI will be configured automatically as part of test execution using the credentials provided for fog connection.
Then run the test suite with INTEGRATION environment variable to activate integration tests:
export INTEGRATION=true
rake spec
Performance test
Performance tests are providing memory consumption report for download/upload operations.
export PERFORMANCE=true
rake spec
Publish a new release
- Update the next version in the file
lib/fog/aliyun/version - Update the
CHANGELOG.md - Build the next release by running command
gem build fog-aliyun.gemspec - Push the next release to the https://rubygems.org/
gem push fog-aliyun-<version>.gem
License
The gem is available as open source under the terms of the MIT License.
Owner metadata
- Name: fog
- Login: fog
- Email:
- Kind: organization
- Description:
- Website: http://fog.io
- Location:
- Twitter:
- Company:
- Icon url: https://avatars.githubusercontent.com/u/991149?v=4
- Repositories: 61
- Last ynced at: 2023-04-10T00:16:30.104Z
- Profile URL: https://github.com/fog
GitHub Events
Total
- Push event: 1
Last Year
- Push event: 1
Committers metadata
Last synced: 7 days ago
Total Commits: 143
Total Committers: 18
Avg Commits per committer: 7.944
Development Distribution Score (DDS): 0.594
Commits in past year: 3
Committers in past year: 1
Avg Commits per committer in past year: 3.0
Development Distribution Score (DDS) in past year: 0.0
| Name | Commits | |
|---|---|---|
| He Guimin | g****m@a****m | 58 |
| zjd | 1****4@q****m | 20 |
| dengqinsi | d****s@d****m | 16 |
| Amit Upadhye | u****t@g****m | 10 |
| geemus | g****s@g****m | 10 |
| Zhang Huan | z****n@k****m | 6 |
| Paulo Ribeiro | p****0@g****m | 5 |
| Philipp Thun | p****n@s****m | 3 |
| i068165 | d****k@s****m | 3 |
| Paul Thornthwaite | t****k@g****m | 2 |
| kgaikwad | k****3@g****m | 2 |
| sx-h9030 | s****t@d****m | 2 |
| Ricky Smith | r****h@r****m | 1 |
| Your Name | y****u@e****m | 1 |
| jane_hyt | j****t@1****m | 1 |
| root | r****t@c****l | 1 |
| Ubuntu | u****u@i****l | 1 |
| lijx | l****x@d****m | 1 |
Committer domains:
- dtdream.com: 3
- sap.com: 2
- ip-172-31-30-56.us-west-2.compute.internal: 1
- centos74-q00238127.novalocal: 1
- 163.com: 1
- rigor.com: 1
- ktjr.com: 1
- qq.com: 1
- alibaba-inc.com: 1
Issue and Pull Request metadata
Last synced: 3 months ago
Total issues: 10
Total pull requests: 90
Average time to close issues: 3 months
Average time to close pull requests: about 1 month
Total issue authors: 5
Total pull request authors: 8
Average comments per issue: 3.2
Average comments per pull request: 0.23
Merged pull request: 69
Bot issues: 0
Bot pull requests: 0
Past year issues: 0
Past year pull requests: 0
Past year average time to close issues: N/A
Past year average time to close pull requests: N/A
Past year issue authors: 0
Past year pull request authors: 0
Past year average comments per issue: 0
Past year average comments per pull request: 0
Past year merged pull request: 0
Past year bot issues: 0
Past year bot pull requests: 0
Top Issue Authors
- dmitry-bakaleinik-sap (6)
- OlegGerber (1)
- johha (1)
- Spinestars (1)
- stephanme (1)
Top Pull Request Authors
- xiaozhu36 (44)
- chushenmeshile (37)
- upadhyeammit (3)
- dmitry-bakaleinik-sap (2)
- sethboyles (1)
- johha (1)
- majioa (1)
- philippthun (1)
Top Issue Labels
Top Pull Request Labels
Package metadata
- Total packages: 2
-
Total downloads:
- rubygems: 122,353,763 total
- Total docker downloads: 882,498,368
- Total dependent packages: 2 (may contain duplicates)
- Total dependent repositories: 6,124 (may contain duplicates)
- Total versions: 50
- Total maintainers: 6
gem.coop: fog-aliyun
As a FOG provider, fog-aliyun support aliyun OSS/ECS. It will support more aliyun services later.
- Homepage: https://github.com/fog/fog-aliyun
- Documentation: http://www.rubydoc.info/gems/fog-aliyun/
- Licenses: MIT
- Latest release: 0.4.0 (published over 3 years ago)
- Last Synced: 2025-12-10T14:31:41.574Z (1 day ago)
- Versions: 25
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 61,180,481 Total
- Docker Downloads: 441,249,184
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.177%
- Docker downloads count: 0.266%
- Downloads: 0.442%
- Maintainers (6)
rubygems.org: fog-aliyun
As a FOG provider, fog-aliyun support aliyun OSS/ECS. It will support more aliyun services later.
- Homepage: https://github.com/fog/fog-aliyun
- Documentation: http://www.rubydoc.info/gems/fog-aliyun/
- Licenses: MIT
- Latest release: 0.4.0 (published over 3 years ago)
- Last Synced: 2025-12-09T19:03:37.425Z (2 days ago)
- Versions: 25
- Dependent Packages: 2
- Dependent Repositories: 6,124
- Downloads: 61,173,282 Total
- Docker Downloads: 441,249,184
-
Rankings:
- Docker downloads count: 0.322%
- Dependent repos count: 0.413%
- Downloads: 0.426%
- Average: 3.375%
- Forks count: 5.172%
- Dependent packages count: 5.237%
- Stargazers count: 8.681%
- Maintainers (6)
Dependencies
- aliyun-sdk ~> 0.8.0 development
- bundler >= 0 development
- memory_profiler >= 0 development
- mime-types ~> 2.6, >= 2.6.2 development
- pry-nav >= 0 development
- rake >= 0 development
- rspec >= 0 development
- rubocop >= 0 development
- simplecov >= 0 development
- aliyun-sdk ~> 0.8.0
- fog-core >= 0
- fog-json >= 0
- ipaddress ~> 0.8
- xml-simple ~> 1.1
Score: 27.569728245049937