No release in over 3 years
Low commit activity in last 3 years
Wraps the Qiniu Storage Service as an Active Storage service. https://www.qiniu.com
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.16
~> 5.0
~> 13.0

Runtime

~> 6.9
>= 5.1.6.2
~> 0.0.5
 Project Readme

ActivestorageQiniu

Wraps the Qiniu Storage Service as an Active Storage service

Installation

Add this line to your application's Gemfile:

gem 'activestorage_qiniu'

And then execute:

$ bundle

Or install it yourself as:

$ gem install activestorage_qiniu

Usage

you can set-up qiniu storage service through the generated config/storage.yml file.

  qiniu:
    service: Qiniu
    access_key: <%= ENV['QINIU_ACCESS_KEY'] %>
    secret_key: <%= ENV['QINIU_SECRET_KEY'] %>
    bucket: <%= ENV['QINIU_BUCKET'] %>
    domain: <%= ENV['QINIU_DOMAIN'] %>
    protocol: <%= ENV.fetch("QINIU_PROTOCOL") { "http" } %>
    bucket_private: <%= ENV['QINIU_BUCKET_PRIVATE'] || false  %>

more options. https://github.com/qiniu/ruby-sdk/blob/master/lib/qiniu/auth.rb#L49

Then, in your application's configuration, you can specify the service to use like this:

config.active_storage.service = :qiniu

Finally, config qiniu image and video analyzers.

config.active_storage.analyzers = [
  ActiveStorage::Analyzer::QiniuImageAnalyzer,
  ActiveStorage::Analyzer::QiniuVideoAnalyzer
]

License

The gem is available as open source under the terms of the MIT License.

Code of Conduct

Everyone interacting in the ActivestorageQiniu project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.