youtube_query 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/lib/youtube_query.rb +42 -0
- metadata +43 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: cc84b8adb67e136ef2ec5e589f5aa3c0e81c75b0
|
4
|
+
data.tar.gz: acb7ea6e3cc0ed1884dc08a32dfd125c5a95e7df
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 0c6b4ffc0c535e0a075695284aac1e49b44b94cfda2ca07f2cfb8d73b0070c5904ee26c085bc7e45a223a5a43ae241a620e200cc74939b4baf3f2872cb6dd3ca
|
7
|
+
data.tar.gz: c10eeac2be0d684fe96be9e12a85393ef463b77859d2245a1b728fb8138918b584ff3c5866811824d82bf3114f006e5a116e50980826e5ec58795b09447d45de
|
@@ -0,0 +1,42 @@
|
|
1
|
+
require 'google/api_client'
|
2
|
+
|
3
|
+
class YouTubeQuery
|
4
|
+
|
5
|
+
def self.new(options={})
|
6
|
+
|
7
|
+
options = {
|
8
|
+
:youtube_api_service_name => "youtube",
|
9
|
+
:youtube_api_version => "v3"
|
10
|
+
}.merge(options)
|
11
|
+
|
12
|
+
@@client = Google::APIClient.new(:key => options[:api_key], :authorization => nil) #Please provide :application_name and :application_version when initializing the client
|
13
|
+
@@youtube = @@client.discovered_api(options[:youtube_api_service_name], options[:youtube_api_version])
|
14
|
+
|
15
|
+
end
|
16
|
+
|
17
|
+
def self.query(options={})
|
18
|
+
|
19
|
+
options = {
|
20
|
+
:part => 'id,snippet'
|
21
|
+
}.merge(options)
|
22
|
+
|
23
|
+
search_response = @@client.execute!(
|
24
|
+
:api_method => @@youtube.search.list,
|
25
|
+
:parameters => options
|
26
|
+
)
|
27
|
+
|
28
|
+
videos = []
|
29
|
+
|
30
|
+
# Add each result to the appropriate list, and then display the lists of
|
31
|
+
# matching videos, channels, and playlists.
|
32
|
+
search_response.data.items.each do |search_result|
|
33
|
+
case search_result.id.kind
|
34
|
+
when 'youtube#video'
|
35
|
+
videos.push("#{search_result.snippet.title} (#{search_result.id.videoId})")
|
36
|
+
end
|
37
|
+
end
|
38
|
+
|
39
|
+
return videos
|
40
|
+
|
41
|
+
end
|
42
|
+
end
|
metadata
ADDED
@@ -0,0 +1,43 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: youtube_query
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Martyn Bissett
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2014-05-11 00:00:00.000000000 Z
|
12
|
+
dependencies: []
|
13
|
+
description: Gem for searching youtube videos
|
14
|
+
email: martynbissett@yahoo.co.uk
|
15
|
+
executables: []
|
16
|
+
extensions: []
|
17
|
+
extra_rdoc_files: []
|
18
|
+
files:
|
19
|
+
- lib/youtube_query.rb
|
20
|
+
homepage: http://ma.rtyn.biz
|
21
|
+
licenses: []
|
22
|
+
metadata: {}
|
23
|
+
post_install_message:
|
24
|
+
rdoc_options: []
|
25
|
+
require_paths:
|
26
|
+
- lib
|
27
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
28
|
+
requirements:
|
29
|
+
- - '>='
|
30
|
+
- !ruby/object:Gem::Version
|
31
|
+
version: '0'
|
32
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
33
|
+
requirements:
|
34
|
+
- - '>='
|
35
|
+
- !ruby/object:Gem::Version
|
36
|
+
version: '0'
|
37
|
+
requirements: []
|
38
|
+
rubyforge_project:
|
39
|
+
rubygems_version: 2.1.9
|
40
|
+
signing_key:
|
41
|
+
specification_version: 4
|
42
|
+
summary: ''
|
43
|
+
test_files: []
|