Low commit activity in last 3 years
A long-lived project that still receives updates
Provides YouTube storage for the Shrine file upload framework.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 2.0
>= 10.0
>= 0
~> 3.0
~> 2.3

Runtime

> 2.0, < 4.0
 Project Readme

Shrine::YouTube

Provides YouTube storage for Shrine.

Installation

Add this line to your application's Gemfile:

gem 'shrine-storage-you_tube'

Usage

Since YouTube's API doesn't allow reading of uploaded data, the YouTube storage must be paired with another storage provider to hold the original videos. Videos are first uploaded to YouTube and then to the specified storage provider using the ID returned from the YouTube upload.

require "shrine/storage/you_tube"
require "shrine/storage/s3"

s3 = Shrine::Storage::S3.new(**s3_options)
youtube = Shrine::Storage::YouTube.new(
  original_storage: s3,
  client_id: "abc123", # Google OAuth2 Client ID
  client_secret: "def456", # Google OAuth2 Client Secret
  refresh_token: "ghi789", # Refresh token for YouTube user
  # optional parameters
  channel_id: nil, # Channel ID for uploads, defaults to the user's channel
  default_privacy: :private, # one of :private, :public, or :unlisted
  upload_options: {} # may be used to set YouTube's snippet
  client_options: {} # confgure the Google API client's ClientOptions
  request_options: {} # confgure the Google API client's RequestOptions
)

Shrine.storages[:store] = youtube

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.